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...
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.
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.
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.