blob: 6966b592ee4daa28d7ed6221c51a4a1e584955e2 (
plain)
1
2
3
4
5
6
|
#!/bin/bash
while :; do
ffmpeg -thread_queue_size 16 -i http://cubemap.tg16.gathering.org/southcam.ts -f lavfi -i anullsrc -vcodec copy -c:a libfdk_aac -ar 44100 -ac 2 -f flv rtmp://185.110.148.11/live/southcam;
sleep 1
done
|