This enables video editing using the Nim programming language by means of using VapourSynth.
For more information visit the web page or go straight to the documentation.
Everything is work in progress
New API implications: audio?
To support the following:
import vapoursynth as vs
audio = vs.core.bas.Source("somefile.mp3", track=-1)
video = vs.core.std.BlankClip()
video.set_output(0)
audio.set_output(1)
In Linux, install BestAudioSource:
$ yay -S aur/vapoursynth-plugin-bestaudiosource-git
Then rerun: tools/plugin_generator
. This will wrap that plugin, creating the file: plugins/bas.nim
.
Issue: now it is empty.