Skip to content Skip to sidebar Skip to footer

Mp3 In Audio Tag In Firefox

I have this code that I'm using to play an MP3:

Current Recording

Solution 1:

Firefox does only support ogg and wave. You can do this:

<audio controls='controls'>
    <source src='".$rec_url."'type='audio/mp3' />
    <source src='".$rec_ogg_url."'type='audio/ogg' />
    <a href='".$rec_url."'>Click to Download the Current Recording</a>
</audio>

Solution 2:

I checked the error.code property of the element and then removed the entire tag and replaced it with a link if it had a value of 4.

Post a Comment for "Mp3 In Audio Tag In Firefox"