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!
Mix all channels down to one stereo track
Re: Mix all channels down to one stereo track
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
emcodem, wrapping since 2009 you got the rhyme?
Re: Mix all channels down to one stereo track
... 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
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
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