Looping HTML5 audio on the iPhone

Posted by Peeps on Stack Overflow See other posts from Stack Overflow or by Peeps
Published on 2010-04-05T03:17:56Z Indexed on 2010/04/05 3:23 UTC
Read the original article Hit count: 356

Filed under:
|
|

I'm trying to make a HTML5 webapp that simply plays a sound over and over and over again, on my iPhone. I don't know any Obj-C to do it natively.

What I have works fine, but the sound only plays once:

<!DOCTYPE html>
<html>
    <head>
        <title>noisemaker!</title>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="maximum-scale=1, minimum-scale=1, width=device-width, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
    </head>
    <body>
        <audio src="noise.mp3" autoplay controls loop></audio>
    </body>
</html>

Is there a way to either bypass the QuickTime audio screen and loop it in the webpage, or get the QuickTime audio screen to loop the sound?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about html5