Web Audio is a Javascript API providing low level, low latency, audio playback and manipulation functions in HTML5 capable web browsers.

learn more… | top users | synonyms

0
votes
1answer
28 views

Javascript Web Audio API AnalyserNode Not Working

The code is supposed to stream any url and provide a visualization of the audio. Unfortunately, the visualizer is not working. The visualization relies on the data from the AnalyzerNode, which is ...
0
votes
1answer
30 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
1answer
25 views

Web Audio OfflineAudioContext syntax error when I follow the API

Chrome 27 beta throws a SyntatxError when I try to execute the following javascript line: offlineContext = new webkitOfflineAudioContext(2, 7*48000, 48000); This is in conformance with the W3C ...
3
votes
1answer
45 views

Custom progressive audio streaming in browser

Say i like to create my very own progressive streaming mechanicsm in Javascript because i'm finding the browser's built in streaming mechanism not fault-tollerant enough or i like to implement my own ...
0
votes
0answers
29 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
42 views

JQuery knob, input slider and web audio oscillator connecting but not working

I have the web audio api and the JQuery knob library kind of working... but not quite. The knob slider controls an input slider but the value doesn't seem to be passed to the param I want to affect. ...
0
votes
1answer
45 views

Scope issue with xmlhttprequest and Web Audio API?

I'm new to JS and I've been toying around trying to implement a sort of sound mixer with the Web Audio API. I have been reading a bit about the scope on JS and different ways to implement "classes", ...
1
vote
0answers
96 views

Web Audio API with Chrome 26.0.1410.64 m

I have used Web Audio API followed the tutorial on HTML5 Rock.I have added one audio context with 11 tracks of mp3 file, each file plays about 5 min. This app works perfectly fine before I ...
1
vote
0answers
23 views

Is there a way to get access to the master mixer or other devices/channels via the web audio api?

Is there a way to record the audio being currently mixed down (possibly from another tab/process) on the hardware? Is there a way to input/connect to the browsers mixer? Studio hardware usually has ...
0
votes
1answer
39 views

record audio from embedded video

I like to use the audio context analyzer to take-in the combined audio output of a web page and process it. I have an embedded youtube video and an audio track running at the same time and like to use ...
0
votes
1answer
36 views

Removing pop/hiss from WebAudio generated sound

I am using the nodeOscillator function from Web Audio API to generate a sound, however when the sound cuts it makes a pop sound (the amplitude is not zero at the cut). Does anyone know a way to check ...
0
votes
0answers
28 views

WebAudio crashes iPad's Home button

I tried SoundJS and also Howler JS on iPad. Both use WebAudio to playback sound. It works perfectly fine in browser, however, if I add it to home screen and run from home screen as a web app, once I ...
0
votes
0answers
64 views

Capture audio playing in the background for mobile with Phonegap and HTML 5

I am trying to develop a sound recorder with HTML5 and PhoneGap/Cordova. Is there a way to capture the background audio playing on the device? I have digged with Web Audio API but no chance. Thanks, ...
0
votes
2answers
42 views

Web Audio Api: frequency related to elapsed time

I have a script that gets audio frequencies. I want to relate that frequency with the exact time of the song. I can get the webkitAudioContext currentTime property, but this is not accurate because it ...
0
votes
3answers
60 views

Buffered Audio For Generating Sounds

I have an oscillator to generate the frequencies of a keyboard. It all works when I output to speakers, but as well as outputting to speakers I would like to buffer it so that I can turn it into base ...
0
votes
1answer
118 views

Get audio levels from HTML5 Audio Microphone Stream

On a previous stack overflow question, I found this code: <script> // this is to store a reference to the input so we can kill it later var liveSource; // creates an audiocontext and hooks up ...
0
votes
2answers
69 views

Web Audio API gain node envelope generators

Im trying to make an envelope generator for my oscillator using automation on the gainNode and i want to be able to trigger the envelope whenever an event happens ( in this case a button click ). But ...
0
votes
2answers
73 views

How to modulate an AudioParam with a LFO in Web Audio API

