Log in

View Full Version : mpegdecoder...


OBcecado
20th January 2003, 20:34
Is it me or it's not possible to load multiple vobs with mpegdecoder currently, I always get cannot create d2v file. Am I doing anything wrong ?
Useing the following script :LoadPlugin("C:\PROGRA~1\GORDIA~1\mpegdecoder.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\Convolution3DYV12.dll")
loadplugin("c:\progra~1\gordia~1\dup.dll")
mpegsource("D:\vobs\vts_01_1.vob + d:\vobs\vts_0_2.vob + d:\vobs\vts_0_3.vob d:\vobs\vts_0_4.vob + d:\vobs\vts_0_5.vob")
Convolution3d (preset="movieHQ")
BicubicResize(576,320,0,0.75)
crop(7,0,708,574)
Convolution3d (preset="movieHQ")
dup(copy=true, maxcopies=20, blend=true)

Already thanking :)

Selur
20th January 2003, 20:49
Haven't tried, but maybe it's a problem with the different 'name structure':
D:\vobs\vts_01_1.vob + d:\vobs\vts_0_2.vob

Maybe renameing the first vobfilename solves the problem,..


Cu Selur

OBcecado
20th January 2003, 21:04
I've tried what you've said, but It still doesn't accept the vobs, I've read something aboub a lst file, that is extracted when ripping the vobs with vstrip, but i don't have the dvd currently, any other way to do it ?

Nic
21st January 2003, 15:32
Are you sure those vobs exist with exactly those file names?
Ive taken some time off coding, but ill make it errorbox with problems like not being able to load a certain vobfile in the next release.

-Nick

jonjon51
21st January 2003, 20:15
hi all :)

of course, Nic's plugin can load multiple VOB files. you've got "just" an error in your script: you missed a "+" after vts_0_3.vob :rolleyes:

this script may work:

LoadPlugin("C:\PROGRA~1\GORDIA~1\mpegdecoder.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\Convolution3DYV12.dll")
loadplugin("c:\progra~1\gordia~1\dup.dll")
mpegsource("D:\vobs\vts_01_1.vob+d:\vobs\vts_0_2.vob+d:\vobs\vts_0_3.vob+d:\vobs\vts_0_4.vob+d:\vobs\vts_0_5.vob")
Convolution3d (preset="movieHQ")
BicubicResize(576,320,0,0.75)
crop(7,0,708,574)
Convolution3d(preset="movieHQ")
dup(copy=true,maxcopies=20,blend=true)