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
23f9a42f
Commit
23f9a42f
authored
Apr 01, 2023
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
格式化与精简代码
parent
384c8677
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
server/WebApi.cpp
+6
-6
server/WebHook.cpp
+1
-1
server/main.cpp
+1
-1
没有找到文件。
server/WebApi.cpp
查看文件 @
23f9a42f
...
...
@@ -537,7 +537,7 @@ void addStreamProxy(const string &vhost, const string &app, const string &stream
return
;
}
//添加拉流代理
auto
player
=
std
::
make_shared
<
PlayerProxy
>
(
vhost
,
app
,
stream
,
option
,
retry_count
>=
0
?
retry_count
:
-
1
);
auto
player
=
std
::
make_shared
<
PlayerProxy
>
(
vhost
,
app
,
stream
,
option
,
retry_count
);
s_proxyMap
[
key
]
=
player
;
//指定RTP over TCP(播放rtsp时有效)
...
...
@@ -952,7 +952,7 @@ void installWebApi() {
}
//添加推流代理
PusherProxy
::
Ptr
pusher
(
new
PusherProxy
(
src
,
retry_count
>=
0
?
retry_count
:
-
1
)
);
auto
pusher
=
std
::
make_shared
<
PusherProxy
>
(
src
,
retry_count
);
s_proxyPusherMap
[
key
]
=
pusher
;
//指定RTP over TCP(播放rtsp时有效)
...
...
@@ -988,7 +988,7 @@ void installWebApi() {
CHECK_SECRET
();
CHECK_ARGS
(
"schema"
,
"vhost"
,
"app"
,
"stream"
,
"dst_url"
);
auto
dst_url
=
allArgs
[
"dst_url"
];
auto
retry_count
=
allArgs
[
"retry_count"
].
empty
()
?
-
1
:
allArgs
[
"retry_count"
].
as
<
int
>
();
auto
retry_count
=
allArgs
[
"retry_count"
].
empty
()
?
-
1
:
allArgs
[
"retry_count"
].
as
<
int
>
();
addStreamPusherProxy
(
allArgs
[
"schema"
],
allArgs
[
"vhost"
],
allArgs
[
"app"
],
...
...
@@ -1327,7 +1327,7 @@ void installWebApi() {
invoker
(
200
,
headerOut
,
val
.
toStyledString
());
});
});
//设置录像流播放速度
api_regist
(
"/index/api/setRecordSpeed"
,
[](
API_ARGS_MAP_ASYNC
)
{
CHECK_SECRET
();
...
...
@@ -1407,7 +1407,7 @@ void installWebApi() {
invoker
(
200
,
headerOut
,
val
.
toStyledString
());
});
});
// 删除录像文件夹
// http://127.0.0.1/index/api/deleteRecordDirectroy?vhost=__defaultVhost__&app=live&stream=ss&period=2020-01-01
api_regist
(
"/index/api/deleteRecordDirectory"
,
[](
API_ARGS_MAP
)
{
...
...
@@ -1424,7 +1424,7 @@ void installWebApi() {
val
[
"path"
]
=
record_path
;
val
[
"code"
]
=
result
;
});
//获取录像文件夹列表或mp4文件列表
//http://127.0.0.1/index/api/getMp4RecordFile?vhost=__defaultVhost__&app=live&stream=ss&period=2020-01
api_regist
(
"/index/api/getMp4RecordFile"
,
[](
API_ARGS_MAP
){
...
...
server/WebHook.cpp
查看文件 @
23f9a42f
...
...
@@ -161,7 +161,7 @@ void do_http_hook(const string &url, const ArgsType &body, const function<void(c
GET_CONFIG
(
float
,
retry_delay
,
Hook
::
kRetryDelay
);
const_cast
<
ArgsType
&>
(
body
)[
"mediaServerId"
]
=
mediaServerId
;
HttpRequester
::
Ptr
requester
(
new
HttpRequester
);
auto
requester
=
std
::
make_shared
<
HttpRequester
>
(
);
requester
->
setMethod
(
"POST"
);
auto
bodyStr
=
to_string
(
body
);
requester
->
setBody
(
bodyStr
);
...
...
server/main.cpp
查看文件 @
23f9a42f
...
...
@@ -108,7 +108,7 @@ onceToken token1([](){
class
CMD_main
:
public
CMD
{
public
:
CMD_main
()
{
_parser
.
reset
(
new
OptionParser
(
nullptr
)
);
_parser
=
std
::
make_shared
<
OptionParser
>
(
nullptr
);
#if !defined(_WIN32)
(
*
_parser
)
<<
Option
(
'd'
,
/*该选项简称,如果是\x00则说明无简称*/
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论