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
use crate::base_box;
use crate::mp4box::tfdt::TfdtBox;
use crate::mp4box::tfhd::TfhdBox;
use crate::mp4box::trun::TrunBox;

base_box! {
    box (b"traf", Traf, TrafBox) children {
        tfhd: TfhdBox,
        tfdt: TfdtBox,
        truns: vec TrunBox
    }
}