Napisałem sobie skrypt streamingu z video z mojego serwera , który jest obsługiwany przez flow player.
Zainstalowałem do tego wtyczkę pseudo streaming.
Problem polega na tym , że w Firtefoxie przewijanie nie działa , a w Operze i Google chrome jest ok.
Wiecie co może być tego powodem ?
Mój kod playera :
<a style="display:block;width:520px;height:330px" id="player"> </a> <script> flowplayer("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", { // configure clip to use "lighthttpd" plugin for providing video data clip: { url: 'http://beta.redhosti.pl/?pobierz=HPwcwUQLys2p', provider: 'lighttpd' }, // streaming plugins are configured normally under the plugins node plugins: { lighttpd: { url: 'flowplayer.pseudostreaming-3.2.7.swf', queryString: escape('&start=${start}') } } }); </script>