Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 avi 文件转换为 yuv 文件。我尝试使用
ffmpeg -i <input.avi> <output.yuv>
但没有得到转换。有人可以建议我使用 gstreamer 进行转换吗?
这就是您使用 ffmpeg 解决它的方法
ffmpeg -i in.avi -vcodec rawvideo -pix_fmt yuv420p -o out.yuv
将任何输入转换为 420 平面 yuv。