AudioCompressors
Viscom Software VideoCap ActiveX Control |
AudioCompressors Collection
AudioCompressors is a collection of AudioCompressor objects. An AudioCompressors collection is used to obtain a list of available audio compressors (codecs).
Example:
This VB example show how to fill a combobox will all available audio compressor:
Dim myAudioCompressor As AudioCompressor
For Each myAudioCompressor In VideoCap1.AudioCompressors
cboAudioCompressor.AddItem myAudioCompressor.Name
Next