Posts: 8
Threads: 1
Joined: May 2025
Okey i did a fresh install of Arch. Now the AUR version works but without vapoursynth (it doesn't let me choose any synth). The binary version with the tools from your website looks like it works (i haven't tried the m2ts file yet but the programs boots and vapoursynth seems available). The binary version without tools doesn't launch (same errors as before). Both versions downloaded from the websites throw the same errors in the output but one manages to launch while the other crashes.
Regarding the AUR version, I had vapoursynth already installed because it's a dependency of both mpv and ffmpeg. The version is R70-2 (it's flagged as outdated). Can i provide something to better understand why vapoursynth is not detected by Hybrid ?
Posts: 11.399
Threads: 63
Joined: May 2017
Quote:Can i provide something to better understand why vapoursynth is not detected by Hybrid ?
If you start Hybrid through the command line, it should report where it tries to find Vapoursynth (vsViewer and other tools too).
If your Vapoursynth or the Vapoursynth scripts Hybrid uses (see:
https://github.com/Selur/VapoursynthScriptsInHybrid/) are not hinted through a misc.ini and can't be detected Vapoursynth will not be supported. ( see:
[INFO] *hidden* Hybrid options,...)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 8
Threads: 1
Joined: May 2025
It wasn't detecting the script folder, now it successfully enable vapoursynth but the app can't launch
I surrender, thank you very much for your help. I will try again in the future
i'm kidding i will just try to use the full-version from the website ahaaha.
When trying the vspreview you talked about at the beginning i get this
2025-05-15 17:29:00.104
Failed to load /usr/lib/vapoursynth/libvslsmashsource.so. Error given: /usr/lib/libgobject-2.0.so.0: undefined symbol: g_pointer_bit_unlock_and_set
Failed to load /usr/lib/vapoursynth/libvslsmashsource.so. Error given: /usr/lib/libgobject-2.0.so.0: undefined symbol: g_pointer_bit_unlock_and_set
2025-05-15 17:29:00.105
Failed to evaluate the script:
Python exception: No attribute with the name lsmas exists. Did you mistype a plugin namespace or forget to install a plugin?
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 3387, in vapoursynth._vpy_evaluate
File "src/cython/vapoursynth.pyx", line 3388, in vapoursynth._vpy_evaluate
File "/tmp/tempPreviewVapoursynthFile17_28_59_962.vpy", line 16, in
clip = core.lsmas.LWLibavSource(source="/home/fabio/Videos/00003.m2ts", format="YUV420P8", stream_index=0, cache=0, prefer_hw=0)
^^^^^^^^^^
File "src/cython/vapoursynth.pyx", line 2895, in vapoursynth._CoreProxy.__getattr__
File "src/cython/vapoursynth.pyx", line 2701, in vapoursynth.Core.__getattr__
AttributeError: No attribute with the name lsmas exists. Did you mistype a plugin namespace or forget to install a plugin?
Do you have any idea what it can be?
Posts: 8
Threads: 1
Joined: May 2025
Is it possible that the reason is it can't find this Lsmas (or lsmash?). Any way i can set this plugin path?
Posts: 11.399
Threads: 63
Joined: May 2017
11 hours ago
(This post was last modified: 11 hours ago by Selur.)
Vapoursynth&plugins must be provided by the user.
I wrote scripts to build them, see:
https://github.com/Selur/hybrid-vapoursynth-addon (always happy when someone offers patches or help with the scripts).
According to
Failed to load /usr/lib/vapoursynth/libvslsmashsource.so. Error given: /usr/lib/libgobject-2.0.so.0: undefined symbol: g_pointer_bit_unlock_and_set
Hybrid does find libvslsmashsource.so but can't use it since libgobject is missing.
try whether:
sudo apt-get install libglib2.0-dev
or
sudo apt-get install libglib2.0-0
helps.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.