I was wondering if anyone knows how you would merge two avi's or mpegs through avisynth for converting in CCE? (i.e., combining a part 1 and part 2) Thanks.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Everytime I have tried to do this I get audio sync problems on the second half of the combined AVI
I have encountered this with my LaserDisc captures since just about all movies have to be captured as 2 or more files since a LaserDisc can only hold 60 minutes per side.
My solution?
Encode each AVI as seperate files ... process the audio as seperate as well. Then I mux the DVD MPEG-2 spec video with AC-3 audio.
I end up with 2 MPEG files ... AVI one into one MPEG file (with muxed AC-3 audio) and AVO two into one MPEG file (with muxed AC-3 audio).
I then combine them into one multiplexed MPEG file using MPEG-VCR by Womble multimedia.
I then import that single multiplexed MPEG file into my DVD authoring program.
No sync problems.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
Originally Posted by TMlewiss
This is how you would join it in AviSynth:
Code:AVISource("D:\capture\clipo1.avi")+AVISource("D:\capture\clip02.avi")
Maybe it works better when your AVI files aren't live captures but rather DVD conversions or DV AVI format.
By the way here is a nice guide to some stuff you can do with AviSynth:
https://www.videohelp.com/guides.php?link=120
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
Did you try
AVISource("D:\capture\clipo1.avi")++AVISource("D:\ capture\clip02.avi")
with ++ (AlignedSplice) instead of + (UnalignedSplice).
Jozef. -
Originally Posted by jozef_hlavaty
Next time I do a LaserDisc transfer (just got one from eBay I intend to do) I will try it with "++" instead of just one "+"
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
Similar Threads
-
Script to mass convert VOB's to MPG's from the command line
By casperinmd in forum SVCD2DVD & VOB2MPGReplies: 13Last Post: 3rd Jan 2013, 16:08 -
How to merge avi files?
By mkvelidadon in forum Newbie / General discussionsReplies: 3Last Post: 26th Sep 2011, 02:25 -
AviSynth "ConvertToYV12()" command - correct placement in script?
By spicediver10191 in forum Video ConversionReplies: 2Last Post: 11th Dec 2010, 19:15 -
merge two avi files
By Jorge in forum Video ConversionReplies: 4Last Post: 17th Feb 2010, 22:01 -
AviSynth: script command, order of execution, and 'coding efficiency'
By hollowman in forum Newbie / General discussionsReplies: 6Last Post: 27th Aug 2008, 23:44