用纯RUST手撸一个开源流媒体服务(RTMP/HTTPFLV/HLS)XIU
文章图片
作者工作目前在音视频流媒体行业,用了大概一年的业余时间学习Rust,并且实现了一个简单的音视频流媒体服务,虽然据说Rust已经连续多年被评为最受程序员喜欢的语言,但是在国内还是比较冷门,作者比较看好Rust的未来,如果你也对Rust感兴趣,同时也对音视频感兴趣,推荐你看看这个项目,下面是项目介绍:
XIU是用纯Rust开发的一款简单和安全的流媒体服务器,目前支持流行的三大流媒体协议包括RTMP/HLS/HTTPFLV(将来有可能支持其它协议),可以单点部署,也可以用relay功能来部署集群。
功能
- RTMP
- 发布直播流和播放直播流
- 转发:静态转推和静态回源
- HTTPFLV
- HLS
安装和运行 有两种方式来安装xiu:
- 直接用cargo来安装
- 源码编译安装
执行下面的命令来安转xiu:
cargo install xiu
执行下面的命令来启动服务:
xiu configuration_file_path/config.toml
源码编译安装
克隆 Xiu
git clone https://github.com/harlanc/xiu.git
Checkout最新发布的版本代码:
git checkout tags/ -b
编译
cd ./xiu/application/xiu
cargo build --release
运行
cd ./xiu/target/release
./xiu config.toml
配置 RTMP
[rtmp]
enabled = true
port = 1935# pull streams from other server node.
[rtmp.pull]
enabled = false
address = "192.168.0.1"
port = 1935# push streams to other server node.
[[rtmp.push]]
enabled = true
address = "localhost"
port = 1936
[[rtmp.push]]
enabled = true
address = "192.168.0.3"
port = 1935
HTTPFLV
[httpflv]
# true or false to enable or disable the feature
enabled = true
# listening port
port = 8081
HLS
[hls]
# true or false to enable or disable the feature
enabled = true
# listening port
port = 8080
Log
[log]
level = "info"
一些配置的例子
有一些现成的配置文件放在下面的目录:
xiu/application/xiu/src/config
包括4个配置文件:
config_rtmp.toml //只打开rtmp
config_rtmp_hls.toml //打开 rtmp 和 hls
config_rtmp_httpflv.toml //打开 rtmp 和 httpflv
config_rtmp_httpflv_hls.toml //打开所有的 3 个协议
应用场景 推流 可以用任何推流软件或者命令工具来推RTMP流,比如使用OBS或者用ffmpeg命令行:
ffmpeg -re -stream_loop -1 -i test.mp4 -c:a copy -c:v copy -f flv -flvflags no_duration_filesize rtmp://127.0.0.1:1935/live/test
播放 使用ffplay来播放 rtmp/httpflv/hls协议的直播流:
ffplay -i rtmp://localhost:1935/live/test
ffplay -i http://localhost:8081/live/test.flv
ffplay -i http://localhost:8080/live/test/test.m3u8
转发 - 静态转推 应用场景为边缘节点的直播流被转推到源站,配置如下:
边缘节点的配置文件config_push.toml:
[rtmp]
enabled = true
port = 1935
[[rtmp.push]]
enabled = true
address = "localhost"
port = 1936
源站节点的配置文件config.toml:
[rtmp]
enabled = true
port = 1936
启动两个服务:
./xiu config.toml
./xiu config_push.toml
将一路RTMP直播流推送到边缘节点,此直播流会被自动转推到源站,可以同时播放源站或者边缘节点的直播流:
ffplay -i rtmp://localhost:1935/live/test
ffplay -i rtmp://localhost:1936/live/test
转发 - 静态回源 应用场景为播放过程中用户从边缘节点拉流,边缘节点无此流,则回源拉流,配置文件如下:
【用纯RUST手撸一个开源流媒体服务(RTMP/HTTPFLV/HLS)XIU】源站节点的配置文件为 config.toml:
[rtmp]
enabled = true
port = 1935
边缘节点的配置文件为 config_pull.toml:
[rtmp]
enabled = true
port = 1936
[rtmp.pull]
enabled = false
address = "localhost"
port = 1935
运行两个服务:
./xiu config.toml
./xiu config_pull.toml
直接将直播流推送到源站,到边缘节点请求此路直播流,边缘节点会回源拉流,可以同时播放边缘和源站节点上的直播流:
ffplay -i rtmp://localhost:1935/live/test
ffplay -i rtmp://localhost:1936/live/test
Star History link
鸣谢
- media_server
推荐阅读
- Rust|Rust macro_rules 学习笔记
- 《Mybatis|《Mybatis 手撸专栏》第2章(创建简单的映射器代理工厂)
- kubernetes|云原生爱好者周刊(好家伙,Rust 也成立云原生组织了)
- linux内核移植到rust,Linux开发者已将Rust版本的Coreutils移植到Linux
- 用纯react|用纯react Hooks来编写一个todolist案例(一)
- Rust|Rust macro_rules 入门
- Rust-Sqlx极简教程
- python|python 推理引擎_【Rust日报】 2019-05-12(Snip开源神经网络推理引擎Tract)
- docker|基于Rust-vmm实现Kubernetes运行时
- java|【Rust日报】2022-03-21 Firefox 现在约 10% 的代码为 Rust