Skip to content

frankdenouter/dart-tags

 
 

Repository files navigation

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.2.2

  • fixed an issue with wrong header calculation thanx @frankdenouter and his PR
  • added test assets v23 for reader

0.2.1

  • fixed an issue with wrong utf16 decoding thanx @magodo and his PR
  • wrote some additional tests

Instalation

add dependency in pubsec.yaml

dependencies:
  dart_tags: ^0.2.2

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.

About

ID3 Tag parser written on the pure dart language.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 98.6%
  • Shell 1.4%