#bindings #vsscript #api-bindings

vapoursynth

Safe Rust wrapper for VapourSynth and VSScript

6 releases (3 breaking)

0.4.0 Jul 13, 2022
0.3.0 Oct 22, 2019
0.2.0 Jun 16, 2018
0.1.2 Apr 2, 2018
0.1.1 Mar 24, 2018

#64 in Video

Download history 95/week @ 2023-12-04 85/week @ 2023-12-11 83/week @ 2023-12-18 96/week @ 2023-12-25 74/week @ 2024-01-01 111/week @ 2024-01-08 78/week @ 2024-01-15 79/week @ 2024-01-22 55/week @ 2024-01-29 82/week @ 2024-02-05 140/week @ 2024-02-12 122/week @ 2024-02-19 125/week @ 2024-02-26 119/week @ 2024-03-04 103/week @ 2024-03-11 122/week @ 2024-03-18

493 downloads per month
Used in 7 crates (3 directly)

MIT/Apache

260KB
5K SLoC

vapoursynth-rs

crates.io Documentation Actions Status

ChangeLog

Documentation for the master branch with all features enabled

A safe wrapper for VapourSynth, written in Rust.

The primary goal is safety (that is, safe Rust code should not trigger undefined behavior), and secondary goals include performance and ease of use.

Functionality

Most of the VapourSynth API is covered. It's possible to evaluate .vpy scripts, access their properties and output, retrieve frames; enumerate loaded plugins and invoke their functions as well as create VapourSynth filters.

For an example usage see examples/vspipe.rs, a complete reimplementation of VapourSynth's vspipe in safe Rust utilizing this crate.

For a VapourSynth plugin example see sample-plugin which implements some simple filters.

vapoursynth-sys

crates.io Documentation

ChangeLog

Raw bindings to VapourSynth.

Supported Versions

All VapourSynth and VSScript API versions starting with 3.0 are supported. By default the crates use the 3.0 feature set. To enable higher API version support, enable one of the following Cargo features:

  • vapoursynth-api-31 for VapourSynth API 3.1 (R26)
  • vapoursynth-api-32 for VapourSynth API 3.2 (R27)
  • vapoursynth-api-33 for VapourSynth API 3.3 (R30)
  • vapoursynth-api-34 for VapourSynth API 3.4 (R30)
  • vapoursynth-api-35 for VapourSynth API 3.5 (R38)
  • vapoursynth-api-36 for VapourSynth API 3.6 (R47)
  • vsscript-api-31 for VSScript API 3.1
  • vsscript-api-32 for VSScript API 3.2

To enable linking to VapourSynth or VSScript functions, enable the following Cargo features:

  • vapoursynth-functions for VapourSynth functions (getVapourSynthAPI())
  • vsscript-functions for VSScript functions (vsscript_*())

Building

Make sure you have the corresponding libraries available if you enable the linking features. You can use the VAPOURSYNTH_LIB_DIR environment variable to specify a custom directory with the library files.

On Windows the easiest way is to use the VapourSynth installer (make sure the VapourSynth SDK is checked). The crate should pick up the library directory automatically. If it doesn't or if you're cross-compiling, set VAPOURSYNTH_LIB_DIR to <path to the VapourSynth installation>\sdk\lib64 or <...>\lib32, depending on the target bitness.

License

Licensed under either of

at your option.

Dependencies

~0.5–1MB
~24K SLoC