feat(tui): add interactive 5-band per-user equalizer

This commit is contained in:
Jose Luis Montañes Ojados
2026-01-17 20:25:58 +01:00
parent 0010bc6cf7
commit 711eb148df
5 changed files with 485 additions and 3 deletions

View File

@@ -8,6 +8,8 @@ const (
// UserSettings represents per-user audio configuration
type UserSettings struct {
Volume float32 // 0.0 - 1.0 (or higher for boost)
Muted bool
Volume float32 // 0.0 - 1.0 (or higher for boost)
Muted bool
Gains []float64 // 5-band Equalizer Gains in dB
EQBands []float64
}