以编程方式嵌入 Blip.tv 视频

发布于 2024-11-30 08:11:19 字数 642 浏览 1 评论 0原文

我正在尝试构建一个 php 视频嵌入函数,自动解析视频 URL,然后从中生成正确的嵌入代码。我在使用新的 blip.tv 播放器时遇到问题,因为在嵌入代码中没有引用有意义的 url 中的视频。这里有一个例子:

URL:http://blip.tv/NovusSwell/s3w31-hawaii-surfer-groms-with-potato-cannon-spud-gun-5471671

嵌入代码:

<embed src="http://blip.tv/play/g8hQgs38GwI" type="application/x-shockwave-flash" width="550" height="327" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" ></embed>

g8hQgs38GwI是我无法从 URL 中猜出的视频 ID。

有解决办法吗?

I'm trying to build a php video embedding function that parses the video URL automatically and then produces the right embed code out of that. I'm having trouble with the new blip.tv player because there is no reference the the video in the url that makes sense in the embed code. Here goes an example:

URL: http://blip.tv/NovusSwell/s3w31-hawaii-surfer-groms-with-potato-cannon-spud-gun-5471671

Embed Code:

<embed src="http://blip.tv/play/g8hQgs38GwI" type="application/x-shockwave-flash" width="550" height="327" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" ></embed>

g8hQgs38GwI is the video Id that I cannot guess out of the URL.

Is there a solution to this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌面超妹 2024-12-07 08:11:19

根据Blip.tv Wiki,这就是您需要的do:

  1. 获取该项目的 RSS 版本:http://blip.tv/rss/view/5471671(从 URL 获取 id)。
  2. 解析您在步骤 1 中获得的内容(RSS 基本上是一个 XML 文件):使用 XPath,可以在 /rss/channel/item/media:player 中找到复制/粘贴代码

According to Blip.tv Wiki here's what you need to do:

  1. Get the RSS version of the item: http://blip.tv/rss/view/5471671 (Get id from the URL).
  2. Parse what you got at step 1 (RSS is basically an XML file): Using XPath, the copy/paste code is found at /rss/channel/item/media:player
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文