convert yuv to avi using gstreamer

I want to convert an avi file to an yuv file. I tried using

ffmpeg -i <input.avi> <output.yuv>

but not getting converted. can anybody suggest me conversion using gstreamer?


This is how you solve it using ffmpeg

ffmpeg -i in.avi -vcodec rawvideo -pix_fmt yuv420p -o out.yuv

Converts any input to 420 planar yuv.

链接地址: http://www.djcxy.com/p/43976.html

上一篇: 需要快速的gstreamer应用程序来测试qtdemux是否正在工作

下一篇: 使用gstreamer将yuv转换为avi