Reputation: 18725
I have an mp3 file with 2 channels, right and left.
Is there is any way to play it in the browser with the two channels separated ?
So I will have two <audio>
elements, one per each channel.
Upvotes: 1
Views: 1598
Reputation: 13928
Why are you trying to do this? Using Web Audio, you can split the channels apart (via the ChannelSplitterNode) and process them separately.
Upvotes: 4
Reputation: 8472
You'll need to separate the stereo audio file into two audio files, one with just the left channel, and one with just the right.
Upvotes: 0