#webm #matroska #demuxer #demux

matroska-demuxer

A demuxer that can demux Matroska and WebM container files

5 releases (breaking)

0.5.0 Jun 12, 2023
0.4.0 Jun 18, 2022
0.3.0 Jan 20, 2022
0.2.0 Apr 26, 2021
0.1.1 Apr 25, 2021

#70 in Multimedia

Download history 6/week @ 2023-12-18 5/week @ 2024-01-01 15/week @ 2024-01-08 5/week @ 2024-01-15 5/week @ 2024-02-12 15/week @ 2024-02-19 21/week @ 2024-02-26 14/week @ 2024-03-04 16/week @ 2024-03-11 18/week @ 2024-03-18

70 downloads per month
Used in cros-codecs

Zlib OR MIT OR Apache-2.0

150KB
3.5K SLoC

matroska-demuxer

Latest version Documentation ZLIB MIT Apache

A demuxer that can demux Matroska and WebM container files.

For simplicity only the elements supported by both Matroska and WebM are supported.

Integration test

To run the integration test you need to download the Matroska test suite video files and extract them into the tests/data folder (test1.mkv to test8.mkv).

License

Licensed under MIT or Apache-2.0 or ZLIB.


lib.rs:

A demuxer that can demux Matroska and WebM container files.

Example:

use std::fs::File;
use matroska_demuxer::*;

let file = File::open("test.mkv").unwrap();
let mut mkv = MatroskaFile::open(file).unwrap();
let video_track = mkv
    .tracks()
    .iter()
    .find(|t| t.track_type() == TrackType::Video)
    .map(|t| t.track_number().get())
    .unwrap();

let mut frame = Frame::default();
while mkv.next_frame(&mut frame).unwrap() {
    if frame.track == video_track {
        dbg!("video frame found");
    }
}

No runtime deps