DatMCEyeBall Posted July 9, 2013 Share Posted July 9, 2013 (edited) 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: HotKeySet("{ESC}", "_Exit") Global $iLimit = 60 ; Limit in Db While 1 $iCurVol = _Function_To_Get_Current_Playback_Volume() ; Gets the current playback volume in Db (loudness) If $iCurVol > $iLimit Then Do $iVol = _Function_To_Get_Master_Volume() ; Returns the master vol in % _Function_To_Set_Master_Volume($iVol - 1) ; Sets the master vol in % Until _Function_To_Get_Current_Playback_Volume() = $iLimit ElseIf $iCurVol < $iLimit Then Do $iVol = _Function_To_Get_Master_Volume() ; Returns the master vol in % _Function_To_Set_Master_Volume($iVol - 1) ; Sets the master vol in % Until _Function_To_Get_Current_Playback_Volume() = $iLimit EndIf Sleep(100) ; Check every 100 ms to reduce CPU load WEnd Func _Exit() Exit 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 Edited July 9, 2013 by DatMCEyeBall "Just be fred, all we gotta do, just be fred." -Vocaliod "That is a Hadouken. A KAMEHAMEHA would have taken him 13 days and 54 episodes to form." - Roden Hoxha @tabhooked Clock made of cursors ♣ Desktop Widgets ♣ Water Simulation Link to comment Share on other sites More sharing options...
JohnOne Posted July 9, 2013 Share Posted July 9, 2013 That's a lovely story. Please keep us updated with your progress. DatMCEyeBall 1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
DatMCEyeBall Posted July 9, 2013 Author Share Posted July 9, 2013 That's a lovely story. Please keep us updated with your progress. I could tell you another one "Just be fred, all we gotta do, just be fred." -Vocaliod "That is a Hadouken. A KAMEHAMEHA would have taken him 13 days and 54 episodes to form." - Roden Hoxha @tabhooked Clock made of cursors ♣ Desktop Widgets ♣ Water Simulation Link to comment Share on other sites More sharing options...
Solution DatMCEyeBall Posted July 9, 2013 Author Solution Share Posted July 9, 2013 '?do=embed' frameborder='0' data-embedContent>> "Just be fred, all we gotta do, just be fred." -Vocaliod "That is a Hadouken. A KAMEHAMEHA would have taken him 13 days and 54 episodes to form." - Roden Hoxha @tabhooked Clock made of cursors ♣ Desktop Widgets ♣ Water Simulation Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now