Posts: 18
Threads: 7
Joined: Jun 2017
23.06.2024, 11:54
Hi
The x265 encoder crashes when an added job is started when I try to encode .avi file. This might be related to codec used in source .avi file (ZMBV - DOSBox video capture file).
This worked before without issues. I've added some other files to test if x265 crashes, there were no problems. I'm sending debug file via PM and source file link below:
https://we.tl/t-9xsmYiv6R6
Hybrid version: 2024.06.15.1 (Linux MX 64-bit - Debian based OS)
Thanks!
Posts: 10.548
Threads: 57
Joined: May 2017
Hmm,... seems like neither FFVideoSource nor LWLibavSource can decode this, but ffplay can.
(AviSource isn't available on Linux)
Using:
ffmpeg -y -loglevel fatal -noautorotate -nostdin -threads 8 -i "C:\Users\Selur\Desktop\wwf4_1201.avi" -map 0:0 -an -sn -color_primaries bt470bg -color_trc smpte170m -colorspace bt470bg -color_range tv ,format=gbrap -pix_fmt yuv420p10le -strict -1 -vsync 0 -f yuv4mpegpipe - | x265 --input - --fps 35043/500 --output-depth 10 --y4m --profile main10 --ctu 32 --limit-modes --no-early-skip --no-open-gop --opt-ref-list-length-pps --crf 18.00 --opt-qp-pps --cbqpoffs -2 --crqpoffs -2 --limit-refs 0 --ssim-rd --psy-rd 2.50 --rdoq-level 2 --psy-rdoq 10.00 --aq-mode 0 --deblock=-1:-1 --limit-sao --no-repeat-headers --no-mcstf --range limited --colormatrix bt470bg --sar 1:1 --output "J:\tmp\2024-06-23@12_01_22_6310_01.265"
fails with: since there is a bug in the ffmpeg call.
-color_range tv ,format=gbrap
probably should be:
-color_range tv -vf scale,format=gbrap
=> I'm looking into it.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 10.548
Threads: 57
Joined: May 2017
Are you using the 'binary only' or the 'binary with tools' download of Hybrid ? (so I know what sort of dev version I need to compile, once I figured it out)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 18
Threads: 7
Joined: Jun 2017
I don't know if you keep old e-mials but I've reported very similar issue via e-mail. It's the same e-mail I've send a debug file from, if you don't have it I can forward it if that's helpful.
I'm using binary with tools. PS: the download link on selur.de to this version in broken, I've downloaded it from VideoHelp
Posts: 10.548
Threads: 57
Joined: May 2017
Found the problem.
Will send you a link via pm once I compiled and packaged a dev version for testing. (~20min)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 10.548
Threads: 57
Joined: May 2017
Send you a link, let me know whether that fixes the problem for you too.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 18
Threads: 7
Joined: Jun 2017
Works like a charm
Thanks for premium support
Posts: 10.548
Threads: 57
Joined: May 2017
23.06.2024, 13:21
(This post was last modified: 23.06.2024, 13:22 by Selur.)
In case you use Vapoursynth, I would another problem in the analysis of Zip format.
(source is wrongly assumed to be YUV444P8)
You can work around it by creating a custom section and enter:
(this lets Hybrid know that the format is RGB24)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.