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
d3f1c2fa
Unverified
Commit
d3f1c2fa
authored
Jun 10, 2023
by
夏楚
Committed by
GitHub
Jun 10, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mp4录制文件名添加索引号,防止一秒内生成多个同名文件导致覆盖 (#2542)
实测发现 如果在点播推流时 如果切片大小设置比较小 一秒钟可能产生多个mp4切片 以前切片名称粒度最小为一秒 所以会存在文件覆盖问题
parent
64b8079a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
7 行增加
和
6 行删除
+7
-6
src/Record/MP4Recorder.cpp
+5
-5
src/Record/MP4Recorder.h
+2
-1
没有找到文件。
src/Record/MP4Recorder.cpp
查看文件 @
d3f1c2fa
...
...
@@ -41,16 +41,16 @@ MP4Recorder::~MP4Recorder() {
void
MP4Recorder
::
createFile
()
{
closeFile
();
auto
date
=
getTimeStr
(
"%Y-%m-%d"
);
auto
time
=
getTimeStr
(
"%H-%M-%S"
)
;
auto
full_path
_tmp
=
_folder_path
+
date
+
"/."
+
time
+
".mp4"
;
auto
full_path
=
_folder_path
+
date
+
"/"
+
time
+
".mp4"
;
auto
file_name
=
getTimeStr
(
"%H-%M-%S"
)
+
"-"
+
std
::
to_string
(
_file_index
++
)
+
".mp4"
;
auto
full_path
=
_folder_path
+
date
+
"/"
+
file_name
;
auto
full_path
_tmp
=
_folder_path
+
date
+
"/."
+
file_name
;
/////record 业务逻辑//////
_info
.
start_time
=
::
time
(
NULL
);
_info
.
file_name
=
time
+
".mp4"
;
_info
.
file_name
=
file_name
;
_info
.
file_path
=
full_path
;
GET_CONFIG
(
string
,
appName
,
Record
::
kAppName
);
_info
.
url
=
appName
+
"/"
+
_info
.
app
+
"/"
+
_info
.
stream
+
"/"
+
date
+
"/"
+
time
+
".mp4"
;
_info
.
url
=
appName
+
"/"
+
_info
.
app
+
"/"
+
_info
.
stream
+
"/"
+
date
+
"/"
+
file_name
;
try
{
_muxer
=
std
::
make_shared
<
MP4Muxer
>
();
...
...
src/Record/MP4Recorder.h
查看文件 @
d3f1c2fa
...
...
@@ -57,13 +57,14 @@ private:
private
:
bool
_have_video
=
false
;
size_t
_max_second
;
uint64_t
_last_dts
=
0
;
uint64_t
_file_index
=
0
;
std
::
string
_folder_path
;
std
::
string
_full_path
;
std
::
string
_full_path_tmp
;
RecordInfo
_info
;
MP4Muxer
::
Ptr
_muxer
;
std
::
list
<
Track
::
Ptr
>
_tracks
;
uint64_t
_last_dts
=
0
;
};
#endif ///ENABLE_MP4
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论