You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Can"t play mp3 audio with 3.1.1 (audio 3.1.0) - just a #1009 error Created Jun 17, 2009

This thread is solved

Views: 4224     Replies: 1     Last reply Jun 22, 2009  
You must login first before you can use this feature

mikbyrne

Posts: 3

Registered:
Jun 17, 2009

Can"t play mp3 audio with 3.1.1 (audio 3.1.0) - just a #1009 error

Posted: Jun 17, 2009

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:


<!-- 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.

Buzz
Author of 'Wordpress Flowplayer', jQuery.saiweb http://saiweb.co.uk Problems, requests? Please log a ticket at: http://trac.saiweb.co.uk

Posts: 271

Registered:
Dec 17, 2008

» Can"t play mp3 audio with 3.1.1 (audio 3.1.0) - just a #1009 error

Posted: Jun 22, 2009

Reply to: Can"t play mp3 audio with 3.1.1 (audio 3.1.0) - just a #1009 error, from mikbyrne
Hi Mikbyrne,

In this sort of situation an example URL would be usefull,

one thing to check is your href link, in the example provided "/Assets/Test/Bluffing.mp3" this link is relative to the root of the site.

i.e.

yoursite.com/Assets/Test/Bluffing.mp3

If you are trying this in a subdirectory i.e.

yoursite.com/flowplayer/Assets/Test/Bluffing.mp3

either include the full relative path or omit the first slash.