c# - How to programatically list Installed video codecs? -
Do you know how to programmatically get the list of Windows farms on a computer, from the Windows Forms?
Thank you.
Windows Forms are UI elements, so they will not help you.
As far as to retrieve video codec lists, at the highest level:
- Use
- You can read from various registry keys
- You can check the file location of codecs you are looking for
- You can try to open a video file internally And one can catch exceptions where codecs are not present. This will require some custom code or API
Also, for future reference, you will not receive a favorable response by saying "I need a code".
Comments
Post a Comment