The audio element is used to embed sound content in an HTML or XHTML document. The audio element was added as part of HTML5.

learn more… | top users | synonyms

0
votes
0answers
9 views

SoundManager2 Playlist for Android / iPhone

Could someone point me to a demo version of a playlist (one song playing after another) with a "one player interface" for all songs: one player bar, play/pause button etc. for all songs. This is for ...
0
votes
0answers
8 views

Phonegap audio analyzer

I am developing an app with Phonegap, and one of the parties is a audio analyzer with the microphone. This example illustrates quite well what I want, but with the microphone. ...
0
votes
1answer
27 views

Soundcloud player without flash

Hi I'm trying to customize an audio player using soundcloud API. https://github.com/soundcloud/soundcloud-custom-player/wiki This is my code: <!DOCTYPE html> <html> <head> ...
0
votes
0answers
9 views

Trouble with mediaelement.js and Phonegap

I am working on building an android HTML5 music player, i am using mediaelement.js as my plugin. The player works perfect on my Chrome browser. However when i compile with phonegap, my music player ...
1
vote
0answers
16 views

shoutcast stream not working using mediaelement js audio player on latest firefox 21

The shoutcast stream not working using mediaelement js audio player on latest firefox 21. Its working on other browsers like Chrome and IE. You check the link below. It was working earlier with ...
1
vote
1answer
22 views

Google App Engine serving MP3 for Audio Element needs Content-Range Header

So from what I can tell, when a page in Safari requests an MP3 for the Audio element, it will only play once unless it has a Content-Range header. Any ideas how to format a content Range Header ...
0
votes
1answer
43 views

Audio Player with Play All Capability

I've been hunting around for a jQuery plugin that plays audio in the browser, and can automatically play the next audio file once the previous one is finished. Also, the ability to play only one audio ...
0
votes
0answers
21 views

using video.js with an HTML5 <audio> tag

I'm using video.js with an HTML5 <audio> tag and it works pretty well but there are some issues that I'm wondering if someone can offer some suggestions: iOS safari doesn't show custom ...
0
votes
2answers
21 views

Which ways can sound be produced in chrome?

I'm playing a canvas-based game in chrome. There is no mute option and i'm trying to find the audio-source. It's not flash and it's not the audio-tag. What other things can produce sound in chrome and ...
0
votes
0answers
11 views

Making sure HTML5 media is not cached, across all browsers

So my web servers have the ability to stream media (audio in this example) to browsers. Browsers use HTML5 controls to play the media. What I'm discovering, however, is that Firefox is caching the ...
0
votes
0answers
22 views

Getting contents of a streaming Blob to be sent to a Node.js Server

I already have a working page that uses the microphone to stream data to an <audio> tag. However, I want the data sent to my <audio> tag to be harvested instead. How do you think can the ...
0
votes
1answer
37 views

Universal volume control for whole website?

my website has several audio players on one page. Mostly these audio players would depend on an html5 <audio> element, however for some sites there is an flash / <object> fallback. I was ...
0
votes
0answers
53 views

HTML5 <audio> tag do not work/play in IE10

I have a page where I display some audio .ogg/.mp3-files for listening in the browser (it is purchased products that are being displayed on a "receipt"-page). The files are super in Chrome, Opera, ...
0
votes
0answers
17 views

MediaElement not playing audio stream

MediaElement is not playing the following audio stream. http://77.68.106.224:8018/;stream/1 I am using WordPress 3.6 which has MediaElement in its core and mp3 audio files play fine. Streams don't. ...
2
votes
1answer
40 views

Saving WAV File Recorded in Chrome to Server

I've seen many partial answers to this here and elsewhere, but I am very much a novice coder and am hoping for a thorough solution. I have been able to set up recording audio from a laptop mic in ...
0
votes
2answers
28 views

HTML5 Audio Safari Woes

Just a quick edit based on feedback: a major part of this problem is my inexperience. If you can give me some tips on how to investigate/debug I'd really appreciate it. Thanks again. Niall I have ...
0
votes
1answer
48 views

Get the raw audio in getUserMedia success callback

