media-server / scripts /stream.sh
jbilcke-hf's picture
jbilcke-hf HF Staff
pausing the data collection loop
fab3624
raw
history blame
376 Bytes
#!/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 -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