How can i modulate any of the AudioParams in Web Audio API, for example gain value of the GainNode using a Low Frequency Oscillator ?
0
votes
1answer
54 views

RecorderJS doesn't work anymore

I try to use RecorderJS with this callback in getUserMedia. One mounth ago this code work, but now i have some trouble about this. When onaudioprocess in recorder.js are executed the array buffer ...
1
vote
1answer
64 views

put live audio input data into array

Hey I am using GetUserMedia() to capture audio input from user's microphone. Meanwhile I want to put captured values into an array so I can manipulate with them. I am using the following code but the ...
0
votes
1answer
56 views

Cross browser audio to canvas visualisation

I'm working on a project of visualising audio into canvas, so far I understood that I would have to use AudioAPI, something like SoundManager 2 etc. which has a flash fallback. There is one thing tho, ...
0
votes
0answers
65 views

Web Audio API BufferSource [closed]

Im trying to load a file with XML request to the buffer and play it back immediately using WEB Audio API BufferSource node. here is my code and i dont get why it is not working. ...
1
vote
2answers
81 views

changing Oscillator type in Web Audio API with a range slider

i managed to make the slider to change to oscillator frequency but does not work for the oscillator type. here is the jsfiddle link http://jsfiddle.net/ehsanziya/aKDkf/1/ and Here is the JavaScript ...
3
votes
2answers
135 views

real-time processing web audio api

I am working with web audio api and requestAnimationFrame to visualize the audio input from microphone. I can successfully visualize the time-domain frequency data, but the problem is that since web ...
0
votes
1answer
57 views

stop all sounds in Web Audio API

I loaded and played multiple sounds with web audio api at the same time. Is there any way to stop all sounds? ex: a button to stop all sounds now. Since I have more than 10 sounds playing at the ...
1
vote
1answer
84 views

How do I configure a bandpass filter?

I'm trying to use the Web Audio API's bandpass filter functionality, but I believe my question is more general. I don't understand the "Q" value of the bandpass filter. I would like to be able to ...
1
vote
1answer
53 views

what is the time unit for Web Audio API 'noteOn()'

I am trying to use web audio api 'noteOn(time)' to play a sound, but I am not sure what the time unit is. Is it in millisecond? or in second?
0
votes
1answer
63 views

HTML5 buffer and play audio with createMediaElementSource()

I am using the audio API to get instant playback of a sound in iOS 6 in a web page. I have done it using an Ajax call, like the documentation suggested and that works great. However, I read you can do ...
2
votes
1answer
58 views

Calculating the AnalyserNode's smoothingTimeConstant

I am using the Web Audio API to display a visualization of the audio being played. I have an <audio> element that is controlling the playback, I then hook it up to the Web Audio API with by ...
1
vote
3answers
81 views

Toggle One And Off - JavaScript - Web Audio API

I am an Audio Engineer and just started JavaScript and HTML5, Specifically WEB Audio API. I have this oscillator code which is connected to destination(output). here is the code I want to have a ...
1
vote
0answers
142 views

Apple-mobile-web-app using Web Audio API system unresponsive when app state returns from background

I have developed a simple HTML 5 web app using the Web Audio API. The page is saved as a Web Clip and the apple-mobile-web-app-capable meta tag is added to enable full-screen. Everything thing works ...
2
votes
4answers
142 views

Future of JavaScript audio?

I'm teaching kids how to add audio to their JavaScript games and webpages. I knew about the HTML5 Audio API and am just now learning about the issues around the various browsers (IE surprisingly ...
0
votes
1answer
89 views

Getting an HTML input range value to a NEW objects argument

