Log in

View Full Version : Help Me Speed Up The Encode Time Please


Master Yoda
8th January 2005, 18:22
IS there anyway for me to speed up my encoding from avi to mpeg2 ?? I captured with huffyuv 2.2.0 im encoding to mpeg2 with cce, but its going miles too slow for my liking... 6H45M just to create the vaf file(that just sucks). My system has enough power. I think it may be pixiedust slowing it down too much

My Script:

Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpen.avsi")
Loadplugin("F:\DVD Ripping Apps\Loadpluginex2.dll")
Loadplugin("F:\DVD Ripping Apps\dust\dustv5.dll")
Loadplugin("F:\DVD Ripping Apps\MaskTools-v1.5.4\MaskTools.dll")
Loadplugin("F:\DVD Ripping Apps\warpsharppackage\warpsharp.dll")
AviSource("my_family.avi")
Addborders(12,0,12,0)
Trim(184,73305)
clip = SeparateFields()
even = clip.SelectEven().assumeframebased
odd = clip.SelectOdd().assumeframebased

even1 = even.SeparateFields.SelectEven()
odd1 = even.SeparateFields.SelectOdd()
clip_even1 = MergeChroma(even1, odd1, 0.5)
clip_odd1 = MergeChroma(odd1, even1, 0.5)
out1 = Interleave(clip_odd1,clip_even1).weave

even2 = odd.SeparateFields.SelectEven()
odd2 = odd.SeparateFields.SelectOdd()
clip_even2 = MergeChroma(even2, odd2, 0.5)
clip_odd2 = MergeChroma(odd2, even2, 0.5)
out2 = Interleave(clip_odd2, clip_even2).weave

interleave(out1,out2)
assumefieldbased()
weave()

JDL_UnFoldFieldsVertical(true)
Pixiedust(4)
JDL_FoldFieldsVertical(true)

Limitedsharpen()

the viking
8th January 2005, 19:01
Replace Pixiedust() with the following lines:

RemoveGrain(mode=2)
TemporalSoften(2,4,5,15,2)

Worked well for me,encoding time reduced with about 70%.(in TMPGEnc).

jggimi
8th January 2005, 19:48
This has nothing to do with capturing. Moved to CCE forum.

yup
25th January 2005, 07:50
Master Yoda.
Load Your avs file to VirtualDub and make new avi use huffyuv 2.2.0 codec and result AVI add to CCE.
yup.

ppera2
31st January 2005, 13:09
Right. It's stated that when using slow filters by multipass encoding is worth to make intermediate file with lossless compression - huffyuv f.i.

But probably is better to find some faster filter.