dart_tags 0.0.2 dart_tags: ^0.0.2 copied to clipboard
A dart library for work with id3 tags.
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.getTagsFromFile(f).then((l) => l.forEach((f) => print(f)));
}