Would be nice if:
a. the build-vapoursynth-ubuntu.sh will also create an executable 'vspipe_withenv.sh' next to vspipe with the following content:
b. if build-vapoursynth-ubuntu.sh instead of installing vapoursynth to '$HOME/vapoursynth' would install to '$HOME/vapoursynth/bin' by default.
c. the 'deploy.sh' script would also create a 'vsViewer_withenv.sh' next to vsViewer with the following content:
Okay, so the general calling of vsViewer seems to work, problem now is the compilation&deployment of the Vapoursynth filters.
Do you have a build script for the filters?
Cu Selur
Ps.: uploaded a package to https://selur.net/dev/linux/Hybrid_20190714.7z (includes vsViewer_withenv.sh and has an adjusted Hybrid which looks for vsViewer_withenv.sh next to the vsViewer binary and for vspipe_withenv.sh next to vspipe, both try to source ~/bin/vapoursynth/env.sh)
a. the build-vapoursynth-ubuntu.sh will also create an executable 'vspipe_withenv.sh' next to vspipe with the following content:
#!/bin/bash
scriptDir=$(dirname -- "$(readlink -f -- "$BASH_SOURCE")")
source "$scriptDir/../env.sh"
vsPipe="$scriptDir/vspipe"
exec -l "$vsPipe" "$@"
b. if build-vapoursynth-ubuntu.sh instead of installing vapoursynth to '$HOME/vapoursynth' would install to '$HOME/vapoursynth/bin' by default.
c. the 'deploy.sh' script would also create a 'vsViewer_withenv.sh' next to vsViewer with the following content:
#!/bin/bash
scriptDir=$(dirname -- "$(readlink -f -- "$BASH_SOURCE")")
env="$HOME/bin/vapoursynth/env.sh"
if [ -f "$env" ]
then
echo "sourcing $env"
source "$env"
else
echo "'$env' does not exist!"
fi
vsViewer="$scriptDir/vsViewer"
exec -l "$vsViewer" "$@"
Okay, so the general calling of vsViewer seems to work, problem now is the compilation&deployment of the Vapoursynth filters.
Do you have a build script for the filters?
Cu Selur
Ps.: uploaded a package to https://selur.net/dev/linux/Hybrid_20190714.7z (includes vsViewer_withenv.sh and has an adjusted Hybrid which looks for vsViewer_withenv.sh next to the vsViewer binary and for vspipe_withenv.sh next to vspipe, both try to source ~/bin/vapoursynth/env.sh)
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.