lol, adjusted the git accordingly.
just called the build-plugins script and vslsmashsource compiled, nice!
Now there's only, mvtoolssf, nnedi3cl and eedi3m which fail atm.
Cu Selur
Ps.: I'm happy that someone shows some interest in this. Thanks!

Hi,
Could you tell me me more about the bug(s) into the plugins mvtoolssf, nnedi3cl and eedi3m ?
Eventually, it's possible I may help you; I have a little bit more time these days with the teleworking.
For me, no problem to compile, and no crash in running (maybe special parameters ?) for
nnedi3cl : interlacer, Yadifmod, force & 100%, parameters 0/0/NNEDI3CL/0. The result seems
fine on an interlacer video sample.
For eedi3m, I suppose it's VapourSynth, Line, AntiAliasing, Nedi3AA (not sure ?), OpenCL,
device 0 or -1 ? No problem with this, but I can't see any effect on my video.
I have not tested mvtoolssf.
Alain
--
Haven't really looked at it myself and basically on my way to bed atm. but I attached the logs of the tools that failed.
May be you see the problem.
Cu Selur
Good news:
I reset my build system and now only 'mvtoolssf' fails.
Cu Selur
Okay, build fails due to the switch to meson, but I have no clue how to get it working again.
My guess is it should be something along the lines of
Code:
ghdl IFeelBloated/vapoursynth-mvtools-sf
CFLAGS="$CFLAGS -Wno-deprecated-declarations" meson build --prefix="$vsprefix"
ninja -C build -j $JOBS
but I don't know how to extend this properly to make it working like it. :/
Cu Selur
Hi,
I confirm all plugins compile without any problem with 20.04 LTS and 18.04 LTS, fresh install, except
waifu2x, which needs CUDA.
It's possible meson, and it's Python3 dependencies, is installed more than one time on your machine ?
Same for ninja, which exists in a very old version in /usr/bin ?
It's possible PYTHONPATH is not correct. You use pip3 install -q --upgrade --user,
so PYTHONPATH may include
$HOME/.local/lib/python3.8/site-packages
(I'm not really sure).
I will see mvtoolssf problem.
Al1
--
You might be right with the python&Co paths on my old build system, but seems to be working on the new one.
Quote:I will see mvtoolssf problem.
I keep my fingers crossed.
Cu Selur
Hi,
I have some errors now.
1. The script build-vapoursynth.sh seems broken at the end.
Code:
export PYTHONUSERBASE="$PWD/temp"
pip3 install -q --user cython
./temp/bin/cython --3str src/cython/vapoursynth.pyx
pip3 uninstall -y -q cython
Normal: my distrib 20.04LTS has a global python3 package Cython, or I have installed previously
for all users in the site-package /usr/lib/python3.
Code:
pip3 install --user cython
Requirement already satisfied: cython in /usr/lib/python3/dist-packages (0.29.14)
./temp/bin/cython
./temp/bin/cython: Command not found.
Maybe use
Code:
export PYTHONUSERBASE="$PWD/temp"
pip3 install -q -I --user cython
./temp/bin/cython --3str src/cython/vapoursynth.pyx
pip3 uninstall -y -q cython
2. build-plugins/header.sh has lost 2 functions, mkghc () and ghc().
The original build-plugins/plugin-mvtoolssf.sh is
Code:
mkghc IFeelBloated/vapoursynth-mvtools-sf libmvtoolssf 5dfa8756092daa7dcc635eef799c6964bd40c259
3. So, I have tried your 3 lines
Code:
ghdl IFeelBloated/vapoursynth-mvtools-sf
CFLAGS="$CFLAGS -Wno-deprecated-declarations" meson build --prefix="$vsprefix"
ninja -C build -j $JOBS
and I have this time the same error than you:
Code:
Run-time dependency vsfilterscript found: NO (tried pkgconfig and cmake)
meson.build:15:0: ERROR: Dependency "vsfilterscript" not found, tried pkgconfig and cmake
Your old code
Code:
mkghc IFeelBloated/vapoursynth-mvtools-sf libmvtoolssf 5dfa8756092daa7dcc635eef799c6964bd40c259
works perfectly with the old commit 5dfa...
So, I'm too tired (1:40 AM here in France) and I'm sleeping, but I have a (very simple) theory.
If the package
IFeelBloated /
vapoursynth-mvtools-sf
https://github.com/IFeelBloated/vapoursynth-mvtools-sf
needs now the package
IFeelBloated /
vsFilterScript
https://github.com/IFeelBloated/vsFilterScript
?
This last package seems not to be in your scripts; it explains the new meson dependency in mstools-sf...
All the best & good night,
Alain
--
Quote:This last package seems not to be in your scripts; it explains the new meson dependency in mstools-sf...
Wasn't a dependency before.
-> Adjusted the script and now mvtools-sf is working again.
(committed the current working version)
Thanks a lot!
Cu Selur