The html5-audio tag has no wiki summary.
21
votes
1answer
5k views
Streaming audio from a Node.js server to HTML5 <audio> tag
I've been experimenting with binary streams in Node.js, and much to my amazement do actually have a working demo of taking a Shoutcast stream using node-radio-stream and pushing it into a HTML5 ...
16
votes
3answers
10k views
Why doesn't Firefox support mp3 file format in <audio>
Is there a particular reason why Firefox does not support playback of mp3 files in <audio> elements, only ogg format?
Is it a licensing issue?
Are there any plans made for possible future ...
12
votes
2answers
197 views
Best way to play sound with HTML5 and Javascript
I'm trying to play a sound and i have found two ways that works for me.
Which is the better way and why? is a good idea add a "load" event listener?
First way:
$(document).ready(function() {
...
9
votes
3answers
6k views
HTML5 Voice Input mic access
How does the HTML5 Voice input on Chrome (Mac) get access to the mic? Is it because I have the google voice plugin installed?
Shouldn't the browser explicitly ask for permission before giving ...
8
votes
2answers
276 views
How do I play a sound when an element changes, like SO Chat does?
I want a sound to play when an element changes on a page. I know how to do this, but I can't get it to play only on the first change, and don't do it later, until the user focuses the window (tab) and ...
7
votes
2answers
161 views
Why can't I play sounds more than once using HTML5 audio tag?
This is how the sound is "stored":
<audio id = "hammer" src="res/sounds/Building/hammer.wav"></audio>
In the actual game (which I use sounds for), I use this to play the sound:
...
7
votes
2answers
4k views
html5 display audio currentTime
I would like to display the current time of of an html 5 audio element and the duration of that element. I've been looking over the internet but can't find a functional script which allows me to ...
7
votes
3answers
5k views
HTML 5 Audio Looping
I've been playing with HTML5 audio recently, and though I can get it to play the sound it only ever will play once. No matter what I try (setting the properties, event handlers, etc) I can't seem to ...
6
votes
0answers
82 views
Multiple HTML5 media elements on one page in iOS
My research has led me to learn that Apple's media element handler is a singleton, meaning I can't have a video playing while an audio is playing in the background. I'm tasked to build a slideshow ...
6
votes
3answers
2k views
Is it possible to record sound with HTML5?
I'm considering a web-version of some of our programs and considering HTML5 and Flash.
Anyone know if it's even possible to record audio with HTML5?
5
votes
2answers
277 views
Multiple audio tracks for HTML5 video
I'm building a video for my website with HTML5. Ideally, I'd have only one silent video file, and five different audio tracks in different languages that sync up with the video.
Then I'd have a ...
5
votes
1answer
146 views
Non-linear volume for HTMLMediaElement
I've written my own media player interface using javascript and html5. Currently my volume slider maps to the browser's volume attribute 1:1. I'd quite like to adjust this to account for perceived ...
4
votes
3answers
109 views
HTML5 Sound plugin?
Currently I'm using soundmanager2 to power sounds in my web app. SoundManager uses Flash, which sometimes crashes, killing sounds. Is there a reliable plugin available in jQuery that powers sounds ...
4
votes
1answer
419 views
Is there a library that abstracts Web Audio API and Mozilla Audio Data API for reading raw audio (MP3,ogg)
I want to do some audio visualizations, that read raw ogg or mp3 data and use it with dsp.js. Is there a library that embraces and abstracts googles and Mozillas Audio API and ideally safari and ...
4
votes
4answers
305 views
How can I queue a series of sound HTML5 <audio> sound clips to play in sequence?
I'm experimenting with porting a simple audio utility called VoiceWalker to Javascript. VoiceWalker is a tool to help people transcribe audio, and it works like this:
http://i.imgur.com/rafgl.png
So ...
4
votes
2answers
1k views
Waveform visualization in JavaScript from audio
I'm trying to use JavaScript to display the waveform for and audio file (something like this), but I don't even know how to get started. I found the Audio Data API, but am unfamiliar with most audio ...
4
votes
2answers
1k views
How can I force an HTML5 audio element to buffer an entire song?
I'm developing a local server that will stream a user's audio files so they can access them via web browsers using the HTML5 audio object. Since these files are on the user's computer, I expect the ...
3
votes
1answer
51 views
Multiple sounds with single HTML5 audio element
I've got a web app that needs to play a handful of sounds. The app is intended primarily for mobile devices. As it stands I'm creating an <audio> element for each sound I need and triggering the ...
3
votes
1answer
62 views
How should I handle heavy audio load with JavaScript/HTML5?
I'm building a little sequencer like this one, but want to use HTML/JavaScript exclusively (i.e: no Flash).
As you play around with the applet in the link above, you'll notice the potential for ...
3
votes
1answer
152 views
Start playing a loaded audio file in the middle with Chrome webkitAudioContext?
I'm working with the Chrome web audio API and webkitAudioContext to play loops. I have several loops that I'm crossfading in between similar to the Digital DJ example on chromium blog.
In their ...
3
votes
1answer
123 views
HTML5 audio crackle in Chrome
This is a long shot.
The scenario is this: I create audio tags (with the Audio(src) constructor) and play sounds repeatedly in Chrome. The sounds are short, no more than 4 seconds long. Some of those ...
3
votes
1answer
884 views
HTML5 Audio: How to Play only a Selected Portion of an Audio File (audio sprite)?
I'm working on an iOS metronome web app. Since mobile safari can only play one sound at a time, I'm attempting to create an 'audio sprite' - where I can use different segments of a single audio track ...
3
votes
1answer
771 views
Ruby/Rails - Ways to stream audio (mp3/wav/etc)…Gem/Plugins vs HTML5?
I have a rails app that is coming along nicely...I would like to give the users the ability to upload and stream uploaded mp3s.
Currently I'm uploading to Amazon S3 through Paperclip with my site ...
3
votes
3answers
1k views
Does the html5 audio tag encompass .mid (MIDI) unofficially?
It seems clear that officially the html5 audio tag is intended for use with the ogg format.
Does the html5 audio tag encompass .mid (MIDI) unofficially?
3
votes
2answers
657 views
Is it possible to achieve a button hover sound using HTML5 audio?
Is it possible to use HTML5 to make a sound when a user hovers over one of my list item buttons? I'd like to play a very short click/chirp sound one time when a user hovers over a navigation button. I ...
3
votes
1answer
450 views
Limitations of HTML5 Audio on iOS 4? Playlisting, background, etc
I've been evaluating HTML5 audio on iOS 4 and have been trying to understand its limitations. From what I can tell...
It is possible to play audio in the background
It is not possible to fire ...
3
votes
1answer
500 views
Ideal solution for seamless music playback across “page loads”? Using javascript to load pages
I am in the process of developing an online music magazine. We have a html5/flash music player, and this forms a major part of the website. But the site also has a lot of articles and stuff. So ...
3
votes
3answers
920 views
HTML5 Audio: preload attribute ignored in Chrome
My code is basically this
<audio controls preload="none" src="linktofile.mp3" />
It works great in Safari 5 and Chrome 8 except that Chrome completely ignores the preload attribute and starts ...
3
votes
1answer
462 views
How to prevent memory leak by cleaning up <audio> elements?
I wrote a bit of JavaScript with jQuery that loads a sound file with the HTML 5 <audio> tag and on a mouse click starts playing a new instance of that sound file (so that it can be played ...
3
votes
2answers
2k views
How can I add multiple sources to an HTML5 audio tag, programmatically?
A lot of examples demonstrate multiple source tags nested in the audio tag, as a method to overcome codec compatibility across different browsers. Something like this -
<audio ...
3
votes
2answers
911 views
Creating Audio using Javascript in <audio>
I can't find anything through net searches, but is there any plans to make an API to generate audio chunks to be played in an HTML5 <audio> tag?
EDIT: this is the example::
PSEUDOCODE::
var ...
2
votes
2answers
42 views
Mobile-friendly audio player for Rails app?
I'm currently building a Rails app, where a user can upload an mp3 and listen to it. I'm using paperclip for the data upload, but I'm not sure how I'd arrange the playback of the soundfile, so that it ...
2
votes
0answers
22 views
Device specific resource management in cache manifest
Is there a way to target certain resources in the cache per device.
Im working on an offline html5 audio player. Obviously I have to specify filetypes such as Mp3 for use with webkit and Vorbis for ...
2
votes
2answers
156 views
How can i dynamically load/play/pause multiple-source HTML5 audio on click?
I have a content slider, set to play / stop on each click.
The problem: I want it to pause on second click. Right now it won't pause. Any ideas?
See site here: http://dev.alsoknownas.ca/music/ ...
2
votes
2answers
221 views
how to get the duration time of object tag in jquery and play video in specific time?
<div id="sound" >
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="0" ...
2
votes
1answer
514 views
Mobile Safari: Audio + cache manifest
I'm having a small web app, which plays really short sound bits on the click of several buttons. It explicitly targets mobile Safari on iOS (iPad).
After reading here and elsewhere about the several ...
2
votes
0answers
268 views
Chrome HTML5 audio stream goes silent
I am using the latest jPlayer. jPlayer is just a jQuery HTML5 video/audio player.
I am streaming OGG files and testing them in Chrome (latest stable) and FF. Everything works great in FF.
In Chrome ...
2
votes
2answers
52 views
html5 audio 'mediaplayable' event?
my app lets user drag songs to add them. I was wondering how can i make sure that the files user dragged are actually music files and are playable? i can use loadedmetadata event but how would i know ...
2
votes
1answer
89 views
Using jQuery and <audio>
How can one interact with an <audio> element using jQuery, specifically to hide only the "seeking" part of an <audio> element?
I don't think the seeking part can be hidden by using plain ...
2
votes
0answers
91 views
Does iPad clear any earlier buffered audio, once i play a new audio?
I am trying to load and play few audio files in sequential order one by one, after user interaction (since only one audio file can be played at a time on iPad). I load all the audio files on user ...
2
votes
1answer
156 views
html5 access of a MP3 file's ByteArray
I would like to build a gapless audio player in html5. The end of the currently playing song should overlap the following one so that there is no pause between them. Conventional gapless players in ...
2
votes
1answer
413 views
HTML5 audio - play sound repeatedly on click, regardless if previous iteration has finished
I'm building a game in which a wav file plays on click - in this case it's a gun sound "bang".
The problem is if I rapid click, it won't play the sound once for each click - it's as if the clicks ...
2
votes
2answers
489 views
Audio data streaming in HTML5
I am receiving PCM audio data from the server in small chunks and having them stored in an Array. Now I would like to play these audio chunks sequentially without gaps using some HTML5 capability. Two ...
2
votes
2answers
253 views
Triggering an HTML5 audio track to play whenever it has loaded
I'm trying to play an HTML5 audio track a few seconds after the page has loaded using the .play() JavaScript function.
Sometimes, when the audio loads slowly, and .play() is triggered when the player ...
2
votes
1answer
674 views
Muting a HTML5 audio element using a custom button
What's the best way to mute a HTML5 audio element? I don't want the browser's custom controls, so I've been looking at the javascript instead. Unfortunately it just doesn't seem to work for me :( I'm ...
2
votes
2answers
623 views
Best way to embed background music in a webpage?
I know, I know. It sounds horrific, but it's what the client wants, and they're very set on the idea. It's now come to me to figure out the best way make it happen. Flash would be ideal but the client ...
2
votes
1answer
899 views
Cannot play html5 audio on ipad safari
I am unable to play html5 audio on iPad Safari..i have tried
var audio = document.createElement('audio');
audio.type = "audio/mpeg";
audio.src = audioUrl;
x.appendChild(audio);
...
2
votes
2answers
404 views
evt.target.result is empty?
For some reason, in the following code, evt.target.result is empty. Why is that?
function drop(evt) {
evt.stopPropagation();
evt.preventDefault();
var file = evt.dataTransfer.files[0];
...
2
votes
2answers
111 views
How to avoid anchors to restart music when using audio tag in HTML5?
I have create an HTML page, with the tag (proper for playing HTML5 mp3 audio).
The problem is that I have links with anchors, and Internet Explorer 9 browser is playing back the audio from start: ...
2
votes
2answers
573 views
HTML5 Web Audio API, porting from javax.sound and getting distortion
I have a requirement to generate audio on the fly (generating from wav or mp3 files is not an option). Luckily the new WebAudio API (FF4 and Chrome 13) provides this functionality.
I have some Java ...