smok3
21st July 2008, 16:28
well, here is the test klip;
http://somestuff.org/test/
and i would preffer PAL progressive out of this, my current try is;
LoadCPlugin("t:\utility\avisynth\yadif\yadif.dll")
a=mpeg2source("video.d2v")
b=wavsource("audio.wav")
audiodub(a,b)
# change field-rate;
Bob(height=576) # Separate fields and interpolate them to full height.
BicubicResize(768,576) # Resize to PAL square-pixel frame size.
ConvertFPS(50) # Convert field rate to PAL, using Blend Mode.
SeparateFields.SelectEvery(4,0,3) # Undo Bob, even field first. Use SelectEvery(4,1,2) for odd field first.
Weave() # Finish undoing Bob.
# deinterlacer;
yadif(mode=0)
where the field-rate conversion is directly from avisynth manual, any 'better' ideas? And yes, speed is a virtue.
http://somestuff.org/test/
and i would preffer PAL progressive out of this, my current try is;
LoadCPlugin("t:\utility\avisynth\yadif\yadif.dll")
a=mpeg2source("video.d2v")
b=wavsource("audio.wav")
audiodub(a,b)
# change field-rate;
Bob(height=576) # Separate fields and interpolate them to full height.
BicubicResize(768,576) # Resize to PAL square-pixel frame size.
ConvertFPS(50) # Convert field rate to PAL, using Blend Mode.
SeparateFields.SelectEvery(4,0,3) # Undo Bob, even field first. Use SelectEvery(4,1,2) for odd field first.
Weave() # Finish undoing Bob.
# deinterlacer;
yadif(mode=0)
where the field-rate conversion is directly from avisynth manual, any 'better' ideas? And yes, speed is a virtue.