I believe I have flowplayer installed properly, I am passing it a URL to an MP3 file on my server. It fetches the file and plays it.
However, the pause button does nothing. Why can't I pause the MP3 file?
However, the pause button does nothing. Why can't I pause the MP3 file?
<script type="text/javascript">
flowplayer("audio", "http://releases.flowplayer.org/swf/flowplayer-3.2.4.swf", {
// fullscreen button not needed here
plugins: {
controls: {
fullscreen: false,
height: 30,
autoHide: false
}
},
clip: {
autoPlay: true,
}
});
</script>
<div id="main">
<div id="audio" style="display:block;width:750px;height:30px;"
href="/ftp/exchange/my.mp3"></div>
</div>