在需要令牌的地方嵌入 vimeo 视频
Embed vimeo videos where token is required
我想知道是否有办法直接将 vimeo
视频嵌入到网站中,或者是否有办法将 link 稳定地嵌入到 MP4
文件中.
例如。此页面:http://www.landfunker.de/ktv/detail.php?rubric=93&nr=86411。该视频仅在从该页面访问时才会启动。在源代码中,我看到 link 类似于
fpdl.vimeocdn.com/vimeo-prod-skyfire-std-us/01/3026/7/190133161/631209312.mp4?token=587a20e2_0xece9d9d127813f2b792edb30032d4d9b0a7c484f
但是,令牌会过期,对吧。有小费吗?任意 workarounds.thx
您绝对可以将 Vimeo 视频嵌入网站 - Vimeo 在其网站上提供了说明:
To get your video's embed code, go to its video page and click the Share button. Then click the +Show options link that appears above the embed code field to reveal a preview of your embedded video with the Basic customization options. Once you've made your adjustments, you can copy the embed code and paste it wherever you'd like to embed your video.
他们还使用 oEmbed 提供了基于 API 的嵌入方法。这里有一个 JavaSCript 示例:
这基本上调用 API 和要嵌入的视频的 URL,响应包括您附加到页面的 HTML。
使用 Vimeo iframe 嵌入代码在您的网站上嵌入视频:
- https://help.vimeo.com/hc/en-us/sections/203874347-Embedding-Videos
- https://developer.vimeo.com/apis/oembed
要获取视频文件的 MP4 链接,您需要成为 Vimeo PRO 或企业会员。视频文件链接 return 编辑在来自 API 的单个视频的响应中。
GET https://api.vimeo.com/videos/[video_id]
您可以使用 API 的 JSON fields filter 至 仅 return 视频文件链接:
GET https://api.vimeo.com/videos/[video_id]?fields=files
最后请注意,您只能检索您自己的 PRO 或企业帐户中视频的视频文件链接。 Vimeo 不提供检索其他用户帐户视频的视频文件链接的方法。
API 文档可在此处找到:https://developer.vimeo.com/api/start
我想知道是否有办法直接将 vimeo
视频嵌入到网站中,或者是否有办法将 link 稳定地嵌入到 MP4
文件中.
例如。此页面:http://www.landfunker.de/ktv/detail.php?rubric=93&nr=86411。该视频仅在从该页面访问时才会启动。在源代码中,我看到 link 类似于
fpdl.vimeocdn.com/vimeo-prod-skyfire-std-us/01/3026/7/190133161/631209312.mp4?token=587a20e2_0xece9d9d127813f2b792edb30032d4d9b0a7c484f
但是,令牌会过期,对吧。有小费吗?任意 workarounds.thx
您绝对可以将 Vimeo 视频嵌入网站 - Vimeo 在其网站上提供了说明:
To get your video's embed code, go to its video page and click the Share button. Then click the +Show options link that appears above the embed code field to reveal a preview of your embedded video with the Basic customization options. Once you've made your adjustments, you can copy the embed code and paste it wherever you'd like to embed your video.
他们还使用 oEmbed 提供了基于 API 的嵌入方法。这里有一个 JavaSCript 示例:
这基本上调用 API 和要嵌入的视频的 URL,响应包括您附加到页面的 HTML。
使用 Vimeo iframe 嵌入代码在您的网站上嵌入视频:
- https://help.vimeo.com/hc/en-us/sections/203874347-Embedding-Videos
- https://developer.vimeo.com/apis/oembed
要获取视频文件的 MP4 链接,您需要成为 Vimeo PRO 或企业会员。视频文件链接 return 编辑在来自 API 的单个视频的响应中。
GET https://api.vimeo.com/videos/[video_id]
您可以使用 API 的 JSON fields filter 至 仅 return 视频文件链接:
GET https://api.vimeo.com/videos/[video_id]?fields=files
最后请注意,您只能检索您自己的 PRO 或企业帐户中视频的视频文件链接。 Vimeo 不提供检索其他用户帐户视频的视频文件链接的方法。
API 文档可在此处找到:https://developer.vimeo.com/api/start