Blue_MiSfit
28th February 2007, 12:16
Hey everyone,
So just for fun tonight I tried to give Interlaced NTSC DV a nice "filmic" look by converting it to 24p.
I tried two different methods:
loadplugin("D:\Archives\Video Software\AviSynth Plugins\Common\mvtools.dll")
avisource("F:\Alex Premiere\Untitled Clip 01 01.avi")
AssumeBFF()
trim(920,1073)
tdeint(mode=1)
source=last
backward_vec = source.MVAnalyse(isb = true, truemotion=true, pel=2, idx=1)
forward_vec = source.MVAnalyse(isb = false, truemotion=true, pel=2, idx=1)
cropped = source.crop(4,4,-4,-4) # by half of block size 8
backward_vec2 = cropped.MVAnalyse(isb = true, truemotion=true, pel=2, idx=2)
forward_vec2 = cropped.MVAnalyse(isb = false, truemotion=true, pel=2, idx=2)
final=source.MVFlowFps2(backward_vec,forward_vec,backward_vec2,forward_vec2,num=48,idx=1,idx2=2)
return final.selecteven().assumefps(23.976).lanczosresize(720,540)
and a simpler:
loadplugin("D:\Archives\Video Software\AviSynth Plugins\Common\mvtools.dll")
avisource("F:\Alex Premiere\Untitled Clip 01 01.avi")
AssumeBFF()
trim(920,1073)
tdeint(mode=1)
convertfps(47.952)
selecteven()
assumefps(23.976)
lanczosresize(720,540)
Both methods produced decent results. I'm not entirely sure I'm using MVTools correctly, I basically lifted the settings from the MVTools manual (reccomended for 2x slow-motion for 25p), and changed it to 48 instead of 50.
Anyway, I'm wondering if people had experience doing this and could make some suggestions?
I sort of want to do a comparison between shooting in-camera 24p (Panasonic DVX-100) followed by removing pulldown, and an AviSynth powered conversion with a 60i source from the same camera.
So just for fun tonight I tried to give Interlaced NTSC DV a nice "filmic" look by converting it to 24p.
I tried two different methods:
loadplugin("D:\Archives\Video Software\AviSynth Plugins\Common\mvtools.dll")
avisource("F:\Alex Premiere\Untitled Clip 01 01.avi")
AssumeBFF()
trim(920,1073)
tdeint(mode=1)
source=last
backward_vec = source.MVAnalyse(isb = true, truemotion=true, pel=2, idx=1)
forward_vec = source.MVAnalyse(isb = false, truemotion=true, pel=2, idx=1)
cropped = source.crop(4,4,-4,-4) # by half of block size 8
backward_vec2 = cropped.MVAnalyse(isb = true, truemotion=true, pel=2, idx=2)
forward_vec2 = cropped.MVAnalyse(isb = false, truemotion=true, pel=2, idx=2)
final=source.MVFlowFps2(backward_vec,forward_vec,backward_vec2,forward_vec2,num=48,idx=1,idx2=2)
return final.selecteven().assumefps(23.976).lanczosresize(720,540)
and a simpler:
loadplugin("D:\Archives\Video Software\AviSynth Plugins\Common\mvtools.dll")
avisource("F:\Alex Premiere\Untitled Clip 01 01.avi")
AssumeBFF()
trim(920,1073)
tdeint(mode=1)
convertfps(47.952)
selecteven()
assumefps(23.976)
lanczosresize(720,540)
Both methods produced decent results. I'm not entirely sure I'm using MVTools correctly, I basically lifted the settings from the MVTools manual (reccomended for 2x slow-motion for 25p), and changed it to 48 instead of 50.
Anyway, I'm wondering if people had experience doing this and could make some suggestions?
I sort of want to do a comparison between shooting in-camera 24p (Panasonic DVX-100) followed by removing pulldown, and an AviSynth powered conversion with a 60i source from the same camera.