I want to play an oscillator in left, right or both channel and to achieve this i use the StereoPannerNode from the Web Audio Api. When i run "ionic serve" on Chrome everything works fine, but when i test the code on Android (i installed the crosswalk plugin) the sound comes from both channels (lower in the channel i don't want the sound to play).
I also tried Merger and Splitter nodes with the same results: works on Chrome, doesn't work on Android.
I tried to use Asus ZenFone with Android 4.4.2 and Huawei p8 with Android 6.0.
This is how i create my audio context and the panner node.
var contextClass = (window.AudioContext);
var audioCtx = new contextClass();
var panNode = audioCtx.createStereoPanner();
I don't know how to fix this, any idea?
On Android 6.0, the following script works. It makes use of the Web Audio API. I have not yet tested it on iOS, but I have a good feeling it will work there (please comment if it does not).
You need an "omg.mp3" file in your root directory to test with. You also should build using Cordova and not worry about the CORS or Same-domain error you might get in your browser