Cannot join multiple clips with DGIndex. Help! According to the brief instructions supplied with DGIndex zip file (if I understand this correctly), audio files get separated and must be joined with video via the "Audiodub" command like so (adding an introductory blank screen)
I have fifteen such clips and try to load the following code into VDub, which, of course, is not correct.Code:v1=MPEG2Source("clip 069.d2v").Trim(0,300) a1=MPASource("clip 069.mp2") AudioDub(v1,a1) Blankclip(last,length=100).Subtitle("Jud, North Dakota, City of Murals", size=58,align=5)++last
What am I doing wrong? l feel like I'm walking around in circles because it's taken me about a month to render an itty bitty video clip.Code:v1=MPEG2Source("clip 069.d2v").Trim(0,300) a1=MPASource("clip 069.mp2") AudioDub(v1,a1) Blankclip(last,length=100).Subtitle("Jud, North Dakota, City of Murals", size=58,align=5)++last v2=last++MPEG2Source("Clip 070.d2v").Trim(30,282) a2=MPASource("clip 070.mp2") AudioDub(v2,a2)
+ Reply to Thread
Results 1 to 5 of 5
-
Last edited by PapaDmitry; 7th Jul 2010 at 23:22.
-
What do you mean "cannot"? Is there an error message? If so what?
Anyway, if it's sync, then I think you should Trim after dubbing:
Code:v1=MPEG2Source("clip 069.d2v") a1=MPASource("clip 069.mp2") AudioDub(v1,a1) Trim(0,300) Blankclip(last,length=100).Subtitle("Jud, North Dakota, City of Murals", size=58,align=5)++last
-
When you AudioDub a2 onto v2, you are replacing the entire audio track, so you lose a1.
You need to do the AudioDub for each section before appending it to the previous ones.
And (assuming each mp2 is as long as the corresponding d2v) AlanHK is right about putting the AudioDub before the Trim as well.
Code:v1=MPEG2Source("clip 069.d2v") a1=MPASource("clip 069.mp2") AudioDub(v1,a1).Trim(0,300) Blankclip(last,length=100).Subtitle("Jud, North Dakota, City of Murals", size=58,align=5)++last v2=MPEG2Source("Clip 070.d2v") a2=MPASource("clip 070.mp2") v2a=AudioDub(v2,a2).Trim(30,282) last++v2a
Similar Threads
-
joining edited clips
By gargoyle62 in forum EditingReplies: 1Last Post: 22nd Nov 2011, 21:10 -
Help for adding Fade In/Out and Joining many clips together
By joberrick in forum EditingReplies: 1Last Post: 11th Jul 2011, 20:44 -
Joining several .MOV clips
By natty in forum EditingReplies: 18Last Post: 28th May 2009, 11:27 -
Joining 2 different video clips without re-encoding one of them?
By Og in forum EditingReplies: 2Last Post: 7th Jan 2009, 01:54 -
joining avi clips
By natty in forum Newbie / General discussionsReplies: 2Last Post: 26th Jan 2008, 12:32