mp4-edit 0.1.1

mp4 read/write library designed with audiobooks in mind
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*!
 * This crate provides tools for losslessly editing mp4 files.
 */

pub mod atom;
pub mod chapter_track_builder;
pub mod chunk_offset_builder;
pub mod parser;
pub mod reader;
pub mod writer;

pub use atom::{Atom, AtomData, FourCC};
pub use parser::{ParseError, Parser};
pub use reader::Mp4Reader;
pub use writer::Mp4Writer;