AudioDevices
TVideoGrabber.AudioDevices |
||||
|
|
|
List of the audio capture devices available on the current platform.
Declaration
function AudioDevices: string;
__property wchar_t *__fastcall AudioDevices();
Property AudioDevices as string
Description
Used to retrieve a string that contains the list of audio capture devices available on the current platform.
This list is updated when an audio capture device is connected or removed (when the OnDeviceArrivalOrRemoval event occurs).
This list can be assigned to list based controls. E.g.:
ComboBox1.Items.Text := AudioDevices;
ComboBox1.ItemIndex := ViddeoGrabber1.AudioDevice; (* index in the AudioDevices list.*)
It is possible to retrieve programmatically the index of an audio capture device by using the FindIndexInListByName function as follows:
VideoGrabber.AudioDevice := VideoGrabber.FindIndexInListByName (VideoGrabber.AudioDevices, 'name of my audio device', false, true);
Note: in Delphi and C++Builder versions of the component, this property is available also as a AudioDevices global variable.
See Also
TAudioFormat AssociateAudioAndVideoDevices AudioBalance AudioDevice AudioDeviceIndex AudioDeviceName AudioDeviceRendering AudioDevicesCount AudioFormat AudioFormats AudioInput AudioInputIndex AudioInputLevel AudioInputMono AudioInputs AudioInputsCount AudioSource IsAudioCrossbarAvailable IsAudioDeviceASoundCard IsAudioDeviceConnected IsAudioInputBalanceAvailable OnAudioBufferNegotiation OnAudioDeviceSelected SpeakerBalance SpeakerControl SpeakerVolume
Created with the Personal Edition of HelpNDoc: Create Professional CHM Help Files with HelpNDoc's Easy-to-Use Tool