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
b23cbaa0
Commit
b23cbaa0
authored
Jun 04, 2022
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
on_publish hook新增continue_push_ms参数,用于断连续推延时控制
parent
b0beea77
显示空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
33 行增加
和
17 行删除
+33
-17
server/WebHook.cpp
+3
-0
src/Common/MultiMediaSourceMuxer.cpp
+3
-0
src/Common/MultiMediaSourceMuxer.h
+3
-0
src/Rtmp/RtmpSession.cpp
+3
-4
src/Rtmp/RtmpSession.h
+2
-0
src/Rtsp/RtspSession.cpp
+3
-3
src/Rtsp/RtspSession.h
+3
-1
webrtc/WebRtcPusher.cpp
+8
-6
webrtc/WebRtcPusher.h
+4
-2
webrtc/WebRtcTransport.cpp
+1
-1
没有找到文件。
server/WebHook.cpp
查看文件 @
b23cbaa0
...
...
@@ -323,6 +323,9 @@ void installWebHook(){
if
(
obj
.
isMember
(
"enable_fmp4"
))
{
option
.
enable_fmp4
=
obj
[
"enable_fmp4"
].
asBool
();
}
if
(
obj
.
isMember
(
"continue_push_ms"
))
{
option
.
continue_push_ms
=
obj
[
"continue_push_ms"
].
asUInt
();
}
invoker
(
err
,
option
);
}
else
{
//推流鉴权失败
...
...
src/Common/MultiMediaSourceMuxer.cpp
查看文件 @
b23cbaa0
...
...
@@ -26,11 +26,14 @@ ProtocolOption::ProtocolOption() {
GET_CONFIG
(
bool
,
s_to_mp4
,
General
::
kPublishToMP4
);
GET_CONFIG
(
bool
,
s_enabel_audio
,
General
::
kEnableAudio
);
GET_CONFIG
(
bool
,
s_add_mute_audio
,
General
::
kAddMuteAudio
);
GET_CONFIG
(
uint32_t
,
s_continue_push_ms
,
General
::
kContinuePushMS
);
enable_hls
=
s_to_hls
;
enable_mp4
=
s_to_mp4
;
enable_audio
=
s_enabel_audio
;
add_mute_audio
=
s_add_mute_audio
;
continue_push_ms
=
s_continue_push_ms
;
}
static
std
::
shared_ptr
<
MediaSinkInterface
>
makeRecorder
(
MediaSource
&
sender
,
const
vector
<
Track
::
Ptr
>
&
tracks
,
Recorder
::
type
type
,
const
string
&
custom_path
,
size_t
max_second
){
...
...
src/Common/MultiMediaSourceMuxer.h
查看文件 @
b23cbaa0
...
...
@@ -52,6 +52,9 @@ public:
//hls录制保存路径
std
::
string
hls_save_path
;
//断连续推延时,单位毫秒,默认采用配置文件
uint32_t
continue_push_ms
;
};
class
MultiMediaSourceMuxer
:
public
MediaSourceEventInterceptor
,
public
MediaSink
,
public
std
::
enable_shared_from_this
<
MultiMediaSourceMuxer
>
{
...
...
src/Rtmp/RtmpSession.cpp
查看文件 @
b23cbaa0
...
...
@@ -44,14 +44,13 @@ void RtmpSession::onError(const SockException& err) {
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastFlowReport
,
_media_info
,
_total_bytes
,
duration
,
is_player
,
static_cast
<
SockInfo
&>
(
*
this
));
}
GET_CONFIG
(
uint32_t
,
continue_push_ms
,
General
::
kContinuePushMS
);
//如果是主动关闭的,那么不延迟注销
if
(
_push_src
&&
continue_push_ms
&&
err
.
getErrCode
()
!=
Err_shutdown
)
{
if
(
_push_src
&&
_
continue_push_ms
&&
err
.
getErrCode
()
!=
Err_shutdown
)
{
//取消所有权
_push_src_ownership
=
nullptr
;
//延时10秒注销流
auto
push_src
=
std
::
move
(
_push_src
);
getPoller
()
->
doDelayTask
(
continue_push_ms
,
[
push_src
]()
{
return
0
;
});
getPoller
()
->
doDelayTask
(
_
continue_push_ms
,
[
push_src
]()
{
return
0
;
});
}
}
...
...
@@ -184,7 +183,7 @@ void RtmpSession::onCmd_publish(AMFDecoder &dec) {
}
_push_src
->
setListener
(
dynamic_pointer_cast
<
MediaSourceEvent
>
(
shared_from_this
()));
_continue_push_ms
=
option
.
continue_push_ms
;
sendStatus
({
"level"
,
"status"
,
"code"
,
"NetStream.Publish.Start"
,
"description"
,
"Started publishing stream."
,
...
...
src/Rtmp/RtmpSession.h
查看文件 @
b23cbaa0
...
...
@@ -89,6 +89,8 @@ private:
private
:
bool
_set_meta_data
=
false
;
double
_recv_req_id
=
0
;
//断连续推延时
uint32_t
_continue_push_ms
=
0
;
//消耗的总流量
uint64_t
_total_bytes
=
0
;
std
::
string
_tc_url
;
...
...
src/Rtsp/RtspSession.cpp
查看文件 @
b23cbaa0
...
...
@@ -86,14 +86,13 @@ void RtspSession::onError(const SockException &err) {
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastFlowReport
,
_media_info
,
_bytes_usage
,
duration
,
is_player
,
static_cast
<
SockInfo
&>
(
*
this
));
}
GET_CONFIG
(
uint32_t
,
continue_push_ms
,
General
::
kContinuePushMS
);
//如果是主动关闭的,那么不延迟注销
if
(
_push_src
&&
continue_push_ms
&&
err
.
getErrCode
()
!=
Err_shutdown
)
{
if
(
_push_src
&&
_
continue_push_ms
&&
err
.
getErrCode
()
!=
Err_shutdown
)
{
//取消所有权
_push_src_ownership
=
nullptr
;
//延时10秒注销流
auto
push_src
=
std
::
move
(
_push_src
);
getPoller
()
->
doDelayTask
(
continue_push_ms
,
[
push_src
]()
{
return
0
;
});
getPoller
()
->
doDelayTask
(
_
continue_push_ms
,
[
push_src
]()
{
return
0
;
});
}
}
...
...
@@ -280,6 +279,7 @@ void RtspSession::handleReq_ANNOUNCE(const Parser &parser) {
}
_push_src
->
setListener
(
dynamic_pointer_cast
<
MediaSourceEvent
>
(
shared_from_this
()));
_continue_push_ms
=
option
.
continue_push_ms
;
sendRtspResponse
(
"200 OK"
);
};
...
...
src/Rtsp/RtspSession.h
查看文件 @
b23cbaa0
...
...
@@ -163,6 +163,9 @@ private:
private
:
//是否已经触发on_play事件
bool
_emit_on_play
=
false
;
bool
_send_sr_rtcp
[
2
]
=
{
true
,
true
};
//断连续推延时
uint32_t
_continue_push_ms
=
0
;
//推流或拉流客户端采用的rtp传输方式
Rtsp
::
eRtpType
_rtp_type
=
Rtsp
::
RTP_Invalid
;
//收到的seq,回复时一致
...
...
@@ -213,7 +216,6 @@ private:
toolkit
::
Ticker
_rtcp_send_tickers
[
2
];
//统计rtp并发送rtcp
std
::
vector
<
RtcpContext
::
Ptr
>
_rtcp_context
;
bool
_send_sr_rtcp
[
2
]
=
{
true
,
true
};
};
/**
...
...
webrtc/WebRtcPusher.cpp
查看文件 @
b23cbaa0
...
...
@@ -16,8 +16,9 @@ using namespace mediakit;
WebRtcPusher
::
Ptr
WebRtcPusher
::
create
(
const
EventPoller
::
Ptr
&
poller
,
const
RtspMediaSourceImp
::
Ptr
&
src
,
const
std
::
shared_ptr
<
void
>
&
ownership
,
const
MediaInfo
&
info
)
{
WebRtcPusher
::
Ptr
ret
(
new
WebRtcPusher
(
poller
,
src
,
ownership
,
info
),
[](
WebRtcPusher
*
ptr
)
{
const
MediaInfo
&
info
,
const
mediakit
::
ProtocolOption
&
option
)
{
WebRtcPusher
::
Ptr
ret
(
new
WebRtcPusher
(
poller
,
src
,
ownership
,
info
,
option
),
[](
WebRtcPusher
*
ptr
)
{
ptr
->
onDestory
();
delete
ptr
;
});
...
...
@@ -28,10 +29,12 @@ WebRtcPusher::Ptr WebRtcPusher::create(const EventPoller::Ptr &poller,
WebRtcPusher
::
WebRtcPusher
(
const
EventPoller
::
Ptr
&
poller
,
const
RtspMediaSourceImp
::
Ptr
&
src
,
const
std
::
shared_ptr
<
void
>
&
ownership
,
const
MediaInfo
&
info
)
:
WebRtcTransportImp
(
poller
)
{
const
MediaInfo
&
info
,
const
mediakit
::
ProtocolOption
&
option
)
:
WebRtcTransportImp
(
poller
)
{
_media_info
=
info
;
_push_src
=
src
;
_push_src_ownership
=
ownership
;
_continue_push_ms
=
option
.
continue_push_ms
;
CHECK
(
_push_src
);
}
...
...
@@ -130,13 +133,12 @@ void WebRtcPusher::onDestory() {
}
}
GET_CONFIG
(
uint32_t
,
continue_push_ms
,
General
::
kContinuePushMS
);
if
(
_push_src
&&
continue_push_ms
)
{
if
(
_push_src
&&
_continue_push_ms
)
{
//取消所有权
_push_src_ownership
=
nullptr
;
//延时10秒注销流
auto
push_src
=
std
::
move
(
_push_src
);
getPoller
()
->
doDelayTask
(
continue_push_ms
,
[
push_src
]()
{
return
0
;
});
getPoller
()
->
doDelayTask
(
_
continue_push_ms
,
[
push_src
]()
{
return
0
;
});
}
}
...
...
webrtc/WebRtcPusher.h
查看文件 @
b23cbaa0
...
...
@@ -18,7 +18,7 @@ public:
using
Ptr
=
std
::
shared_ptr
<
WebRtcPusher
>
;
~
WebRtcPusher
()
override
=
default
;
static
Ptr
create
(
const
EventPoller
::
Ptr
&
poller
,
const
mediakit
::
RtspMediaSourceImp
::
Ptr
&
src
,
const
std
::
shared_ptr
<
void
>
&
ownership
,
const
mediakit
::
MediaInfo
&
info
);
const
std
::
shared_ptr
<
void
>
&
ownership
,
const
mediakit
::
MediaInfo
&
info
,
const
mediakit
::
ProtocolOption
&
option
);
protected
:
///////WebRtcTransportImp override///////
...
...
@@ -42,10 +42,12 @@ protected:
private
:
WebRtcPusher
(
const
EventPoller
::
Ptr
&
poller
,
const
mediakit
::
RtspMediaSourceImp
::
Ptr
&
src
,
const
std
::
shared_ptr
<
void
>
&
ownership
,
const
mediakit
::
MediaInfo
&
info
);
const
std
::
shared_ptr
<
void
>
&
ownership
,
const
mediakit
::
MediaInfo
&
info
,
const
mediakit
::
ProtocolOption
&
option
);
private
:
bool
_simulcast
=
false
;
//断连续推延时
uint32_t
_continue_push_ms
=
0
;
//媒体相关元数据
mediakit
::
MediaInfo
_media_info
;
//推流的rtsp源
...
...
webrtc/WebRtcTransport.cpp
查看文件 @
b23cbaa0
...
...
@@ -1086,7 +1086,7 @@ void push_plugin(Session &sender, const string &offer_sdp, const WebRtcArgs &arg
push_src_ownership
=
push_src
->
getOwnership
();
push_src
->
setProtocolOption
(
option
);
}
auto
rtc
=
WebRtcPusher
::
create
(
EventPollerPool
::
Instance
().
getPoller
(),
push_src
,
push_src_ownership
,
info
);
auto
rtc
=
WebRtcPusher
::
create
(
EventPollerPool
::
Instance
().
getPoller
(),
push_src
,
push_src_ownership
,
info
,
option
);
push_src
->
setListener
(
rtc
);
cb
(
*
rtc
);
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论