TVideoGrabber.AudioRenderers

Prev

Next

TVideoGrabber

Properties

 




































































































List of the audio renderers available on the current platform.


Declaration
property AudioRenderers: string read GetGlobal_AudioRenderers;


__property wchar_t *AudioRenderers==GetGlobal_AudioRenderers;

Description

Used to retrieve a string that contains the list of the audio renderers available on the current platform.

This list can be assigned to list based controls. E.g.:
ComboBox1.Items.Text := AudioRenderers;
ComboBox1.ItemIndex := ViddeoGrabber1.AudioRenderer; (* index in the AudioRenderers list.*)

It is possible to retrieve programmatically the index of an audio renderer by using the FindIndexInListByName function as follows:

VideoGrabber.AudioRenderer := VideoGrabber.FindIndexInListByName (VideoGrabber.AudioRenderers, '...name of the audio render to use...', false, true);


Note: in Delphi and C++Builder versions of the component, this property is available also as a AudioRenderers global variable.