寻求的Flowplayer是不正确的(seek on flowplayer is not right

2019-10-20 04:17发布

我试图寻找视频没有蒸。

这是我的页面:

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="flowplayer-3.2.13.min.js"></script>
<title>Flowplayer test</title>
</head><body>

<a style="display:block;width:640px;height:360px" id="player"></a>

<script>
flowplayer("player","flowplayer/flowplayer-3.2.18.swf",{
    clip: {url:'sp/gailun640x360.mp4'}});

function vgoto(val) {$f(0).seek(val);}
</script>

<a href="javascript:vgoto(0);">0s</a>
<a href="javascript:vgoto(10);">10s</a>
<a href="javascript:vgoto(20);">20s</a>
<a href="javascript:vgoto(30);">30s</a>
<a href="javascript:vgoto(40);">40s</a>
...
<a href="javascript:vgoto(100);">100s</a>

</body></html>

当我点击“10秒”,并寻求视频10秒,视频时间的推移变得7.04s,

然后我寻求20年代,它成为17.04s,

等等,如:

30s  -> 20.08

40s  -> 30.08

50s  -> 40.08

60s  -> 56.52

70s  -> 66.52

80s  -> 76.52

90s  -> 86.52

100s -> 90.92

谢谢你的帮助。

Answer 1:

这个问题是可以的Flowplayer寻求关键帧只所以为了能够寻求到任何第二,你需要有关键帧每秒。 最有可能的,这意味着你需要重新编码视频的时候都用配置为强制关键帧每秒的ffmpeg上传。



文章来源: seek on flowplayer is not right