The createChannelSplitter()
method of the AudioContext
Interface is used to create a ChannelSplitterNode
, which is used to access the individual channels of an audio stream and process them separately.
var audioCtx = new AudioContext(); var splitter = audioCtx.createChannelSplitter(2);
The following simple example shows how you could separate a stereo track (say, a piece of music), and process the left and right channel differently. To use them, you need to use the second and third parameters of the AudioNode.connect(AudioNode)
method, which allow you to specify the index of the channel to connect from and the index of the channel to connect to.
var ac = new AudioContext(); ac.decodeAudioData(someStereoBuffer, function(data) { var source = ac.createBufferSource(); source.buffer = data; var splitter = ac.createChannelSplitter(2); source.connect(splitter); var merger = ac.createChannelMerger(2); // Reduce the volume of the left channel only var gainNode = ac.createGain(); gainNode.gain.value = 0.5; splitter.connect(gainNode, 0); // Connect the splitter back to the second input of the merger: we // effectively swap the channels, here, reversing the stereo image. gainNode.connect(merger, 0, 1); splitter.connect(merger, 1, 0); var dest = ac.createMediaStreamDestination(); // Because we have used a ChannelMergerNode, we now have a stereo // MediaStream we can use to pipe the Web Audio graph to WebRTC, // MediaRecorder, etc. merger.connect(dest); });
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'createChannelSplitter()' in that specification. | Working Draft |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 10.0webkit | (Yes) | 25.0 (25.0) | No support | 15.0webkit 22 (unprefixed) | 6.0webkit |
Feature | Android | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 26.0 | 1.2 | ? | ? | ? | 33.0 |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createChannelSplitter