17 releases (9 breaking)
| 0.10.1 | Jan 23, 2026 |
|---|---|
| 0.9.2 | Dec 11, 2025 |
| 0.9.1 | Nov 11, 2025 |
| 0.8.1 | May 15, 2025 |
| 0.3.0 | Oct 18, 2024 |
#19 in Video
10,208 downloads per month
Used in 26 crates
(6 directly)
685KB
17K
SLoC
mp4-atom
This library provides encoding for the ISO Base Media File Format (ISO/IEC 14496-12). It's meant to be low level, performing encoding/decoding of the binary format without validation or interpretation of the data. You have to know what boxes to expect!
Atoms
MP4 files are made up of atoms, which are boxes of data.
They have an upfront size and a 4-byte code to identify the type of box.
Examples include moov, mdat, trak, etc.
Unfortunately, the specification is quite complex and often gated behind a paywall. Using this library does require some additional knowledge of the format otherwise you should use a higher level library.
See the documentation.
Examples
Decoding/encoding a byte buffer
use bytes::{Bytes, BufMut};
use mp4_atom::{Any, Encode, Decode, Ftyp};
// A simple ftyp atom
let mut input = Bytes::from_static(b"\0\0\0\x14ftypiso6\0\0\x02\0mp41");
let atom = Any::decode(&mut input.clone())?;
// Make sure we got the right atom
assert_eq!(atom, Ftyp {
major_brand: b"iso6".into(),
minor_version: 512,
compatible_brands: vec![b"mp41".into()],
}.into());
// Encode it back
let mut output = BufMut::new();
atom.encode(&mut output)?;
assert_eq!(input, output.freeze());
Synchronous IO
NOTE: reading a Mdat atom will read the entire contents into memory.
See the next example to avoid this.
use mp4_atom::{Any, ReadFrom, WriteTo, Ftyp};
let mut reader = std::io::stdin();
let atom = Any::read_from(&mut reader)?;
// Make sure we got the right atom
assert_eq!(atom, Ftyp {
major_brand: b"iso6".into(),
minor_version: 512,
compatible_brands: vec![b"mp41".into()],
}.into());
// Encode it back to a Write type
let writer = std::io::stdout();
atom.write_to(&mut writer)?;
Handling large atoms
To avoid reading large files into memory, you can call Header::read_from manually:
use mp4_atom::{Atom, Any, Header, ReadFrom, ReadAtom, WriteTo, Ftyp, Moov};
let mut reader = std::io::stdin();
let header = Header::read_from(&mut reader)?;
match header.kind {
Ftyp::KIND => {
let ftyp = Ftyp::read_atom(&header, &mut reader)?;
// Make sure we got the right atom
assert_eq!(ftyp, Ftyp {
major_brand: b"iso6".into(),
minor_version: 512,
compatible_brands: vec![b"mp41".into()],
});
},
Moov::KIND => {
// Manually decode the moov
match header.size {
Some(size) => { /* read size bytes */ },
None => { /* read until EOF */ },
};
},
_ => {
// You can also use Any if you prefer
let any = Any::read_atom(&header, &mut reader)?;
println!("Unknown atom: {:?}", any);
}
};
Asynchronous IO
Enable using the tokio feature.
It's the same as the above two but using the AsyncReadFrom, AsyncWriteTo, and AsyncReadAtom traits instead.
There's also the bytes features which enables encoding for Bytes and BytesMut from the bytes crate, often used with tokio.
Strict parsing
Enable using the strict feature.
Strict parsing turns unknown boxes into a hard error.
In general, this is not desirable behaviour. ISO Base Media File Format parsing is meant to be at least somewhat tolerant of unknown boxes. It can be useful in some situations though, such as when using mp4-atom as a test tool, and when testing mp4-atom itself.
Dependencies
~5–8.5MB
~78K SLoC