Skip to main content

fancy_ffmpeg/
lib.rs

1mod ffprobe;
2
3pub use ffprobe::*;
4
5pub struct FFmpeg {}
6
7impl FFmpeg {
8    pub fn new() -> Self {
9        Self {}
10    }
11}
12
13impl Default for FFmpeg {
14    fn default() -> Self {
15        Self::new()
16    }
17}