Youtube video in WinForms C # application: playlist list and video management

This question is about accessing YouTube content through the C # WinForms app. Requirements:

  • To get metadata for a playlist or for all playlists from a given artist.
  • Insert a video and play it from an application synchronized with external synchronization events.

The approaches we were thinking about:

  • Use the YouTube Data API APIs to retrieve playlists. As we can tell, there is no C # wrapper, although this can be easily done.
  • Use WebBrowser to display video - not sure how we will manage the video.

Questions:

  • Are they right?
  • Is there a C # wrapper for the YouTube data API protocol?
  • What is the easiest way to embed video and manage video time?

Many thanks.

+4
source share

All Articles