dart_tags 0.0.5 dart_tags: ^0.0.5 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';
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)));
}