wavyte 0.2.1

Programmatic video composition and rendering engine in Rust (CPU backend, ffmpeg MP4 encoding)
Documentation
1
2
3
4
5
6
7
8
use wavyte::Composition;

#[test]
fn json_fixture_validates() {
    let s = include_str!("data/simple_comp.json");
    let comp: Composition = serde_json::from_str(s).unwrap();
    comp.validate().unwrap();
}