Hello there,
I was hoping someone on this forum could please help me with one specific problem that I am having. I would like to embed a flash player into an html page, and load the video from a service that has the streaming video provided.
This is the context of the situation...
We have created a site that was to be used on a showroom floor (no internet connection) and loaded the .flv videos at the local root level for the site using the JW player.
Now however, we would like it to be an online site. I have been able to use the flash "jw player"to load videos to play using the shadowbox javascript before, but when I try to embed it onto a page and have it play, the videos are not working and I am not sure why.
Below is the code that is currently working to load the videos on the local root level.
Might someone have any ideas on what code I need to replace to have it load the videos from the streaming service?
I would greatly appreciate any assistance that could be provided. I can also provide a URL if it would help.
I would GREATLY appreciate any assistance provided.
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
swfobject.registerObject("player1","9.0.98","expre ssInstall.swf");
</script>
<object id="player1" classid="clsid

27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="640" height="380">
<param name="movie" value="player.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="file=assets/videos/Bob_Peebler.flv&image=images/videoStatic_Peebler.jpg" />
<object type="application/x-shockwave-flash" data="player.swf" width="640" height="380">
<param name="movie" value="player.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="file=assets/videos/Bob_Peebler.flv&image=images/videoStatic_Peebler.jpg" />
<p><a href="
http://get.adobe.com/flashplayer">Get Flash</a> to see this player.</p>
</object>
</object>