Feat: UI/UX and ducking compressor
Some checks failed
Deploy Website / deploy (push) Failing after 4m52s

This commit is contained in:
2026-02-24 02:57:27 +01:00
parent 7632bc76f7
commit f0de312d6b
24 changed files with 402 additions and 71 deletions

View File

@@ -85,6 +85,8 @@ pub struct AudioConfig {
pub show_spectrum: bool,
pub show_lissajous: bool,
pub show_preview: bool,
pub gain_boost: f32,
pub normalize_viz: bool,
pub layout: MainLayout,
}
@@ -105,6 +107,8 @@ impl Default for AudioConfig {
show_spectrum: true,
show_lissajous: true,
show_preview: true,
gain_boost: 1.0,
normalize_viz: false,
layout: MainLayout::default(),
}
}