dart_tags 0.0.6 dart_tags: ^0.0.6 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]);
//final f = new File('/home/NiKoTron/Music/「お望み通りの生き方を」- Always Be Yourself - ムシぴ × 初音ミク.mp3');
final f = new File('/home/NiKoTron/id3TagSample/mp3.mp3');
tp
.getTagsFromByteArray(f.readAsBytes())
.then((l) => l.forEach((f) => print(f)));
}