mirror of
https://gitee.com/xia-chu/ZLMediaKit.git
synced 2026-05-06 10:57:50 +08:00
Some checks failed
Android / build (push) Has been cancelled
CodeQL / Analyze (cpp) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
Docker / build (push) Has been cancelled
Linux / build (push) Has been cancelled
macOS / build (push) Has been cancelled
Windows / build (push) Has been cancelled
- 增加客户端模式,支持主动拉流、推流: - addStreamProxy接口新增支持whep主动拉流,拉流地址目前只兼容zlm的whep url。 - addStreamPusherProxy接口新增支持whip主动推流,推流地址目前只兼容zlm的whip url。 - 以上推流url格式为webrtc[s]://server_host:server_port/app/stream_id?key=value, 内部会自动转换为http[s]://server_host:server_port/index/api/[whip/whep]?app=app&stream=stream_id&key=value。 - 增加WebRtc p2p 模式: - 增加 ICE FULL模式。 - 增加STUN/TURN 服务器。 - 增加websocket 信令。 - 增加P2P代理拉流。 --------- Co-authored-by: xia-chu <771730766@qq.com> Co-authored-by: mtdxc <mtdxc@126.com> Co-authored-by: cqm <cqm@97kid.com>
26 lines
886 B
Markdown
26 lines
886 B
Markdown
# 致谢与声明
|
||
本文件夹下部分文件提取自[MediaSoup](https://github.com/versatica/mediasoup) ,分别为:
|
||
|
||
- dtls相关功能:
|
||
- DtlsTransport.cpp
|
||
- DtlsTransport.hpp
|
||
|
||
- srtp相关功能:
|
||
- SrtpSession.cpp
|
||
- SrtpSession.hpp
|
||
|
||
- datachannel相关功能:
|
||
- SctpAssociation.cpp
|
||
- SctpAssociation.hpp
|
||
|
||
以上源码有一定的修改和裁剪,感谢MediaSoup开源项目及作者,
|
||
用户在使用本项目的同时,应该同时遵循MediaSoup的开源协议。
|
||
|
||
同时,在此也感谢开源项目[easy_webrtc_server](https://github.com/Mihawk086/easy_webrtc_server) 及作者,
|
||
在集成MediaSoup相关代码前期,主要参考这个项目。
|
||
|
||
另外,感谢[big panda](<2381267071@qq.com>) 开发并贡献的webrtc js测试客户端(www/webrtc目录下文件),
|
||
其开源项目地址为:https://gitee.com/xiongguangjie/zlmrtcclient.js
|
||
|
||
|