stream-id3
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

Stream ID3

A fast & easy-to-use library for reading ID3.

Demo

const {readId3} = require('stream-id3');
 
readId3('music.mp3', ['TIT2', 'TPE1']).then(frames => {
    console.log({
        artist: frames.get('TPE1').value,
        title: frames.get('TIT2').value
    });
});

Installation

npm install stream-id3

Readme

Keywords

Package Sidebar

Install

npm i stream-id3

Weekly Downloads

1

Version

2.0.1

License

none

Last publish

Collaborators

  • trusted.tomato