ubuntu安装srs5.0
时间: 2024-04-28 13:18:23 浏览: 168
SRS(Simple Realtime Server)是一个开源的流媒体,支持RTMP、HLS、HTTP-FLV等协议。下面是在Ubuntu上安装SRS 5.0的步骤:
1. 更新系统:
```
sudo apt update
sudo apt upgrade
```
2. 安装依赖库:
```
sudo apt install git build-essential libssl-dev cmake
```
3. 克隆SRS源码:
```
git clone https://github.com/ossrs/srs.git
```
4. 切换到SRS源码目录:
```
cd srs/trunk
```
5. 编译SRS:
```
./configure && make
```
6. 安装SRS:
```
sudo make install
```
7. 配置SRS:
- 复制配置文件模板:
```
cp conf/srs.conf.sample conf/srs.conf
```
- 编辑配置文件:
```
vi conf/srs.conf
```
在配置文件中,你可以设置监听端口、应用名称、推流地址等参数。根据自己的需求进行配置。
8. 启动SRS:
```
./objs/srs -c conf/srs.conf
```
现在,你已经成功安装并启动了SRS 5.0。你可以使用RTMP、HLS或HTTP-FLV协议进行流媒体的推流和播放。
阅读全文