File size: 378 Bytes
98775da
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/bin/bash

echo "starting final stream loop.."
while true; do
    sleep 1
    echo "trying to create the final stream.."
    ffmpeg -fflags +discardcorrupt -re -i video.pipe -loglevel panic -stream_loop 1 -c:v libx264 -preset veryfast -tune zerolatency -c:a aac -ar 44100 -f flv rtmp://localhost/live/webtv
    echo "final stream got interrupted, will try again in 1 sec"
done