feat: added an option to allow user choose whether to trim leading silence when bouncing audio

This commit is contained in:
Xiaohan-Tian
2026-05-18 18:28:31 -07:00
parent 47d1d98134
commit fe1b4fc8ae
9 changed files with 236 additions and 4 deletions
+2
View File
@@ -80,6 +80,7 @@ interface AppConfig {
default_open: boolean;
};
audio: {
bounce_starts_from_beat_1: boolean;
enable_audio_capture_for_screen_sharing: boolean;
input_device_id: string;
lookahead_time: number;
@@ -260,6 +261,7 @@ export class ConfigManager {
default_open: true
},
audio: {
bounce_starts_from_beat_1: true,
enable_audio_capture_for_screen_sharing: false,
input_device_id: 'default',
lookahead_time: 0.05,