Where can I find a video component or library for C#?
Is there a video library that will enable me开发者_如何学Python to do basic functionality with videos such as splitting a video into two, capturing a frame from a video, converting video between different formats, etc.?
Well what type of client technology are you using ? Silverlight has a lot of really great video functionality but you need to be comfortable with XAML. Silverlight Video Player
Silverlight is great for playing video... not so great for doing things like transcoding. Expression Encoder (SDK) does some things easily, but beyond that you really need to use unmanaged code to do anything sophisticated. Intel IPP, OpenCV, and DirectShow are the usual suspects none of which are going to be plug and play.
精彩评论