Log in

View Full Version : About Plugins


jay123210599
29th August 2024, 02:14
I tried installing a vsrepo plugin like in this video, but I got "'vsrepo' is not recognized as an internal or external command, operable program or batch file." How do I fix the problem? Also, I download a plugin for it, now where do I put it at on my Windows computer?
https://www.youtube.com/watch?v=eqSyXiyXyxk

_Al_
29th August 2024, 05:54
vsrepo is not installed or in PATH, so without vsrepo:

put dll's into: C:\Users\...\AppData\Roaming\VapourSynth\plugins64 (I think vsrepo puts it there)
or you can also put dll's into: C:\Program Files\VapourSynth\plugins
installed vapoursynth looks into those directories for plugin (not sure what is priority, if dll is already loaded , it is ignored)

or you can use portable vapoursynth and put dll's into that directory vapoursynth64\plugins , but you have to load dll's manually in vpy script, like:
core.std.LoadPlugin(r"D:\my_vapoursynth_portable_directory\vapoursynth64\vslsmashsource.dll")
careful, if you are using portable setup and you have vapoursynth also installed, vapoursynth will load plugins from above and silently passes those loading manually
or using portable setup, if directory is named \vs-plugins , as manual says, it might load automatically

or look into vapoursynth manual, how to work with plugins: https://vapoursynth.com/doc/installation.html#plugins-and-scripts , paths might be a bit different in latest vapoursynth versions or web site is not updated, you figure it out for what directories you have ...