Is there anything I can do to get this bug fixed?
Help would be greatly appreciated,
<a href="http://e1h13.simplecdn.net/flowplayer/flowplayer.flv" style="display:block;width:520px;height:330px" id="player">
</a>
<script>
flowplayer("player", "/test/flowplayer.commercial-3.1.5.swf");
</script>
playlist:[
{url:'/video/foto1.jpg',scaling:"scale",autoPlay:true},
{url:'/video/the_wall.flv',autoPlay:false},
{url:'/video/the_wall_hi.flv',autoPlay:false}
]
Posts: 1185
Registered:
May 27, 2008
<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.4.js"></script>
<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
<img src="path/to/splash_image" />
</a>
Following script will install Flowplayer into our player container
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.4.swf",{
clip: {
url: "/swf/clock.swf",
scaling: "fit"
},
// play button does not make sense for swf
// therefore disable it
play: null
});
</script>
Posts: 1185
Registered:
May 27, 2008
Posts: 1185
Registered:
May 27, 2008