add web audio, replaygain, visualizer (#1289)

* add web audio, replaygain, visualizer

* remove volume multiplication in gain

---------

Co-authored-by: Jeff <42182408+jeffvli@users.noreply.github.com>
This commit is contained in:
Kendall Garner
2025-11-30 03:25:12 -08:00
committed by GitHub
parent 8777da9491
commit dd3d05c813
8 changed files with 233 additions and 23 deletions
@@ -360,7 +360,7 @@ export const MpvSettings = () => {
control: (
<NumberInput
defaultValue={settings.mpvProperties.replayGainPreampDB}
onChange={(e) => handleSetMpvProperty('replayGainPreampDB', e)}
onChange={(e) => handleSetMpvProperty('replayGainPreampDB', Number(e) || 0)}
width={75}
/>
),