digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Multiple D2Vs in one script? (http://www.digitalfaq.com/archives/avisynth/3041-avisynth-multiple-d2vs.html)

PyRoMaNiA 03-20-2003 02:46 PM

Multiple D2Vs in one script?
 
Is there a way to load several D2V files in a single script?
I tried just 4 MPEG2Source lines but just got an error. :?

rendalunit 03-20-2003 03:17 PM

hi PyRoMaNiA,

You can do that with a script like this:
Code:

#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#

LoadPlugin("D:\Program Files\video tools\MovieStacker_v1.1.1\MovieStacker\Filters\MPEG2Dec.dll")

a=Mpeg2Source("C:\clipa.d2v").BilinearResize(528, 366, 14, 0, 692, 480).
\AddBorders(0, 57, 0, 57)
b=Mpeg2Source("C:\clipb.d2v").BilinearResize(528, 366, 14, 0, 692, 480).
\AddBorders(0, 57, 0, 57)
c=a+b
convertToYUY2(c)

The two clips need to be the same resolution though.

ren

PyRoMaNiA 03-21-2003 10:07 AM

Thanks! :D


All times are GMT -5. The time now is 06:22 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.