ffmpeg sdl out filter, like ffplay but with filter_complex Posted on August 8, 2012 by rogerdpack http://ffmpeg.org/ffmpeg.html#sdl -f sdl "SDL output" basically
note that ffplay supports only one input, and doesn’t support the -filter_complex option, which is ffmpeg specific. You can still support multiple inputs through the lavfi device, something like: ffplay -f lavfi “movie=’video=screen-capture-recorder’:f=dshow [tmp0]; movie=go.png [tmp1]; [tmp0][tmp1] overlay=10:H-h-10″
[sdl @ 038ddb20] Unsupported pixel format ‘bgr24′, choose one of yuv420p, yuyv422, or uyvy422. Output #0, sdl, to ‘SDL output’: meant to use: -pix_fmt yuv420
note that ffplay supports only one input, and doesn’t support the
-filter_complex option, which is ffmpeg specific.
You can still support multiple inputs through the lavfi device,
something like:
ffplay -f lavfi “movie=’video=screen-capture-recorder’:f=dshow
[tmp0]; movie=go.png [tmp1]; [tmp0][tmp1] overlay=10:H-h-10″
[sdl @ 038ddb20] Unsupported pixel format ‘bgr24′, choose one of yuv420p, yuyv422, or uyvy422.
Output #0, sdl, to ‘SDL output’:
meant to use:
-pix_fmt yuv420
ffmpeg -i sintel.mpg -f sdl “title”