i have movie which is about 3 hrs. long. It is in divx. and the movie is in two cds (1,5 hours each). I converting the movie to svcd. And i put it 3 cds. (one hour each) so how can i make this? I know that i must cut the first cd to end at one hour, but how can i connect first cd's end and second cd begin?
+ Reply to Thread
Results 1 to 16 of 16
-
don't mind i'm idiot..
-
Use TMPGEnc, first merge the two 1.5 hour mpeg files together, then cut the resulting 3 hour file into 1 hour sections. Use the merge and cut tool, under file-mpeg tools.
Craig -
TMPGEnc is an .avi tool. Look it up on this web site for a descripton.
-
Better yet, click on Edit (cut,join,edit video) to the left of this.
-
Originally Posted by ShadowTrooper
Craig -
crypt: It says that audio streams has different sampling rates and it can't do that
don't mind i'm idiot.. -
Use the forum search engine. There is an extensive thread on this topic
http://forum.vcdhelp.com/viewtopic.php?t=97784&highlight=
Mark -
Originally Posted by ShadowTrooper
-
If you go to the post the thread that I started above, it goes through the problem and how to join two avi's with dissimilar characteristics!!!!
Mark -
I'm surprised no one has mentioned it yet, but Avisynth can easily join to Avi's in a script without using all the extra disc space needed by VirtualDub. The script should be pretty simple, it would look something like this.
part_1 = AviSource("c:\First.avi")
ResampleAudio(part_1,44100)
part_2 = AviSource("c:\Second.avi")
ResampleAudio(part_2,44100)
UnalignedSplice(part_1,part_2)
This script should join the two pieces and take care of the sampling rate problem. If you find the audio gets out of sync for the second part, try using AlignedSplice instead of UnalignedSplice. However for something like a cut DVD rip, Unaligned should work fine. Hope you find that helpful.