![]() |
|
Fedora Vapoursynth undefined symbol - 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: Fedora Vapoursynth undefined symbol (/thread-4225.html) Pages:
1
2
|
RE: Fedora Vapoursynth undefined symbol - superboo07 - 03.10.2025 From my work yesterday I've found that many (examples below) projects used as dependencies just to compile need to be patched to fix albiet minor but definitely compilation breaking issues.While I have been able to apply said patches dynamically using regex, enough of the decencies have needed it that its becoming quite unwieldy and in the long term I feel like compiling against known to compile versions of those projects would be significantly more reliable rather than whatevers latest. Needs patching (So far I've discovered, and some may only apply when compiling on a machine running fedora): xvid x265 sox and likely more I haven't gotten to yet RE: Fedora Vapoursynth undefined symbol - superboo07 - 07.10.2025 I switched to KDE Neon which is ubuntu and thus debian based. The actual official ubuntu vapoursynth install scripts work here without a hitch, but when opening the VS preview, I see this error. So far I've tried manually adding the vapoursynth library location to the vsedit library search setting thing, but I had no luck. VapourSynth plugins manager: Failed to load vapoursynth library!
Please set up the library search paths in settings.
Failed to initialize VapourSynth environment!
Failed to initialize VapourSynth environment!
Failed to initialize VapourSynth environment!
Failed to initialize VapourSynth environment!
Failed to initialize VapourSynth environment!
Failed to initialize VapourSynth environment!
Failed to evaluate the script.I ran build vapoursynth again and now the error is: No entry point found in /home/superboo07/opt/vapoursynth/vsplugins/libassrender.so
No entry point found in /home/superboo07/opt/vapoursynth/vsplugins/libassrender.so
Failed to load /home/superboo07/opt/vapoursynth/vsplugins/libimwri.so. Error given: /lib/x86_64-linux-gnu/libgobject-2.0.so.0: undefined symbol: g_dir_unref
Failed to load /home/superboo07/opt/vapoursynth/vsplugins/libimwri.so. Error given: /lib/x86_64-linux-gnu/libgobject-2.0.so.0: undefined symbol: g_dir_unrefweird oh I figured out how to fix this, I launched hybrid with the below command. LD_PRELOAD=/lib/x86_64-linux-gnu/libglib-2.0.so.0 hybridTraceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 3378, in vapoursynth._vpy_evaluate
File "src/cython/vapoursynth.pyx", line 3379, in vapoursynth._vpy_evaluate
File "/tmp/tempPreviewVapoursynthFile17_43_15_063.vpy", line 11, in
core.std.LoadPlugin(path="/home/superboo07/opt/vapoursynth/vsplugins/libvslsmashsource.so")
File "src/cython/vapoursynth.pyx", line 3114, in vapoursynth.Function.__call__
vapoursynth.Error: Plugin /home/superboo07/opt/vapoursynth/vsplugins/libvslsmashsource.so already loaded (systems.innocent.lsmas) from /home/superboo07/opt/vapoursynth/vsplugins/libvslsmashsource.soRE: Fedora Vapoursynth undefined symbol - superboo07 - 08.10.2025 build-plugins doesn't put akarin where it searches for akarin. it searched for akarin in /opt/vapoursynth/vsplugins/Support/libakarin.so, but its placed in /opt/vapoursynth/vsplugins/libakarin.so if I fix all of these issues and try to switch it to the preview window, the vapoursynth editor crashes while hybrid stays open heres my full debug output when I try to export videos RE: Fedora Vapoursynth undefined symbol - Selur - 08.10.2025
RE: Fedora Vapoursynth undefined symbol - superboo07 - 08.10.2025 Yep, I installed vapoursynth through the scripts. I also already did step 4, I apologize about the config issue, I had used the one I used on my fedora install since my vapoursynth path remained the same. Having fixed that everything appears to work now. Thank you! RE: Fedora Vapoursynth undefined symbol - Selur - 08.10.2025 Happy that worked out.
|