View Single Post
Old 12th January 2019, 14:59   #1  |  Link
gugglu
Registered User
 
Join Date: Jul 2012
Location: Nottingham
Posts: 44
I can't get Vapoursynth Oyster to work

Hi folks,

i've recently installed a Python 3.6.6 and Vapoursynth-R44 installer on my laptop with win7-x64.

My .py script's are in this place C:\Users\Macintosh\AppData\Local\Programs\Python\Python36\Lib\site-packages

and my 64bit plugins are in C:\Program Files (x86)\VapourSynth\plugins64

but still demo's from Oyster README.md i cannot get to work.

script i m trying
Code:
import vapoursynth as vs
import havsfunc
import muvsfunc
import mvsfunc
import descale 
import hnwvsfunc
import Oyster
core = vs.get_core()

core.max_cache_size = 2000

clip = core.lsmas.LWLibavSource(source=r'C:\vapoursynth\video_cut\cut.mkv')

sup   = Oyster.Super(clip)
ref_f = Oyster.Basic(clip, sup, short_time=False)
ref_s = Oyster.Basic(clip, sup, short_time=True)
clip  = Oyster.Destaircase(clip, ref_f, block_step=2)
clip  = Oyster.Deringing(clip, ref_s, block_step=2)

clip.set_output()
here is an screen-shot of error
http://prntscr.com/m68rn9

i need guidance pls help. thanks

Last edited by gugglu; 12th January 2019 at 15:04. Reason: screenshot wasn't showing
gugglu is offline   Reply With Quote