Kedirekin
5th February 2002, 01:01
Couldn't decide which of the forums to post this to, so this forum wins.
I 'grew up' (so to speak) on Decomb 1.82. When I changed to Decomb 1.91, it seemed that encoding slowed down, so I just performed a little testing. Here are my results (all speeds after 10 minutes of encoding, to give things a chance to stabalize).
With the following AviSynth script:
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\SIMPLE~1\SIMPLE~1.DLL")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\Invers~1\Donald~1\Decomb.dll")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVDCOP~1\STARGA~3\DVD2AVI_PROJECT_FILE.d2v")
Telecide
Decimate
TemporalSmoother(3,1)
SimpleResize(480,360)
AddBorders(0,60,0,60)
ResampleAudio(44100)
my CCE speed was 0.347 rt.
With the following:
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\SIMPLE~1\SIMPLE~1.DLL")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\Invers~1\Donald~1\Decomb.dll")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVDCOP~1\STARGA~3\DVD2AVI_PROJECT_FILE.d2v")
Telecide(false,false,false)
Decimate
FieldDeinterlace
TemporalSmoother(3,1)
SimpleResize(480,360)
AddBorders(0,60,0,60)
ResampleAudio(44100)
my CCE speed was 0.451 rt.
I assume the second syntax is faster because post-processing is taken out of Telecide and moved after Decimate, so it only has to process 4 out of every 5 frames.
Unfortunately, I do not know if my results are universal. So, this post serves double duty: 1) to let people know, and (optionally) 2) to ask people to confirm.
TIA
I 'grew up' (so to speak) on Decomb 1.82. When I changed to Decomb 1.91, it seemed that encoding slowed down, so I just performed a little testing. Here are my results (all speeds after 10 minutes of encoding, to give things a chance to stabalize).
With the following AviSynth script:
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\SIMPLE~1\SIMPLE~1.DLL")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\Invers~1\Donald~1\Decomb.dll")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVDCOP~1\STARGA~3\DVD2AVI_PROJECT_FILE.d2v")
Telecide
Decimate
TemporalSmoother(3,1)
SimpleResize(480,360)
AddBorders(0,60,0,60)
ResampleAudio(44100)
my CCE speed was 0.347 rt.
With the following:
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\SIMPLE~1\SIMPLE~1.DLL")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\Invers~1\Donald~1\Decomb.dll")
LoadPlugin("E:\RIPPIN~1\DVD2SV~3\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVDCOP~1\STARGA~3\DVD2AVI_PROJECT_FILE.d2v")
Telecide(false,false,false)
Decimate
FieldDeinterlace
TemporalSmoother(3,1)
SimpleResize(480,360)
AddBorders(0,60,0,60)
ResampleAudio(44100)
my CCE speed was 0.451 rt.
I assume the second syntax is faster because post-processing is taken out of Telecide and moved after Decimate, so it only has to process 4 out of every 5 frames.
Unfortunately, I do not know if my results are universal. So, this post serves double duty: 1) to let people know, and (optionally) 2) to ask people to confirm.
TIA