music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
59 lines (58 loc) • 2.43 kB
JavaScript
import * as Token from 'token-types';
import { FourCcToken } from '../common/FourCC.js';
import { makeUnexpectedFileContentError } from '../ParseError.js';
export const compressionTypes = {
NONE: 'not compressed PCM Apple Computer',
sowt: 'PCM (byte swapped)',
fl32: '32-bit floating point IEEE 32-bit float',
fl64: '64-bit floating point IEEE 64-bit float Apple Computer',
alaw: 'ALaw 2:1 8-bit ITU-T G.711 A-law',
ulaw: 'µLaw 2:1 8-bit ITU-T G.711 µ-law Apple Computer',
ULAW: 'CCITT G.711 u-law 8-bit ITU-T G.711 µ-law',
ALAW: 'CCITT G.711 A-law 8-bit ITU-T G.711 A-law',
FL32: 'Float 32 IEEE 32-bit float '
};
export class AiffContentError extends makeUnexpectedFileContentError('AIFF') {
}
export class Common {
constructor(header, isAifc) {
this.isAifc = isAifc;
const minimumChunkSize = isAifc ? 22 : 18;
if (header.chunkSize < minimumChunkSize)
throw new AiffContentError(`COMMON CHUNK size should always be at least ${minimumChunkSize}`);
this.len = header.chunkSize;
}
get(buf, off) {
// see: https://cycling74.com/forums/aiffs-80-bit-sample-rate-value
const shift = Token.UINT16_BE.get(buf, off + 8) - 16398;
const baseSampleRate = Token.UINT16_BE.get(buf, off + 8 + 2);
const res = {
numChannels: Token.UINT16_BE.get(buf, off),
numSampleFrames: Token.UINT32_BE.get(buf, off + 2),
sampleSize: Token.UINT16_BE.get(buf, off + 6),
sampleRate: shift < 0 ? baseSampleRate >> Math.abs(shift) : baseSampleRate << shift
};
if (this.isAifc) {
res.compressionType = FourCcToken.get(buf, off + 18);
if (this.len > 22) {
const strLen = Token.UINT8.get(buf, off + 22);
if (strLen > 0) {
const padding = (strLen + 1) % 2;
if (23 + strLen + padding === this.len) {
res.compressionName = new Token.StringType(strLen, 'latin1').get(buf, off + 23);
}
else {
throw new AiffContentError('Illegal pstring length');
}
}
else {
res.compressionName = undefined;
}
}
}
else {
res.compressionName = 'PCM';
}
return res;
}
}