The library for parsing ID3 tags, written in pure Dart.
You can found sample app written with flutter framework here.
project under MIT license
- added separate frame processing Framer API
- update tests (added test for issue #4)
- fixed empty tag exception for id3v1
- added CoC
- fixed writing APIC tag issue #3
add dependency in pubsec.yaml
dependencies:
dart_tags: ^0.2.0
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)));
}
Please refer our code of conduct.
Please feel free for feature requests and bugs at the issue tracker.
Thanx for the Photo by Mink Mingle on Unsplash that we using in unit tests.