1
0
mirror of synced 2026-05-22 22:53:20 +00:00
2012-08-22 22:50:18 +01:00
2012-07-09 23:27:48 +01:00
2012-07-13 17:13:08 +01:00
2012-07-09 23:38:28 +01:00
2012-08-01 12:15:23 +02:00
2011-05-25 16:29:54 +01:00

Build Status

Installation

Install via npm:

npm install musicmetadata

Supports

mp3 (1.1, 2.2, 2.3, 2.4), m4a(mp4), vorbis (ogg, flac)

API

var fs = require('fs'),
    musicmetadata = require('musicmetadata');

//create a new parser from a node ReadStream
var parser = new musicmetadata(fs.createReadStream('sample.mp3'));

//listen for the metadata event
parser.on('metadata', function(result) {
  console.log(result);
});

This will output the standard music metadata:

{ artist : 'Spor',
  album : 'Nightlife, Vol 5.',
  albumartist : [ 'Andy C', 'Spor' ],
  title : 'Stronger',
  year : '2010',
  track : { no : 1, of : 44 },
  disk : { no : 1, of : 2 },
  picture : [ { format : 'jpg', data : <Buffer> } ]
}

If you just want the artist - listen for the artist event:

parser.on('artist', function(result) {
  console.log(result);
});

You can also listen for the 'done' event, this will be raised when parsing has finished or an error has occurred. This could be used to disconnect from the stream as soon as parsing has finished, saving bandwidth.

parser.on('done', function(err) {
  if (err) throw err;	
  stream.destroy();
});

Changelog

v0.1.2

  • Fixed id3v1.1 implementation
  • Implemented multiple artwork support (id4)
  • Added flac support

Commits

v0.1.1

  • Better utf-16 handling
  • Now reads iso-8859-1 encoded id3 frames correctly
  • Artwork is now part of the 'metadata' event

Commits

S
Description
Metadata parser for audio and video media files. Supports file and stream inputs in Node.js and browser environments, extracting format, tag, and duration information.
Readme 277 MiB
Languages
TypeScript 99.6%
JavaScript 0.4%