Log in

View Full Version : avi with 2 audio stream


prescott86
30th May 2006, 13:34
i want to convert LD to VCD, so what im doing is, capture the video from LD player to AVI, then encode the AVI to VCD

the problem is, how do i create a VCD from AVI with 2 audio source, left channel and right channel?

Any help will be appreciate...

communist
30th May 2006, 14:18
Use Avisynth.
Avisource("x:\blah.avi")
LanczosResize(352,288) # (320,240) for NTSC I think
ConvertToYV12() #may need YUY2 or RGB depending on encoder

You may have to deinterlace if it isnt progressive, but there is no special treatment required for the audio.

prescott86
30th May 2006, 15:09
then what about the 2 audio source, no need to encode it?

communist
30th May 2006, 16:04
If you pass the above mention script to QuEnc / TMPG and set it up properly it should produce a VCD compliant mpeg1 file. You can then burn a VCD with Nero for ex.

prescott86
30th May 2006, 20:50
ya, it did produce vcd-compliant mpeg1, but only with 1 audio stream. What i need is with 2 audio source, where i can choose left channel or right channel when playing with vcd player. Any idea?

Thanks for the help.

communist
30th May 2006, 21:52
ya, it did produce vcd-compliant mpeg1, but only with 1 audio stream.
Which is probably stereo, as the source - in other words totally normal. I'm not getting this left right thingy you want to do with your player - why would you want to select the right side or left side only with a stereo sound signal :confused:

prescott86
31st May 2006, 10:17
coz its a KTV vcd. so is there any way to do it?

obieobieobie
31st May 2006, 22:43
Mix the two channels together in some audiosoftware and save it as a stereo file.

prescott86
1st June 2006, 20:04
finally got it working, thanks for the help....