@thi.ng/dsp-io-wav
Version:
WAV file format generation
19 lines • 353 B
TypeScript
export interface WavSpec {
/**
* Sample rate in Hz.
*/
sampleRate: number;
/**
* Number of channels.
*/
channels: number;
/**
* Number of samples (irrespective of channel count)
*/
length: number;
/**
* Bits per sample
*/
bits: 8 | 16 | 24 | 32;
}
//# sourceMappingURL=api.d.ts.map