I have an HTML5 audio source that is defined as follows:
<audio> <source src="../audio/segment.mp3" type="audio/mpeg" /> <source src="../audio/segment.wav" type="audio/wav" /> </audio>
.mp3 is for other browsers, and it is not expected to work. The .wav file is used to work without problems, but now this does not happen. I tried to iterate over FF change logs and havent found anything in recent releases. I am using FF 20 on Windows and now I get the following message:
"Media resource http://website.com/segment.wav could not be decoded"
If I throw URL.wav into the address bar, FF will play the file without any problems.
source share