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
a1e5724c
Commit
a1e5724c
authored
Dec 17, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化hls录制
parent
1169f29c
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
14 行增加
和
5 行删除
+14
-5
src/Record/HlsMaker.cpp
+5
-0
src/Record/HlsMaker.h
+5
-0
src/Record/HlsMakerImp.cpp
+4
-3
src/Record/HlsMakerImp.h
+0
-2
没有找到文件。
src/Record/HlsMaker.cpp
查看文件 @
a1e5724c
...
...
@@ -134,4 +134,8 @@ void HlsMaker::flushLastSegment(bool eof){
_last_file_name
.
clear
();
}
bool
HlsMaker
::
isLive
()
{
return
_seg_number
!=
0
;
}
}
//
namespace
mediakit
\ No newline at end of file
src/Record/HlsMaker.h
查看文件 @
a1e5724c
...
...
@@ -87,6 +87,11 @@ protected:
* @param eof
*/
void
flushLastSegment
(
bool
eof
=
false
);
/**
* 是否为直播
*/
bool
isLive
();
private
:
/**
* 生成m3u8文件
...
...
src/Record/HlsMakerImp.cpp
查看文件 @
a1e5724c
...
...
@@ -40,7 +40,6 @@ HlsMakerImp::HlsMakerImp(const string &m3u8_file,
_path_hls
=
m3u8_file
;
_params
=
params
;
_buf_size
=
bufSize
;
_is_vod
=
seg_number
==
0
;
_file_buf
.
reset
(
new
char
[
bufSize
],[](
char
*
ptr
){
delete
[]
ptr
;
});
...
...
@@ -49,7 +48,7 @@ HlsMakerImp::HlsMakerImp(const string &m3u8_file,
HlsMakerImp
::~
HlsMakerImp
()
{
//录制完了
flushLastSegment
(
true
);
if
(
!
_is_vod
){
if
(
isLive
()
){
//hls直播才删除文件
File
::
delete_file
(
_path_prefix
.
data
());
}
...
...
@@ -62,7 +61,9 @@ string HlsMakerImp::onOpenSegment(int index) {
auto
strTime
=
getTimeStr
(
"%H-%M-%S"
);
segment_name
=
StrPrinter
<<
strDate
+
"/"
+
strTime
<<
"_"
<<
index
<<
".ts"
;
segment_path
=
_path_prefix
+
"/"
+
segment_name
;
_segment_file_paths
.
emplace
(
index
,
segment_path
);
if
(
isLive
()){
_segment_file_paths
.
emplace
(
index
,
segment_path
);
}
}
_file
=
makeFile
(
segment_path
,
true
);
if
(
!
_file
){
...
...
src/Record/HlsMakerImp.h
查看文件 @
a1e5724c
...
...
@@ -58,8 +58,6 @@ private:
string
_path_hls
;
string
_params
;
int
_buf_size
;
//是否为点播
bool
_is_vod
;
};
}
//namespace mediakit
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论