Package Exports
- music-metadata
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (music-metadata) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Stream and file based music metadata parser for node.
Installation
Install via npm:
npm install music-metadataFeatures
- Supports metadata of the following audio and tag types:
| File extension | MIME-type | Tag header type |
|---|---|---|
| ape | audio/ape | APEv2 |
| aif, aiff, aifc | audio/aiff, audio/x-aif, audio/x-aifc | ID3v2 |
| asf, wma, wmv | audio/x-ms-wma, video/x-ms-asf | ASF |
| flac | audio/flac | Vorbis |
| m4a, m4b, m4p, m4v, m4r, 3gp, mp4, aac | audio/aac, audio/aacp | QTFF |
| mp2, mp3, m2a | audio/mpeg | ID3v1.1, ID3v2 |
| ogv, oga, ogx, ogg, opus | audio/ogg, application/ogg | Vorbis |
| wav | audio/wav, audio/wave | ID3v2, RIFF/INFO (EXIF 2.3) |
| wv, wvp | audio/x-wavpack | APEv2 |
- Support for MusicBrainz / Picard tags
- Support for encoding / format details:
- bitrate
- sample depth
- duration
- encoding profile (e.g. CBR, V0, V2)
API
Options:
duration: default:false, if set totrue, it will parse the whole media file if required to determine the duration.native: default:false, if set totrue, it will return native tags in addition to thecommontags.skipCovers: default:false, if set totrue, it will not return embedded cover-art (images).
Examples
JavaScript
var mm = require('music-metadata');
const util = require('util')
mm.parseFile('../test/samples/Mu' +
'sicBrainz-multiartist [id3v2.4].V2.mp3', {native: true})
.then(function (metadata) {
console.log(util.inspect(metadata, { showHidden: false, depth: null }));
})
.catch(function (err) {
console.error(err.message);
});TypeScript
import * as mm from 'music-metadata';
import * as util from 'util';
mm.parseFile('../test/samples/MusicBrainz-multiartist [id3v2.4].V2.mp3')
.then((metadata) => {
console.log(util.inspect(metadata, {showHidden: false, depth: null}));
})
.catch((err) => {
console.error(err.message);
});Although in most cases duration is included, in some cases it requires music-metadata parsing the entire file.
To enforce parsing the entire file if needed you should set duration to true.
mm.parseFile('sample.mp3', {duration: true})
.then(function (metadata) {
console.log(util.inspect(metadata, { showHidden: false, depth: null }));
})For a live example see parse MP3 (ID3v2.4 tags) stream with music-metadata, hosted on RunKit.
In order to read the duration of a stream (with the exception of file streams), in some cases you should pass the size of the file in bytes.
mm.parseStream(someReadStream, 'audio/mpeg', { duration: true, fileSize: 26838 })
.then( function (metadata) {
console.log(util.inspect(metadata, { showHidden: false, depth: null }));
someReadStream.close();
});Licence
(The MIT License)
Copyright (c) 2017 Borewit
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.