async-mp4 0.1.1

Async Mp4 Muxer and Demuxer in pure rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::base_box;
use crate::mp4box::hdlr::HdlrBox;
use crate::mp4box::mdhd::MdhdBox;
use crate::mp4box::minf::MinfBox;

base_box! {
    box (b"mdia", Mdia, MdiaBox)
    children {
        mdhd: MdhdBox,
        hdlr: HdlrBox,
        minf: MinfBox
    }
}