Page 1 of 1

x264 command problem

Posted: 16 Oct 2011 05:48
by huoyee
Dear friends,

I wanted to use x264 to compress a yuv file and used the following command:
x264 -o a.264 foreman_part_qcif.yuv 176*144

But it always generated error:
x264 [error]: Rawyuv input requires a resolution.

I have specified the resolution in the command, why this happens and how to solve it,please?

Thank you in advance!

Re: x264 command problem

Posted: 16 Oct 2011 15:43
by VLC_help
This isn't a x264 support forum. Anyway, you have to tell to x264 that the last option is the input resolution.
So something like

Code: Select all

x264 -o a.264 foreman_part_qcif.yuv --input-res 176x144
http://mewiki.project357.com/wiki/X264_Settings

Re: x264 command problem

Posted: 17 Oct 2011 03:31
by huoyee
Ok, Thank you very much!