Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# Windows 表单应用程序中使用 vlc 插件。它适用于所有媒体类型,但无法通过插件播放 youtube 视频,也可以在主播放器本身中播放。我正在使用以下代码:
axVLCPlugin2.playlist.add("http://www.youtube.com/watch?v=BxPtmLmqdXU"); axVLCPlugin2.playlist.play();
应该如何才能播放 youtube 视频?
您指定的是 youtube 网页的 URL,而不是视频本身的 URL。您需要获取视频本身的 URL 并指定它。给定 youtube 页面 URL,有许多网页允许您提取视频的 URL,例如:
获取实际视频的链接