Jump to content

Auto Volume Control


dragan
 Share

Recommended Posts

If you ever watched a movie on PC you know how annoying it can be if explosions, shooting, fighting, car chasing are too loud and conversation between characters can be barely heard. I made this script to monitor master volume level and decrease or increase volume if necessary - Requires Stereo Mix in the recording options of your system to be enabled and set as default device. Script also requires plugin by wraithdu, and SoundQuery.au3 by Austin Beer, can be found (All requirements are included into attachment)

Posted Image

Auto Volume Control.zip

Link to comment
Share on other sites

Sounds like a GREAT idea!

(Dont do Vista though... only xp...)

Keep up the good work!

/Manko

Yes i rush things! (I sorta do small bursts inbetween doing nothing.) Things I have rushed and reRushed:* ProDLLer - Process manager - Unload viri modules (dll) and moore...* _WinAPI_ProcessListOWNER_WTS() - Get Processes owner list...* _WinAPI_GetCommandLineFromPID() - Get commandline of target process...* _WinAPI_ThreadsnProcesses() Much info if expanded - optional Indented "Parent/Child"-style Processlist. Moore to come... eventually...
Link to comment
Share on other sites

  • 3 months later...
  • 6 months later...
  • 3 weeks later...

Simple, see:

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

_Example()

; Example
Func _Example()
Local $iMsg

GUICreate("My GUI", 320, 240) ; will create a dialog box that when displayed is centered

GUICtrlCreateButton(" Button", 120, 100, 70, 23)
; Sets icon in the button!
GUICtrlSetImage(-1, "shell32.dll", -234, 0)

GUISetState(@SW_SHOW) ; will display an empty dialog box

; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()

If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete()
EndFunc ;==>Example1

Regards,

João Carlos.

Edited by JScript

http://forum.autoitbrasil.com/ (AutoIt v3 Brazil!!!)

Somewhere Out ThereJames Ingram

somewh10.png

dropbo10.pngDownload Dropbox - Simplify your life!
Your virtual HD wherever you go, anywhere!

Link to comment
Share on other sites

  • 2 weeks later...

I want to normalize the volume output of my audio files and video to 89dB, this script does it?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...