Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
李勇
/
McuClient
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
李勇
8 years ago
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4669408ceeb2436f77a182cfc74501f36191ee97
4669408c
1 parent
9d562225
增加获取推流地址的返回参数字段
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
10 行增加
和
1 行删除
dist/McuClient.js
src/EngineEntrance.js
src/apes/MediaModule.js
dist/McuClient.js
查看文件 @
4669408
此 diff 太大无法显示。
src/EngineEntrance.js
查看文件 @
4669408
...
...
@@ -34,7 +34,7 @@ import mdetect from "mdetect";
import
UTF8
from
'utf-8'
;
let
loger
=
Loger
.
getLoger
(
'McuClient'
);
let
_sdkInfo
=
{
"version"
:
"v1.4
2.1.20170708
"
,
"author"
:
"www.3mang.com"
};
let
_sdkInfo
=
{
"version"
:
"v1.4
3.1.20170711
"
,
"author"
:
"www.3mang.com"
};
//APE
let
_sass
;
...
...
src/apes/MediaModule.js
查看文件 @
4669408
...
...
@@ -123,6 +123,9 @@ class MediaModule {
return
{
"code"
:
ApeConsts
.
RETURN_SUCCESS
,
"data"
:
""
,
"mediaId"
:
freeChannel
,
"userId"
:
GlobalConfig
.
userId
,
"userName"
:
GlobalConfig
.
userName
,
"userRole"
:
GlobalConfig
.
userRole
,
"publishUrl"
:
publishUrl
};
}
...
...
@@ -161,6 +164,9 @@ class MediaModule {
};
return
{
"code"
:
ApeConsts
.
RETURN_SUCCESS
,
"data"
:
""
,
"userId"
:
GlobalConfig
.
userId
,
"userName"
:
GlobalConfig
.
userName
,
"userRole"
:
GlobalConfig
.
userRole
,
"mediaId"
:
freeChannel
,
"publishUrl"
:
publishUrl
};
...
...
@@ -202,6 +208,9 @@ class MediaModule {
return
{
"code"
:
ApeConsts
.
RETURN_SUCCESS
,
"data"
:
""
,
"mediaId"
:
shareChannel
,
"userId"
:
GlobalConfig
.
userId
,
"userName"
:
GlobalConfig
.
userName
,
"userRole"
:
GlobalConfig
.
userRole
,
"publishUrl"
:
publishUrl
,
"streamId"
:
streamId
};
...
...
请
注册
或
登录
后发表评论