Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums VEGAS Pro Stabilization – interlacing artifacts

  • Stabilization – interlacing artifacts

    Posted by James Donnelly on May 8, 2011 at 11:15 am

    Hi,

    When I stabilize files in Vegas 10, if I am using either Matrox I-Frame HD, or Neoscene, I see interlacing artifacts in the preview window. The original transcoded files render fine.

    The original footage is from a Canon 550d/t2i. The set the properties of the Vegas project to de-interlaced. I am aiming for a progressive final file. In Neoscene, I select ‘deinterlace’. I am not sure how to do this with I-frame.

    Here is a grab of the problem:

    https://lh3.googleusercontent.com/_6B1YrGfsQQ0/TcZ3IS5XvtI/AAAAAAAACUA/vFEMdoMdpqM/s800/frame.jpg

    If I stabilize the original mov’s I don’t see the problem.

    I have tried to use gspot to see inspect the files at each stage to see if they are progressive or interlaced, but it can’t seem to detect this information from any of my files.

    Any help much appreciated.

    Cheers,

    James

    Brad Miller replied 14 years, 6 months ago 2 Members · 2 Replies
  • 2 Replies
  • James Donnelly

    May 8, 2011 at 8:10 pm

    I will answer my own question.

    The media properties of the clip were set to Field Order: Upper field first. Switching this to progressive solves the combing artifacts on the stabilized take.

    How come Vegas couldn’t detect that my Cineform clips are progressive?

    Incidentally, the CPU usage for playing back stabilized clips is much higher. This is made less severe by going into the switches for the clip and changing from ‘smart resample’ to disable resample.

    I don’t understand this. My timeline is 25 fps, and my clip is 25 fps, so why would that setting have any affect.

    Also, why would stabilized clips play back less smoothly at all?

    Any answers to these questions would be gratefully received.

  • Brad Miller

    October 29, 2011 at 3:08 am

    Not sure, but here’s a script to make all your clips progressive:

    /**
    * This sample script sets the field order of all media with a video
    * stream to progressive scan.
    *
    **/
    using Sony.Vegas;

    public class EntryPoint {
    public void FromVegas(Vegas vegas) {
    // Set the following variable to the VideoFieldOrder value you
    // wish to have all video streams use.
    VideoFieldOrder targetFieldOrder = VideoFieldOrder.ProgressiveScan;
    foreach (Media media in vegas.Project.MediaPool) {
    if (media.HasVideo()) {
    VideoStream videoStream = (VideoStream) media.Streams.GetItemByMediaType(MediaType.Video, 0);
    videoStream.FieldOrder = targetFieldOrder;
    }
    }
    }
    }

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy