I'm facing a problem with getting an mp3 file to play through FlowPlayer 3.1.1. I've got all the javascript pointing to the correct controls and I'm getting the #1009 error, followed almost immediately by another saying:
202, The provider specified in this clip is not loaded. Provider 'audio', [clip] '/Assets/Test/AudioFile.mp3'
I'm trying to remove all other issues and I'm just making changes to the example HTML provided. Relevant snippet is:
Any help would be appreciated.
202, The provider specified in this clip is not loaded. Provider 'audio', [clip] '/Assets/Test/AudioFile.mp3'
I'm trying to remove all other issues and I'm just making changes to the example HTML provided. Relevant snippet is:
<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
<a
href="/Assets/Test/Bluffing.mp3"
style="display:block;width:520px;height:330px"
id="player">
</a>
<!-- this will install flowplayer inside previous A- tag. -->
<script>
flowplayer("player", "/flowplayer/flowplayer-3.1.1.swf", {
plugins: {
audio: {
url: '/FlowPlayer/flowplayer.audio-3.1.0.swf'
},
controls: {
url: '/FlowPlayer/flowplayer.controls-3.1.1.swf'
}
}
});
</script>
Any help would be appreciated.