I have a javascript that plays audio in the browser, using the html5 <audio> tag. It works fine in the iPhone browser, but not in Android. (Testing using a htc desire with android 2.1.) Anyone know why?

My code:

   function playHTML5(sound, soundcv){
                // sound = url to m4a audio file
                // soundcv = div in which the audioplayer should go

  var audio = document.createElement('audio');
  audio.src = sound;
  audio.controls = "controls";
  if (currentSound != null){
   soundcv.replaceChild(audio,currentSound);
  } else {
   soundcv.appendChild(audio);
  }
  currentSound = audio;
 }

By the way, I am also trying to enlarge the audio button that shows up in the iphone (the default one is quite small), with no luck so far - would be grateful for any ideas!

link|improve this question
Pekka: Thanks for fixing the formatting! Didn't notice i messed it up. – Anders Sundnes Løvlie Jun 18 '10 at 12:57
feedback

6 Answers

The latest Android browser in FroYo does not yet support the HTML5 audio element. This is not a bug, rather a feature that has yet to be implemented. It may come in Gingerbread.

Update: The Gingerbread browser has the audio element.

link|improve this answer
2  
html5test.com shows no support for PCM, MP3, AAC, Ogg Vorbis or WebM audio in my FroYo Browser. – Pierre-Antoine LaFayette Jul 21 '10 at 17:05
1  
Thanks for your answer. But if this is not a bug, then the documentation is obviously unclear, to put it mildly - it should state clearly that audio is not supported. – Anders Sundnes Løvlie Aug 11 '10 at 15:02
How is the documentation unclear? No browser supports html5 100% at the moment. You don't expect them to document everything they don't support that is coming down the w3c pipeline? The audio tag is a new feature that the latest browsers have just begun to adopt. Just because the iPhone supports it doesn't make it a bug on Android. – Pierre-Antoine LaFayette Aug 11 '10 at 17:05
I was going to give you a quote from the documentation - but then I remembered that I never really found any documentation at all. So I guess the precise wording should be that the documentation is either non-existing, or very hard to find. Speaking about documentation for the android browser, that is - not the android app platform. However, if you do know where to find that documentation, I would be extremely grateful if you could pass me the link! – Anders Sundnes Løvlie Aug 19 '10 at 17:43
1  
well, could be. at least that gives the answer to the question you asked - "how is the documentation unclear?" Personally I think web apps should be the future - rather than native apps - and I would think google looks favorably on that view... if so, they should offer web developers the same level of documentation they offer devs of native apps, in my view. – Anders Sundnes Løvlie Aug 23 '10 at 21:26
show 3 more comments
feedback

Here is link to Google Android bug, which filed for lack of support of AUDIO tag in Android. Please, vote on it.

http://code.google.com/p/android/issues/detail?id=10546

BTW, there is work around, which let you play natively MP3 in Android 1.6 .. 2.2, like that:

<video src="test.mp3" onclick="this.play();"></video>
link|improve this answer
You are right this works swell. – Grego Oct 14 '11 at 11:44
1  
Wow. Really, Google? It works if you put it in a video tag. How badly did they screw this up? – Judah Himango Dec 9 '11 at 21:43
feedback

I cannot figure this out either. BUT, this test page created by Apple plays HTML5 audio on the Android: http://www.apple.com/html5/showcase/audio

how did apple do it?

link|improve this answer
1  
generated source: <audio id="" src="http://a1.phobos.apple.com/us/r1000/011/Music/12/14/7f/mzm.ubzkrulq.aac.p.m‌​4a" class="audio" width="1" height="1" autoplay="autoplay" bgcolor="white" audio="true"></audio> – slf Jul 15 '11 at 23:51
feedback

Have you checked your audio format ?

link|improve this answer
Yes, I am using the exact same media files in a native app that runs fine on android. 3gp audio, part of the core media files. So unless these for some reason can not be played in the html5 tag, even though they can be in native apps, that should not be the problem? – Anders Sundnes Løvlie Jun 18 '10 at 12:59
Hm, seems you are right though: There may be a difference between what formats android supports in general, and which it supports in the audio tag: w3schools.com/html5/html5_audio.asp – Anders Sundnes Løvlie Jun 18 '10 at 13:15
@anderslov Have you tried on different browsers. I don't know android much so I'm not sure what options you have. – DrDro Jun 18 '10 at 13:46
tried Dolphin and Opera Mini, no luck there. – Anders Sundnes Løvlie Jun 18 '10 at 13:59
I ended up setting up a test page to find out about the formats, and concluded that support for the audio element in the browser is simply broken. Details here: stackoverflow.com/questions/3100706/… – Anders Sundnes Løvlie Jun 28 '10 at 8:26
feedback

I was having trouble on my Kindle Fire, and found one small thing which seemed to fix it.

<audio>
  <source src="someclip.mp3" type="audio/mpeg" />
</audio>

I had mistakenly been using "audio/mp3". I'm using a player without its native controls (using HTML5/JS).

link|improve this answer
feedback

You should try using jPlayer it checks for HTML5 audio tag compatibility first and falls back to Flash if it's not supported.

link|improve this answer
jPlayer has suffered failures on Android since the beginning, even with the Flash fallback. – Richard Simões Jan 2 at 2:39
Yea, jPlayer doesn't seem as good as it is told. I have tried it also to implement into our own projects but I have had some issues with generating the player dynamically. Easier if you stick to the basic HTML5. Way much easier if you write a simple handler with Modernizr. I don't recommend jPlayer at all. – benqus Apr 5 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.