Are there any programs that convert DVD contents to media format such as WMV, AVI or MPEG4 etc. and also able to map the audio streams (0x80, 0x81) to Left and Right channels to the new converted format? Is there any straight forward program that I can use?
For example, 0x80 to the Left channel and 0x81 to Right channel
NOT MIXED
The reason I do this is to convert a DVD Karaoke disk to local files in the Hard drive so that the PC Karaoke system can play and able to switch voice and no voice by choosing L/R channels.
The program or scripts that I am looking for should first able to rip the DVD into chapters and then map the 2 streams to Left and Right channels respectively (not mixed) and output the video format I desire. I prefer WMV and MP4.
I have few hundreds DVD (>6000 songs) to convert plus more coming, therefore I must need a very efficient way to complete the mission.
+ Reply to Thread
Results 1 to 8 of 8
-
-
Is it one step process or I have to spend more time to assemble this video and audio again ?
-
Thank you for your quick response!
It takes too much time. I have 300 DVDs to convert and I have to hire a person to do it, the techiques you mention required computer trainnings and I am looking for any commercial or free software like WINAVI that do one step process.
I would also pay to anyone who can write a scripts that so the job properly. -
I forgot to mention. I need to map streams (0x80, 0x81) to Left and Right channel respectively not to mix.
For example, 0x80 to the Left channel and 0x81 to Right channel -
I know that.
I meant using MergeChannels().
Don't confuse this with mixing of channels (MixAudio and ConvertToMono do this) - the sound of each channel is left untouched, the channels are only put into the new clip.
So:
video = mpeg2source("video.d2v")
l_ch = GetChannel(NicAC3Source("0x80.ac3", 1),1)
r_ch = GetChannel (NicAC3Source("0x81.ac3", 1),1)
stereo = MergeChannels(l_ch,r_ch)
AudioDub(video, stereo)
or something to that effect. You can then just encode the avs in wmencoder or whatever. You probably also want to resize. Once you have a template script, you can use it with DGIndex. -
Thanks for your valuable advice .. I will try that later and hopefully it works.
Similar Threads
-
How to stretch longer audio stream to a shorter video stream ?
By ralf07 in forum AudioReplies: 9Last Post: 31st Aug 2011, 22:42 -
Help converting small size but large stream size asf video stream file?
By apple4red in forum Video Streaming DownloadingReplies: 5Last Post: 11th Oct 2010, 11:01 -
Separating the channels in a 5.1 stream into separate streams
By FallenAngelII in forum AudioReplies: 2Last Post: 7th May 2010, 02:37 -
NICAM channels bundled together after converting DVD video
By come_mon in forum Video ConversionReplies: 5Last Post: 27th Nov 2008, 19:32 -
How do you separate an AVI file into a video stream and an audio stream?
By VidHunter in forum MacReplies: 2Last Post: 1st May 2008, 03:27