Jeff like the idea and tried to implement it. when i load an MP3 file NONE of the events, cuepoints etc are firing my debug alert messages. If i load an .flv file conversion of my MP3 it all works perfectly :-(
Is this still happening to other people?
here is my code:
Is this still happening to other people?
here is my code:
<div id="audio" style='display:block;width:400px;height:110px;'></div>
$f("audio", "flowplayer-3.0.7.swf", {
plugins: {
audio: {
url: 'flowplayer.audio-3.0.4.swf'
},
controls: {
play:true
}
},
playlist: [
{url:'ep01.png'},
{
url:'iDITradioEP01.flv',
autoPlay: false,
onStart: function(clip) {
this.onCuepoint([1], function(clip, cuepoint) {
alert("video-url-start=" + clip.url);
});
},
onFinish: function(clip) {
alert("video-url-start=" + clip.url+"Thx for watching");
}
}
]
});