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
a9e53aae
Commit
a9e53aae
authored
Nov 19, 2022
by
ziyue
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitee.com/xia-chu/ZLMediaKit
parents
188ee1f6
0d6fa128
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
20 行增加
和
4 行删除
+20
-4
README.md
+1
-0
conf/config.ini
+4
-0
server/main.cpp
+5
-1
webrtc/Sdp.cpp
+3
-1
webrtc/WebRtcTransport.cpp
+6
-2
webrtc/WebRtcTransport.h
+1
-0
没有找到文件。
README.md
查看文件 @
a9e53aae
...
...
@@ -115,6 +115,7 @@
-
支持rtp扩展解析
-
支持GOP缓冲,webrtc播放秒开
-
支持datachannel
-
支持webrtc over tcp模式
-
[
SRT支持
](
./srt/srt.md
)
-
其他
-
支持丰富的restful api以及web hook事件
...
...
conf/config.ini
查看文件 @
a9e53aae
...
...
@@ -313,6 +313,10 @@ externIP=
#该端口是多线程的,同时支持客户端网络切换导致的连接迁移
#需要注意的是,如果服务器在nat内,需要做端口映射时,必须确保外网映射端口跟该端口一致
port
=
8000
#rtc tcp服务器监听端口号,在udp 不通的情况下,会使用tcp传输数据
#该端口是多线程的,同时支持客户端网络切换导致的连接迁移
#需要注意的是,如果服务器在nat内,需要做端口映射时,必须确保外网映射端口跟该端口一致
tcpPort
=
8000
#设置remb比特率,非0时关闭twcc并开启remb。该设置在rtc推流时有效,可以控制推流画质
#目前已经实现twcc自动调整码率,关闭remb根据真实网络状况调整码率
rembBitRate
=
0
...
...
server/main.cpp
查看文件 @
a9e53aae
...
...
@@ -292,6 +292,7 @@ int start_main(int argc,char *argv[]) {
return
Socket
::
createSocket
(
new_poller
,
false
);
});
uint16_t
rtcPort
=
mINI
::
Instance
()[
Rtc
::
kPort
];
uint16_t
rtcTcpPort
=
mINI
::
Instance
()[
Rtc
::
kTcpPort
];
#endif//defined(ENABLE_WEBRTC)
...
...
@@ -338,7 +339,10 @@ int start_main(int argc,char *argv[]) {
#if defined(ENABLE_WEBRTC)
//webrtc udp服务器
if
(
rtcPort
)
{
rtcSrv_udp
->
start
<
WebRtcSession
>
(
rtcPort
);
rtcSrv_tcp
->
start
<
WebRtcSession
>
(
rtcPort
);
}
if
(
rtcPort
)
{
rtcSrv_udp
->
start
<
WebRtcSession
>
(
rtcPort
);}
if
(
rtcTcpPort
)
{
rtcSrv_tcp
->
start
<
WebRtcSession
>
(
rtcTcpPort
);}
#endif//defined(ENABLE_WEBRTC)
#if defined(ENABLE_SRT)
...
...
webrtc/Sdp.cpp
查看文件 @
a9e53aae
...
...
@@ -1204,7 +1204,9 @@ RtcSessionSdp::Ptr RtcSession::toRtcSessionSdp() const{
}
for
(
auto
&
cand
:
m
.
candidate
)
{
sdp_media
.
addAttr
(
std
::
make_shared
<
SdpAttrCandidate
>
(
cand
));
if
(
cand
.
port
){
sdp_media
.
addAttr
(
std
::
make_shared
<
SdpAttrCandidate
>
(
cand
));
}
}
}
return
ret
;
...
...
webrtc/WebRtcTransport.cpp
查看文件 @
a9e53aae
...
...
@@ -44,11 +44,14 @@ const string kRembBitRate = RTC_FIELD "rembBitRate";
// webrtc单端口udp服务器
const
string
kPort
=
RTC_FIELD
"port"
;
const
string
kTcpPort
=
RTC_FIELD
"tcpPort"
;
static
onceToken
token
([]()
{
mINI
::
Instance
()[
kTimeOutSec
]
=
15
;
mINI
::
Instance
()[
kExternIP
]
=
""
;
mINI
::
Instance
()[
kRembBitRate
]
=
0
;
mINI
::
Instance
()[
kPort
]
=
8000
;
mINI
::
Instance
()[
kTcpPort
]
=
8000
;
});
}
// namespace RTC
...
...
@@ -612,6 +615,7 @@ void WebRtcTransportImp::onRtcConfigure(RtcConfigure &configure) const {
WebRtcTransport
::
onRtcConfigure
(
configure
);
GET_CONFIG
(
uint16_t
,
local_port
,
Rtc
::
kPort
);
GET_CONFIG
(
uint16_t
,
local_tcp_port
,
Rtc
::
kTcpPort
);
// 添加接收端口candidate信息
GET_CONFIG_FUNC
(
std
::
vector
<
std
::
string
>
,
extern_ips
,
Rtc
::
kExternIP
,
[](
string
str
)
{
std
::
vector
<
std
::
string
>
ret
;
...
...
@@ -624,13 +628,13 @@ void WebRtcTransportImp::onRtcConfigure(RtcConfigure &configure) const {
if
(
extern_ips
.
empty
())
{
std
::
string
localIp
=
SockUtil
::
get_local_ip
();
configure
.
addCandidate
(
*
makeIceCandidate
(
localIp
,
local_port
,
120
,
"udp"
));
configure
.
addCandidate
(
*
makeIceCandidate
(
localIp
,
local_port
,
110
,
"tcp"
));
configure
.
addCandidate
(
*
makeIceCandidate
(
localIp
,
local_
tcp_
port
,
110
,
"tcp"
));
}
else
{
const
uint32_t
delta
=
10
;
uint32_t
priority
=
100
+
delta
*
extern_ips
.
size
();
for
(
auto
ip
:
extern_ips
)
{
configure
.
addCandidate
(
*
makeIceCandidate
(
ip
,
local_port
,
priority
+
5
,
"udp"
));
configure
.
addCandidate
(
*
makeIceCandidate
(
ip
,
local_port
,
priority
,
"tcp"
));
configure
.
addCandidate
(
*
makeIceCandidate
(
ip
,
local_
tcp_
port
,
priority
,
"tcp"
));
priority
-=
delta
;
}
}
...
...
webrtc/WebRtcTransport.h
查看文件 @
a9e53aae
...
...
@@ -32,6 +32,7 @@ namespace mediakit {
//RTC配置项目
namespace
Rtc
{
extern
const
std
::
string
kPort
;
extern
const
std
::
string
kTcpPort
;
extern
const
std
::
string
kTimeOutSec
;
}
//namespace RTC
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论