fancy_ffmpeg/
lib.rs

1pub struct FFmpeg {}
2
3impl FFmpeg {
4    pub fn new() -> Self {
5        Self {}
6    }
7}
8
9impl Default for FFmpeg {
10    fn default() -> Self {
11        Self::new()
12    }
13}