dart_tags 0.0.8 dart_tags: ^0.0.8 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.
Dart Tags #
The library for parsing ID3 tags, written in pure Dart.
This library under active development! With all the consequences.
You can found sample app written with flutter framework here.
License #
project under MIT license
Changelogs #
- v0.0.8
- added BASE64 for imageData in attached pictures
- .toString() now returns JSON
- small changes in example
- fix README formating
Instalation #
add dependency in pubsec.yaml
dependencies:
dart_tags: ^0.0.8
Usage #
A simple usage example:
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)));
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.