That's my Linux and browser setup as well.<div><br></div><div>Re "all the malformations,"  I'm unclear</div><div>as to why one uses html if the tags are </div><div>for html5?  </div><div><br></div><div>When you say "worked fine," is that </div>
<div>with the test file I was using?  If so, there's</div><div>still a kink.</div><div><br></div><div>I have no idea why the <head> tag is </div><div>needed here.</div><div><br></div><div>   -- Bob</div><div><br>
</div><div> <br><br><div class="gmail_quote">On Thu, Nov 17, 2011 at 4:45 PM, Ben Rousch <span dir="ltr"><<a href="mailto:brousch@gmail.com">brousch@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Despite all of the malformations, the original code actually worked fine on my Google Chrome, Ubuntu 11.10.<div class="HOEnZb"><div class="adm"><div id="q_133b3923fc8c2c7f_1" class="ajR h4"><div class="ajT"></div></div></div>
<div class="h5"><br><br><div class="gmail_quote">On Thu, Nov 17, 2011 at 4:43 PM, Topher <span dir="ltr"><<a href="mailto:topher@codeventure.net" target="_blank">topher@codeventure.net</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>On 11/17/2011 04:27 PM, Bob Kline wrote:<br>
> <!DOCTYPE html5><br>
> <body><br>
> <audio controls="controls"><br>
> <source src="kk.mp3" type="audio/mp3" /><br>
> Your browser does not support the audio tag.<br>
> </audio><br>
> </body><br>
> </html5><br>
><br>
><br>
> The file is called xx.html5<br>
<br>
</div>I'm assuming your web server knows how to deal with .html5 files.<br>
<br>
In your code sample above there's no <head></head>, and there's no<br>
<html></html>.  This would cause the file to not be valid html, and<br>
could easily make the browser freak out.  Here's the proper code:<br>
<br>
<br>
<!DOCTYPE html5><br>
<html><br>
        <head><br>
                <title>Bob's awesome audio</title><br>
        </head><br>
<div>        <body><br>
                <audio controls="controls"><br>
                        <source src="kk.mp3" type="audio/mp3" /><br>
                        Your browser does not support the audio tag.<br>
                </audio><br>
        </body><br>
</html><br>
<br>
</div>Indenting is not necessary, I just did it for clarity.<br>
<br>
Keep in mind that Firefox won't play mp3's and I don't think IE will<br>
play ogg.  That's why they made it possible, and suggest, that you put<br>
source tags for both audio formats.  The browser plays the one it can.<br>
<br>
All that said, you might want to check out <a href="http://mediaelementjs.com/" target="_blank">http://mediaelementjs.com/</a><br>
<br>
It's a small javascript app that detects browsers nicely and makes an<br>
html5 player with the proper file format and falls back to flash when<br>
the browser can't do html5.<br>
<div><div><br>
--<br>
This message has been scanned for viruses and<br>
dangerous content by MailScanner, and is<br>
believed to be clean.<br>
<br>
_______________________________________________<br>
grlug mailing list<br>
<a href="mailto:grlug@grlug.org" target="_blank">grlug@grlug.org</a><br>
<a href="http://shinobu.grlug.org/cgi-bin/mailman/listinfo/grlug" target="_blank">http://shinobu.grlug.org/cgi-bin/mailman/listinfo/grlug</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div></div></div><div class="im HOEnZb">-- <br>  Ben Rousch<br>    <a href="mailto:brousch@gmail.com" target="_blank">brousch@gmail.com</a><br>    <a href="http://clusterbleep.net/" target="_blank">http://clusterbleep.net/</a><br>



<br></div><div class="HOEnZb"><div class="adm"><div id="q_133b3923fc8c2c7f_3" class="ajR h4"><div class="ajT"></div></div></div><div class="h5">-- 
<br>This message has been scanned for viruses and
<br>dangerous content by
<a href="http://www.mailscanner.info/" target="_blank"><b>MailScanner</b></a>, and is
<br>believed to be clean.

</div></div><br>_______________________________________________<br>
grlug mailing list<br>
<a href="mailto:grlug@grlug.org">grlug@grlug.org</a><br>
<a href="http://shinobu.grlug.org/cgi-bin/mailman/listinfo/grlug" target="_blank">http://shinobu.grlug.org/cgi-bin/mailman/listinfo/grlug</a><br></blockquote></div><br></div>
<br />-- 
<br />This message has been scanned for viruses and
<br />dangerous content by
<a href="http://www.mailscanner.info/"><b>MailScanner</b></a>, and is
<br />believed to be clean.