avsser 0.8.0

A utility for generating AviSynth scripts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]

#[macro_use]
extern crate lazy_static;
extern crate regex;
extern crate uuid;

pub mod generic {
    pub mod input;
    pub mod output;
}

pub mod parsers {
    pub mod ffprobe;
    pub mod mkvinfo;
}