The purpose of this library is to be very fast and small. It’s suitable for server-side or client-side. Really any platform that supports ArrayBuffer and its ilk (Uint8Array, etc.).
I wrote it because the other libraries were large and very robust; I just needed something that could extract the metadata out without requiring 30KB of JavaScript. audio-metadata.min.js comes in at 6.1K/2.1K minified/gzipped.
To accomplish the small size and speed, it sacrifices several things.
As such, the code is a bit abstruse, in that you’ll see some magic numbers, like offset += 94 where it’s ignoring a bunch of header data to get to the good stuff.
Don’t judge me based on this code. It works and it’s tested; it’s just hard to read.
Of course, since this isn’t an actual parser, invalid files will also work.
This means, for example, you could only read the first couple hundred bytes of an MP3 file and still extract the metadata from it, rather than requiring actual valid MP3 data.
The library operates solely on ArrayBuffers, or Buffers for Node’s convenience. So you’ll need to preload your audio data before using this library.
The library defines three methods:
// extract comments from OGG container
AudioMetaData.ogg(buffer)
// extract ID3v2 tags
AudioMetaData.id3v2(buffer);
// extract ID3v1 tags
AudioMetaData.id3v1(buffer); The result is an object with the metadata. It attempts to normalize common keys:
TIT1 and TIT2 in id3v2)TSE1 in id3v2)TCOM in id3v2)TALB in id3v2)TRCK in id3v2, commonly TRACKNUMBER in vorbis comments)TDRC (date recorded) is used in id3v2)TSSE in id3v2)TCON in id3v2)Everything else will be keyed by its original name. For id3v2, anything that is not a text identifier (i.e. a frame that starts with a “T”) is ignored. This includes comments (COMM).
Install it using NPM: npm install audio-metadata or npm install -g audio-metadata if you want to use it from the shell.
var audioMetaData = require('audio-metadata'),
fs = require('fs');
var oggData = fs.readFileSync('/path/to/my.ogg');
var metadata = audioMetaData.ogg(oggData);
/*
{
"title": "Contra Base Snippet",
"artist": "Konami",
"album": "Bill and Lance's Excellent Adventure",
"year": "1988",
"tracknumber": "1",
"track": "1",
"encoder": "Lavf53.21.1"
}
*/ For more information click here.
General Working of a Web Application Firewall (WAF) A Web Application Firewall (WAF) acts as…
How to Send POST Requests Using curl in Linux If you work with APIs, servers,…
If you are a Linux user, you have probably seen commands like chmod 777 while…
Vim and Vi are among the most powerful text editors in the Linux world. They…
Working with compressed files is a common task for any Linux user. Whether you are…
In the digital era, an email address can reveal much more than just a contact…