I have problems with work. I think I did it right based on http://flowplayer.org/forum/5/14664#post-14830 ). The clip starts to play normally, but when I skip the part of the clip that is not loaded yet, it just goes back to the beginning of the file / video
Unfortunately, the browser used is IE6 for the most part :(
Apache 2 runs on Redhat
I created a mp4 file with ffmpeg. Run qt-faststart 1.mp4 1.qt.mp4
Installed mod_flvx.c
Added:
LoadModule flvx_module modules/mod_flvx.so
AddHandler flv-stream .flv
In Apache httpd.conf
Using the example page:
<script type="text/javascript">
flowplayer("player", "flash/flowplayer-3.0.3.swf", {
clip: {
url: 'http://servername/player/media/1.qt.mp4',
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',
play:false,
fullscreen:true,
scrubber: true
}
}
});
</script>
Anyone have any suggestions?
thank
source
share