View Single Post
Old 27th November 2019, 17:09   #46  |  Link
karesch
Registered User
 
karesch's Avatar
 
Join Date: Apr 2011
Location: Hungary
Posts: 8
Installing on Catalina

Hi Folks,

I'm an experienced AviSynth user and now I've tried to install VapourSynth on Catalina using brew. Used the method recommended by l33tmeatwad (creating autoload folders, Gatekeeper disabled). Installed ffms2 using brew, as brew recommended during VapourSynth install. Installed a few plugins in the autoload folder.

But, when I try to start the most basic scripts in VapourSynth Editor:
Code:
from vapoursynth import core
video = core.ffms2.Source(source='/Users/karesch/Movies/gabor.vob')
video = core.std.Transpose(video)
video.set_output()
nothing happens, the log window shows:
Code:
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 1946, in vapoursynth.vpy_evaluateScript
File "src/cython/vapoursynth.pyx", line 1947, in vapoursynth.vpy_evaluateScript
File "", line 2, in 
File "src/cython/vapoursynth.pyx", line 1679, in vapoursynth._CoreProxy.__getattr__
File "src/cython/vapoursynth.pyx", line 1539, in vapoursynth.Core.__getattr__
AttributeError: No attribute with the name ffms2 exists. Did you mistype a plugin namespace?
I thought that somehow the vapoursynth PluginDirs are not set correctly, but they seem to be fine, and the
Code:
/usr/local/lib/vapoursynth
includes:
Code:
ffmsindex			libfft3dfilter.dylib
finesharp.py			libfftw3f.3.dylib
havsfunc.py			libfftw3f_threads.3.dylib
libavcodec.58.dylib		libmiscfilters.dylib
libavformat.58.dylib		libmorpho.dylib
libavresample.4.dylib		libmvtools.dylib
libavutil.56.dylib		libnnedi3.dylib
libd2vsource.dylib		libremovegrain.dylib
libdeblock.dylib		libswscale.5.dylib
libdepan.dylib			libvinverse.dylib
libeedi3.dylib			libvivtc.dylib
libffms2.4.dylib		nnedi3_weights.bin
libffms2.dylib
Does anybody know, what am I doing wrong? Are there further links to be set up?

Thanks a lot for help.

update:
found a solution, now it works


Apparently The issue was that a few dylib files were not set executable by brew.

Last edited by karesch; 27th November 2019 at 18:13.
karesch is offline   Reply With Quote