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