Log in

View Full Version : different .d2v-files in one script?


Tantabootsy
5th October 2002, 00:17
Hi,
well, that's what my question is.. Is it possible to put these different files in one avisynth-script or do I have to set up every single pgc in another .avs-file? ..Which is very stintings if you've got about 30 or 40 pgcs...;)
Thanks for your response of course,
Tantab.

manono
5th October 2002, 02:50
Hi-

This doesn't really answer the question, but you can create one giant .d2v by adding them one after another in DVD2AVI.

Dark-Cracker
5th October 2002, 02:54
hi,

i think it possible (but i don't have make some tests. try somethink like this :

LoadPlugin("D:\MPEG2DEC\MPEG2DEC.dll")
F1=mpeg2source("c:\File1.d2v")
F2=mpeg2source("c:\File2.d2v")
F3=mpeg2source("c:\File3.d2v")
F4=mpeg2source("c:\File4.d2v")
Return F1+F2+F3+F4

to add filters simply use:
F1=mpeg......
F1=Crop(F1,...)
F1=Resize(F1,...)
F2=mpeg.....

bye.

Tantabootsy
5th October 2002, 09:11
I knew that one with the large .d2v file in DVD2AVI, so I'm gonna try the F1, F2..-method from dark-cracker (thanks!)
Tantab.

WarpEnterprises
5th October 2002, 22:49
Of course you can use multiple d2v.
You can put together the sound too.

Then you must use ++ (AlignedSplice) instead of + (the soundtrack often is not exactly as long as the video)

clip1 = AudioDub(mpeg2source("video1.d2v"), WavSource("audio1.wav"))
clip2 = AudioDub(mpeg2source("video2.d2v"), WavSource("audio2.wav"))
AlignedSplice(clip1, clip2)

Tantabootsy
6th October 2002, 07:15
I don't need the audio but I'll try that one, too, thx.
Tantab.