Skip to content

VapourSynth

Shuanglei Tao edited this page Dec 7, 2023 · 4 revisions

If libmpv is compiled with vapoursynth support, then ImPlay should support it.

Example usage on Windows:

  1. Install VapourSynth Portable
  2. Add VapourSynth install dir to the top of Windows PATH environment variable
  3. Create mpv.vpy in ImPlay config dir (Tools - Open Config Dir):
from vapoursynth import core

clip = video_in
clip = core.std.FlipVertical(clip)
clip.set_output()
  1. Add mpv profile for VapourSynth (in mpv.conf):
[VapourSynth]
vf=vapoursynth="~~/mpv.vpy":buffered-frames=4:concurrent-frames=32
profile-restore = copy
  1. Activate the profile via Tools - Profiles menu

Reference:

Clone this wiki locally