pub struct Progress {
pub frame: Option<u64>,
pub fps: Option<f64>,
pub q: Option<f64>,
pub size: Option<u64>,
pub time: Option<Duration>,
pub bitrate: Option<f64>,
pub speed: Option<f64>,
}
Expand description
Progress information from FFmpeg
Fields§
§frame: Option<u64>
Current frame number
fps: Option<f64>
Frames per second
q: Option<f64>
Quality factor
size: Option<u64>
Current size in bytes
time: Option<Duration>
Current time position
bitrate: Option<f64>
Bitrate in bits/s
speed: Option<f64>
Processing speed
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnwindSafe for Progress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more