How can I pipe output of ffmpeg without saving it to a file to three different processes?
Let's say I have:
ffmpeg -i input.mpg output.yuv
I would like to change that in order to avoid saving YUV to physical disk. I would like to pipe it to three different shell commands.
How to do it?