Tagged Questions
3
votes
2answers
308 views
HTML5 Audio: Which formats? Ditch Ogg Vorbis in favor of Ogg Opus? Is MP3 still needed?
I'm currently working on a website which has to stream audio files. Since bandwidth is always an issue, the file size should be as small as possible. I wonder what audio formats I should provide.
...
1
vote
0answers
266 views
Why doesn't Firefox have a volume slider for the audio element? [closed]
Seems like most browsers have a slider to control the volume of audio files played via the <audio> tag, yet Firefox on Windows (and Linux) seems to only have an 'all on' or 'all off' volume ...
4
votes
2answers
394 views
Is there a flash/html5 audio player that allows links to jump to a specfic time?
I am looking for a web audio player to embed on my website that allows links to jump to a specific time in the audio, a la youtube.
I am uploading lecture audio from lectures that are over an hour. ...
1
vote
2answers
2k views
Using <audio> in Firefox with JavaScript
I am trying to implement background music on a website using the audio object, which is controlled by a JavaScript, I have posted a question about this before, @LazyOne explained that IIS will not ...
2
votes
1answer
2k views
JavaScript control of <audio> not working in Firefox, works in Chrome
<audio id="audioMusic" loop="loop">
<source src="/Music/behind_you.ogg" type="audio/ogg" />
<source src="/Music/behind_you.mp3" type="audio/mp3" />
</audio>
<script ...
3
votes
1answer
167 views
Is there any reason for me not to use the “wav” format for html5 audio crossbrowser compatibility?
I'm targeting modern browsers (only those that support <audio>) and specifically the iPad. I've tested here and wav works on chromium, firefox 4.0 (both mac 10.6) and on the iPad. I have a ...