View Single Post
Old 9th July 2020, 08:35   #5  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Simple example
Code:
import vapoursynth as vs

import mvsfunc as mvf

core = vs.core
#core.max_cache_size = 8000  # uncomment this and give VS as much ram as possible, 8000 = 8gb

clip = core.lsmas.LWLibavSource(source=r"E:\folder\xyz.mp4")

clip = mvf.BM3D(clip, sigma=5.0, profile1="fast", radius1=1) # radius > 1 => temporal denoising (V-BM3D (spatial-temporal denoising)
clip.set_output()
If you want the portable fatpack to work with vdub, run enable_vfw_support.bat
(If you move or rename the folder it won't work anymore, then you you'd need to re-run the bat file)

https://github.com/HomeOfVapourSynth...vsfunc.py#L700
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote