Channel Swapping

spudman

New member
:confused: Hi there. I have an avi source that the audio channels are the wrong way round. The left comes out the right and right out of left. is it possible to re-encode the audio so the channels are the right way around...

Any help would be appreciated :D
 
Well you could use AVISynth.

l_ch = GetChannel(1)
r_ch = GetChannel(2)
stereo = MergeChannels(r_ch,l_ch)

Probably simpler ways to swap the channels though.
 
Top