I could but it makes the x265.exe progress bar to display a new line for each few frames. I don't know how to keep the progress bar on the same line and export the log at the same time.
If you still want it, you can modify line 17370
Code: Select all
"%x265_path%" %settings% %static_metadata% %P8RPU% --input "%TEMP%script.avs" --output "%output_path%%filename%%encodetype%.hevc" & echo off & set HDR="%output_path%%filename%%encodetype%.hevc"& goto :MUXERCode: Select all
"%x265_path%" %settings% %static_metadata% %P8RPU% --input "%TEMP%script.avs" --output "%output_path%%filename%%encodetype%.hevc" 2>&1 | PowerShell -Command "$input | Tee-Object -FilePath \"%output_path%%filename%_encode_log.txt\""
@echo off
set HDR="%output_path%%filename%%encodetype%.hevc"& goto :MUXEREDIT:
added an option to export x265 encoding logs at line 167 (off by default)
https://drive.google.com/file/d/128gq8a ... drive_link