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
24ab876f
Commit
24ab876f
authored
Jun 10, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复重连时,创建多个mp4解复用器导致内存增长的bug:#895
parent
92f879d7
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
32 行增加
和
24 行删除
+32
-24
tests/test_pusherMp4.cpp
+32
-24
没有找到文件。
tests/test_pusherMp4.cpp
查看文件 @
24ab876f
...
...
@@ -24,9 +24,9 @@ using namespace toolkit;
using
namespace
mediakit
;
//推流器,保持强引用
MediaPusher
::
Ptr
pusher
;
MediaPusher
::
Ptr
g_
pusher
;
Timer
::
Ptr
g_timer
;
MediaSource
::
Ptr
g_src
;
//声明函数
//推流失败或断开延迟2秒后重试推流
...
...
@@ -36,7 +36,7 @@ void rePushDelay(const EventPoller::Ptr &poller,
const
string
&
app
,
const
string
&
stream
,
const
string
&
filePath
,
const
string
&
url
)
;
const
string
&
url
);
//创建推流器并开始推流
void
createPusher
(
const
EventPoller
::
Ptr
&
poller
,
...
...
@@ -46,36 +46,39 @@ void createPusher(const EventPoller::Ptr &poller,
const
string
&
stream
,
const
string
&
filePath
,
const
string
&
url
)
{
//不限制APP名,并且指定文件绝对路径
auto
src
=
MediaSource
::
createFromMP4
(
schema
,
vhost
,
app
,
stream
,
filePath
,
false
);
if
(
!
src
){
if
(
!
g_src
)
{
//不限制APP名,并且指定文件绝对路径
g_src
=
MediaSource
::
createFromMP4
(
schema
,
vhost
,
app
,
stream
,
filePath
,
false
);
}
if
(
!
g_src
)
{
//文件不存在
WarnL
<<
"MP4文件不存在:"
<<
filePath
;
return
;
}
//创建推流器并绑定一个MediaSource
pusher
.
reset
(
new
MediaPusher
(
src
,
poller
));
g_pusher
.
reset
(
new
MediaPusher
(
g_src
,
poller
));
//可以指定rtsp推流方式,支持tcp和udp方式,默认tcp
// (*
pusher)[Client::kRtpType] = Rtsp::RTP_UDP;
//(*g_
pusher)[Client::kRtpType] = Rtsp::RTP_UDP;
//设置推流中断处理逻辑
pusher
->
setOnShutdown
([
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
](
const
SockException
&
ex
)
{
g_pusher
->
setOnShutdown
([
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
](
const
SockException
&
ex
)
{
WarnL
<<
"Server connection is closed:"
<<
ex
.
getErrCode
()
<<
" "
<<
ex
.
what
();
//重新推流
rePushDelay
(
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
);
rePushDelay
(
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
);
});
//设置发布结果处理逻辑
pusher
->
setOnPublished
([
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
](
const
SockException
&
ex
)
{
g_pusher
->
setOnPublished
([
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
](
const
SockException
&
ex
)
{
if
(
ex
)
{
WarnL
<<
"Publish fail:"
<<
ex
.
getErrCode
()
<<
" "
<<
ex
.
what
();
//如果发布失败,就重试
rePushDelay
(
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
);
}
else
{
rePushDelay
(
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
);
}
else
{
InfoL
<<
"Publish success,Please play with player:"
<<
url
;
}
});
pusher
->
publish
(
url
);
g_
pusher
->
publish
(
url
);
}
//推流失败或断开延迟2秒后重试推流
...
...
@@ -86,39 +89,44 @@ void rePushDelay(const EventPoller::Ptr &poller,
const
string
&
stream
,
const
string
&
filePath
,
const
string
&
url
)
{
g_timer
=
std
::
make_shared
<
Timer
>
(
2.0
f
,
[
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
]()
{
g_timer
=
std
::
make_shared
<
Timer
>
(
2.0
f
,
[
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
]()
{
InfoL
<<
"Re-Publishing..."
;
//重新推流
createPusher
(
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
);
createPusher
(
poller
,
schema
,
vhost
,
app
,
stream
,
filePath
,
url
);
//此任务不重复
return
false
;
},
poller
);
}
//这里才是真正执行main函数,你可以把函数名(domain)改成main,然后就可以输入自定义url了
int
domain
(
const
string
&
filePath
,
const
string
&
pushUrl
)
{
int
domain
(
const
string
&
filePath
,
const
string
&
pushUrl
)
{
//设置日志
Logger
::
Instance
().
add
(
std
::
make_shared
<
ConsoleChannel
>
());
Logger
::
Instance
().
setWriter
(
std
::
make_shared
<
AsyncLogWriter
>
());
//循环点播mp4文件
mINI
::
Instance
()[
Record
::
kFileRepeat
]
=
1
;
mINI
::
Instance
()[
General
::
kHlsDemand
]
=
1
;
mINI
::
Instance
()[
General
::
kTSDemand
]
=
1
;
mINI
::
Instance
()[
General
::
kFMP4Demand
]
=
1
;
//mINI::Instance()[General::kRtspDemand] = 1;
//mINI::Instance()[General::kRtmpDemand] = 1;
auto
poller
=
EventPollerPool
::
Instance
().
getPoller
();
//vhost/app/stream可以随便自己填,现在不限制app应用名了
createPusher
(
poller
,
FindField
(
pushUrl
.
data
(),
nullptr
,
"://"
).
substr
(
0
,
4
),
DEFAULT_VHOST
,
"live"
,
"stream"
,
filePath
,
pushUrl
);
createPusher
(
poller
,
FindField
(
pushUrl
.
data
(),
nullptr
,
"://"
).
substr
(
0
,
4
),
DEFAULT_VHOST
,
"live"
,
"stream"
,
filePath
,
pushUrl
);
//设置退出信号处理函数
static
semaphore
sem
;
signal
(
SIGINT
,
[](
int
)
{
sem
.
post
();
});
// 设置退出信号
sem
.
wait
();
pusher
.
reset
();
g_
pusher
.
reset
();
g_timer
.
reset
();
return
0
;
}
int
main
(
int
argc
,
char
*
argv
[]){
int
main
(
int
argc
,
char
*
argv
[])
{
//可以使用test_server生成的mp4文件
//文件使用绝对路径,推流url支持rtsp和rtmp
return
domain
(
"/
Users/xzl/git/ZLMediaKit/release/mac/Debug/www/record/live/rtsp_test1/2020-04-03/15-32-24.mp4"
,
"rts
p://127.0.0.1/live/rtsp_push"
);
return
domain
(
"/
home/work/test2.mp4"
,
"rtm
p://127.0.0.1/live/rtsp_push"
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论