vsViewer reveals problem with vapoursynth.so (I think) - 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: vsViewer reveals problem with vapoursynth.so (I think) (/thread-3553.html) |
vsViewer reveals problem with vapoursynth.so (I think) - drfear - 20.01.2024 Still on the trail of testing plugins but I have yet to get past first base ... I've installed vsViewer from github, but when I run it (standalone) it shows, as I would expect, just two lines of code import vapoursynth as vs 2024-01-20 15:59:02.574 >>> import vapoursynth as vs This seems like it might be related to a problem relating to passing pointers as integers reported as fixed a few years ago, https://github.com/vapoursynth/vapoursynth/issues/468 but I am completely baffled. Also, if it is actually a bug in the source code of vapoursynth, why doesn't everyone in the world have the same problem? I've tried compiling with both system and local Cython 3.0.8-1 - no difference. On the plus side, this would explain why absolutely none of my plugin testing has been successful so far :-) Any clues? RE: vsViewer reveals problem with vapoursynth.so (I think) - Selur - 20.01.2024 if you call: vspipe --version If not, your setup probably doesn't load the Vapoursynth libraries. (see: point 4 in https://github.com/Selur/hybrid-vapoursynth-addon/blob/master/README.md) Cu Selur RE: vsViewer reveals problem with vapoursynth.so (I think) - drfear - 20.01.2024 Oh I can't believe I be so dumb. Of course. I've been having a lot of trouble with setting $ LD_LIBRARY_PATH="/home/vsimon/opt/vapoursynth/lib" globally - it breaks tons of things, notably mpv (oddly, because as far as I can see, the libavcodec in vapoursynth and /usr/lib are the same). So I had added /usr/lib:..., partially masking vapoursynth. So yes that's a great help, thanks, at least now I get the environment set ok. However I still have a problem - no lsmas component: $ LD_LIBRARY_PATH="/home/vsimon/opt/vapoursynth/lib" python ... so I can't load any clips .-( Actually give me an hour before taking any time to respond. It occurs to me I might have had /usr/lib first in my path when I compiled ... I'll try a recompile well no, it wasn't that. I had re-run config.txt so I did everything by the book. I have >>> dir(core) RE: vsViewer reveals problem with vapoursynth.so (I think) - drfear - 20.01.2024 NOW SOLVED Initial problem was of course the LD_LIBRARY_PATH issue, second problem with core.lsmas solved when I brought in ALL the plugins (I had been trying to test them one by one, but I guess one of them being called libbestsource should have been a clue ...). RE: vsViewer reveals problem with vapoursynth.so (I think) - Selur - 20.01.2024 bestsource atm. is 'still in the extremely experimental phase' according to its author, so I would recommend to keep that in mind when using it. |