Return the name of AVI Video Compressor for specific index.
Public Function GetVideoCompressorName( ByVal iIndexAsInteger ) as String
Parameter iIndex The index of Video Compressor, the first index is 0.
Return Value Return the name ofFilter.
Example
Visual Basic Syntax iCount = VideoEdit1.GetVideoCompressorCount List2.Clear For i = 0 To iCount - 1 List2.AddItem VideoEdit1.GetVideoCompressorName(i) Next