In a programme I recorded off of the TV, there's a scrolling banner that gradually moves up from the bottom of the screen and squashes the video to about 4/5ths of its original size. It's incredibly annoying and as I'm keeping the programme on DVD, I've decided to try and edit it out.
In Adobe Premiere, I have worked out how to dynamically resize the video so it maintains the correct aspect ratio, but I'm slightly confused as to what exactly I need to do as the video is obviously interlaced.
I've got hold of an AVISynth plugin for Premiere and I'm using AVISynth as a frameserver to feed a 59.94fps progressive copy of the video directly into my Premiere project.
Once I've edited it to how I want it in Premiere, is there a way of converting it back to interlaced again and burn it directly to DVD in Premiere without having to encode an uncompressed AVI file and then AVISynth that? Or should it be ok if I leave it at 59.94fps progressive?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Hi,
I don't use Premiere, but you can't use a 59.94fps framerate in a DVD. At some point you'll have to reinterlace it for 29.97fps. If Premiere can't do the job, then I guess you'll have to resave it as a 59.94fps AVI and then reinterlace it using AviSynth and feed the script to your favorite encoder.
...without having to encode an uncompressed AVI file -
Something like this will get you 29.97 fps interlaced:
Code:Crop() SeparateFields() LanczosResize() Weave()
Code:Crop() Yadif(mode=1) #or other smart bob LanczosResize() SeparateFields() SelectEvery(4, 0, 3) Weave()
Similar Threads
-
Confused! Confused! Confused! VCR to DVD; major question Toshiba Diomage SV
By CAnn12 in forum Capturing and VCRReplies: 0Last Post: 5th Feb 2011, 11:26 -
Cropping and resizing interlaced video
By loekverhees in forum Newbie / General discussionsReplies: 9Last Post: 1st Sep 2009, 04:34 -
resizing, I'm confused!!!
By nalooti in forum Video ConversionReplies: 5Last Post: 19th Nov 2007, 08:14 -
video is slightly wider than the tv screen.
By aruwin in forum EditingReplies: 8Last Post: 21st Jun 2007, 11:57 -
Question - Resizing an interlaced video.
By 1gnition in forum Newbie / General discussionsReplies: 26Last Post: 6th Jun 2007, 10:12