/** * Measurement and analysis — `audiobox/analyze`. * * Everything here is read-only: it inspects audio and returns numbers. Useful on * its own for validating uploads, building meters, or drawing waveforms without * pulling in the editing machinery. */ export { measureLoudness, measurePeak, measureTruePeak, measureRms, toDb, fromDb, } from './loudness.js'; export type { LoudnessResult } from './loudness.js'; export { fft, spectrum, spectrogram } from './fft.js'; export type { SpectrumOptions } from './fft.js'; export { detectSilence } from '../dsp/silence.js'; export type { SilenceOptions, SilentRange } from '../dsp/silence.js'; //# sourceMappingURL=index.d.ts.map