mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 03:41:55 +00:00
7 lines
220 B
Bash
Executable file
7 lines
220 B
Bash
Executable file
#!/bin/bash
|
|
for((;;)); do \
|
|
./objs/ffmpeg/bin/ffmpeg -re -i ./doc/source.200kbps.768x320.flv \
|
|
-vcodec copy -acodec copy \
|
|
-f flv -y rtmp://127.0.0.1/live?vhost=demo.srs.com/livestream; \
|
|
sleep 1; \
|
|
done
|