View Single Post
Old 29th April 2010, 23:30   #1002  |  Link
AMED
Registered User
 
AMED's Avatar
 
Join Date: Sep 2004
Location: Auckland, New Zealand
Posts: 466
1. Make sure there is a worker 1 and worker 2 setup.

2. Index first video and make changes with avisynth editor (crop, denoise, auto deinterlace) click save.

Code:
# Set DAR in encoder to 43 : 23. The following line is for automatic signalling
global MeGUI_darx = 43
global MeGUI_dary = 23
LoadPlugin("C:\Program Files (x86)\megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("E:\MainMovie\ONE_MISSED_CALL_SCN\VIDEO_TS\VTS_01_1.d2v", info=3)
LoadPlugin("C:\Program Files (x86)\megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)
Load_Stdcall_Plugin("C:\Program Files (x86)\megui\tools\yadif\yadif.dll")
Yadif(order=1)
crop( 8, 84, -8, -80)

#resize
super = MSuper(pel=2, sharp=2)
backward_vec2 = MAnalyse(super, isb = true, delta = 2, overlap=4)
backward_vec1 = MAnalyse(super, isb = true, delta = 1, overlap=4)
forward_vec1 = MAnalyse(super, isb = false, delta = 1, overlap=4)
forward_vec2 = MAnalyse(super, isb = false, delta = 2, overlap=4)
MDegrain2(super, backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=400)
3. Click AutoEncode, click Queue.

4. Index second video and make changes with avisynth editor (crop, denoise, auto deinterlace) click save.

Code:
# Set DAR in encoder to 4 : 3. The following line is for automatic signalling
global MeGUI_darx = 4
global MeGUI_dary = 3
LoadPlugin("C:\Program Files (x86)\megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("E:\MainMovie\THE_GHOST\VIDEO_TS\VTS_01_1.d2v", info=3)
LoadPlugin("C:\Program Files (x86)\megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)
Load_Stdcall_Plugin("C:\Program Files (x86)\megui\tools\yadif\yadif.dll")
Yadif(order=1)
crop( 8, 2, -10, -2)

Spline36Resize(704,576) # Spline36 (Neutral)
super = MSuper(pel=2, sharp=2)
backward_vec2 = MAnalyse(super, isb = true, delta = 2, overlap=4)
backward_vec1 = MAnalyse(super, isb = true, delta = 1, overlap=4)
forward_vec1 = MAnalyse(super, isb = false, delta = 1, overlap=4)
forward_vec2 = MAnalyse(super, isb = false, delta = 2, overlap=4)
MDegrain2(super, backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=400)
5. On the Queue tab, click start.

6. If you look at the screenshot below, it seems to mess up the audio encoding as well. both were encoded with the same nero aac settings (keep channels and vbr 0.40) but yet job 2 is 18.6MB and completely slient, job 6 is 194MB and the audio is fine. another thing i noticed was when job 2 had finished encoding it would not start the next job until job 6 had also finished.



7. Then both workers started processing job 3 at the same time.

__________________
A Man Eating Duck
AMED is offline   Reply With Quote