View Single Post
Old 3rd August 2020, 20:01   #9  |  Link
DJATOM
Registered User
 
DJATOM's Avatar
 
Join Date: Sep 2010
Location: Ukraine, Bohuslav
Posts: 377
Not really. But you can use avsw.Eval inside vapoursynth to process something by avs script (declaring inputs from vapoursynth that can be used inside avisynth block of code) and then output result into vapoursynth.
clip = core.your.Source(file)
avs_script_part = """
clip
your avs code here
"""
clip2 = core.avsw.Eval(avs_script_part, clips=[clip], clip_names=["clip"])
clip2.set_output()
__________________
Me on GitHub
PC Specs: Ryzen 5950X, 64 GB RAM, RTX 2070
DJATOM is offline   Reply With Quote