I know ffmpeg is able to read data from stdin rather than reading from disk using ffmpeg -i -. Is this supported for all file formats? If it is not, is there a list which file formats are supported?
I know ffmpeg is able to read data from stdin rather than reading from
Share
You need to run
ffmpeg -protocolsto determine if thepipeprotocol (the read and write from stdin and stdout) supported in your version of ffmpeg and thenffmpeg -formatsto see the list of supported formats. In the excerpt below you will see the note on output pipe that it must be seekable for some protocols. For input protocols it has no such restriction.From
man ffmpeg-protocols: