Yuuno

A link between Jupyter and VapourSynth

Get Started →

Runs in your browser

Yuuno provides lossless remote script editing and previewing through your browser.

Jupyter powered

Yuuno provides a stable environment that does not lose your data when VapourSynth crashes.

Configurable

Configure everything about your experience. From YUV to RGB conversions up to compression ratios.

Have an example

Load Yuuno

In  [1]:
%load_ext yuuno

Edit and run a script

In  [2]:
%vspreview
clip = core.ffms2.Source("sintel-4k.mkv")
clip.set_output()

Compare two clips

In  [3]:
%vspreview --diff
clip = core.ffms2.Source("sintel-4k.mkv")
clip.set_output()
sobel = clip.resize.Spline36(format=vs.GRAY8)
sobel = sobel.std.Sobel(scale=2)
sobel = sobel.std.Binarize(64)
sobel.set_output(1)

Encode it when you're done!

In  [4]:
%%vspipe --y4m | x264.exe --demuxer y4m -o test.mkv -
clip = core.ffms2.Source("sintel-4k.mkv")
clip.set_output()