
March 23rd, 2012, 05:14 AM
|
|
Contributing User
|
|
Join Date: Jan 2004
Location: UK
Posts: 253
Time spent in forums: 5 Days 17 h 25 m 21 sec
Reputation Power: 10
|
|
|
Embedding an mp3 file
Hi,
Im trying to embed a controller which will allow the user to play/pause/stop an mp3 file on my website.
The controller works on IE9 but in FF im being told that the plugin is not installed in my browser. I click on the link to install the missing plugin and the dialog box finds that "Apple Quicktime None" should do the job. However, when clicking next in the dialog box, it says that it failed to install the plugin. Anyone know whats going wrong here?
Code:
<object>
<param name="src" value="http://www.mysite.co.uk/myfile.mp3" />
<param name="autostart" value="false" />
<param name="autoplay" value="false"/>
<param name="controller" value="true" />
<embed src="http://www.mysite.co.uk/myfile.mp3" autostart="false" autoplay="false" controller="true" type="audio/x-mpeg" pluginspage="http://www.apple.com/quicktime/download/" />
</object>
Thanks.
|