Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magicdawn/node-id3-reader
mp3 ID3 reader for Node.js
https://github.com/magicdawn/node-id3-reader
binary dissolve id3 id3-reader mp3-id3 node-binary
Last synced: 3 months ago
JSON representation
mp3 ID3 reader for Node.js
- Host: GitHub
- URL: https://github.com/magicdawn/node-id3-reader
- Owner: magicdawn
- License: mit
- Created: 2017-01-15T08:15:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-08T23:48:28.000Z (over 7 years ago)
- Last Synced: 2023-08-24T03:08:54.452Z (over 1 year ago)
- Topics: binary, dissolve, id3, id3-reader, mp3-id3, node-binary
- Language: JavaScript
- Size: 3.31 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# id3-reader
> mp3 ID3 reader for Node.js[![Build Status](https://img.shields.io/travis/magicdawn/node-id3-reader.svg?style=flat-square)](https://travis-ci.org/magicdawn/node-id3-reader)
[![Coverage Status](https://img.shields.io/codecov/c/github/magicdawn/node-id3-reader.svg?style=flat-square)](https://codecov.io/gh/magicdawn/node-id3-reader)
[![npm version](https://img.shields.io/npm/v/id3-reader.svg?style=flat-square)](https://www.npmjs.com/package/id3-reader)
[![npm downloads](https://img.shields.io/npm/dm/id3-reader.svg?style=flat-square)](https://www.npmjs.com/package/id3-reader)
[![npm license](https://img.shields.io/npm/l/id3-reader.svg?style=flat-square)](http://magicdawn.mit-license.org)## Install
```sh
$ npm i id3-reader --save
```## API
```js
const reader = require('id3-reader')reader(filename | fd).then(info => {
// blabla
})
```### resolved info
- `singer`: extracted from `TPE1`
- `title`: extracted from `TIT2`
- `album`: extracted from `TALB`
- `raw`: the raw ID3 info## Changelog
[CHANGELOG.md](CHANGELOG.md)## License
the MIT License http://magicdawn.mit-license.org