music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
29 lines (28 loc) • 1.08 kB
JavaScript
/**
* Extended Lame Header
*/
import * as Token from 'token-types';
import * as common from '../common/Util.js';
import { ReplayGain } from './ReplayGainDataFormat.js';
/**
* Info Tag
* @link http://gabriel.mp3-tech.org/mp3infotag.html
* @link https://github.com/quodlibet/mutagen/blob/abd58ee58772224334a18817c3fb31103572f70e/mutagen/mp3/_util.py#L112
*/
export const ExtendedLameHeader = {
len: 27,
get: (buf, off) => {
const track_peak = Token.UINT32_BE.get(buf, off + 2);
return {
revision: common.getBitAllignedNumber(buf, off, 0, 4),
vbr_method: common.getBitAllignedNumber(buf, off, 4, 4),
lowpass_filter: 100 * Token.UINT8.get(buf, off + 1),
track_peak: track_peak === 0 ? null : track_peak / 2 ** 23,
track_gain: ReplayGain.get(buf, 6),
album_gain: ReplayGain.get(buf, 8),
music_length: Token.UINT32_BE.get(buf, off + 20),
music_crc: Token.UINT8.get(buf, off + 24),
header_crc: Token.UINT16_BE.get(buf, off + 24)
};
}
};