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

outdatedDart 1 only

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 #

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

  • v0.0.7
    • Removed assertion in parser
    • Fixed some crashes.
    • Added clearing from null bytes in id3v2 and unsync bytes
    • UTF16 crash fixed
    • Improve stability

Instalation #

add dependency in pubsec.yaml

  - Fixed some crashes.
  - Added clearing from null bytes in id3v2
dependencies:
  dart_tags: ^0.0.7

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.

23
likes
0
points
151
downloads

Publisher

verified publisherdart.tools

Weekly Downloads

The library for work with music tags like ID3. Written on pure Dart. It can be used in flutter, web, and vm projects.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on dart_tags