编写你的第一个Vapoursynth脚本
先贴一段最简单的输入输出,我们开始吧!
import vapoursynth as vs
core = vs.get_core()
core.max_cache_size = 2000
input = r'F:\Resource workspace\00010.mp4'
src8 = core.lsmas.LWLibavSource(input)
src8.set_output()从熟悉Vapoursynth编写语法开始
core = vs.get_core()
core.max_cache_size = 2000input = r'F:\Resource workspace\00010.mp4'
src8 = core.lsmas.LWLibavSource(input)等等,我咋预览我刚才写的脚本?

Last updated