PDA

View Full Version : Using old settings in new program.


JimMc
5th February 2004, 17:23
Hi

Ive been using DVD2SVCD for a while, the following is the script I use most to get the best results IMO.

LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1\Mpeg2dec\mpeg2dec.dll")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1\INVERS~1\decomb.dll")
mpeg2source("C:\PROGRA~1\DVD2SVCD\Movie\DVD2AV~2.D2V")
Telecide()
BicubicResize(720,576,0.0,0.6)
Import("C:\Program Files\DVD2SVCD\Movie\ResampleAudio.avs")
ResampleAudio(44100)
ConvertToYUY2()

I have lately been trying out/testing DIF4U, but never get as good results.
The automated script for that is this.

import("C:\Program Files\DoItFast4U\new.avs\addaudio.avs")
LoadPlugin("C:\Program Files\DoItFast4U\mpeg2dec3.dll")
mpeg2source("C:\Movie\DVD2AV~2.D2V,idct=0")
LoadPlugin("C:\Program Files\DoItFast4U\decomb.dll")
FieldDeinterlace()
AddAudio()

Can you tell me if the following script for DIF4U will give me the same results as DVD2SVCD

import("C:\Program Files\DoItFast4U\new.avs\addaudio.avs")
LoadPlugin("C:\Program Files\DoItFast4U\mpeg2dec3.dll")
mpeg2source("C:\Movie\DVD2AV~2.D2V,idct=0")
BicubicResize(720,576,0.0,0.6)
LoadPlugin("C:\Program Files\DoItFast4U\decomb.dll")
Telecide()
ConvertToYUY2()
AddAudio()

SUGGESTIONS?

JimMc