Log in

View Full Version : encoding karaoke files please advise!!


Ekin
20th December 2006, 06:32
Hello,

I have a quick questions about encoding my .vob karaoke files into xvid. The .vob file has 2 audio streams. I know AutoGK can encode both streams. But what I really want is to encode my .vob files into xvid with the Left audio channel to be audio 1 from the .vob file. And the Right audio channel to be audio 2 from the .vob file. So is this possible??? The reason is for a software compatibility. This particular software can not handle dual audio streams for avi. It can handle a left and right channel. So my goal would encode .vob files into xvid with audio 1 and 2 to be Left and Right Channel respectively. So I don't know if this possible... Or how does those company do it so that they have left and right channel. Do they have to do it mannually ??

Thanks

foxyshadis
20th December 2006, 12:52
Something like this avisynth script?

mpeg2source("...")
lang1=nicac3source("...").converttomono()
lang2=nicac3source("...").converttomono()
audiodub(MergeChannels(lang1,lang2))

That'll put the first on the left and the second on the right, mixed down.

Ekin
20th December 2006, 16:08
Hi foxyshadis:

thank you for the reply, but sorry I really new at this so I don't really know how to apply your suggestion. Currently I am using AutoGK to convert my .vob to xvid. So using your suggestion...how would I do that in AutoGK. Because I don't want to manually run the avisynth script for each song...that would take me a lifetime to convert all my songs. Is there a way to modify AutoGK so that can put your suggestion script into it ? I guess the advance option ctrl + f11 in AutoGK for the "mono" audio is not the same right ??

Thanks greatly appreciated !!