mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
215 B
Bash
8 lines
215 B
Bash
11 years ago
|
#!/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=players/livestream; \
|
||
|
sleep 1; \
|
||
|
done
|