1
votes

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.

2

2 Answers

3
votes

Why are you trying to do this? Using Web Audio, you can split the channels apart (via the ChannelSplitterNode) and process them separately.

0
votes

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.