I'm trying to get the raw audio in getUserMedia() success callback and post it to the server. The success callback receives the LocalMediaStream object. var onSuccess = function(s) { var ...
0
votes
0answers
14 views

Trigger event when audio can't be loaded

The code below displays "EXISTS". If I change _word to "og", "EXISTS" is not displayed. However, how can I do the opposite. That is, display the message "NOT EXISTS" when the audio does not exist. I ...
0
votes
1answer
40 views

Javascript audio with playlist

Sup, I'm using audio.js plugin in my Rails app. I know, that API of audio.js allows to make playlists, but I didn't find any documentation of it. So, how can I implement playlist with audio.js or any ...
1
vote
0answers
19 views

Syncing the playing of audio files

I wish to play a list of words. Each word is represented by audio recordings of that word in three different dialects. All three audio files should start playing simultaneously, for each word. The ...
0
votes
1answer
71 views

html5 audio tag on android devices

I currently use html5 dom content generated in javascript to play some sounds in a webpage. In firefox and google chrome browser there is no problem, everything works but on android devices I can't ...
0
votes
1answer
52 views

Make all anchor tags stop html5 audio players

Ok I'm stumped. I've tried a few things to make this work without success. Again, I'm a beginner so I've probably overlooked something. On my page, I have various html5 <audio> players. I ...
1
vote
1answer
58 views

Sync multiple HTML5 audio tracks with seek

I'm trying to play multiple audio files at the same time, and keep them all in sync. However, if I seek forward in the song by pausing and setting the currentTime, the audio becomes out of sync. The ...
0
votes
0answers
24 views

Cannot play audio file on web page

I am trying to play an audio file when a timer counts down to zero. The problem is that I receive the following message once the code is loaded: HTTP "Content-Type" of "audio/mpeg" is not supported. ...
0
votes
1answer
51 views

Stop mobile Safari from preloading HTML5 audio

I am trying to get mobile Safari on and iPhone 5 to stop preloading a HTML5 audio element. I can see in the server log that it is still calling the MP3 file even though I have preload set to none. Any ...
1
vote
0answers
40 views

load just metadata from html5 video/audio

At first, I'd like to ask that question. I can not load metadata without any other video content. preload = "metadata" is not working. I test on Win Chrome and don't know how it works on ...
0
votes
1answer
35 views

HTML5 web audio getting stuck (buffering issue?)

I am working on a (weekly radio show) audio website and I keep getting the same problem, the audio files that are up to 1hr long keep getting stuck. I have tested several different players, both the ...
0
votes
1answer
186 views

HTML5 record audio to file

What I ultimately want to do is record from the user's microphone, and upload the file to the server when they're done. So far, I've managed to make a stream to an element with the following code: ...
0
votes
0answers
18 views

Firefox reads but does not play audio ogg file

I asked a question here: Server does not read ogg file. My problem before was my server, it is not reading the audio ogg file, I addded a MIME type for my server to be able to read these kinds of ...
-2
votes
0answers
43 views

Difficulties with keyCodes and Javascript [closed]

I've successfully used keyCodes as a proof of concept at pingpongwars.tumblr.com, but at another site they seem to fail miserably - all but one of the keyCodes is functional, even though all of them ...
0
votes
0answers
30 views

Web Audio API Timeshifting? (Preserve Pitch)

I'm trying to slow-down some audio while preserving the pitch using the Web Audio API. Chrome and Safari both support playbackRate for without changing pitch, but I can't find it for Web Audio API. ...
2
votes
2answers
74 views

How to get <audio> tag infomation?

like title, subtitle, singer, Album, Bit rate etc.. wiki - MP3 tag infomation wiki - ID3(mp3 metadata format) i search a lot.. but i can't get answer. only searched how to play,stop,reload ...
1
vote
2answers
88 views

Correct way to play <audio> + <video> from Javascript

I'm getting different results i Firefox and Chrome when using <audio> and <video> with preload="none" and then trying to play from Javascript. Let's say i was using preload="auto" or ...
0
votes
1answer
39 views

Audio on Chrome for mobile isn't working using Jquery

I tried to play some sound (wav, ogg) using HTML5 with JavaScript on Chrome for mobile, but it's not working. I even tried a "fake" click, but nothing happened. $(document).on("click", "#audio", ...
0
votes
0answers
21 views

Server does not read ogg file

I am trying to play audio with HTML5 audio tag; reading different articles made me aware that Firefox does not play mp3, but plays ogg file so I linked two files to make it compatible with Firefox: ...
1
vote
1answer
64 views

Do Mobile Browsers send httpOnly cookies via the HTML5 Audio-Tag?

I try to play some mp3 files via the html5 audio-tag. For the desktop this works great (with Chrome), but when it comes to the mobile browsers (also Chrome (for Android)), there seem to be some ...
1
vote
0answers
127 views

SoundCloud HTML5 Widget API - Play Not Working in Chome for Android

You can see the player live here: www.stateofpsychosis.com/media/ The viewable player is a custom player. The default SC player has been shrunk down to a 1x1px iframe so it can't be seen without ...
0
votes
2answers
47 views

webkitAudioContext undefined in safari browser

I trying in console (chrome) webkitAudioContext and it's defined (function with native code). webkitAudioContext function AudioContext() { [native code] } In safari (5.1.6) it's returns 'message: ...
0
votes
1answer
91 views

HTML5 Audio: Detecting when an actual click is required to play audio

I'm using jQuery and I noticed that when I make it so that clicking on a link causes audio to play, it works fine on the iPad. As I understand it, the audio is only allowed to play because the user ...
4
votes
3answers
219 views

High Quality Audio Recording in Web Browser

One line version: What open source software (WAMI-Recorder)/web browser (via getUserMedia) will give me the best quality audio recordings? High quality would be defined as (44.1 or 48 sample rate) ...
2
votes
1answer
53 views

chrome audio analyzer breaking on audio switch

I'm creating an audio visualizer with webgl, and have been integrating soundcloud tracks into it. I want to no be able to switch tracks, but I can either get my visualizer to work and the audio to ...
0
votes
1answer
31 views

html5 audio tag how to add src?

I'm new to HTML5. I used an audio tag of HTML5 in my page. I want to add the source of my mp3 file from different root folder. My root folder is C:/inetpub/wwwroot/App/ but I want to use folder from ...
0
votes
1answer
72 views

Is there a good radio-like audio streaming solution for node.js?

I'm looking for something to stream audio like radio (playing continuously and clients can join in the middle of a song) with node.js. Is there any node.js module (which I couldn't find)or anything ...
0
votes
0answers
12 views

Loop SoundManager2 but reload audio every time

I'm trying to loop SoundManager2 but have the audio reloaded every time because the contents of the mp3 file do change. Also, not necessary, but is there a way to make it cross-fade? This is my ...
0
votes
1answer
25 views

JScrollPane causing HTML5 Audio to auto-pause

Facing a weird issue when using JScrollPane (http://jscrollpane.kelvinluck.com/index.html#support) and HTML5 Audio tags. In a nutshell: I have a div which I am using Jscrollpane on. The div contains ...
0
votes
0answers
112 views

Audio HTML5 Current Time DOM Exception [closed]

I'm trying to do this : A video playing, and 3 buttons , each of it is playing a sound which will start at the currentTime of the video ( which is mute) . For the moment, I wrote this : ...
0
votes
1answer
44 views

selecting and displaying audio and video in html

I am writing a program that allows users to select and display images, audio and videos I currently have the image part working. I have followed all the examples on w3schools and I think I am still ...
0
votes
0answers
8 views

web audio - access to current audio playing

I'm learning html5 audio api. I'm trying to find an API to gather audio being currently played in browser, with the purpose of streaming it through a WebSocket, or say, a filter to the whole audio ...
1
vote
1answer
112 views

audio still playing after jquery mobile page navigation

I will preface by apologizing if this is indeed asked and answered somewhere else...I have been rewording and googling for days for a solution to this problem with no luck. I took on the code writing ...
1
vote
0answers
43 views

HTML5 audio reloads the page

Note: related question explaining the exact same behavior (found it after creating this question). I was experimenting with the HTML audio element when I realized that every time the Mp3 file being ...

1 2 3 4 5 16