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
31 Answer
How to have UTVideo with yuv422 in ffmpeg ?
ffmpeg -i input -c:v utvideo -vf format=yuv422p output.aviUse the format filter (or the alias -pix_fmt) to choose the pixel format.