I managed to dig up some old movies from my old hard drive, Turns out that the background music isn't really background music at all.
What happens is that the voices of people are very soft and the "background" music is so loud that I have to turn my speakers down.
I came up with the idea to level the master volume and here it is:
AutoIt
While 1 $iCurVol = _Function_To_Get_Current_Playback_Volume() ; Gets the current playback volume in Db (loudness) $iVol = _Function_To_Get_Master_Volume() ; Returns the master vol in % _Function_To_Set_Master_Volume($iVol - 1) ; Sets the master vol in % $iVol = _Function_To_Get_Master_Volume() ; Returns the master vol in % _Function_To_Set_Master_Volume($iVol - 1) ; Sets the master vol in % EndFunc ;==>_Exit
As you can see I need 3 functions:
- One to get the current DB of the playback volume
- A second one to get the master volume
- And a third one to set the master volume