#audio-metadata #metadata #mp4 #parser #m4a

mp4ameta

A library for reading and writing iTunes style MPEG-4 audio metadata

22 releases (10 breaking)

0.11.0 Jun 15, 2021
0.10.1 Apr 25, 2021
0.9.1 Feb 14, 2021
0.7.3 Dec 13, 2020
0.1.0 Mar 26, 2020

#494 in Parser implementations

Download history 160/week @ 2023-11-30 194/week @ 2023-12-07 222/week @ 2023-12-14 185/week @ 2023-12-21 120/week @ 2023-12-28 243/week @ 2024-01-04 337/week @ 2024-01-11 326/week @ 2024-01-18 298/week @ 2024-01-25 506/week @ 2024-02-01 442/week @ 2024-02-08 270/week @ 2024-02-15 419/week @ 2024-02-22 510/week @ 2024-02-29 556/week @ 2024-03-07 613/week @ 2024-03-14

2,159 downloads per month
Used in 17 crates (8 directly)

MIT/Apache

685KB
3K SLoC

rust-mp4ameta

CI Crate Documentation License LOC

A library for reading and writing iTunes style MPEG-4 audio metadata. Most commonly this kind of metadata is found inside m4a or m4b files but basically any mp4 container supports it.

Examples

The easy way

let mut tag = mp4ameta::Tag::read_from_path("music.m4a").unwrap();

println!("{}", tag.artist().unwrap());

tag.set_artist("artist");
tag.write_to_path("music.m4a").unwrap();

The hard way

use mp4ameta::{Data, Fourcc, Tag};

let mut tag = Tag::read_from_path("music.m4a").unwrap();
let artist_ident = Fourcc(*b"\xa9ART");

let artist = tag.string(&artist_ident).next().unwrap();
println!("{}", artist);

tag.set_data(artist_ident, Data::Utf8("artist".to_owned()));
tag.write_to_path("music.m4a").unwrap();

Using freeform identifiers

use mp4ameta::{Data, FreeformIdent, Tag};

let mut tag = Tag::read_from_path("music.m4a").unwrap();
let isrc_ident = FreeformIdent::new("com.apple.iTunes", "ISRC");

let isrc = tag.string(&isrc_ident).next().unwrap();
println!("{}", isrc);

tag.set_data(isrc_ident, Data::Utf8("isrc".to_owned()));
tag.write_to_path("music.m4a").unwrap();

Testing

__Run all tests:__
cargo test

__Test this library on your collection:__
cargo test -- --nocapture collection <path>

Dependencies