I use Flowplayer Media player on my website.
I want to put more than one player on my page, using different film clips, obviously, the visitor to the site will not look at more than one at the same time.
Now, the explanation about multiple players looks extremely complex to me, and I don't need any CSS stuff anyway, so why is it not working when I have
<script src=http://vlaanderen-flanders.org.uk/flowplayer-3.1.4.min.js"></script>in my head tags and then the following within the <body></body> tags:
<div style="width: 450px; height: 300px;margin-left:auto;margin-right:auto;margin-top:30px;">
href=http://www.vlaanderen-flanders.org.uk/onzedancingsbinnen10jaar.flv"
style="display:block;width:100%;height:100%;"
id="player">
<script language="JavaScript">
flowplayer("player", http://www.vlaanderen-flanders.org.uk/flowplayer-3.1.5.swf", {
clip: {
autoPlay: false,
autoBuffering: true
}
});
</script>
</div>
then some other media in between (not using flowplayer), and then:
<div align="center">
<div style="width: 450px; height: 300px;margin-left:auto;margin-right:auto;margin-top:30px;">
href=http://www.vlaanderen-flanders.org.uk/BHV220410.flv"
style="display:block;width:100%;height:100%;"
id="player">
<script language="JavaScript">
flowplayer("player", http://www.vlaanderen-flanders.org.uk/flowplayer-3.1.5.swf", {
clip: {
autoPlay: false,
autoBuffering: true
}
});
</script>
</div>
the first video plays with no problem, but in the second one, all I get to see when I put the mouse over the place of the video is a yellow square, and in the status bar, I see the URL of my .flv file, when I click on the yellow square, a screen comes up offering me to download the .flv file.Can anyone tell me where my mistake is?
Is there really no simpler way to put more than 1 film on a site than the one explained?
Please help, the simplest solution will do.
Thanks in advance.















