ffmpeg and codec utvideo interlaced

i have ffmpeg version 2021-01-09-git-2e2891383e-full_build- Copyright (c) 2000-2021 the FFmpeg developers. Command : ffmpeg -h encoder=utvideo gives : gbrp gbrap yuv422p yuv420p yuv444p I want yuv422. I see in forums it is possible. I don't know if it is possible with ffmpeg and with which (old?) version. Perhaps memcoder? Best regards

3

1 Answer

How to have UTVideo with yuv422 in ffmpeg ?

ffmpeg -i input -c:v utvideo -vf format=yuv422p output.avi

Use the format filter (or the alias -pix_fmt) to choose the pixel format.

5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like