I have 2 AVI files encoded in DivX3. First, I need to join the two files (using virtual dub guide on this site), and then I need to cram the joined file onto a (s)vcd, most likely an X(S)VCD. While encoding to the X(S)VCD, I also need to change the file to NTSC. Question is, during this process, should I expect to get any audio sync problems? Would it be easier to change the framerate while the file is still an AVI before encoding, or just do it at encoding?
So basically I want to do this, all in one shot.
step1: merge the two files.
step2: change PAL-> NTSC and set other options for encode to XVCD
step3: take ready to burn XVCD (that is now NTSC) and burn it.
Is this ^ possible?
One more thing, when i use the bitrate calculator, where would that bitrate go if I do VBR? Is it the min bitrate, the max, or the average?
+ Reply to Thread
Results 1 to 5 of 5
-
-
You will for sure have audio sync problems. The avi files must be converted to NTSC 1st as well as the audio files. This will require you to separte the audio from each avi then convert it then agin the same for the next avi file and then join them and then encode the batch... Bit rate I can't help you with. As far as I know teh encoder can calculate the bit rate for you and I'd use CBR instead of VBR its a little easier and takes less time. VBR is good very good actually but I hate the time it takes to encode......I can give you more info on converting PAL avi to NTSC avi just e-mail me
Archie(doctorag2003@yahoo.com)
By the way I'm gonna complete a guide for this real soon as I found it works really good and I have to thank a really cool guy out there who helped me find this method........Think Before You Do It -
In my experience whenever avi files are joined I ALWAYS get audio sync problems. Maybe it is just me.
-
The avi files must be converted to NTSC 1st as well as the audio files. This will require you to separate the audio from each avi then convert it then again the same for the next avi file and then join them and then encode the batch...
Thanks
EDIT: So far it looks like it worked great. I haven't encoded the movie in full yet, but some samples came out fine, no sync probs. -
You should merge them in VDub before encoding. If the files contain 5.1 AC3 audio, then you will need to repair the audio with AC3Fix after extracting it in VirtualDub (make sure you set the audio to 'Direct Stream Copy'. If you have AC3 audio and you do not run AC3Fix, you will encounter audio sync problems.
If your audio is NOT AC3, then you can simply merge them, and encode.
I would suggest you use AVISynth 2.5 to do this becaue it is faster than VirtualDub, and it will also resample your audio. AVISynth can resample the audio, if needed, to 44.1Khz on the fly and change your video framerate all in one step. You script would look like this:
AVISource("YourMovieFilename.AVI")
LanczosResize(480,480)
ResampleAudio(44100)
AssumeFPS(23.976,True)
ConvertToYUY2()
Correct the first line, so it has the correct AVI filename. The second line has your desired resolution. Put whatever resolution you want on that line. Save the above text in NOTEPAD, and put it in the same directory as your .AVI file. Call it anything you like, and give it a .AVS extension. Drop the .AVS file onto whatever encoder your using.
If your joined AVI's have AC3 audio, then modify your first line, so it looks lke this:
AVISource("movie.avi",False)
The FALSE parameter will tell AVISynth to ignore the audio stream. Convert your AC3 audio with AC3Machine. It will perform the PAL to NTSC conversion, and retain the full 5.1 sound.Impossible to see the future is. The Dark Side clouds everything...
Similar Threads
-
Audio Sync Problems
By nephesh in forum Video Streaming DownloadingReplies: 0Last Post: 12th May 2011, 08:10 -
Audio Sync Problems
By mattr in forum MacReplies: 4Last Post: 7th Jul 2008, 09:55 -
Audio Sync Problems
By Blue_3 in forum AudioReplies: 5Last Post: 10th Apr 2008, 18:17 -
Audio sync problems
By jelockwood in forum ffmpegX general discussionReplies: 1Last Post: 30th Jul 2007, 12:03 -
Audio sync problems
By alvinboobar in forum Video ConversionReplies: 1Last Post: 10th Jul 2007, 06:22