←Select platform

VideoCompressors Class

Summary

A VideoCompressors object contains a collection of registered video compressors.

Syntax

C#
VB
C++
public class VideoCompressors : Compressors 
Public Class VideoCompressors  
   Inherits Leadtools.Multimedia.Compressors 
   Implements System.Collections.Generic.IEnumerable(Of Compressor), System.Collections.IEnumerable, System.IDisposable  
public ref class VideoCompressors : public Leadtools.Multimedia.Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable, System.IDisposable   

Remarks

The CaptureCtrl and ConvertCtrl objects use this collection to enumerate and select video compressors. A VideoCompressors object is not externally creatable and is only obtained through the parent object's CaptureCtrl.VideoCompressors and ConvertCtrl.VideoCompressors properties. This collection object is derived from the general Compressors object collection base class. The VideoCompressors 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 H264 video compressor by doing the following:

Compressor myComp = captureCtrl.VideoCompressors.H264; 
myComp.Selected = true; 

OR obtain access directly from the control like this:

captureCtrl.VideoCompressors.H264.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.VideoCompressors["@device:sw:{33D9A760-90C8-11D0-BD43-00A0C911CE86}\\Some Other Video Encoder"].Selected = true;

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Multimedia Assembly