gpt4 book ai didi

flash - JW player 6.x 版本的一个严重bug 缩略图tooltip bug on flash

转载 作者:行者123 更新时间:2023-12-03 18:21:11 24 4
gpt4 key购买 nike

这是一个严重的版本错误,从 JW player 6.0 到 Flash 的最新版本。自 6.0 版发布以来,有人报告了此错误,但他们的支持人员从未修复过此错误。

很难解释错误的行为如何,请在视频播放后点击播放按钮并将鼠标悬停在时间轴上查看缩略图工具提示的行为here .

知道如何修复它吗?

最佳答案

首先,我们应该让jwplayer的javascript来构建html代码。

用js初始化jwplayer,在html中使用HTML5视频如下:

<center>            
<video controls="controls" id="container" poster="http://www.example.com/yourvideothumbs/videothumb.jpg" width="693" height="388">
<source src="http://www.example.com/videos/jourvideo.mp4" type="video/mp4" />
</video>
</center>

Javascript:
if(navigator.userAgent.toLowerCase().match(/(android)/) || navigator.userAgent.toLowerCase().match(/(chrom)/) ){
//wee must force flash video player in chrome, because mp4 video files is not supported yet in chrome's HTML5 video implementation.
modes = [{type: 'flash', src: '[JWPLAYERBASEDIR]/swf/player.swf'}];
}else{
modes = [ {type: 'html5'},{type: 'flash', src: '[JWPLAYERBASEDIR]swf/player.swf'}];
}

jwplayer("container").setup({
'modes':modes,
});

这在所有浏览器中都对我有用。 jwplayer 可以符合是否支持 HTML5。

或者下面的强制 HTML4 实现:
<div id="container"></div>
<script type="text/javascript">
jwplayer("container").setup({
modes = [{type: 'flash', src: '[JWPLAYERBASEDIR]/swf/player.swf'}], //force flashplayer for video
image: "yourvideothumbs/videothumb.jpg", //poster image
file: "videos/jourvideo.mp4", //video file
height: "693", //set height in px
width: "388" //set width in px
});

在设置中,您可以设置皮肤、控件、自动启动任何您想要的: http://www.longtailvideo.com/support/jw-player/28839/embedding-the-player/

关于flash - JW player 6.x 版本的一个严重bug 缩略图tooltip bug on flash,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20434562/

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