dart_tags 0.0.6 copy "dart_tags: ^0.0.6" to clipboard
dart_tags: ^0.0.6 copied to clipboard

outdatedDart 1 only

The library for work with music tags like ID3. Written on pure Dart. It can be used in flutter, web, and vm projects.

example/example.dart

import 'dart:io';

import 'package:dart_tags/dart_tags.dart';

void main(List<String> args) {
  final tp = new TagProcessor();

  //final f = new File(args[0]);
  //final f = new File('/home/NiKoTron/Music/「お望み通りの生き方を」- Always Be Yourself - ムシぴ × 初音ミク.mp3');
  final f = new File('/home/NiKoTron/id3TagSample/mp3.mp3');

  tp
      .getTagsFromByteArray(f.readAsBytes())
      .then((l) => l.forEach((f) => print(f)));
}
21
likes
0
pub points
75%
popularity

Publisher

verified publisherdart.tools

The library for work with music tags like ID3. Written on pure Dart. It can be used in flutter, web, and vm projects.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on dart_tags