Page 2 of 2

Re: Mix all channels down to one stereo track

Posted: Thu Jun 01, 2023 7:34 am
by Railio
Hello!
that worked, obviously! What I get now is a file with a mixed down track on ch1 and no audio on ch2.
If I wanted to duplicate ch1 audio track on ch2, should I add the instruction on the Avisynth script or add it to the encoder at the following step?

Many many thanks!

Re: Mix all channels down to one stereo track

Posted: Thu Jun 01, 2023 7:52 am
by emcodem
It does not really matter if you do the channel mapping in the encoder or the custom avs script from my perspective. Here it is for the custom avs:

Code: Select all

mono=GetChannel(m_clip, 1, 2).ConvertToMono()
mono=AmplifyDb(mono, 25)
m_clip=MergeChannels(mono,mono)
Return m_clip

Re: Mix all channels down to one stereo track

Posted: Thu Jun 01, 2023 7:59 am
by Railio
:oops:
... got the message! :)

Thank you very much for this,
I promise I will go through the documentation more thoroughly !

Re: Mix all channels down to one stereo track

Posted: Thu Jun 01, 2023 7:22 pm
by momocampo
No problem Railio ;)
You won't find everything in the documentation but we try to add as many things as possible.
You should take a look, there are a lot of interesting things :)
cheers ;)