/*
* window.onload event occurs after all HTML elements have been loaded
* this is a good place to setup your Flash elements
*/
window.onload = function() {
/*
use flashembed to place flowplayer into HTML element
whose id is "example" (below this script tag)
*/
flashembed("example",
/*
first argument supplies standard Flash parameters. See full list:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
*/
{
src:'FlowPlayerlight.swf',
width: 640,
height: 480
},
/*
second argument is Flowplayer specific configuration. See full list:
http://flowplayer.org/player/configuration.html
*/
{config: {
autoPlay: true,
initialScale: 'orig',
useNativeFullScreen: true,
streamingServer: 'fms',
videoFile: 'victoria',
streamingServerURL: 'rtmp://85.25.31.78:80/blenn'
}}
);
}