gpt4 book ai didi

javascript - JW Player javaScript API 不工作

转载 作者:行者123 更新时间:2023-11-29 20:02:10 26 4
gpt4 key购买 nike

我使用 jwplayer.version = '5.10.2295' 和浏览器 chrome 25。

我的代码:

jwplayer('container').setup({
file: 'path...',
width: '300px',
height: '100px',
autostart: true,
modes: [
{ type: 'html5' },
{ type: 'flash', src: 'path...' }
]
});

加载页面后,我的资源(mp4 视频文件)开始正确显示 - 没问题。但是对于简单的 jwplayer JS API 方法没有反应,例如 jwplayer().stop()。有些控件不可用(播放、置顶、搜索),但“进入全屏模式”按钮与音量按钮一样有效。

最有趣的是js api和控制按钮在视频开始播放后的几秒钟内可用(如果清除了浏览器缓存),然后就没有交互响应了。但是某些方法始终可以正常工作(例如 jwplayer().setFullscreen())。

附注我看到相关question但答案对我来说还不够深。

最佳答案

我找到了解决方案。

我的视频文件在路径中没有指定的扩展名(我有“path/to/file”而不是“path/to/file.mp4”)并且这个事实在 jwPlayer 的深处破坏了一些东西。我们需要指定我们操作的文件类型:

jwplayer('container').setup({
file: 'path/to/file-with-no-extension',
width: '300px',
height: '100px',
autostart: true,
type: 'video', //helps jwplayer to determine how to handle our resource with no extension
modes: [
{ type: 'html5' },
{ type: 'flash', src: 'path...' }
]
});

这就是解决方案。

关于javascript - JW Player javaScript API 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13800386/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com