Log in

View Full Version : x264 logfile


ovi_ili
25th July 2008, 15:18
Does anybody know if x264 can write a log file at the end of the compression and show the SSIM and PSNR for each frame encoded? I know there is the option --stats <string> but this options is for the 2 pass and i am doing one-pass average bitrate.
I would like to have a log file at the end with the statistics of the encoded process.
Thank you

Dark Shikari
25th July 2008, 15:28
x264 -v 2> file.txt

ovi_ili
25th July 2008, 15:47
x264 -v 2> file.txt


Sorry i don't understand.
Where do i specify the location to save the file.txt?
I have tried the command line :
x264 --bitrate 2000 ..... -v E:\Nouveau dossier\file.txt
and there is nothing in the Nouveau dossier
I have tried also
x264 --bitrate 2000 ..... -v "E:\Nouveau dossier\file.txt"
and also i have nothing at the end of compression. It prints on the screen though the encoding stats.

LoRd_MuldeR
25th July 2008, 15:57
x264 --bitrate 2000 --output "C:\Output.mp4" -v "C:\Source.avs" 2> "E:\Nouveau dossier\file.txt"

Corrected :p

Dark Shikari
25th July 2008, 15:58
x264 --bitrate 2000 ..... -v2 > "E:\Nouveau dossier\file.txt"

No, -v 2>

The 2> is to save stderr instead of stdout.