dw33p
Dec 2004
Registered
|
Right, ok, a verry little tute then:
For dvd ripping, use DGindex (together with the dgdecode plugin -> google).
Loading a plugin
code: LoadPlugin("X:\path\to\DGDecode.dll")
Allot of "basic" functions are build into avisynth. If you need to use functions that are inside dll files created for avisynth (like dgdecode.dll for example) you need to load them into your project before you can use them.
Load source material
code: mpeg2source("x:\path\to\dgindex\project.d2v")
in 99% of the cases I use a dvd as my source. As you can see in the above post you can also load avi files. Remember, to use d2v projects as an mpeg source you have to load DGDecode.dll.
Editing the movie
When loaded your main movie you can start adjusting it. You can crop it, resize it, de-interlace it, tweak it, etc etc etc.
As mentioned before, allot of plugins are built-in, and you can find them at: http://www.avisynth.org/FiltersByCategory
For instance, Letterbox()
code: Letterbox(48,48,0,0)
^^ will add a 48px width border on the top and the bottom.
The syntax of all scripts ar normally well explained in the documentation (be it the avisynth doc's or the author's docs).
Report this post to a moderator | IP: Logged
|