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

An ID3 tag information parsing library based on dart, which supports the operation of Flutter on all platforms.

id3_codec #

An ID3 tag information parsing library based on dart, which supports the operation of Flutter on all platforms.

Support ID3 version #

  • ✅ v1
  • ✅ v1.1
  • ✅ v2.2
  • ✅ v2.3
  • ✅ v2.4

How to use #

read by async.

final data = await rootBundle.load("assets/song1.mp3");
final decoder = ID3Decoder(data.buffer.asUint8List());
decoder.decodeAsync().then((metadata) {
    debugPrint(metadata.toString());
});

read by sync.

final data = await rootBundle.load("assets/song1.mp3");
final decoder = ID3Decoder(data.buffer.asUint8List());
final metadata = decoder.decodeSync();
debugPrint(metadata.toString());
6
likes
0
pub points
63%
popularity

Publisher

unverified uploader

An ID3 tag information parsing library based on dart, which supports the operation of Flutter on all platforms.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on id3_codec