Comment 5 for bug 1301341

Revision history for this message
Olivier Tilloy (osomon) wrote :

Using wireshark to monitor the network traffic, I can see that the track is requested and correctly sent by the server.
It looks like the problem is with the file format, apparently MP3 is not supported by default.

This is evidenced by this very simple HTML test page:

    <html>
      <body>
        <audio controls autoplay>
          <source src="test.mp3" type="audio/mpeg">
        </audio>
      </body>
    </html>

which doesn’t play, however if I replace the source by <source src="test.ogg" type="audio/ogg"> then the audio plays.