This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

video crashed: ERROR
#1
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.


Attached Files
.rar   HybridDebugOutput.rar (Size: 11,25 KB / Downloads: 4)
Reply
#2
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.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#3
[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.


Attached Files
.rar   HybridDebugOutput.rar (Size: 11,22 KB / Downloads: 4)
Reply
#4
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#5
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
Reply
#6
Okay, so nothing I can do.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#7
Thanks anyway
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)