I\'m using ffmpeg to create a video, from a list of base64 encoded images that I pipe into ffmpeg.
ffmpeg
Outputting to a file (using the attached cod
FFmpeg guesses the output muxer by checking the output extension. With a pipe, that doesn't exist, so it has to be expressly set. Add '-f', 'image2pipe' just before output.
'-f', 'image2pipe'