Currently I have all of the files organized into folders by volume (e.g. Blood+ Volume 1, Blood+ Volume 2, etc.), and due to the scenes I already see going into my AMV and where they occur in the series, I've been converting the already-ripped footage in reverse-order (Blood+ Volume 10, Blood+ Volume 8, etc.). So far, I've managed to script and convert vols. 10 and 8, but everything "after" those two is encountering the following message:
AviSynth open failure:
MPEG2Source : unable to load D2V file "C:\Documents and Settings\Josh computer\My Documents\anime footage\Blood+\Blood+ Volume 7\Blood+ Volume 7.d2v"
(C:\Documents and Settings\Josh computer\My Documents\anime footage\Blood+\Blood+ Volume 7\Blood+ Volume 7.avs, line 1)
For a volume other than 7, just replace "7" in the error message with the number of the volume in question.
Here is my script for volume 10, which was successful, followed by my script for volume 7, which was unsuccessful.
Blood+ Volume 10.avs
- Code: Select all
Mpeg2Source("C:\Documents and Settings\Josh computer\My Documents\anime footage\Blood+\Blood+ Volume 10\Blood+ Volume 10.d2v")
Telecide(1)
Decimate(5)
Tweak(sat=1.2, cont=1.1, bright=-2)
Awarpsharp(12)
Deen("a2d",3,7,9)
Crop(8,0,-8,-0)
LanczosResize(640,480)
Blood+ Volume 7.avs
- Code: Select all
Mpeg2Source("C:\Documents and Settings\Josh computer\My Documents\anime footage\Blood+\Blood+ Volume 7\Blood+ Volume 7.d2v")
Telecide(1)
Decimate(5)
Tweak(sat=1.2, cont=1.1, bright=-2)
Awarpsharp(12)
Deen("a2d",3,7,9)
Crop(8,0,-8,-0)
LanczosResize(640,480)
I don't know what other information I should include here, but as you can see the scripts are identical except for directory and title, so I'm not really sure where the trouble lies. Hopefully someone else has encountered the problem, or knows how to walk me through it.
Thanks in advance!

