Viscom Software VideoCap ActiveX Control

GetAudioCompressorName Method

Description:   

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

Usage:   

VideoCap1.GetAudioCompressorName Parameter1
 

Parameter:

Parameter1 - the index of Audio Compressor
 

Return Value:

Return the name of Audio Compressor. If the index is not found, return empty string.

Example:   

This Visual Basic.Net example 

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