How can I pipe the output of ffmpeg to ffplay?
At the moment I use a workaround in bash :
mkfifo spam
(ffplay spam 2> /dev/null &) ; capture /dev/stdout | ffmpeg -i - spam
|
feedback
|
|
I do not know if it is If it is
(You migth need to add a If it is
For more informations about the | |||
|
feedback
|
|
ffmpeg supports piping operations. See that section of the documentation here. I don't know how ffplay works, but to pipe the output of ffmpeg to standard output, you can add the pipe command to the end of the ffmpeg command. Example:
| |||||
feedback
|