One thing to note: AviSynth supports relative paths. As long as the script is in the same folder as the video you're wanting to open, just the filename is needed.
Example:
Code: Select all
DirectShowSource("blahblah.whatever")
will work just as well as
Code: Select all
DirectShowSource("C:\crap\morecrap\evenmorecrap\blahblah.whatever")
Cuts down on the amount of typing/work needed, and lets you move the video to a different directory without having to edit the script, provided you move the script too. For that matter, .d2v files also support relative paths (the newest beta versions of DGIndex also give the option of using relative paths; before it was only do-able by editing the .d2v yourself).