writing in scripts?

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
goten15
Joined: Sat Nov 19, 2005 2:31 am
Org Profile

writing in scripts?

Post by goten15 » Wed Mar 28, 2007 10:54 pm

I'm trying to follow the AMV FAQs on this page but i'm getting really confused. Mostly with a part where when i'm using makeAVIS it says "add the following line to our script: ConvertToRGB32()". Whats it talking about? What script am I adding it to and where is it?

User avatar
Scintilla
(for EXTREME)
Joined: Mon Mar 31, 2003 8:47 pm
Status: Quo
Location: New Jersey
Contact:
Org Profile

Post by Scintilla » Wed Mar 28, 2007 11:08 pm

That sounds like my guide on WMM, which assumes that you've been following <a href="/guides/avtech/videogetb.html">EADFAG</a> for most of the footage-gathering process. Therefore, it assumes that by the time you get to those instructions, you already have one AVISynth script for each DVD2AVI/DGIndex project file (.D2V) that you're using.
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

goten15
Joined: Sat Nov 19, 2005 2:31 am
Org Profile

Post by goten15 » Wed Mar 28, 2007 11:19 pm

yes i have all of those things, but where do i put that code?

User avatar
WC Annihilus
Joined: Wed Jan 17, 2007 10:49 pm
Org Profile

Post by WC Annihilus » Wed Mar 28, 2007 11:22 pm

In an AVS file. This can be made using Notepad and saving with the extension .avs. Either that, or you can make .avs's with VDM

User avatar
Willen
Now in Hi-Def!
Joined: Sun Jul 10, 2005 1:50 am
Status: Melancholy
Location: SOS-Dan HQ
Org Profile

Post by Willen » Wed Mar 28, 2007 11:50 pm

Example (Goddess01.avs):

Code: Select all

MPEG2Source("C:\AMV Project\SLMFM Project\Goddess01.d2v", cpu=4)
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TDeint\TDeint.dll")
TDeint(mode=1,order=1).BlendBob()
Crop(6, 0, -2, 0)
LanczosResize(720, 480)
To add ConvertToRGB32(), open up the AVS file in notepad and edit it to look like this:

Code: Select all

MPEG2Source("C:\AMV Project\SLMFM Project\Goddess01.d2v", cpu=4)
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TDeint\TDeint.dll")
TDeint(mode=1,order=1).BlendBob()
Crop(6, 0, -2, 0)
LanczosResize(720, 480)
ConvertToRGB32()
Of course, the filters and parameters that you may have in your script would be different from mine.
Having trouble playing back videos? I recommend: Image

Locked

Return to “AviSynth Help”