2

我已经在 youtube 频道上传了视频。

使用 http://www.codeproject.com/Articles/207284/Displaying-Videos-from-YouTube-Channel-in-ASP-NET

我能够显示频道中的所有视频。但我不想在我的网站上播放视频。

我想在我的网站上显示视频链接,当点击它应该去 youtube 播放。

我希望链接成为视频链接的缩略图链接 youtube 向我们展示了缩略图右下角的总时间。

感谢您的帮助。

4

1 回答 1

1

你可以参考这里thumbnail使用video

https://developers.google.com/youtube/2.0/developers_guide_dotnet#Retrieving_and_searching_for_videos

 foreach (MediaThumbnail thumbnail in video.Thumbnails)
 {
   Console.WriteLine("\tThumbnail URL: " + thumbnail.Url);
   Console.WriteLine("\tThumbnail time index: " + thumbnail.Time);
 }
于 2013-01-27T08:05:36.653 回答