id3v2
Version:
Reads ID3v2 metadata
35 lines (23 loc) • 833 B
Markdown
# id3v2
[]()
[](https://travis-ci.org/KnisterPeter/id3v2)
[](https://www.npmjs.com/package/id3v2)
[](http://commitizen.github.io/cz-cli/)
[](https://renovateapp.com/)
Read ID3v2 metadata.
## Usage
### Installation
Install as npm package:
```sh
npm install id3v2 --save
```
Install latest development version:
```sh
npm install id3v2@next --save
```
### API
```js
import { ID3v2 } from 'id3v2';
const tag = new ID3v2('/path/to/test.mp3');
console.log(tag.title);
```