LTMM DirectShow Filter List Utility

The "LTMM DirectShow Filter List Utility" is an application that allows the user to enumerate all of the registered DirectShow filters and copy filter information to the clipboard. This is especially useful for copying the filter "Display Name" to your application and changing the filter's Merit field. This allows the user to directly assign a compressor Also known as an encoder, this is a module or algorithm to compress data. Playing that data back requires a decompressor, or decoder., device, or processor to an object. For instance, to assign the "LEAD Video Emboss Filter" to the convert object proceed as follows:

1.

Run the "LTMM DirectShow Filter List Utility"

2.

Select the "LEAD Video Emboss Filter"

 

3.

Click the Copy button to the right of the "Display Name" field.

4.

Paste the "Display Name" into your code:

Dim strEmboss As String
strEmboss = "@device:sw:{E526D606-22E7-494C-B81E-AC0A94BFE603}\{E2B7DB17-38C5-11D5-91F6-00104BDB8FF9}"

5.

Add the emboss processor to the convert object:

 

convert.SelectedVideoProcessors.AddItem
convert.
VideoProcessors.Item(convert.VideoProcessors.Find(strEmboss)), -1