C # Video Player

I am writing a program designed to play videos (not sure if there are consistent formats) in C # .net.

I was wondering if anyone knows of any good libraries that can play multiple codecs with aspect and trim options, but don't have direct control (or at least hidden)?

+7
source share
2 answers

You can try using the DirectShow API, there is a wrapper for .NET: DirectShowNET library

+5
source

Yoy can try [ffmpeg] [1] [1]: http://ffmpeg.org/ is a tool for recording, converting, streaming and playing multimedia content.

0
source

All Articles