Hi all. T0taln00b here and I wanted to see if I can get some super basic assistance with installing the f3kdb plugin from https://github.com/SAPikachu/flash3kyuu_deband and the Hysteria script from https://github.com/Irrational-Encoding-Wizardry/vapoursynth-Hysteria.
I extacted the f3kdb plugin into the C:\Program Files\VapourSynth\plugins
and extracted the Hysteria script into C:\Program Files\Python39\Lib\site-packages
Is this correct and is there a way for me to test if I did a proper install? I really am enjoying learning about Vapoursynth and I just need a little shove to get started with really learning the program. I thank you all for any assistance that you can give me!
+ Reply to Thread
Results 1 to 2 of 2
-
-
According to the documntation, Vapoursynths:
.. searched paths are:[list][*]<AppData>\VapourSynth\plugins32 or <AppData>\VapourSynth\plugins64[*]<VapourSynth path>\core32\plugins or <VapourSynth path>\core64\plugins[*]<VapourSynth path>\plugins32 or <VapourSynth path>\plugins64
Scripts should be in the 'vapoursynth64\Lib\site-packages' folder, but using 'Python39\Lib\site-packages' should work too it just imports those scripts to all python code on your system not just Vapoursynth.
That said, since I personally only use portable Vapoursynth&Python here's an example on how to manually load scripts and plugins:
Code:# Imports import os import sys import vapoursynth as vs core = vs.get_core() # Import scripts folder scriptPath = 'I:/Hybrid/64bit/vsscripts' sys.path.append(os.path.abspath(scriptPath)) # Loading Plugins core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/libvs_placebo.dll") core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/fmtconv.dll") core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/DebandFilter/Flash3kDeband/flash3kyuu_deband.dll") core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/SourceFilter/FFMS2/ffms2.dll") # Import scripts import hysteria # source: 'G:\TestClips&Co\test.avi' # current color space: YUV420P8, bit depth: 8, resolution: 640x352, fps: 25, color matrix: 470bg, yuv luminance scale: limited, scanorder: progressive # Loading source using FFMS2 clip = core.ffms2.Source(source="G:/TestClips&Co/test.avi",cachefile="E:/Temp/avi_9dec25d3f707eb4813d42334c7f1a8d6_853323747.ffindex",format=vs.YUV420P8,alpha=False) # making sure input color matrix is set as 470bg clip = core.resize.Point(clip, matrix_in_s="470bg",range_s="limited") # making sure frame rate is set to 25 clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1) # Setting color range to TV (limited) range. clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1) # debanding using f3kdb clip = core.f3kdb.Deband(clip, keep_tv_range=True, output_depth=8) clip = hysteria.Hysteria(clip=clip) # adjusting color space from YUV420P8 to YUV444P16 for VsGLSLResizer clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P16, range_s="limited") clip = core.placebo.Shader(clip=clip, shader="I:/Hybrid/64bit/vsfilters/ResizeFilter/GLSL/AiUpscale_HQ_Sharp_3x_Photo.glsl", width=1280, height=704) # adjusting output color from: YUV444P16 to YUV420P10 for x265Model (i420@8) clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10, range_s="limited") # set output frame rate to 25.000fps clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1) # Output clip.set_output()
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Useful FFmpeg Windows Batch Script
By Guanadon in forum Newbie / General discussionsReplies: 0Last Post: 22nd Sep 2020, 10:48 -
StaxRip 1.7.0.0 with Vapoursynth ?
By locky in forum Video ConversionReplies: 6Last Post: 24th Jan 2018, 18:08 -
why AVFS don't load AVS's script that contain 64bit plugin?
By marcorocchini in forum Newbie / General discussionsReplies: 1Last Post: 7th Aug 2017, 06:58 -
Installing and using older video software programs in Windows 10
By Frank-0-Video in forum ComputerReplies: 4Last Post: 23rd Apr 2017, 12:53 -
Quastion about the "Hysteria" filter
By zanzar in forum Newbie / General discussionsReplies: 3Last Post: 18th Apr 2017, 10:18