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.
Union Members
Section titled “Union Members”boolean
Type Literal
Section titled “Type Literal”{ denoise?: boolean | { strength?: number; }; normalize?: boolean | { level?: number; }; }
denoise?
Section titled “denoise?”
optionaldenoise?:boolean| {strength?:number; }
Background noise reduction. strength is the 0-1 mix, default 0.85.
normalize?
Section titled “normalize?”
optionalnormalize?:boolean| {level?:number; }
Loudness normalization. level is the LUFS target, default -16.