Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
728dd3ec
Commit
728dd3ec
authored
Oct 01, 2020
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合并pr:#509
parent
eccb1a66
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
5 行增加
和
34 行删除
+5
-34
server/FFmpegSource.cpp
+1
-2
server/WebHook.cpp
+3
-12
src/Common/config.cpp
+1
-20
没有找到文件。
server/FFmpegSource.cpp
查看文件 @
728dd3ec
...
...
@@ -197,8 +197,7 @@ void FFmpegSource::startTimer(int timeout_ms) {
strongSelf
->
findAsync
(
0
,
[
&
](
const
MediaSource
::
Ptr
&
src
)
{
//同步查找流
if
(
!
src
)
{
//流不在线,重新拉流
//@子悦,这里原先是10秒超时,实际发现10秒不够,我改成20秒了
//流不在线,重新拉流, 这里原先是10秒超时,实际发现10秒不够,改成20秒了
if
(
strongSelf
->
_replay_ticker
.
elapsedTime
()
>
20
*
1000
){
//上次重试时间超过10秒,那么再重试FFmpeg拉流
strongSelf
->
_replay_ticker
.
resetTime
();
...
...
server/WebHook.cpp
查看文件 @
728dd3ec
...
...
@@ -129,6 +129,9 @@ const char *getContentType(const HttpArgs &value){
}
static
void
do_http_hook
(
const
string
&
url
,
const
ArgsType
&
body
,
const
function
<
void
(
const
Value
&
,
const
string
&
)
>
&
fun
){
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
const_cast
<
ArgsType
&>
(
body
)[
"mediaserverid"
]
=
mediaServerId
;
GET_CONFIG
(
float
,
hook_timeoutSec
,
Hook
::
kTimeoutSec
);
HttpRequester
::
Ptr
requester
(
new
HttpRequester
);
requester
->
setMethod
(
"POST"
);
...
...
@@ -158,8 +161,6 @@ static void do_http_hook(const string &url,const ArgsType &body,const function<v
static
ArgsType
make_json
(
const
MediaInfo
&
args
){
ArgsType
body
;
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
body
[
"mediaserverid"
]
=
mediaServerId
;
body
[
"schema"
]
=
args
.
_schema
;
body
[
"vhost"
]
=
args
.
_vhost
;
body
[
"app"
]
=
args
.
_app
;
...
...
@@ -321,8 +322,6 @@ void installWebHook(){
return
;
}
ArgsType
body
;
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
body
[
"mediaserverid"
]
=
mediaServerId
;
body
[
"regist"
]
=
bRegist
;
body
[
"schema"
]
=
sender
.
getSchema
();
body
[
"vhost"
]
=
sender
.
getVhost
();
...
...
@@ -348,8 +347,6 @@ void installWebHook(){
static
auto
getRecordInfo
=
[](
const
RecordInfo
&
info
)
{
ArgsType
body
;
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
body
[
"mediaserverid"
]
=
mediaServerId
;
body
[
"start_time"
]
=
(
Json
::
UInt64
)
info
.
start_time
;
body
[
"file_size"
]
=
(
Json
::
UInt64
)
info
.
file_size
;
body
[
"time_len"
]
=
info
.
time_len
;
...
...
@@ -388,8 +385,6 @@ void installWebHook(){
return
;
}
ArgsType
body
;
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
body
[
"mediaserverid"
]
=
mediaServerId
;
body
[
"ip"
]
=
sender
.
get_peer_ip
();
body
[
"port"
]
=
sender
.
get_peer_port
();
body
[
"id"
]
=
sender
.
getIdentifier
();
...
...
@@ -408,8 +403,6 @@ void installWebHook(){
}
ArgsType
body
;
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
body
[
"mediaserverid"
]
=
mediaServerId
;
body
[
"schema"
]
=
sender
.
getSchema
();
body
[
"vhost"
]
=
sender
.
getVhost
();
body
[
"app"
]
=
sender
.
getApp
();
...
...
@@ -455,8 +448,6 @@ void installWebHook(){
}
ArgsType
body
;
GET_CONFIG
(
string
,
mediaServerId
,
General
::
kMediaServerId
);
body
[
"mediaserverid"
]
=
mediaServerId
;
body
[
"ip"
]
=
sender
.
get_peer_ip
();
body
[
"port"
]
=
sender
.
get_peer_port
();
body
[
"id"
]
=
sender
.
getIdentifier
();
...
...
src/Common/config.cpp
查看文件 @
728dd3ec
...
...
@@ -18,25 +18,6 @@
using
namespace
toolkit
;
namespace
mediakit
{
string
generalGuid
()
{
srand
(
time
(
0
));
std
::
string
random_str
(
""
);
for
(
int
i
=
0
;
i
<
6
;
++
i
)
{
for
(
int
j
=
0
;
j
<
8
;
j
++
)
switch
(
rand
()
%
2
)
{
case
1
:
random_str
+=
(
'A'
+
rand
()
%
26
);
break
;
default
:
random_str
+=
(
'0'
+
rand
()
%
10
);
break
;
}
if
(
i
<
5
)
random_str
+=
"-"
;
}
return
random_str
;
}
bool
loadIniConfig
(
const
char
*
ini_path
){
string
ini
;
...
...
@@ -100,7 +81,7 @@ onceToken token([](){
mINI
::
Instance
()[
kPublishToMP4
]
=
0
;
mINI
::
Instance
()[
kMergeWriteMS
]
=
0
;
mINI
::
Instance
()[
kModifyStamp
]
=
0
;
mINI
::
Instance
()[
kMediaServerId
]
=
generalGuid
(
);
mINI
::
Instance
()[
kMediaServerId
]
=
makeRandStr
(
16
);
},
nullptr
);
}
//namespace General
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论