KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
rtspServer
★ 9
Open GitHub ↗
EasyDarwin enable tls
Download README (.md)
Explore Similar Repositories
EasyDarwin_Demo
:
安卓直播app快速实践demo
Course
:
流媒体技术视频教程:RTSP、RTMP、HLS、HTTP、EasyDarwin、live555、ffmpeg、图像识别、智能分析、编解码、流媒体传输、高性能服务器
EasyRTMP
:
EasyRTMP是一套调用简单、功能完善、运行高效稳定的RTMP功能组件,经过多年实战和线上运行打造,支持RTMP推送断线重连、环形缓冲、智能丢帧、网络事件回调,支持Windows、Linux、ARM、Android、iOS平台,支持市面上绝大部分的RTMP流媒体服务器,能够完美应用于各种行业的直播需求,手机直播、桌面直播、摄像机直播、课堂直播等等方面!
EasyDarwinPushStream
:
安卓app把手机屏幕投屏到电脑播放,PC使用VLC播放器接流播放
EasyPusher_RTSP_Android
:
这是一套在android上实现在拉取rtsp流再以rtsp转推给rtsp流媒体服务器的app。基于了EasyDarwin团队的EasyRTSPClient和EasyPusher实现。地址分别为https://github.com/EasyDSS/EasyRTSPClient和https://github.com/EasyDarwin/EasyPusher
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
rtspServer
?
Download (.md)
# rtsp流媒体服务器 1. 基于EasyDarwin二次开发 2. 支持rtsps ## 安装部署 ### 编译命令 - 编译 Linux release版本 (在 bash 环境下执行) make - 编译 Linux debug版本 (在 bash 环境下执行) make debug - 直接运行(Linux) cd go-rtspServer ./easydarwin # Ctrl + C - 以服务启动(Linux) cd EasyDarwin ./start.sh # ./stop.sh - 查看界面 打开浏览器输入 [http://localhost:10008](http://localhost:10008), 进入控制页面,默认用户名密码是admin/admin - 测试推流 使用tls,推流至rtsps ffmpeg -re -i test.mp4 -rtsp_transport tcp -c copy -f rtsp rtsps://127.0.0.1:8443/test.mp4 不使用tls,推流至rtsp ffmpeg -re -i test.mp4 -rtsp_transport tcp -c copy -f rtsp rtsp://127.0.0.1:8554/test.mp4 - 测试播放 使用tls ffplay rtsps://localhost:8443/test.mp4 不使用tls ffplay rtsp://localhost:8554/test.mp4 // ffplay -rtsp_transport tcp rtsp://localhost/test // ffplay rtsp://localhost/test