I want to play in my web site 3gp, amr, mid, mp3 & wav files My web site should support Internet explorer 6 & 7, It don't have to support mobile devices at all - only standard desktop IE 6&7.

Is anyone knows a player that I can embed in my web site?

link|improve this question
When you did a Google search, what did you find? – S.Lott Aug 24 '09 at 12:29
I found this posting. :) – Dustin Sep 10 '10 at 3:13
feedback

2 Answers

up vote 1 down vote accepted

The quicktime player will play all of those formats, the only downside is that your users will have to install the quicktime plugin if they don't already have it.

Unfortunately Flash does not support all of these formats so you won't be able to use a flash player, which is already installed more often than not.

Here's a tutorial on including quicktime in your web pages:

http://www.apple.com/quicktime/tutorials/embed.html

link|improve this answer
feedback

Since you ask for IE only, I assume your app will be bound to windows machines, right? If so, you should use Windows Media Player, because it ships with windows and every windows users has it installed (is this still true for vista and 7?).

But you don't have to specify a player at all. To embed the system-default player/plugin for the provided file, you could use the embed tag:

<embed src="yippee.wav" width="140" height="60">

The embed still is no standard w3c tag, but works since IE 3. With the new standard HTML 5, embed should become a standard tag and "audio" and "video" are also introduced.

link|improve this answer
The problem is that I don't know if the system default player is able to play all these file types – Alon Aug 24 '09 at 14:50
feedback

Your Answer

 
or
required, but never shown