ICImagingControl.AviCompressors Property

Returns a collection of available avi compressors (video codecs).
Syntax:
[C#]
public AviCompressor[] AviCompressors;
Limitations:

Run time only, read only.

Information:

This property is deprecated since version 3.5.
Use AviCompressor.AviCompressors

Sample:

This example displays all available compressors in a combo box. If no compressors are installed, the text "n/a" will be displayed in the combo box and it will be disabled. The combo box for the compressors is named "cboVideoCodec" in this example.

[C#]
cboVideoCodec.Items.Clear(); if( AviCompressor.AviCompressors.Length > 0 ) { // If compressors have been found, add them to the combobox. foreach( AviCompressor Item in AviCompressor.AviCompressors ) { cboVideoCodec.Items.Add(Item.Name); } cboVideoCodec.Enabled = true; } else { // No compressors have been found. cboVideoCodec.Items.Add("n/a"); cboVideoCodec.Enabled = false; } cboVideoCodec.SelectedIndex = 0;
See also: ICImagingControl, AviCompressors, MediaStreamSink

<< ICImagingControl