Log in

View Full Version : New Version of x264 doesn't accept RAW input


patrick_
19th December 2009, 19:39
The last version I used is r1347. Now I've updated to r1376 and it doesn't accept RAW input. I suspect that this error is since r1353 where advanced avisynth support has been introduced.

x264.exe --crf 18 --fps 25/1 --frames 97800 --output "G:\video.264" "G:\video.raw" 640x480

avs [info]: Trying FFmpegSource2... not found
avs [info]: Trying DSS2... not found
avs [info]: Trying DirectShowSource... failed
avs [error]: unable to find source filter to open 'G:\video.raw'
x264 [error]: could not open input file 'G:\video.raw'

So it tries to open the .raw with avisynth and not as a raw video, although resolution has been given. This is with the 32-bit version. The 64-bit version fails with:
avs [error]: failed to load avisynth
x264 [error]: could not open input file 'G:\video.raw'

I've looked into the -fullhelp, but there doesn't seem to be an option to disable avisynth. Did I miss something? Thanks in advance.

buzzqw
19th December 2009, 19:46
try using a yuv as extension for input

BHH

patrick_
19th December 2009, 21:28
Thanks, that did it!

LoRd_MuldeR
19th December 2009, 22:58
An alternative:

x264.exe --crf 18 --fps 25/1 --frames 97800 --output "G:\video.264" --stdin yuv - 640x480 < "G:\video.raw"