Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,25 @@ Streaming_media_broadcasting_system_based_on_IPv4/

## 部署

### Clone 代码
```shell
$ git clone https://github.com/litbubo/Streaming_media_broadcasting_system_based_on_IPv4.git #Github # https://jihulab.com/litbubo/Streaming_media_broadcasting_system_based_on_IPv4.git jihulab
$ cd Streaming_media_broadcasting_system_based_on_IPv4/
```

### X86 Linux
```shell
$ sudo cp -r ./medialib/ /var/
$ cd server/
$ make -f Makefile
$ ./server -R 0 # 守护进程运行
$ cd ../client/
$ make -f Makefile
$ ./start.sh # 启动客户端,为防止丢帧,首次启动务必使用此脚本
```

### Arm
```shell
$ sudo cp -r ./medialib/ /var/
$ cd server/
$ make
Expand Down