public class AudioCompressors : Compressors
public ref class AudioCompressors : public Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable, System.IDisposable
The CaptureCtrl and ConvertCtrl objects use this collection to enumerate and select audio compressors. An AudioCompressors object is not externally creatable and is only obtained through the parent object's CaptureCtrl.AudioCompressors and ConvertCtrl.AudioCompressors properties. This collection object is derived from the general Compressors object collection base class. The AudioCompressors collection object also provides helper properties which can be used to access a particular video compressor for selection and use. For example, you can access and/or select the AAC audio compressor by doing the following:
Compressor myComp = captureCtrl.AudioCompressors.AAC;
myComp.Selected = true;
captureCtrl.AudioCompressors.AAC.Selected = true;
Note: You can also access other registered compressors that do not have helper property accessors by simply using the string indexer like:
captureCtrl.AudioCompressors["@device:sw:{33D9A761-90C8-11D0-BD43-00A0C911CE86}\\Some Other Audio Encoder"].Selected = true;
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document