audio_metadata_reader 0.0.3 copy "audio_metadata_reader: ^0.0.3" to clipboard
audio_metadata_reader: ^0.0.3 copied to clipboard

A metadata reader for audio files. Support ID3, Vorbis comments and ILST itunes

example/main.dart

import 'dart:io';

import 'package:audio_metadata_reader/audio_metadata_reader.dart';

Future<void> main() async {
  final track = File("Pieces.mp3");

  // Getting the image of a track can be heavy and slow the reading
  final metadata = await readMetadata(track, getImage: false);

  print(metadata.title);
  print(metadata.album);
  print(metadata.duration);
  // etc...
}
34
likes
0
points
4.73k
downloads

Publisher

unverified uploader

Weekly Downloads

A metadata reader for audio files. Support ID3, Vorbis comments and ILST itunes

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

charset, intl

More

Packages that depend on audio_metadata_reader