I want to get a an HTML input range sliders value to the sliderVal argument slot of the snareDrum variable dynamically. document.getElementById('slider').addEventListener('change', function() { var ...
0
votes
2answers
73 views

Creating a simple constructor for a grouping of Web Audio API nodes

I have a batch of Web Audio API nodes that look like the code below. I want to abstract this into a simple constructor but I'm having trouble. I'm not sure what I'm doing wrong. The end result should ...
0
votes
2answers
76 views

Web Audio start and stop oscillator then start it again

I am trying to start and stop a sound. And that works. But I can't start the sound up again. Do i really have to make another oscillator again? This just seems extremely un-intuitive. There must be a ...
0
votes
1answer
332 views

Web Audio API with IOS and Phonegap causes crash on resume from background

This might be a shot in the dark but here it goes: I have an HTML5 game running great on iPhone using Phonegap. I added audio using Web Audio API (which as of ios 6 is supported). This too works ...
11
votes
3answers
168 views

WebKit equivalent to Firefox's “moz-chunked-arraybuffer” xhr responseType

I would like to read an MP3 stream (from icecast, to read ICY metadata an then pass the binary MP3 data to a Web Audio Api). Firefox has a "moz-chunked-arraybuffer" xhr responseType to read data on ...
1
vote
1answer
76 views

Calculating a Web Audio API filter's response at a specific frequency and Q-factor

I'm using the Web Audio API to make a graphic EQ with four BiQuad filters; a highpass, two bandpass and a low pass: You can see each node representing each filter's frequency. It's working nicely ...
0
votes
0answers
84 views

HTML5 Audio element flickering on playbackRate change

Has anyone resolved flickering in the audio signal when audio.playbackRate != 1 on Chrome / Windows? I've read somewhere that this flicker should appear when rate < 0.5 or rate > 2.0. But the ...
1
vote
2answers
89 views

Getting frequency from a pixel value for Web Audio API EQ

I'm creating an visual EQ using the Web Audio API and canvas. I am plotting frequencies in a logarithmic graph on a HTML5 Canvas using the following function: function frequencyToPixel(freq){ var ...
0
votes
0answers
98 views

Possible Web Audio API regression in iOS?

The gameboy color emulator I coded is able to output audio via various audio APIs in javascript. Unfortunately, the mobile version stopped producing audio in iOS 6.1, when it would work in 6.0.1. I've ...
2
votes
1answer
163 views

Web Audio: No sound in right channel

I'm trying to create a custom panning control using the Web Audio API, but I can't get any sound to come out of the right channel using the channel splitter and merger nodes: var context = new ...
0
votes
1answer
144 views

Audio fingerprinting in javascript

I am trying to compare audio files at client side, I will not upload them on to the server, hence I want to get the fingerprint of the file even before uploading it to the server. Do we have a ...
1
vote
1answer
48 views

How could I set a loop in a AudioBufferSourceNode to exact match specific offset in a the underlying buffer?

When creating a sound with AudioBufferSourceNode I can set the offset and the duration in seconds. I have the offset and duration in sample positions which I suppose I have to convert to time, and I ...
5
votes
1answer
187 views

How can I encode and segment audio files without having gaps (or audio pops) between segments when I reconstruct it?

I'm working on a web application that requires streaming and synchronization of multiple audio files. For this, I am using the Web Audio API over HTML5 audio tags because of the importance of timing ...
1
vote
1answer
121 views

Possible to create an AudioBuffer from memory ie an Int8Array

Is there a way to add raw data from memory as a sample to the Web Audio Api? I would like to add a Int8Array (or Int16Array) as a buffer, the buffer just have the samples and no format as WAV or MP3. ...
1
vote
1answer
144 views

Capturing Web Audio API data for socket programming

I am making a video chatting web application using C# socket programming to transfer data. I want to use the Web Audio API to capture audio and video in my view page, but I dont know how to transfer ...
2
votes
2answers
223 views

What does the FFT data in the Web Audio API correspond to?

I've used the FFT data from the Analyser node using the getByteFrequencyData method in the Web Audio API to create a spectrum visualizer as shown below: In this instance I have 256 bins of data. ...
0
votes
1answer
59 views

How can a user upload audio for use in the browser?

I'm building a single page web app with node and express. I would like the user to be able to upload their own audio file so it can be played back in the browser. I have tried using the <form> ...
3
votes
1answer
114 views

Web Audio node connected to two gain nodes, connected to destination, duplicates speed / pitch

As the title says, if I have an audio node that emits sound and I connect it to two separate GainNodes, which in turn are connected to the Audio Context destination, the sound plays at double speed / ...

1 2 3 4