Say I ramify a video stream to 2 ffplay processes
cat video.mp4 | tee >(ffplay -i -) >(ffplay -i -) > /dev/null
Now, if I kill one of the ffplay process, the stream is stopped which is not what I want.
How can I modify this command to continue to stream the video to the first ffplay process if the second is killed?
PS: I am looking for a solution without named pipe (fifo)