小编wxl*_*and的帖子

ffmpeg 支持 yv12 吗?

我有格式YUV的原始文件YV12YV12不是YUV420P,也不是I420X264可以处理,但是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 …
Run Code Online (Sandbox Code Playgroud)

video ffmpeg

5
推荐指数
1
解决办法
3329
查看次数

标签 统计

ffmpeg ×1

video ×1