I decided to write a program with which, for example, you can watch videos from YouTube.
Is there any general algorithm for working with video in C #? Which libraries to use?
If you do in the application WinForms, then the easiest way to use the component is WebBrowser and in it to reproduce the links to the video. Moreover, the links should be as in the embedded video. (code to insert on the web page). I do not see other ways.
In addition to the previous answer, if you use the c # web browser, you are completely dependent on the version of Internet Explorer installed on your computer. For example, to view html5 video you need IE9 +. Accordingly, it is necessary when installing the application to set the compatibility mode with a higher version of ie.
Source: https://ru.stackoverflow.com/questions/98702/
All Articles