graysky
31st May 2007, 21:30
I'd like have the output of my x264.exe go into a text log file so I can keep book on my fps/encode time. I have tried adding a > log.txt after the command, but that just makes a 0-byte log file. Here is my commandline for the 1st pass, any help is appreciated.
x264.exe --pass 1 --bitrate 1386 --stats "C:\work2\test.stats" --bframes 3 --b-pyramid --direct auto --subme 1 --analyse none --vbv-maxrate 25000 --me dia --threads auto --thread-input --progress --no-dct-decimate --no-psnr --no-ssim --output NUL "C:\work2\test.avs"
That gives me the following outputted to my screen:
avis [info]: 720x480 @ 23.98 fps (336 frames)
x264 [info]: using cpu capabilities MMX MMXEXT SSE SSE2
x264 [warning]: VBV maxrate specified, but no bufsize.
x264 [info]: slice I:4 Avg QP:19.50 size: 3089100:00
x264 [info]: slice P:88 Avg QP:19.74 size: 15305
x264 [info]: slice B:244 Avg QP:21.68 size: 4049
x264 [info]: mb I I16..4: 26.6% 0.0% 73.4%
x264 [info]: mb P I16..4: 8.3% 0.0% 0.0% P16..4: 72.6% 0.0% 0.0% 0.0% 0
.0% skip:19.1%
x264 [info]: mb B I16..4: 0.4% 0.0% 0.0% B16..8: 23.2% 0.0% 0.0% direct:
17.3% skip:59.1%
x264 [info]: final ratefactor: 20.28
x264 [info]: direct mvs spatial:98.0% temporal:2.0%
x264 [info]: kb/s:1403.3
encoded 336 frames, 164.14 fps, 1403.72 kb/s
Honestly, all I want is the very last line that reports the fps for this pass; I'm not interested in the x264 [info] lines at all for this.
Thanks all!
x264.exe --pass 1 --bitrate 1386 --stats "C:\work2\test.stats" --bframes 3 --b-pyramid --direct auto --subme 1 --analyse none --vbv-maxrate 25000 --me dia --threads auto --thread-input --progress --no-dct-decimate --no-psnr --no-ssim --output NUL "C:\work2\test.avs"
That gives me the following outputted to my screen:
avis [info]: 720x480 @ 23.98 fps (336 frames)
x264 [info]: using cpu capabilities MMX MMXEXT SSE SSE2
x264 [warning]: VBV maxrate specified, but no bufsize.
x264 [info]: slice I:4 Avg QP:19.50 size: 3089100:00
x264 [info]: slice P:88 Avg QP:19.74 size: 15305
x264 [info]: slice B:244 Avg QP:21.68 size: 4049
x264 [info]: mb I I16..4: 26.6% 0.0% 73.4%
x264 [info]: mb P I16..4: 8.3% 0.0% 0.0% P16..4: 72.6% 0.0% 0.0% 0.0% 0
.0% skip:19.1%
x264 [info]: mb B I16..4: 0.4% 0.0% 0.0% B16..8: 23.2% 0.0% 0.0% direct:
17.3% skip:59.1%
x264 [info]: final ratefactor: 20.28
x264 [info]: direct mvs spatial:98.0% temporal:2.0%
x264 [info]: kb/s:1403.3
encoded 336 frames, 164.14 fps, 1403.72 kb/s
Honestly, all I want is the very last line that reports the fps for this pass; I'm not interested in the x264 [info] lines at all for this.
Thanks all!