Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

KnisterPeter/id3v2

Repository files navigation

id3v2

GitHub license Travis npm Commitizen friendly renovate badge

Read ID3v2 metadata.

Usage

Installation

Install as npm package:

npm install id3v2 --save

Install latest development version:

npm install id3v2@next --save

API

import { ID3v2 } from 'id3v2';

const tag = new ID3v2('/path/to/test.mp3');
console.log(tag.title);