feat: add fade in/out functionality for audio segments with UI controls

This commit is contained in:
2025-11-11 23:46:26 +11:00
parent e2017fc6ea
commit 5b2090c102
8 changed files with 458 additions and 12 deletions

View File

@@ -138,4 +138,8 @@ export interface SplitSegmentRequest {
label?: string;
/** Metadata overrides to apply to the generated file. */
metadata?: SegmentMetadataInput;
/** Fade in duration in milliseconds. */
fadeInMs?: number;
/** Fade out duration in milliseconds. */
fadeOutMs?: number;
}