convert H264 video to raw YUV format

北城以北 提交于 2019-12-02 17:32:52
alexbuisson

Yes you can, you just have to specific the pixel format. To get the whole list of the format:

ffmpeg -pix_fmts | grep -i pixel_format_name

For example if you want to save the 1st video track of an mp4 file as a yuv420p (p means planar) file:

ffmpeg -i video.mp4 -c:v rawvideo -pix_fmt yuv420p out.yuv
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!