【发布时间】:2021-07-29 19:09:38
【问题描述】:
我有 YV12 格式的原始 YUV 文件。
YV12 不是YUV420P,也不是I420。
X264 可以处理,但ffmpeg 不能。
x264 --input-res 1280x720 --fps 25 --input-csp yv12 --output 2.mp4 2.yuv
--this runs correctly, and color is correct!
ffmpeg -c rawvideo -s 1280x720 -pix_fmt yv12 -r 25 -i 2.yuv 2.mp4
--there is an error: No such pixel format: yv12
ffmpeg -c rawvideo -s 1280x720 -pix_fmt yuv420p -r 25 -i 2.yuv 2.mp4
--this can run, but color is NOT correct!
ffmpeg -pix_fmts
--there is no YV12 format in the result list.
ffmpeg version N-81516-gbe07c25 Copyright (c) 2000-2016
那么,谁能说出ffmpeg 是否支持YV12?如果是,如何?谢谢。
【问题讨论】: