When I've made videos, I've used sRGB and thrown the files at ffmpeg, not really caring about colorspace conversions that ffmpeg might do.
If you want to throw YUV at ffmpeg, you can do that with IM. For both IM and ffmpeg, the default variety of YUV seems to be 4:2:0.
ffmpeg doesn't seem to like the input as one yuv file per frame with a wildcard, but wants them joined together in one file.
For example, we make a boring movie with 10 "rose:" frames. Windows BAT syntax.
Code: Select all
convert rose: -duplicate 9 r_%%04d.yuv
copy /B r_*.yuv rm.yuv
ffmpeg -video_size 70x46 -i rm.yuv -y hb1.avi