dart_tags 0.0.5 copy "dart_tags: ^0.0.5" to clipboard
dart_tags: ^0.0.5 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]);

  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