This crate makes it easier to parse tags/metadata in audio files of different file types.
This crate aims to provide a unified trait for parsers and writers of different audio file formats. This means that you can parse tags in mp3 and m4a files with a single function: audiotags::from_path()
and get fields by directly calling .album()
, .artist()
on its result. Without this crate, you would otherwise need to learn different APIs in id3, mp4ameta crates in order to parse metadata in different file foramts.
```rust use audiotags;
fn main() { const MP3: &'static str = "a.mp3"; let mut tags = audiotags::frompath(MP3).unwrap(); // without this crate you would call id3::Tag::frompath() println!("Title: {:?}", tags.title()); println!("Artist: {:?}", tags.artist()); tags.setalbumartist("CINDERELLA PROJECT"); let album = tags.album().unwrap(); println!("Album title and artist: {:?}", (album.title, album.artist)); println!("Track: {:?}", tags.track()); tags.writetopath(MP3).unwrap(); // Title: Some("ãŠé¡˜ã„ï¼ã‚·ãƒ³ãƒ‡ãƒ¬ãƒ©") // Artist: Some("高垣楓ã€åŸŽãƒ¶å´Žç¾Žå˜‰ã€å°æ—¥å‘美穂ã€å時愛梨ã€å·å³¶ç‘žæ¨¹ã€æ—¥é‡ŽèŒœã€è¼¿æ°´å¹¸åã€ä½ä¹…é–“ã¾ã‚†ã€ç™½å‚å°æ¢…") // Album title and artist: ("THE IDOLM@STER CINDERELLA GIRLS ANIMATION PROJECT 01 Star!!", Some("CINDERELLA PROJECT")) // Track: (Some(2), Some(4))
const M4A: &'static str = "b.m4a";
let mut tags = audiotags::from_path(M4A).unwrap();
// without this crate you would call mp4ameta::Tag::from_path()
println!("Title: {:?}", tags.title());
println!("Artist: {:?}", tags.artist());
let album = tags.album().unwrap();
println!("Album title and artist: {:?}", (album.title, album.artist));
tags.set_total_tracks(4);
println!("Track: {:?}", tags.track());
tags.write_to_path(M4A).unwrap();
// Title: Some("ãµã‚ãµã‚時間") // Artist: Some("桜高軽音部 [平沢唯・秋山澪・田井ä¸å¾‹ãƒ»ç´å¹ç´¬(CV:豊崎愛生ã€æ—¥ç¬ 陽åã€ä½è—¤è¡ç¾Žã€å¯¿ç¾Žèœå)]") // Album title and artist: ("ãµã‚ãµã‚時間", Some("桜高軽音部 [平沢唯・秋山澪・田井ä¸å¾‹ãƒ»ç´å¹ç´¬(CV:豊崎愛生ã€æ—¥ç¬ 陽åã€ä½è—¤è¡ç¾Žã€å¯¿ç¾Žèœå)]")) // Track: (Some(1), Some(4)) } ```