Vine
Vine copied to clipboard
Supported VapourSynth versions
Do you know if the latest version of Vapoursynth is supported using this script. I am having trouble with running Vine, Oyster, and Plum. Trying to get the info using vspipe doesn't give me a result.
Vsedit crashes on preview of the script and vspipe with ffmpeg gives back an error pipe:: Invalid data found when processing input
suggesting that maybe the script is broken on the latest version of Vapoursynth. VS was recently upgraded to python 3.7 as well so maybe that is causing the problem.
This is the script I'm trying to use
import vapoursynth as vs
import havsfunc as haf
import fvsfunc as fvf
import mvsfunc as mvf
import Vine
core = vs.get_core()
core.max_cache_size = 8192
clip=core.ffms2.Source(r"VTS_03_1.VOB")
clip = core.std.Trim(clip,28261,30007)
clip = fvf.Depth(clip, 32)
ref = Vine.Basic(clip, h=27.72)
clip = Vine.Final([clip, ref], [Vine.Super(clip), Vine.Super(ref)], [6, 0, 0], sigma=1.5, alpha=0.06)
final = fvf.Depth(clip, 8)
out.set_output()