{"id":15008609,"url":"https://github.com/nikotron/dart-tags","last_synced_at":"2025-04-09T16:05:24.306Z","repository":{"id":44778948,"uuid":"131411993","full_name":"NiKoTron/dart-tags","owner":"NiKoTron","description":"ID3 Tag parser written on the pure dart language.","archived":false,"fork":false,"pushed_at":"2024-03-27T11:51:55.000Z","size":3545,"stargazers_count":38,"open_issues_count":8,"forks_count":15,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T16:05:16.403Z","etag":null,"topics":["dart","dart-lang","dart-library","dart-tags","dart2","flutter","id3","id3v1","id3v2","library","metadata","metadata-editing","metadata-extraction","mp3","mp3-tags","music-tagging","pub","tag"],"latest_commit_sha":null,"homepage":"https://pub.dartlang.org/packages/dart_tags","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NiKoTron.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":"FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"nikotron","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2018-04-28T13:30:34.000Z","updated_at":"2025-01-12T22:58:50.000Z","dependencies_parsed_at":"2025-02-15T10:41:20.151Z","dependency_job_id":null,"html_url":"https://github.com/NiKoTron/dart-tags","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiKoTron%2Fdart-tags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiKoTron%2Fdart-tags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiKoTron%2Fdart-tags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NiKoTron%2Fdart-tags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NiKoTron","download_url":"https://codeload.github.com/NiKoTron/dart-tags/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248065289,"owners_count":21041871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","dart-lang","dart-library","dart-tags","dart2","flutter","id3","id3v1","id3v2","library","metadata","metadata-editing","metadata-extraction","mp3","mp3-tags","music-tagging","pub","tag"],"created_at":"2024-09-24T19:19:41.402Z","updated_at":"2025-04-09T16:05:24.273Z","avatar_url":"https://github.com/NiKoTron.png","language":"Dart","funding_links":["https://ko-fi.com/nikotron"],"categories":[],"sub_categories":[],"readme":"# Dart Tags\n\n[![Coverage Status](https://coveralls.io/repos/github/NiKoTron/badge.svg?branch=master)](https://coveralls.io/github/NiKoTron/dart-tags?branch=master)\n[![pub package](https://img.shields.io/pub/v/dart_tags.svg)](https://pub.dartlang.org/packages/dart_tags) [![Build Status](https://travis-ci.org/NiKoTron/dart-tags.svg?branch=master)](https://travis-ci.org/NiKoTron/dart-tags)\n[![Awesome Dart](https://img.shields.io/badge/Awesome-Dart-blue.svg?longCache=true)](https://github.com/yissachar/awesome-dart#parsers)\n[![MIT](https://img.shields.io/github/license/NiKoTron/dart-tags)](LICENSE)\n\nThe library for parsing [ID3](https://id3.org/Home) tags, written in pure Dart.\n\nYou can found sample app written with flutter framework [here](https://github.com/NiKoTron/flug-tag).\n\n## License\n\nproject under MIT [license](LICENSE)\n\n## Changelogs\n\n[full changelog](CHANGELOG.md)\n\n## 0.4.1\n\n* thanx to [@antitim](https://github.com/antitim) for find and reslove issue with a broken images in the tags in this [PR]\n* dependencies update\n\n## 0.4.0 (Null Safety)\n\n* thanx for migrating to null safety to [@timekone](https://github.com/timekone) and this [PR](https://github.com/NiKoTron/dart-tags/pull/35)\n* updated some dependencies\n\n## 0.3.1\n\n* implemented separate getting size of frame for id3 v2.3 and v2.4\n* added test case and asset\n* fixed typos, thanx to [@algoshipda](https://github.com/algoshipda) and his [PR](https://github.com/NiKoTron/dart-tags/pull/17)\n* fixed APIC picture type error, thanx to [@algoshipda](https://github.com/algoshipda) and his [PR](https://github.com/NiKoTron/dart-tags/pull/20)\n\n## Instalation\n\nadd dependency in pubsec.yaml\n\n``` yaml\ndependencies:\n  dart_tags: ^0.4.0\n```\n\n## Usage\n\nA simple usage example:\n\n``` dart\nimport 'dart:io';\n\nimport 'package:dart_tags/dart_tags.dart';\n\nmain(List\u003cString\u003e args) {\n  final tp = new TagProcessor();\n\n  final f = new File(args[0]);\n\n  tp.getTagsFromByteArray(f.readAsBytes()).then((l) =\u003e l.forEach((f) =\u003e print(f)));\n}\n```\n\n## Code of conduct\n\nPlease refer our [code of conduct](CODE_OF_CONDUCT.md).\n\n## Features and bugs\n\nPlease feel free for feature requests and bugs at the [issue tracker](https://github.com/NiKoTron/issues).\n\n## In addition\n\nThanx for contributing [@magodo](https://github.com/magodo), [@frankdenouter](https://github.com/frankdenouter) [@algoshipda](https://github.com/algoshipda) [@timekone](https://github.com/timekone)\n\nThanx for the [Photo](https://unsplash.com/photos/HRyjETL87Gg) by [Mink Mingle](https://unsplash.com/@minkmingle) on [Unsplash](https://unsplash.com) that we using in unit tests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikotron%2Fdart-tags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnikotron%2Fdart-tags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikotron%2Fdart-tags/lists"}