我在让它工作时遇到了一些问题。我认为我已经根据http://flowplayer.org/forum/5/14664#post-14830做对了)。剪辑开始播放正常,但是当我跳到尚未加载的剪辑部分时,它只是回到文件/视频的开头
遗憾的是,使用的浏览器大部分是 IE6 :(
在 Redhat 上运行的 Apache 2
我用 ffmpeg 创建了一个 mp4 文件。运行 qt-faststart 1.mp4 1.qt.mp4
安装 mod_flvx.c
添加:
LoadModule flvx_module modules/mod_flvx.so
AddHandler flv-stream .flv
到 Apache httpd.conf
使用示例页面:
<script type="text/javascript">
flowplayer("player", "flash/flowplayer-3.0.3.swf", {
clip: {
url: 'http://servername/player/media/1.qt.mp4',
// default provider: 'h264streaming'
provider: flashembed.isSupported([9, 115]) ? 'h264streaming' : 'lighttpd',
scaling: 'fit',
autoBuffering: true,
autoplay: false,
bufferLength: 3
},
log: {
level: 'debug'
},
plugins: {
h264streaming: {
url: 'flash/flowplayer.h264streaming-3.0.5.swf'
},
controls: {
url: 'flash/flowplayer.controls-3.0.3.swf',
// which buttons are visible and which not ?
play:false,
fullscreen:true,
// scrubber is a well known nickname to the timeline/playhead combination
scrubber: true
}
}
});
</script>
有人有什么建议吗?
谢谢