-
-
Notifications
You must be signed in to change notification settings - Fork 46
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:
- Install VapourSynth Portable
- Add VapourSynth install dir to the top of Windows
PATH
environment variable - 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()
- Add mpv profile for VapourSynth (in
mpv.conf
):
[VapourSynth]
vf=vapoursynth="~~/mpv.vpy":buffered-frames=4:concurrent-frames=32
profile-restore = copy
- Activate the profile via
Tools - Profiles
menu
Reference: