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
283188be
Commit
283188be
authored
Dec 15, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MP4Demuxer: 提高MP4解复用器接口灵活度
parent
5bffc985
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
61 行增加
和
27 行删除
+61
-27
src/Record/MP4Reader.cpp
+51
-21
src/Record/MP4Reader.h
+10
-6
没有找到文件。
src/Record/MP4Reader.cpp
查看文件 @
283188be
...
...
@@ -15,23 +15,27 @@
using
namespace
toolkit
;
namespace
mediakit
{
MP4Reader
::
MP4Reader
(
const
string
&
strVhost
,
const
string
&
strApp
,
const
string
&
strId
,
const
string
&
filePath
)
{
MP4Reader
::
MP4Reader
(
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
,
const
string
&
file_path
)
{
_poller
=
WorkThreadPool
::
Instance
().
getPoller
();
_file_path
=
file
P
ath
;
if
(
_file_path
.
empty
())
{
GET_CONFIG
(
string
,
recordPath
,
Record
::
kFilePath
);
GET_CONFIG
(
bool
,
enableVhost
,
General
::
kEnableVhost
);
if
(
enableVhost
)
{
_file_path
=
strVhost
+
"/"
+
strApp
+
"/"
+
strI
d
;
}
else
{
_file_path
=
strApp
+
"/"
+
strI
d
;
_file_path
=
file
_p
ath
;
if
(
_file_path
.
empty
())
{
GET_CONFIG
(
string
,
recordPath
,
Record
::
kFilePath
);
GET_CONFIG
(
bool
,
enableVhost
,
General
::
kEnableVhost
);
if
(
enableVhost
)
{
_file_path
=
vhost
+
"/"
+
app
+
"/"
+
stream_i
d
;
}
else
{
_file_path
=
app
+
"/"
+
stream_i
d
;
}
_file_path
=
File
::
absolutePath
(
_file_path
,
recordPath
);
_file_path
=
File
::
absolutePath
(
_file_path
,
recordPath
);
}
_demuxer
=
std
::
make_shared
<
MP4Demuxer
>
();
_demuxer
->
openMP4
(
_file_path
);
_muxer
=
std
::
make_shared
<
MultiMediaSourceMuxer
>
(
strVhost
,
strApp
,
strId
,
_demuxer
->
getDurationMS
()
/
1000.0
f
,
true
,
true
,
false
,
false
);
if
(
stream_id
.
empty
())
{
return
;
}
_muxer
=
std
::
make_shared
<
MultiMediaSourceMuxer
>
(
vhost
,
app
,
stream_id
,
_demuxer
->
getDurationMS
()
/
1000.0
f
,
true
,
true
,
false
,
false
);
auto
tracks
=
_demuxer
->
getTracks
(
false
);
if
(
tracks
.
empty
()){
throw
std
::
runtime_error
(
StrPrinter
<<
"该mp4文件没有有效的track:"
<<
_file_path
);
...
...
@@ -60,14 +64,16 @@ bool MP4Reader::readSample() {
if
(
!
frame
)
{
continue
;
}
_muxer
->
inputFrame
(
frame
);
if
(
_muxer
)
{
_muxer
->
inputFrame
(
frame
);
}
if
(
frame
->
dts
()
>
getCurrentStamp
())
{
break
;
}
}
GET_CONFIG
(
bool
,
fileRepeat
,
Record
::
kFileRepeat
);
if
(
eof
&&
fileRepeat
)
{
if
(
eof
&&
(
fileRepeat
||
_file_repeat
)
)
{
//需要从头开始看
seekTo
(
0
);
return
true
;
...
...
@@ -76,10 +82,14 @@ bool MP4Reader::readSample() {
return
!
eof
;
}
void
MP4Reader
::
startReadMP4
()
{
void
MP4Reader
::
stopReadMP4
()
{
_timer
=
nullptr
;
}
void
MP4Reader
::
startReadMP4
(
const
EventPoller
::
Ptr
&
poller
,
uint64_t
sample_ms
,
bool
ref_self
,
bool
file_repeat
)
{
GET_CONFIG
(
uint32_t
,
sampleMS
,
Record
::
kSampleMS
);
auto
strongSelf
=
shared_from_this
();
_muxer
->
setMediaListener
(
strongSelf
);
if
(
_muxer
)
{
_muxer
->
setMediaListener
(
strongSelf
);
}
//先获取关键帧
seekTo
(
0
);
...
...
@@ -88,10 +98,28 @@ void MP4Reader::startReadMP4() {
readSample
();
//启动定时器
_timer
=
std
::
make_shared
<
Timer
>
(
sampleMS
/
1000.0
f
,
[
strongSelf
]()
{
lock_guard
<
recursive_mutex
>
lck
(
strongSelf
->
_mtx
);
return
strongSelf
->
readSample
();
},
_poller
);
if
(
ref_self
)
{
_timer
=
std
::
make_shared
<
Timer
>
((
sample_ms
?
sample_ms
:
sampleMS
)
/
1000.0
f
,
[
strongSelf
]()
{
lock_guard
<
recursive_mutex
>
lck
(
strongSelf
->
_mtx
);
return
strongSelf
->
readSample
();
},
poller
?
poller
:
_poller
);
}
else
{
weak_ptr
<
MP4Reader
>
weak_self
=
strongSelf
;
_timer
=
std
::
make_shared
<
Timer
>
((
sample_ms
?
sample_ms
:
sampleMS
)
/
1000.0
f
,
[
weak_self
]()
{
auto
strongSelf
=
weak_self
.
lock
();
if
(
!
strongSelf
)
{
return
false
;
}
lock_guard
<
recursive_mutex
>
lck
(
strongSelf
->
_mtx
);
return
strongSelf
->
readSample
();
},
poller
?
poller
:
_poller
);
}
_file_repeat
=
file_repeat
;
}
const
MP4Demuxer
::
Ptr
&
MP4Reader
::
getDemuxer
()
const
{
return
_demuxer
;
}
uint32_t
MP4Reader
::
getCurrentStamp
()
{
...
...
@@ -102,7 +130,7 @@ void MP4Reader::setCurrentStamp(uint32_t new_stamp){
auto
old_stamp
=
getCurrentStamp
();
_seek_to
=
new_stamp
;
_seek_ticker
.
resetTime
();
if
(
old_stamp
!=
new_stamp
)
{
if
(
old_stamp
!=
new_stamp
&&
_muxer
)
{
//时间轴未拖动时不操作
_muxer
->
setTimeStamp
(
new_stamp
);
}
...
...
@@ -170,7 +198,9 @@ bool MP4Reader::seekTo(uint32_t ui32Stamp) {
}
if
(
keyFrame
||
frame
->
keyFrame
()
||
frame
->
configFrame
()){
//定位到key帧
_muxer
->
inputFrame
(
frame
);
if
(
_muxer
)
{
_muxer
->
inputFrame
(
frame
);
}
//设置当前时间戳
setCurrentStamp
(
frame
->
dts
());
return
true
;
...
...
src/Record/MP4Reader.h
查看文件 @
283188be
...
...
@@ -23,18 +23,21 @@ public:
/**
* 流化一个mp4文件,使之转换成RtspMediaSource和RtmpMediaSource
* @param
strV
host 虚拟主机
* @param
strA
pp 应用名
* @param str
I
d 流id
* @param file
P
ath 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
* @param
v
host 虚拟主机
* @param
a
pp 应用名
* @param str
eam_i
d 流id
* @param file
_p
ath 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
*/
MP4Reader
(
const
string
&
strVhost
,
const
string
&
strApp
,
const
string
&
strId
,
const
string
&
fileP
ath
=
""
);
MP4Reader
(
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream_id
,
const
string
&
file_p
ath
=
""
);
/**
* 开始流化MP4文件,需要指出的是,MP4Reader对象一经过调用startReadMP4方法,它的强引用会自持有,
* 意思是在文件流化结束之前或中断之前,MP4Reader对象是不会被销毁的(不管有没有被外部对象持有)
*/
void
startReadMP4
();
void
startReadMP4
(
const
EventPoller
::
Ptr
&
poller
=
nullptr
,
uint64_t
sample_ms
=
0
,
bool
ref_self
=
true
,
bool
file_repeat
=
false
);
void
stopReadMP4
();
const
MP4Demuxer
::
Ptr
&
getDemuxer
()
const
;
private
:
//MediaSourceEvent override
...
...
@@ -53,6 +56,7 @@ private:
bool
seekTo
(
uint32_t
ui32Stamp
);
private
:
bool
_file_repeat
=
false
;
bool
_have_video
=
false
;
bool
_paused
=
false
;
float
_speed
=
1
.
0
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论