无需向 Vimeo 发出请求即可获取 Vimeo 视频的缩略图 API

Get thumbnail image of Vimeo video WITHOUT making a request to the Vimeo API

正在寻找无需(我重复一遍,无需)向 Vimeo 发出 REST 请求即可获取 Vimeo 视频缩略图的方法 API?

(不幸的是,下面的 "answer" 已经超过 10 年并且没有回答这个问题:Get img thumbnails from Vimeo?

几乎所有视频提供商都允许您通过在特定 URL 路径(即 YouTube、Matterport、iGuide 等)中提供视频 ID 来获取视频的缩略图

要明确 - 我不是在寻找使用 Javascript 或需要向 Vimeo API 提出请求的 "solution" - 只是一个特定的 URL 可以 return 给定 Vimeo 视频 ID 的缩略图。

我还给 Vimeo API 支持发了邮件,下面是我从他们的支持小组收到的“官方”回复:

Hi there,

Thanks for your interest in the Vimeo API! Full documentation of the Vimeo API can be found on our Developer Site:

https://developer.vimeo.com/api/guides/start

Sorry, but it's not possible to get a video's thumbnail links without first making a request to one of our APIs (oEmbed or our full-fledged REST API). You can learn about these APIs here:

https://developer.vimeo.com/api/oembed/videos

https://developer.vimeo.com/api/guides/start

所以 - 如果不发出 REST 请求,就无法获取 Vimeo 视频的缩略图。太可惜了。

更新:2021 年 10 月 2 日 请参阅@Parthiban post - Vimeo 已更新其服务/文档: https://developer.vimeo.com/api/oembed/videos

您可以使用 Vimeo oEmbed 方法,该方法使用视频的基本元信息(包括缩略图)给出 JSON 响应。它不需要像 Vimeo API.

这样的身份验证方法

官方文档中有更多详细信息:https://developer.vimeo.com/api/oembed/videos

查看 https://vumbnail.com/

您只需在 url 中传入视频的 ID,它就会以缩略图响应。

https://vumbnail.com/358629078.jpg

您也可以根据文档要求特定尺寸。这似乎是由第三方制作的,所以我不能说它是否得到很好的支持和可靠,但在我写这个答案时它似乎做了它声称要做的事情。祝你好运。