Skip to content

NarrationAudioCleanupOption

NarrationAudioCleanupOption = boolean | { denoise?: boolean | { strength?: number; }; normalize?: boolean | { level?: number; }; }

Defined in: narrationAudioCleanup.ts:21

User-facing option: true enables the full cleanup chain (denoise and loudness normalization) with defaults, false/undefined disables it, and the object form enables only the listed sub-features with optional tuning.

boolean


{ denoise?: boolean | { strength?: number; }; normalize?: boolean | { level?: number; }; }

optional denoise?: boolean | { strength?: number; }

Background noise reduction. strength is the 0-1 mix, default 0.85.

optional normalize?: boolean | { level?: number; }

Loudness normalization. level is the LUFS target, default -16.