Topic: Using SVPFlow on Linux
Hi,
After days of trying to get rid of the 'unable to find mps pid' problem ( https://www.svp-team.com/forum/viewtopic.php?id=4277 )
I figured I'd try using the SVPFlow plugins, https://www.svp-team.com/wiki/Manual:SVPflow .
Here's my script, basically stolen from here: https://www.svp-team.com/forum/viewtopi … 67&p=2
import vapoursynth as vs
core = vs.get_core(threads=5)
clip = video_in
clip = clip.resize.Bicubic(format=vs.YUV420P8)
super_params="{gpu:1}"
analyse_params="{}"
smoothfps_params="{rate:{num:5,den:2}}"
super = core.svp1.Super(clip,super_params)
vectors= core.svp1.Analyse(super["clip"],super["data"],clip,analyse_params)
smooth = core.svp2.SmoothFps(clip,super["clip"],super["data"],vectors["clip"],vectors["data"],smoothfps_params, fps=container_fps)
smooth = core.std.AssumeFPS(smooth,fpsnum=smooth.fps_num,fpsden=smooth.fps_den)
smooth.set_output()
and heres the error:
[vapoursynth] Script evaluation failed:
[vapoursynth] Python exception: SVSuper: invalid 'params' syntax: * Line 1, Column 2
[vapoursynth] Missing '}' or object member name
[vapoursynth]
[vapoursynth]
[vapoursynth] Traceback (most recent call last):
[vapoursynth] File "src/cython/vapoursynth.pyx", line 1830, in vapoursynth.vpy_evaluateScript
[vapoursynth] File "/home/bobby/.config/mpv/svpflow.py", line 11, in <module>
[vapoursynth] super = core.svp1.Super(clip,super_params)
[vapoursynth] File "src/cython/vapoursynth.pyx", line 1722, in vapoursynth.Function.__call__
[vapoursynth] vapoursynth.Error: SVSuper: invalid 'params' syntax: * Line 1, Column 2
[vapoursynth] Missing '}' or object member name
[vapoursynth]
[vapoursynth]
Any pointers, even RTFM ones (preferrably w/ a link to some actually relevant manual)
are *highly* welcome, I've spent too many days on this now, anything.