ffmpeg-the-third 5.0.0+ffmpeg-8.1

Safe FFmpeg wrapper (FFmpeg 5+ compatible fork of the ffmpeg crate)
Documentation
mod flag;
pub use flag::Flags;

mod immutable;
pub use immutable::DictionaryRef;

mod impls;

mod mutable;
pub use mutable::DictionaryMut;

mod owned;
pub use owned::Dictionary;

mod iter;
pub use iter::Iter;

#[cfg(test)]
mod tests;

#[macro_export]
macro_rules! dict {
    ($($key:expr => $value:expr),* $(,)*) => ({
        let mut dict = $crate::Dictionary::new();

        $(
            dict.set($key, $value);
        )*

        dict
    });
}