How to make ffmpeg exit when Input is broken

1k Views Asked by At

I have written a bash script to keep a ffmpeg command up and running

#!/bin/bash
while :
    do

        echo `ffmpeg -re -i http://domain.com/index400.m3u8 -vcodec copy -acodec copy -f mpegts udp://127.0.0.1:10000?pkt_size=1316`
done

The problem is, sometimes the input is broken, yet ffmpeg does not exit when that happens so that it is restarted by the above script. Instead what happens is the same process is kept running eventhough it is not transferring any packet to the UDP address (output). And I need to manually go into the terminal and kill it (kill -9 #processID)

I need a way to make ffmpeg kill its own process whenever the input is broken.

Appreciate your help.

0

There are 0 best solutions below