GAP
20th December 2021, 02:17
I know that this might be a little redundant but how do merge video files in AVISynth? And still maintain the same settings for each file? I mostly use MeGUI or AVSPMod for AVIsynth since I am relatively new to it.
StainlessS
20th December 2021, 02:41
Seems like you already asked the same question, and VoodooFX told you to use aligned splice:- http://avisynth.nl/index.php/Splice
eg
a = Avisouce(".\a.avi")
b = Avisouce(".\b.avi")
a ++ b # Or AlignedSplice(a,b)
Maybe its about time you specified what you mean by 'merge',
also, what does "And still maintain the same settings for each file?" mean ?
EDIT:
To join two video clips together, clips need to be same frame size, colorspace, and framerate,
if interlaced, they need to be the same parity, TopFieldFirst or BottomFieldFirst,
and audio has to be same samplerate(eg 44.1KHz or 48KHz), samplesize/bitdepth(eg 16 bit), and number of channels.
GAP
6th January 2022, 03:00
I missed that post but that is how you do it, right?
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.