显示来自不同提供商的视频预览
我的用例有点基本。根据用户输入的URL,我希望显示好的播放器,当然根据输入的不同而不同。
例如,输入 http://www.youtube.com/watch?v=rv5OwTiBEiQ将显示 Youtube 播放器的预览。 Dailymotion、Yahoo!、Vimeo、Justin.tv、Myspace 也是如此...
您知道有任何 Javascript 插件可以做到这一点吗?理想情况下,它应该基于原型。
My use case is kinda basic. According to the URL a user inputs, I want to have the good player displayed, that varies according to the input of course.
For instance, inputting http://www.youtube.com/watch?v=rv5OwTiBEiQ would display the preview of the Youtube player. The same goes with Dailymotion, Yahoo!, Vimeo, Justin.tv, Myspace...
Do you know is any Javascript plugin does this ? Ideally, it'd be based on Prototype.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Youtube 的情况下,您所要做的就是获取 url 的视频 id 并将其放入以下 URL 中:
http://img.youtube.com/vi/{video-id}/1.jpg
然后你就有了 YouTube 预览图像的链接!
In the Youtube case, all you have to do is get the video id of the url and put this in the follow URL:
http://img.youtube.com/vi/{video-id}/1.jpg
Then you have the link to the youtube preview image!