id3 0.0.1 copy "id3: ^0.0.1" to clipboard
id3: ^0.0.1 copied to clipboard

discontinued
outdated

Extract metatags from mp3 file

example/main.dart

import 'package:id3/id3.dart';

void main(){
  MP3Instance mp3instance = new MP3Instance("./file.mp3");
  mp3instance.parseTags();

  print(mp3instance.getMetaTags());
}

// {
//   "Title": "SongName",
//   "Artist": "ArtistName",
//   "Album": "AlbumName",
//   "APIC": {
//     "mime": "image/jpeg",
//     "textEncoding": "0",
//     "picType": "0",
//     "description": "description",
//     "base64": "AP/Y/+AAEEpGSUYAAQEBAE..."
//   }
// }
26
likes
0
pub points
75%
popularity

Publisher

unverified uploader

Extract metatags from mp3 file

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on id3