On Fri, 2 Oct 2020 at 14:28, Tobias Rapp <[email protected]> wrote: > > ffmpeg -i $INPUT ... -pix_fmt +yuv420p \ > -filter:v "format=pix_fmts=yuv420p,setrange=full,..."
Be careful with that if you have any interlaced material. The `format` filter will force the inclusion of a `scale` filter before it. Unless it's changed recently and I've missed it, the scale filter will not be interlaced aware, so you might end up blurring the colours for the two fields in each frame. -- Mark Himsley _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
