Guest Posted February 23, 2013 Posted February 23, 2013 (edited) Hellowant to know if there is a way to recognize sound froum the Audio Device.i found here:a small program with something i need..so i changed the code to this:expandcollapse popup#include <BassEnc.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiComboBox.au3> Opt("GUIOnEventMode", 1) Global $device, $input, $EncHandle, $RecHandle, $Bitrate = 128, $KHZ = 44100, $levels, $levelL = 0, $levelR = 0, $temp, $EncState = False $bass_dll = DllOpen("BASS.dll") $bassenc_dll = DllOpen("BASSENC.dll") $basscb_dll = DllOpen("BASSCB.dll") ;_BASS_SetConfig($bass_dll, $BASS_CONFIG_REC_BUFFER, 1000) $device = _GetDevices() $test = _BASS_RecordInit($bass_dll, $device) $RecHandle = _BASS_RecordStart(44100, 2, 0, $BASS_EXT_RecordProc) $timer = TimerInit() While 1 Sleep(20) $peak = _BASS_ChannelGetLevel($bass_dll,$RecHandle) ToolTip( $peak) WEnd Func _GetDevices() Local $count = 0, $info, $name = "", $sdef = "", $idef = 0 While 1 $info = _BASS_RecordGetDeviceInfo($bass_dll, $count) If @error Then ExitLoop $count += 1 If BitAND($info[2], $BASS_DEVICE_ENABLED) Then $name &= $info[0] & "|" If BitAND($info[2], $BASS_DEVICE_DEFAULT) Then $sdef = $info[0] $idef = $count EndIf WEnd Return $idef - 1 EndFunc Func _Exit() If _BASS_Encode_IsActive($bass_dll, $bassenc_dll, $EncHandle) Then _BASS_Encode_Stop($bass_dll, $bassenc_dll, $EncHandle) _BASS_RecordFree($bass_dll) Exit EndFuncthe only thing that i need is the $peak variable.i still didn't ccleened the code perfectly but i will do this aftar i will get what i want..the only problam is that the $peak variable give the number of the sound that out frome the microphone and not from the Speakers.i just need that it will give it from the Speakers...how to do this? Edited February 23, 2013 by Guest
Moderators Melba23 Posted February 24, 2013 Moderators Posted February 24, 2013 gil900, Please do not bump your threads within 24 hours. Remember this is not a 24/7 support forum - those who answer are only here because they like helping others and have some time to spare. You just have to wait until someone who knows something about your particular problem, and is willing to help, comes online. Be patient and someone will answer eventually. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Guest Posted February 24, 2013 Posted February 24, 2013 Ok thanks for the reassuring response. I'm just afraid I'll have to deal with this question alone in the world
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