An mp4 muxer demuxer for mp4, made to work in WASM and async contexts.
rust
full_box! {
box (b"mvhd", Mvhd, MvhdBox, u32)
data {
creation_time: Mp4DateTime,
modification_time: Mp4DateTime,
timescale: u32,
duration: Mp4Duration,
rate: I16F16,
volume: I8F8,
_r1: u16, // reserved
_r2: [u32; 2], // reserved
matrix: MP4Matrix,
_r3: [u32; 6], // reserved
next_track_id: u32
}
}
```rust let ftyp = FtypBox { majorbrand: *b"iso5", minorversion: 1, compatiblebrands: vec![*b"isom", *b"avc1", *b"iso2", *b"iso5"], }; let moov: MoovBox = Moov { mvhd: Some(Default::default()), mvex: Some(Mvex { trex: traks.iter().map(|trak| { Trex { trackid: trak.tkhd.asref().map(|it|it.trackid).unwrapor(0), defaultsampledescriptionindex: 1, defaultsampleduration: 0, defaultsamplesize: 0, defaultsampleflags: Default::default(), }.into() }).collect(), }.into()), traks: vec![Trak { /* trak info... */ }.into()], }.into();
let mut buf = std::io::Cursor::new(vec![]); ftyp.write(&mut buf)?; moov.write(&mut buf)?; return buf.into_inner(); ```