Viscom Software VideoCap ActiveX Control

GetAudioCompressorCount Method

Description:   

Return the count of Audio Compressor. In some development tools, you cannot use AudioCompressor Object, for this case, this method is useful.

Usage:   

VideoCap1.GetAudioCompressorCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for Audio Compressor.

Example:   

The Visual Basic.Net example 

For i = 0 To AxVideoCap1.GetAudioCompressorCount - 1
strAudioCompName = AxVideoCap1.GetAudioCompressorName(i)
cboaudiocomp.Items.Add(strAudioCompName)
Next