A library for reading and writing iTunes style MPEG-4 audio metadata.
```rust fn main() { let mut tag = mp4ameta::Tag::readfrompath("music.m4a").unwrap();
println!("{}", tag.artist().unwrap());
tag.set_artist("artist");
tag.write_to_path("music.m4a").unwrap();
} ```
Running all tests:
cargo test -- --test-threads=1
To test this library against your collection symlink your music dir into the files
dir and run:
cargo test sample_files -- --show-output