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
fcfa13b0
Commit
fcfa13b0
authored
Oct 22, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
适配最新zltoolkit
parent
fafd197e
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
11 行增加
和
15 行删除
+11
-15
3rdpart/ZLToolKit
+1
-1
3rdpart/media-server
+1
-1
src/Http/WebSocketClient.h
+8
-7
src/Record/MP4Recorder.cpp
+1
-6
没有找到文件。
ZLToolKit
@
2fe11e25
Subproject commit
7923e9646f1779d8ce8f256c7f9c0a5bee69e7d7
Subproject commit
2fe11e250eeec2e79ee210b89a7f1a78f6d40630
media-server
@
6ac21f84
Subproject commit
0caa03c07e2ed40ec996479d594f1a75e9bd3f03
Subproject commit
6ac21f845567afe7256709764373cbc3dc8d57ad
src/Http/WebSocketClient.h
查看文件 @
fcfa13b0
...
...
@@ -368,18 +368,19 @@ public:
* 目的是替换TcpClient的连接服务器行为,使之先完成WebSocket握手
* @param host websocket服务器ip或域名
* @param iPort websocket服务器端口
* @param fTimeOutSec 超时时间
* @param timeout_sec 超时时间
* @param local_port 本地监听端口,此处不起作用
*/
void
startConnect
(
const
string
&
host
,
uint16_t
iPort
,
float
fTimeOutSec
=
3
)
override
{
void
startConnect
(
const
string
&
host
,
uint16_t
port
,
float
timeout_sec
=
3
,
uint16_t
local_port
=
0
)
override
{
string
ws_url
;
if
(
useWSS
)
{
if
(
useWSS
)
{
//加密的ws
ws_url
=
StrPrinter
<<
"wss://"
+
host
<<
":"
<<
iPort
<<
"/"
;
}
else
{
ws_url
=
StrPrinter
<<
"wss://"
+
host
<<
":"
<<
port
<<
"/"
;
}
else
{
//明文ws
ws_url
=
StrPrinter
<<
"ws://"
+
host
<<
":"
<<
iPort
<<
"/"
;
ws_url
=
StrPrinter
<<
"ws://"
+
host
<<
":"
<<
port
<<
"/"
;
}
_wsClient
->
startWsClient
(
ws_url
,
fTimeOutS
ec
);
_wsClient
->
startWsClient
(
ws_url
,
timeout_s
ec
);
}
void
startWebSocket
(
const
string
&
ws_url
,
float
fTimeOutSec
=
3
){
...
...
src/Record/MP4Recorder.cpp
查看文件 @
fcfa13b0
...
...
@@ -72,13 +72,8 @@ void MP4Recorder::asyncClose() {
info
.
time_len
=
(
float
)
(
::
time
(
NULL
)
-
info
.
start_time
);
//关闭mp4非常耗时,所以要放在后台线程执行
muxer
->
closeMP4
();
//获取文件大小
auto
fp
=
fopen
(
full_path_tmp
.
data
(),
"rb"
);
assert
(
fp
);
info
.
file_size
=
File
::
fileSize
(
fp
);
fclose
(
fp
);
info
.
file_size
=
File
::
fileSize
(
full_path_tmp
.
data
());
if
(
info
.
file_size
<
1024
)
{
//录像文件太小,删除之
File
::
delete_file
(
full_path_tmp
.
data
());
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论