我有一个 JW Player 实现,它无法在“本地”工作。

发布于 2024-09-10 01:43:22 字数 232 浏览 7 评论 0原文

用户直接从 CD 在本地运行我的 HTML 文件。

我想让他们选择一堆视频并即时创建一个播放列表。

如果我运行 Web 服务器,这非常有效,但当我运行 HTML 本身时,它会失败。

播放器已创建(使用 swfobject),并且所有其他代码都运行,但 playerReady 从未触发,因此我永远无法将当前播放列表添加到其中。

关于如何解决这个问题或者更有可能解决这个问题有什么想法吗?

Users run my HTML files locally, straight from a CD.

I want to allow them to choose a bunch of videos and create a playlist on the fly.

This works very well if I run a web server but when I run the HTML itself it fails.

The player is created (using swfobject) and all my other code runs but playerReady never fires so I can never get the current play list to add to it.

Any ideas on how I can fix this or, more likely, work around it?

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

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

发布评论

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

评论(1

耳钉梦 2024-09-17 01:43:22

如果播放器已创建,但您没有让播放器就绪,则可能会发生以下两种情况之一。

  1. 页面上还有另一个playerReady正在捕获您的playerReady。确保页面上只有一名玩家就绪。
  2. 您尚未启用 Flash 的 JavaScript 访问。其代码如下所示:

SWFObject:

var so = new SWFObject('player.swf','ply','470','320','9','#000000');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','video.flv');
so.write('mediaspace');

我还应该注意,存在一些额外的 Flash 安全限制,因为您是从磁盘访问播放器。即,您无法同时访问磁盘源和网络源(Internet)。

最佳,

扎克

开发者,长尾视频

If the player is created, but you're not getting a playerReady, one of two things could be happening.

  1. There's another playerReady on the page that's catching your playerReady. Make sure that there's just one playerReady on the page.
  2. You haven't enabled JavaScript access for Flash. The code for that would look like this:

SWFObject:

var so = new SWFObject('player.swf','ply','470','320','9','#000000');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','video.flv');
so.write('mediaspace');

I should also note that there are some additional Flash security restrictions because you're accessing the player from disk. Namely, you can't access both a disk source and a network source (the Internet) simultaneously.

Best,

Zach

Developer, LongTail Video

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文