I am having problems with the xmoov.php script. Here are the details.
Using JW Player 5.0.753
Running PHP 5.2
PHP scripts run properly on my server:
http://video.uams.edu/CME/rhp/phpinfo.php
xmoov.php seems to be configured properly because the following link prompts a download of the flv file:
http://video.uams.edu/CME/rhp/PreHealth/xmoov.php?file=AHEC-PB-ResidencyProfile-High.flv&start=0
However, when added to a player, it still seems to behave as a progressive download, as I can't scrub to undownloaded parts of the video:
http://video.uams.edu/CME/rhp/PreHealth/xmoov-test.html
Furthermore, I can tell from Live HTTP Headers in Firefox that the player is not sending the proper streaming request. It only sends:
http://video.uams.edu/CME/rhp/PreHealth/AHEC-PB-ResidencyProfile-High-Meta.flv
Asking for the video file only, without the streamer, which makes me think the problem is in my script. I feel like I am not identifying the streamer properly. Here is my browser script:
<script type='text/javascript' src='http://video.uams.edu/CME/rhp/_JWPlayer/mediaplayer/swfobject.js'></script>
<script type='text/javascript'>
var so = new SWFObject('http://video.uams.edu/CME/rhp/_JWPlayer/mediaplayer/player.swf','mpl','597','360','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://video.uams.edu/CME/rhp/PreHealth/AHEC-PB-ResidencyProfile-High-Meta.flv&streamer=http://video.uams.edu/CME/rhp/PreHealth/xmoov.php');
so.addVariable('image','http://video.uams.edu/CME/rhp/PreHealth/AHEC-PB/AHEC-PB-Thumb2.jpg');
so.write('preview');
</script>Here is the test page link:
http://video.uams.edu/CME/rhp/PreHealth/xmoov-test.html
I can provide other information if necessary, including the source of my xmoov.php file. Any help is greatly appreciated.
Screwed up the test link above, should be:
http://video.uams.edu/CME/rhp/PreHealth/xmoovstream-test.htmlThanks again for any assistance!