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

outdated

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 #

Coverage Status pub package Build Status Awesome Dart

The library for parsing ID3 tags, written in pure Dart.

You can found sample app written with flutter framework here.

License #

project under MIT license

Changelogs #

full changelog

0.3.0 (BREAKING CHANGES) #

  • COMM, APIC, USLT, WXXX tags returns as a map
  • WXXX frame returns WURL object
  • various fixes
  • added USLT tag
  • added possibility to pass many COMM, APIC, USLT tags
  • APIC processing was refactored
  • hex encoder
  • unrecognized encoding falls to hex encoder (removed unsupported encoding error)
  • unsupported tags like PRIV will be printed just like raw binary data

0.2.3 #

  • Fixed wrong utf16 decoding. issue issue #13)

Instalation #

add dependency in pubsec.yaml

dependencies:
  dart_tags: ^0.3.0

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)));
}

Code of conduct #

Please refer our code of conduct.

Features and bugs #

Please feel free for feature requests and bugs at the issue tracker.

In addition #

Thanx for contributing @magodo, @frankdenouter

Thanx for the Photo by Mink Mingle on Unsplash that we using in unit tests.

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)

Dependencies

collection, convert, utf

More

Packages that depend on dart_tags