jay123210599
16th May 2025, 03:14
This is my script so far:
from vapoursynth import core
clip1 = core.lsmas.LWLibavSource(r"C:\Users\User\Downloads\Input.mkv")
clip1 = core.vivtc.VFM(clip1, 1)
clip1 = core.vivtc.VDecimate(clip1)
clip1.set_output()
Now I want the output to include the audio from my video. How do I do that?
from vapoursynth import core
clip1 = core.lsmas.LWLibavSource(r"C:\Users\User\Downloads\Input.mkv")
clip1 = core.vivtc.VFM(clip1, 1)
clip1 = core.vivtc.VDecimate(clip1)
clip1.set_output()
Now I want the output to include the audio from my video. How do I do that?