Log in

View Full Version : Avisynth issue


FDISK
21st April 2002, 04:00
When trying to open an Avisynth script of Pitch Black, I get the following error at VOB 2: "At least one of the pins involved in the operation is already connected." If I open VOB 2 alone in its own Avisynth script, it works perfectly fine. Reboot does not fix this. Here's the script I'm using:


DirectShowSource("C:\PitchBlack\VTS_01_1.VOB") +
DirectShowSource("C:\PitchBlack\VTS_01_2.VOB") +
DirectShowSource("C:\PitchBlack\VTS_01_3.VOB") +
DirectShowSource("C:\PitchBlack\VTS_01_4.VOB") +
DirectShowSource("C:\PitchBlack\VTS_01_5.VOB") +
DirectShowSource("C:\PitchBlack\VTS_01_6.VOB") +
DirectShowSource("C:\PitchBlack\VTS_01_7.VOB")
BicubicResize(648,362)
Crop(4,44,640,272)

Note: In the actual script, the opening commands are one line.

Any suggestions?

DJ Bobo
21st April 2002, 11:55
You should open the VOBs in DVD2AVI, save the project, then make an AVS script like this:

LoadPlugin("...\mpeg2dec.dll")
...
mpeg2source("project_name.d2v")
...