ffmpeg-stringify 0.2.1

A small library that allows creation of ffmpeg command string via rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Serialize, Deserialize};

#[derive(Debug,Clone, Serialize, Deserialize)]
pub enum StreamType {
    Input,
    Output
}

#[derive(Debug,Clone, Serialize, Deserialize)]
pub struct Stream{
    pub path:String,
    pub name:String,
    pub stream_type:StreamType,
    pub inputs:Option<Vec<String>>
}