获取雅虎视频的缩略图? (Python)
The question has a similar intent as this question:
Get img thumbnails from Vimeo?
but that one was for vimeo.
So, I have a url for the yahoo video, is there any way I could get the standard thumbnail using the url?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,雅虎支持 oembed。因此,您可以获取视频网址,例如
http://video.yahoo.com/watch/5202550/13742849 并传递它像这样进入他们的 oembed 服务:
http://video.yahoo.com/services/oembed?url=http://video.yahoo.com/watch/5202550/13742849
对此的响应将包含缩略图 URL。
Well, Yahoo supports oembed. So, you can take the video url e.g.,
http://video.yahoo.com/watch/5202550/13742849 and pass it on to their oembed service like this:
http://video.yahoo.com/services/oembed?url=http://video.yahoo.com/watch/5202550/13742849
The response to that will contain the thumbnail image url.