Selur's Little Message Board

Full Version: Audio Channel Rebalancing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I'm currently using Hybrid and am having trouble with editing audio. I am looking to have audio play from both channels as my sample clip only has the right audio channel functioning, like converting from stereo -> mono. Is there a way to have both audio channels play?
"Audio->Base->Audio Encoding Options->Filtering->DownMix->Custom" allows setting custom mixing using the remix option of sox.
For example given a stereo input where the audio is only one the left channel, one could use:
Code:
1v0.5 1v0.5
to split that audio over both channels or
Code:
1v1 1v1
to copy the left over to the right channel.
If you want stereo to mono, you could simply select 'toMono'.

Cu Selur