stream-id3
v2.0.1
Published
A fast & easy-to-use library for reading ID3.
Downloads
2
Readme
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