Selur's Little Message Board
video crashed: ERROR - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: video crashed: ERROR (/thread-4346.html)



video crashed: ERROR - murriato - 13.03.2026

Hi Selur, good afternoon. I'm getting this error. Can you help me? I've attached information about all the files.

Hybrid_dev_2026.02.14-174628

.avs file
MKV="C:\Users\cebol\Desktop\ENCODES\HYBRID\Lilo y Stitch (2002) FEL.mkv"


BL=FFVideoSource(MKV).z_ConvertFormat(bit_depth=16).libplacebo_Tonemap(src_csp=3, dst_csp=1).z_ConvertFormat(pixel_type="YUV420P16", chromaloc_op="top_left=>top_left", resample_filter="spline36")
EL=FFVideoSource(MKV.ReplaceStr(".mkv", "_EL.mkv"))

MapNLQ(BL, EL)
z_ConvertFormat(pixel_type="YUV420P10", dither_type="error_diffusion")
Prefetch(2)

z_Spline36Resize(dither="error_diffusion", 1920, 1142, 102, 0, -0, -102)

Lilo y Stitch (2002) FEL 1080 1_2026-03-13@15_15_39_1710_Report

x265 (1 pass bitrate) x265 processing started
starting 2026-03-13@15_15_39_1710_02_video@15:15:39.337 - C:\Users\cebol\Desktop\ENCODES\HYBRID\Lilo y Stitch (2002) FEL 1080 1.mkv
"C:\Program Files\Hybrid\64bit\x265.exe" --preset slow --input - --fps 24000/1001 --output-depth 10 --y4m --profile main10 --level-idc 5.1 --qg-size 16 --tu-intra-depth 4 --tu-inter-depth 4 --limit-tu 4 --subme 7 --no-rect --max-merge 4 --rskip 0 --no-open-gop --opt-ref-list-length-pps --min-keyint 23 --bframes 16 --weightb --rc-lookahead 60 --lookahead-slices 0 --crf 15.00 --opt-qp-pps --cbqpoffs -2 --crqpoffs -2 --ipratio 1.30 --pbratio 1.20 --limit-refs 1 --psy-rd 2.01 --psy-rdoq 2.01 --aq-mode 3 --no-cutree --vbv-maxrate 160000 --vbv-bufsize 160000 --hrd --vui-hrd-info --deblock=-3:-3 --no-sao --selective-sao 0 --no-mcstf --range limited --colorprim bt2020 --transfer smpte2084 --colormatrix bt2020nc --chromaloc 2 --master-display "G(8500,39850)B(6550,2300)R(35400,14600)WP(15635,16450)L(10000000,1)" --max-cll 996,223 --hdr10 --hdr10-opt --sar 1:1 --output "C:\Users\cebol\Desktop\ENCODES\HYBRID\2026-03-13@15_15_39_1710_02.265"
x265 [error]: unable to open input file <->
2026-03-13@15_15_39_1710_02_video finished after 00:00:00.917
finished...

C:\Users\cebol\Desktop\ENCODES\HYBRID\2026-03-13@15_15_39_1710_02.265 was not created!



Thanks and regards.


RE: video crashed: ERROR - Selur - 13.03.2026

Problem is probably the Avisynth script.
Hybrid uses a portable Avisynth, so you need to make sure that you explicitly load all your Avisynth filters.
=> check the Avisynth preview, if that fails you are missing stuff

ClearAutoloadDirs()
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
Import("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\mtmodes.avsi")
# loading source: C:\Users\cebol\Desktop\ENCODES\HYBRID\DV lilo.avs
# color sampling YV12@10, matrix: bt709, scantyp: progressive, luminance scale: limited
Import("C:\Users\cebol\Desktop\ENCODES\HYBRID\DV lilo.avs") # <- THIS LOADS YOUR SCRIPT AND WILL FAIL due to dependencies.
# current resolution: 1920x1142
# adjusting frame count using SelectRangeEvery
SelectRangeEvery(every=8000,length=400,offset=0)
# setting output fps to 23.97600fps
AssumeFPS(24000,1001)
PreFetch(16)
No clue whether the SelectRangeEvery makes sense for you,,...


Cu Selur

Ps.: Personally I would use: https://github.com/quietvoid/vs-nlq and Vapoursynth instead of Avisynth.


RE: video crashed: ERROR - murriato - 13.03.2026

[Image: ME1BA9FU_t.png]
Hi Selur, avspmod isn't giving me any errors.
I copied the plugins to the directory where your program's plugins are located, but I'm still getting errors. I haven't included `SelectRangeEvery`.

Thanks and regards.


RE: video crashed: ERROR - Selur - 13.03.2026

1. With "check the Avisynth preview, "
I was referring to the "Avisynth Preview" in Hybrid, not some other Avisynth preview like avsmod.

2. Okay, I try to explain it again.

You got at least two Avisynth environments:
a. the one avsmod uses, which is probably a system-wide install.
b. the one Hybrid uses, which is a portable version.
You can not mix different Avisynth environments.

When you feed an Avisynth script to Hybrid, Hybrid can only use its own Avisynth environment.
So every filter you use must be available in the environment you use.
Since Hybrid uses a portable Avisynth environment, the filters must be called explicitly.
Ideally your script should have an explicit return value.

Quote:I copied the plugins to the directory where your program's plugins are located, but I'm still getting errors.
Copying those filters was not necessary and didn't change anything. Read 2. to understand what is happening.

Quote:I haven't included `SelectRangeEvery`.
Some setting you used caused Hybrid to add it,...

Cu Selur


RE: video crashed: ERROR - murriato - 14.03.2026

Thanks Selur for your reply. I've noticed I'm experiencing the same issue as described in this thread.

[/url][url=https://forum.selur.net/thread-3815.html?highlight=murriato]Error de codificación x265.

Confused Confused


RE: video crashed: ERROR - Selur - 14.03.2026

Okay, so nothing I can do.

Cu Selur