Quote:
Originally Posted by Bud
Kwag,
Still trying to work out the first part, where in the script do I tell TEMPG to stop when it reaches the magic mark of what the predictor tells me it should be? i.e 13.32 MB or will TMPGE just stop processing the sample run.
|
You don't have to tell it to stop. It stops automatically after it makes the sample. The line "Sampler()" does that for you.
Quote:
I have monitored TEMPG and it will tell me the total processing time will be 5+ hours, I would think for a 13 MB sample it would stop when it gets the size I need after about 2-3 mins or so. So I think the part I seem to be missing is where in the avs script do I tell TMPGE to stop processing. Getting closer to the where I want to be.
Bud
|
You script should look like this:
LoadPlugin("C:\encoding\MPEG2DEC.dll")
LoadPlugin("C:\encoding\FluxSmooth.dll")
LoadPlugin("C:\encoding\Sampler.dll")
LoadPlugin("C:\encoding\Blockbuster.dll")
LoadPlugin("C:\encoding\LegalClip.dll")
mpeg2source("D:\K9_PI_NTSC_FINAL\VIDEO_TS\K9.d2v")
FluxSmooth()
Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=2)
LegalClip()
BicubicResize(448,350,1/3,1/3,14,0,692,480)
AddBorders(16,65,16,65)
Sampler()
-kwag