[Webkit-unassigned] [Bug 29326] New: Safari can't handle audio/mp4 MIME type in source tag

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 16 21:55:51 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=29326

           Summary: Safari can't handle audio/mp4 MIME type in source tag
           Product: WebKit
           Version: 525.x (Safari 3.2)
          Platform: PC
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: dgatwood at mac.com


This block of code works only if you remove the type attribute from the first
source tag.  By my reading of RFC 4337, that's a completely valid MIME type to
use for MPEG 4 audio.  It works with audio/mpeg, but that seems like a bit of a
hack.

<audio id="aud_01"
    controls="true"
    width="200"
    height="60" >
<source
    src="http://images.gatwood.net/gatwood.net/music/Cinderella%20Suite.m4a"
    type="audio/mp4"
    media="screen"></source>
<source
    src="http://images.gatwood.net/gatwood.net/music/Cinderella%20Suite.ogg"
    type="audio/ogg"
    media="screen"></source>

<embed id="mov_01"
src="http://images.gatwood.net/gatwood.net/music/Cinderella%20Suite.m4a"
autostart=false height="60"></embed>
</audio>


See http://www.rfc-editor.org/rfc/rfc4337.txt

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list