Selur's Little Message Board

Full Version: How to change directory location of installed "hybrid-vapoursynth-addon"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The installation instructions call for installing to "opt" directory within the user's home directory.
I instead wanted to install to ".opt", so I replaced all instances of "opt" with ".opt" during the installation process.
However The Hybrid application was not able to detect this location for the vapoursynth plugin.
So post-install I went and changed the directory name from ".opt" to "opt", as well as the paths entries in .bashrc and .profile
After doing this, the Hybrid application was then able to detect the vapoursynth plugin and create a vapoursynth dropdown menu under filters tab.

I still want to have the install location be somewhere else other than "opt".
My question is: where else do I need to change the directory name to ".opt" within all the various lines of code?
Here are the only places I currently know to change it.
- The directory name itself
- Paths lines in .bashrc and .profile
- The "SystemPluginDir=" line in vapoursynth.conf located in /home/username/.config/vapoursynth

So far I've tried a step involving the creation of a misc.ini file with suggested lines added to it, but that did not work.

I am wondering, is hidden folder syntax not possible? --> .opt instead of opt
Or... is the installation script generating lines pointing to "opt" directory regardless if the user installed to that path or not?
I'll adjust Hybrid to also look for '.opt' (in the next public release), but that will only make Hybrid detect the Vapoursynth installation.
with:
Code:
[General]
vapoursynth=true
vsPluginsPath="absolute path to plugins folder"
vsScriptPath="absolute path to scripts folder"
in the misc.ini (see: https://forum.selur.net/thread-10.html) you can tell Hybrid to a. enable Vapoursynth b. where to find the plugins c. where to find the scripts.
If the plugins are not in the autoload folder of Vapoursynth, you can also add 'vsLoadLibrariesOnNonWindows=true' to let Hybrid explicitly know that it explicitly needs to load each library.

For Vapoursynth itself, look at: https://www.vapoursynth.com/doc/installation.html#linux

Cu Selur