dart_tags 0.0.4 copy "dart_tags: ^0.0.4" to clipboard
dart_tags: ^0.0.4 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';

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

  File f = new File(args[0]);

  tp
      .getTagsFromByteArray(f.readAsBytes())
      .then((l) => l.forEach((f) => print(f)));
}
23
likes
0
points
151
downloads

Publisher

verified publisherdart.tools

Weekly Downloads

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