4 releases (breaking)
Uses new Rust 2021
0.4.0 | Jun 18, 2022 |
---|---|
0.3.0 | Jan 20, 2022 |
0.2.0 | Apr 26, 2021 |
0.1.1 | Apr 25, 2021 |
0.1.0 |
|
#41 in Multimedia
64 downloads per month
150KB
3.5K
SLoC
matroska-demuxer
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:
let file = File::open("test.mkv").unwrap();
let 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");
}
}