dart_tags 0.0.4 dart_tags: ^0.0.4 copied to clipboard
The library for work with music tags like ID3. Written on pure Dart. It can be used in flutter, web, and vm projects.
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)));
}