LEADTOOLS Support
Multimedia
Multimedia SDK FAQ
How to apply audio/video effects using the Multimedia SDK?
#1
Posted
:
Tuesday, April 18, 2017 8:45:07 AM(UTC)
Groups: Tech Support
Posts: 366
Thanks: 1 times
Was thanked: 4 time(s) in 4 post(s)
An up to date example showing how to apply a video effect filter can be found here: https://www.leadtools.co...ter-to-a-video-file.htmlAll three of the main controls (Play, Capture and Convert) have the ability to use audio and video processing filters. There are two sets of lists to focus on here:
• AudioProcessors/VideoProcessors – This is a list of all of the available LEAD audio/video processors on the machine.
• SelAudioProcessors/SelVideoProcessors – This is a user-managed list of the audio/video processors used by the current control.
The process of using an audio or video processor is the same. For readability, I will only describe the process for video processors.
First, you will need to check the video processors list for the video effect you wish to use. This check is to get the index of the filter, as this index can vary from machine-to-machine (e.g. development to deployment machines). For applications in C/C++, there are two ways to find a processor index:
•
IltmmProcessors::Find() method will search the list and return the index value directly.
• Cycle through each IltmmProcessor in IltmmProcessors and check the
get_FriendlyName method to see if the current processor is the one you want.
With .NET, there isn’t any need to search for the LEAD processors, as this is handled the the .NET assembly.
Once you have the index, you then need to add the processor to the SelVideoProcessors list with
https://www.leadtools.co...iltmmprocessors-add.html or
https://www.leadtools.co...a/mm/processors-add.htmlEdited by moderator Wednesday, December 27, 2023 5:06:08 PM(UTC)
| Reason: Updated
Walter Bates
Senior Support Engineer
LEAD Technologies, Inc.
LEADTOOLS Support
Multimedia
Multimedia SDK FAQ
How to apply audio/video effects using the Multimedia SDK?
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.