PDA

View Full Version : AVS scripts of interest to DV'ers for NLE


DDogg
3rd March 2003, 20:13
This is the place to post useful AVS scripts for video processing of pure interlaced DV footage. I am putting this up as a placeholder for the time being and will revise if/when we get some responses.

DD

DDogg
3rd March 2003, 20:17
Deinterlace and convert to 60 fps for Avisynth 2.5

# This script is only for BottomFirst material
LoadPlugin("TomsMoComp.dll")
avisource("Tape 1 - Clip 001.avi")
ConvertToYUY2
Bottom=AssumeFrameBased()
Top=Bottom.SeparateFields.Trim(1,0).weave
return Interleave(Bottom.TomsMoComp(0,5,1),Top.TomsMoComp(1,5,1))

ulfschack
6th March 2003, 13:52
Hi DDOG

Heard your cry for help over at the DV forum. Here's my contribution for filtering interlaced material and keeping it interlaced for SVDC or DVD authoring. Basically just the essence, which ofcourse could be amended for borders and other neat stuff.
---------------------
a=avisource("c:\clip.avi").AssumeFrameBased().SeparateFields()
even=a.SelectEven().[insert temporal filter here]
odd=a.SelectOdd().[insert temporal filter here]
Interleave(even,odd).weave()
---------------------
(Maybe it needs a ConvertToYuy2)

cheers

DDogg
6th March 2003, 14:10
ulfschack, good to see you here :) Thanks for the contribution. I remember you always did know your way around DV better than most. If you have anymore, Keep them coming!