I'm attempting to play audio only in my surround channels, but it seems like anytime I connect to a specific channel it plays out the other ones as well
My set up and audioContext.destination are configured for 4 channels
var merger = context.createChannelMerger(4);
audio.connect(merger, 0, 2);
audio.connect(merger, 0, 3);
merger.connect(context.destination);
my audio is stereo (but I only care about one channel) so I also tried splitting it first
var merger = context.createChannelMerger(4),
splitter = context.createChannelSplitter(2);
audio.connect(splitter);
splitter.connect(merger, 0, 2);
splitter.connect(merger, 0, 3);
merger.connect(context.destination);
oddly enough, If I only connect it to the left/right channel it plays as expected.
I'm running chrome 45 on windows 10