dart_tags 0.0.2 copy "dart_tags: ^0.0.2" to clipboard
dart_tags: ^0.0.2 copied to clipboard

outdatedDart 1 only

A dart library for work with id3 tags.

Dart Tags #

A library for Dart developers.

This library under active development! At this time it's ALPHA quality software.

You can found sample app written with flutter framework here.

License #

project under MIT license

Changelogs #

full changelog

  • v 0.0.2 basic support of ID3 v2.4 tags

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.getTags(f).then((l) => l.forEach((f) => print(f)));
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.