1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
mod ffmpeg; mod formats; mod h264; mod mux; mod tasks; pub use ffmpeg::*; pub use formats::*; pub use h264::*; pub use tasks::*; /// Progress events emitted during encoding pub enum EncodeProgress { /// Rendering frames: (current, total) Rendering(u32, u32), /// Encoding H.264: (current, total) Encoding(u32, u32), /// Muxing MP4 Muxing, }