HasanAboShally
HasanAboShally

Reputation: 18725

HTML5 Audio, separate left and right channels

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

Answers (2)

cwilso
cwilso

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

Boris Smus
Boris Smus

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

Related Questions