File size: 276 Bytes
0b2f8ce
 
 
 
 
 
c9f8f7f
0b2f8ce
1
2
3
4
5
6
7
8
#!/bin/bash

COUNT=0

echo "Starting FFMPEG live stream for channel 1"
while true; do
    ffmpeg -y -nostdin -re -f concat -safe 0 -i channel_1_video.txt -loglevel error -c:v libx264 -preset veryfast -tune zerolatency -c:a aac -ar 44100 -f flv rtmp://localhost/live/webtv
done