Gets the AudioFormats object that contains all the audio formats available for the current capture device.
public virtual AudioFormats AudioCaptureFormats { get; } Public Overridable ReadOnly Property AudioCaptureFormats As AudioFormats public:virtual property AudioFormats^ AudioCaptureFormats {AudioFormats^ get();}
An AudioFormats object.
The AudioFormats collection contains an AudioFormat object for each of the supported audio formats. The properties of each AudioFormat object include the BitsPerSample, Channels, and the SampleFrequency.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public CaptureCtrlForm _form = new CaptureCtrlForm();public bool _result = false;public void AudioFormatExample(){try{int count, freq = 0, bits = 0, channels = 0;int found, selected = -1;// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;// set an audio device, use the name of your device hereif (capturectrl.AudioDevices["USB"] == null)throw new Exception("No USB audio device available");capturectrl.AudioDevices["USB"].Selected = true;// get a count of the available audio formatscount = capturectrl.AudioCaptureFormats.Count;// reset the current selection to -1capturectrl.AudioCaptureFormats.Selection = -1;// reference the audioformats propertyAudioFormats audioformats = capturectrl.AudioCaptureFormats;// enumerate formats and select oneforeach (AudioFormat af in audioformats){freq = af.SampleFrequency;bits = af.BitsPerSample;channels = af.Channels;// select the format if it matches some criteriaif (freq == 8000 && bits == 16 && channels == 2){af.Selected = true;break;}}// get the currently selected formatselected = audioformats.Selection;// find a format based on frequency, bits/channel and number of channelsfound = audioformats.IndexOf(8000, 8, 2);// the format found format is not selected, so select itif (found != selected)audioformats.Selection = found;// get the new selected formatselected = audioformats.Selection;// set our result based on what we expect_result = (count > 0 && selected == found);}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _form As CaptureCtrlForm = New CaptureCtrlForm()Public _result As Boolean = FalsePublic Sub AudioFormatExample()TryDim count As Integer, freq As Integer = 0, bits As Integer = 0, channels As Integer = 0Dim found As Integer, selected As Integer = -1' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrl' set an audio device, use the name of your device hereIf capturectrl.AudioDevices("USB") Is Nothing ThenThrow New Exception("No USB audio device available")End Ifcapturectrl.AudioDevices("USB").Selected = True' get count of available audio formatscount = capturectrl.AudioCaptureFormats.Count' reset the current selection to -1capturectrl.AudioCaptureFormats.Selection = -1' reference the audioformats propertyDim audioformats As AudioFormats = capturectrl.AudioCaptureFormats' enumerate formats and select oneFor Each af As AudioFormat In audioformatsfreq = af.SampleFrequencybits = af.BitsPerSamplechannels = af.Channels' select the format if it matches some criteriaIf freq = 8000 AndAlso bits = 16 AndAlso channels = 2 Thenaf.Selected = TrueExit ForEnd IfNext af' get the currently selected formatselected = audioformats.Selection' find a format based on frequency, bits/channel and number of channelsfound = audioformats.IndexOf(8000, 8, 2)' our found format is not selected, so select itIf found <> selected Thenaudioformats.Selection = foundEnd If' get the new selected formatselected = audioformats.Selection' set our result based on what we expect_result = (count > 0 AndAlso selected = found)Catch e1 As Exception_result = FalseEnd TryEnd Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
