Stream and file based music metadata parser for node.js. Supports any common audio and tagging format. TypeScript definitions are included.
| Audio format | Description | Wiki | |
|---|---|---|---|
| AIFF / AIFF-C | Audio Interchange File Format | 🔗 | |
| AAC | ADTS / Advanced Audio Coding | 🔗 | |
| APE | Monkey's Audio | 🔗 | |
| ASF | Advanced Systems Format | 🔗 | |
| DSDIFF | Philips DSDIFF | 🔗 | |
| DSF | Sony's DSD Stream File | 🔗 | |
| FLAC | Free Lossless Audio Codec | 🔗 | |
| MP2 | MPEG-1 Audio Layer II | 🔗 | |
| Matroska | Matroska (EBML), mka, mkv | 🔗 | |
| MP3 | MPEG-1 / MPEG-2 Audio Layer III | 🔗 | |
| MPC | Musepack SV7 | 🔗 | |
| MPEG 4 | mp4, m4a, m4v | 🔗 | |
| Ogg | Open container format | 🔗 | |
| Opus | 🔗 | ||
| Speex | 🔗 | ||
| Theora | 🔗 | ||
| Vorbis | Vorbis audio compression | 🔗 | |
| WAV | RIFF WAVE | 🔗 | |
| WebM | webm | 🔗 | |
| WV | WavPack | 🔗 | |
| WMA | Windows Media Audio | 🔗 |
Following tag header formats are supported:
It allows many tags to be accessed in audio format, and tag format independent way.
Support for MusicBrainz tags as written by Picard. ReplayGain tags are supported.
Support for encoding / format details:
- Bit rate
- Audio bit depth
- Duration
- Encoding profile (e.g. CBR, V0, V2)
The JavaScript in runtime is compliant with ECMAScript 2017 (ES8). Requires Node.js® version 6 or higher.
Although music-metadata is designed to run the node.js. music-metadata-browser can be used on the browser side.
To avoid Node fs dependency inclusion, you may use a sub-module inclusion:
import * as mm from 'music-metadata/lib/core';| function | music-metadata |
music-metadata/lib/core |
|---|---|---|
parseBuffer |
✓ | ✓ |
parseStream * |
✓ | ✓ |
parseFromTokenizer |
✓ | ✓ |
parseFile |
✓ |
Install using npm:
npm install music-metadataor using yarn:
yarn add music-metadataImport music-metadata in JavaScript:
const mm = require('music-metadata');This is how it's done in TypeScript:
import * as mm from 'music-metadata';There are two ways to parse (read) audio tracks:
- Audio (music) files can be parsed using direct file access using the parseFile function
- Using Node.js streams using the parseStream function.
Direct file access tends to be a little faster, because it can 'jump' to various parts in the file without being obliged to read intermediate data.
Parses the specified file (filePath) and returns a promise with the metadata result (IAudioMetadata).
parseFile(filePath: string, opts: IOptions = {}): Promise<IAudioMetadata>`
Example:
const mm = require('music-metadata');
const util = require('util');
(async () => {
try {
const metadata = await mm.parseFile('../music-metadata/test/samples/MusicBrainz - Beth Hart - Sinner\'s Prayer [id3v2.3].V2.mp3');
console.log(util.inspect(metadata, { showHidden: false, depth: null }));
} catch (error) {
console.error(error.message);
}
})();Parses the provided audio stream for metadata.
It is recommended to provide the corresponding MIME-type.
An extension (e.g.: .mp3), filename or path will also work.
If the MIME-type or filename (via fileInfo.path) is not provided, or not understood, music-metadata will try to derive the type from the content.
parseStream(stream: Stream.Readable, fileInfo?: IFileInfo | string, opts?: IOptions = {}): Promise<IAudioMetadata>`Example:
const mm = require('music-metadata');
(async () => {
try {
const metadata = await mm.parseStream(someReadStream, {mimeType: 'audio/mpeg', size: 26838});
console.log(metadata);
} catch (error) {
console.error(error.message);
}
})();Parse metadata from an audio file, where the audio file is held in a Buffer.
parseBuffer(buffer: Buffer, fileInfo?: IFileInfo | string, opts?: IOptions = {}): Promise<IAudioMetadata>Example:
(async () => {
try {
const metadata = mm.parseBuffer(someBuffer, 'audio/mpeg');
console.log(metadata);
} catch (error) {
console.error(error.message);
}
})();This is a low level function, reading from a strtok3 ITokenizer interface. music-metadata-browser is depended on this function.
This also enables special read modules like:
- streaming-http-token-reader for chunked HTTP(S) reading, using HTTP range requests.
Utility to Converts the native tags to a dictionary index on the tag identifier
orderTags(nativeTags: ITag[]): [tagId: string]: any[]Can be used to convert the normalized rating value to the 0..5 stars, where 0 an undefined rating, 1 the star the lowest rating and 5 the highest rating.
ratingToStars(rating: number): numberSelect cover image based on image type field, otherwise the first picture in file.
export function selectCover(pictures?: IPicture[]): IPicture | nullimport * as mm from 'music-metadata';
(async () => {
const {common} = await mm.parseFile(filePath);
const cover = mm.selectCover(common.picture); // pick the cover image
}
)();duration: default:false, if set totrue, it will parse the whole media file if required to determine the duration.observer: (update: MetadataEvent) => void;: Will be called after each change tocommon(generic) tag, orformatproperties.skipCovers: default:false, if set totrue, it will not return embedded cover-art (images).skipPostHeaders? booleandefault:false, if set totrue, it will not search all the entire track for additional headers. Only recommenced to use in combination with streams.includeChaptersdefault:false, if set totrue, it will parse chapters (currently only MP4 files). experimental functionality
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.
If the returned promise resolves, the metadata (TypeScript IAudioMetadata interface) contains:
metadata.formatAudio format informationmetadata.commonIs a generic (abstract) way of reading metadata information.metadata.trackInfoIs a generic (abstract) way of reading metadata information.metadata.nativeList of native (original) tags found in the parsed audio file.
The questionmark ? indicates the property is optional.
Audio format information. Defined in the TypeScript IFormat interface:
format.container?: stringAudio encoding format. e.g.: 'flac'format.codec?Name of the codec (algorithm used for the audio compression)format.codecProfile?: stringCodec profile / settingsformat.tagTypes?: TagType[]List of tagging formats found in parsed audio fileformat.duration?: numberDuration in secondsformat.bitrate?: numberNumber bits per second of encoded audio fileformat.sampleRate?: numberSampling rate in Samples per second (S/s)format.bitsPerSample?: numberAudio bit depthformat.lossless?: booleanTrue if lossless, false for lossy encodingformat.numberOfChannels?: numberNumber of audio channelsformat.creationTime?: DateTrack creation timeformat.modificationTime?: DateTrack modification / tag update timeformat.trackGain?: numberTrack gain in dBformat.albumGain?: numberAlbum gain in dB
To support advanced containers like Matroska or MPEG-4, which may contain multiple audio and video tracks, the experimental metadata.trackInfo has been added,
metadata.trackInfo is either undefined or has an array of trackInfo
Audio format information. Defined in the TypeScript IFormat interface:
trackInfo.type?: TrackTypeTrack typetrackInfo.codecName?: stringCodec nametrackInfo.codecSettings?: stringCodec settingstrackInfo.flagEnabled?: booleanSet if the track is usable, default:truetrackInfo.flagDefault?: booleanSet if that track (audio, video or subs) SHOULD be active if no language found matches the user preference.trackInfo.flagLacing?: booleanSet if the track may contain blocks using lacingtrackInfo.name?: stringA human-readable track name.trackInfo.language?: stringSpecifies the language of the tracktrackInfo.audio?: IAudioTrack, seetrackInfo.audioTracktrackInfo.video?: IVideoTrack, seetrackInfo.videoTrack
audioTrack.samplingFrequency?: numberaudioTrack.outputSamplingFrequency?: numberaudioTrack.channels?: numberaudioTrack.channelPositions?: BufferaudioTrack.bitDepth?: number
videoTrack.flagInterlaced?: booleanvideoTrack.stereoMode?: numbervideoTrack.pixelWidth?: numbervideoTrack.pixelHeight?: numbervideoTrack.displayWidth?: numbervideoTrack.displayHeight?: numbervideoTrack.displayUnit?: numbervideoTrack.aspectRatioType?: numbervideoTrack.colourSpace?: BuffervideoTrack.gammaValue?: number
Common tag documentation is automatically generated.
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, {mimeType: 'audio/mpeg', size: 26838}, {duration: true})
.then( function (metadata) {
console.log(util.inspect(metadata, {showHidden: false, depth: null}));
someReadStream.close();
});Via metadata.common.picture you can access an array of cover art if present.
Each picture has this interface:
/**
* Attached picture, typically used for cover art
*/
export interface IPicture {
/**
* Image mime type
*/
format: string;
/**
* Image data
*/
data: Buffer;
/**
* Optional description
*/
description?: string;
/**
* Picture type
*/
type?: string;
}To assign img HTML-object you can do something like:
img.src = `data:${picture.format};base64,${picture.data.toString('base64')}`;-
How can I traverse (a long) list of files?
What is important that file parsing should be done in a sequential manner. In a plain loop, due to the asynchronous character (like most JavaScript functions), it would cause all the files to run in parallel which is will cause your application to hang in no time. There are multiple ways of achieving this:
-
Using recursion
const mm = require('music-metadata') function parseFiles(audioFiles) { const audioFile = audioFiles.shift(); if (audioFile) { return mm.parseFile(audioFile).then(metadata => { // Do great things with the metadata return parseFiles(audioFiles); // process rest of the files AFTER we are finished }) } return Promise.resolve(); }
-
Use async/await
Use async/await
const mm = require('music-metadata'); // it is required to declare the function 'async' to allow the use of await async function parseFiles(audioFiles) { for (const audioFile of audioFiles) { // await will ensure the metadata parsing is completed before we move on to the next file const metadata = await mm.parseFile(audioFile); // Do great things with the metadata } }
-
Use a specialized module to traverse files
There are specialized modules to traversing (walking) files and directory, like walk.
-
(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.