Viscom Software Screen2Video 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 Screen2Video.AudioCompressors
    cboAudioCompressor.AddItem myAudioCompressor.Name
Next