Hello,I have a question about which script I sould use.
Right now I have 2 scripts
Script One:
Code:
LoadPlugin("F:\Programme\AviSynth2\mpeg2dec.dll")
LoadPlugin("F:\Programme\AviSynth2\fluxsmooth.dll")
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview.dll")
LoadPlugin("F:\Programme\AviSynth2\blockbuster.dll")
LoadPlugin("F:\Programme\AviSynth2\legalclip.dll")
LoadPlugin("F:\Programme\AviSynth2\sampler.dll")
LoadPlugin("F:\Programme\AviSynth2\convolution3d.dll")
LoadPlugin("F:\Programme\AviSynth2\dustv5.dll")
LoadPlugin("F:\Programme\AviSynth2\decomb.dll")
LoadPlugin("F:\Programme\AviSynth2\temporalcleanerold.dll")
LoadPlugin("C:\WINDOWS\system32\vobsub.dll")
mpeg2source("G:\Episode2\Blade2\Blade2Project.d2v")
LegalClip()
GripCrop( width=528, height=576, overscan=2 )
GripSize()
FaeryDust()
TemporalCleaner()
Convolution3D(preset="movieHQ")
VobSub("G:\Episode2\Blade2\VTS_03_0")
GripBorders()
LegalClip()
#Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##
Script Two
Code:
LoadPlugin("F:\Programme\AviSynth2\mpeg2dec.dll")
LoadPlugin("F:\Programme\AviSynth2\fluxsmooth.dll")
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview.dll")
LoadPlugin("F:\Programme\AviSynth2\blockbuster.dll")
LoadPlugin("F:\Programme\AviSynth2\legalclip.dll")
LoadPlugin("F:\Programme\AviSynth2\sampler.dll")
LoadPlugin("F:\Programme\AviSynth2\convolution3d.dll")
LoadPlugin("F:\Programme\AviSynth2\dustv5.dll")
LoadPlugin("F:\Programme\AviSynth2\decomb.dll")
LoadPlugin("F:\Programme\AviSynth2\temporalcleanerold.dll")
LoadPlugin("C:\WINDOWS\system32\vobsub.dll")
mpeg2source("E:\the others\theothers.d2v")
LegalClip()
GripCrop( width=528, height=576, overscan=2 )
GripSize()
FaeryDust()
TemporalCleaner()
Convolution3D(preset="movieHQ")
Blockbuster(method="noise", variance=.4, seed=1)
VobSub("E:\the others\VTS_02_0")
GripBorders()
LegalClip()
#Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##
The difference between those scripts is that in the first script,Blockbuster is not used.
Now my Question:
Should I use the first script and a higher cq value or the second script with a lower cq value but with Blockbuster???