bmf-parse 0.1.7

A parser for the BMF file format
Documentation
1
2
3
4
5
6
7
8
9
10
use bmf_parse::{boxes::*, *};

fn main() {
    let mp4 = parse_mp4(&[
        0, 0, 0, 52, 112, 115, 115, 104, 0, 0, 0, 0, 237, 239, 139, 169, 121, 214, 74, 206, 163,
        200, 39, 220, 213, 29, 33, 237, 0, 0, 0, 20, 8, 1, 18, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0,
    ]);
    println!("{:#?}", mp4);
}