Log in

View Full Version : MeGUI x264 encoding -- is this a bug?


graysky
15th March 2007, 21:35
I have a question about the commandline of x264.exe that megui gives my jobs file.

I have the global setting of "automatically set number of threads" unchecked. In my video profile for x264, I have Threads=0 (auto). Here is my first pass commandline in my jobs file:<Commandline>--pass 1 --bitrate 2779 --stats "E:\work\e9\9.stats" --bframes 3 --b-pyramid --direct auto --subme 1 --analyse none --vbv-maxrate 25000 --me dia --threads auto --thread-input --progress --no-psnr --no-ssim --output NUL "E:\work\e9\9.avs" </Commandline>

Is it normal for the --threads auto to be followed by the --threads-input? Is the second reference just overriding the first since I have the following in the same file:<NbThreads>0</NbThreads> which is auto as I understand it.

nurbs
15th March 2007, 21:44
--thread-input creates a seperate thread for avisynth, so its perfectly normal.

graysky
15th March 2007, 22:19
Cool, thanks for the info.