Results 1 to 14 of 14

Thread: grrrrr... 30p

  1. #1

    Default grrrrr... 30p

    I double checked my camera to make sure we were shooting in 23.976

    I didn't run the camera, but i set it up..

    just noticed all the clips from the first scene of my new feature are all in 30p..

    What do I do? reshoot? (not likely) convert to 23.976 somehow? or leave it 30p and shoot the rest in 23.976 and mix them?
    www.exit101movie.com
    exit101movie.blogspot.com

  2. #2
    Tropical Legend cgbier's Avatar
    Join Date
    Jul 2009
    Location
    Saipan, USA
    Posts
    12,086

    Default

    You still have access to Final Cut? Cinema Tools can make 24p out of it.
    "It is dark the other side. Very dark!" - "Oh, shut up and eat your toast!"

  3. #3

    Default

    Nope any way to do it on pc?
    www.exit101movie.com
    exit101movie.blogspot.com

  4. #4
    Legend racer-x's Avatar
    Join Date
    Feb 2008
    Location
    3rd rock from the Sun
    Posts
    1,165

    Default

    You can slow the video and audio 20%. You can also use frame interpolation to get smooth 24p, but it won't be as clean as slowing the framerate of the video and audio........

    This would be easy to do in Vegas, I actually made a custom script just for that purpose.
    There is no such thing as "Idiot-Proof".........a good Idiot will get around that every time.

  5. #5

    Default

    do tell
    www.exit101movie.com
    exit101movie.blogspot.com

  6. #6
    Legend racer-x's Avatar
    Join Date
    Feb 2008
    Location
    3rd rock from the Sun
    Posts
    1,165

    Default

    This site won't allow to upload zip file, so you'll have to copy and paste all data in the code box into NOTEPAD and save as "Slow 30p - 24p.cs". Now place it into your "Script Menu" folder located in your Vegas installed directory. It should then show up as one of your script options in Vegas.

    Add your 30p and 24p footage into your Vegas 24p project timeline and run this script. It will only effect 29.97 fps clips. You will then notice that the 30p clips have a wavy line in them. This tells you they have been Time-Stretched. You'll have to drag the right edge to the right to expand to full amount because they will be truncated by default.

    This script does two things. It disables Resampling and it sets playback rate for video/audio to .80 (only on 29.97 fps clips in the timeline).

    Here is the code:
    Code:
    //****************************************************************************
    //*      Program: Slow 30p - 24p.cs
    //*       Author: Racer-x
    //*  Description: This script Slows the playback rate of 30p media to 24p
    //*      Created: Jan 16, 2012
    //*      Updated: Added Disable Resample
    //*               Changed audio to match video
    //*
    //*    
    //****************************************************************************
    using System;
    using System.Collections;
    using System.Windows.Forms;
    using Sony.Vegas;
    
    class EntryPoint
    {
        public void FromVegas(Vegas vegas)
        {
            int counter = 0;
            try
            {
                foreach (Track track in vegas.Project.Tracks)
                {
                    if (!track.IsVideo()) continue;
    
                    foreach (VideoEvent videoEvent in track.Events)
                    {
                        VideoStream videoStream = videoEvent.ActiveTake.MediaStream as VideoStream;
                        decimal frameRate = Math.Round((decimal)videoStream.FrameRate, 2);
    
                        // only affect 30fps media
                        if (frameRate == 29.97m)
                        {
                            videoEvent.AdjustPlaybackRate(0.8, true);
                            videoEvent.ResampleMode = VideoResampleMode.Disable;
                            counter++;
    
                            // check for audio in the same file and change it too
                            if (videoEvent.IsGrouped)
                            {
                                foreach (TrackEvent trackEvent in videoEvent.Group)
                                {
                                    if (!trackEvent.IsAudio()) continue;
    
                                    // see if they are from the same file
                                    if (trackEvent.ActiveTake != null && trackEvent.ActiveTake.MediaPath.Equals(videoEvent.ActiveTake.MediaPath))
                                    {
                                        AudioEvent audioEvent = trackEvent as AudioEvent;
                                        audioEvent.AdjustPlaybackRate(0.8, true);
                                    }
                                }
                            }
                        }
                    }
                }
    
                // let the user know we are done
                MessageBox.Show(String.Format("{0} events changed", counter), "Complete", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            catch (Exception e)
            {
                MessageBox.Show(e.Message, "Unexpected Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
            }
        }
    }
    There is no such thing as "Idiot-Proof".........a good Idiot will get around that every time.

  7. #7
    Legend Khaver's Avatar
    Join Date
    Jan 2009
    Location
    Oregon
    Posts
    1,199

    Default

    Frame interpolation will give you more natural movement. Slowing from 30 to 24fps wont look right for a cafe scene. Avisynth can do it.

  8. #8
    Legend racer-x's Avatar
    Join Date
    Feb 2008
    Location
    3rd rock from the Sun
    Posts
    1,165

    Default

    I agree 100%, it would depend on scene shot and results wanted. I would also recommend Avisynth for frame interpolation, though I'm not sure the OP is willing to learn it. That's why I posted the easier method..........

    Here is an extreme example of slowing framerate. It's actually 60p slowed down to 24p in Vegas using one of my custom scripts: HX9V_60p.mp4 (25 mb)

    ....Oh and Khaver, thanks a lot for that Window Cropper Utility. I use it quite often in Virtualdub.
    I used it extensively to crop 4:3 image sequences into 16:9 to make this great Space Video:
    http://www.youtube.com/watch?v=vK7YD...2&feature=plcp
    There is no such thing as "Idiot-Proof".........a good Idiot will get around that every time.

  9. #9
    Legend Khaver's Avatar
    Join Date
    Jan 2009
    Location
    Oregon
    Posts
    1,199

    Default

    You're welcome racer-x. I've noticed your eyeball over at videohelp.com.

    I thought it would be easier to crop video using a target in the preview window.

  10. #10
    Director of Photography drapeama's Avatar
    Join Date
    Jun 2009
    Location
    Maskinongé, Québec
    Posts
    10,532

    Default

    I'll have to check these scripts for sure!
    I DO IT BECAUSE I CAN. I CAN BECAUSE I WANT TO. I WANT TO BECAUSE YOU SAID I COULDN'T.

  11. #11

    Default

    I did it with AE and Twixtor.. not sure if thats the best method or not.
    www.exit101movie.com
    exit101movie.blogspot.com

  12. #12
    Legend Khaver's Avatar
    Join Date
    Jan 2009
    Location
    Oregon
    Posts
    1,199

    Default

    There are 2 tests to whether it worked good or not. First, if there's a lot of artifacts in moving objects it's not working good. And second, when you have a moving object in front of a static, complex background, if the background "ripples" as the object moves past then it's not doing a very good job. There are some avisynth scripts that protect against this by masking around the motion. You can also add different amounts of motion blur to help hide any artifacts introduced by the interpolation.

    Avisynth has some powerful tools and they're free.

    If you're happy with the results you got then that's all that counts.

  13. #13
    Director of Photography drapeama's Avatar
    Join Date
    Jun 2009
    Location
    Maskinongé, Québec
    Posts
    10,532

    Default

    Quote Originally Posted by Khaver View Post
    Avisynth has some powerful tools and they're free.
    I second that. I like Avisynth just to resize and reencode videos, but there's a lot more to do with it...
    I DO IT BECAUSE I CAN. I CAN BECAUSE I WANT TO. I WANT TO BECAUSE YOU SAID I COULDN'T.

  14. #14
    Legend
    Join Date
    Oct 2007
    Location
    Florida
    Posts
    1,402

    Default

    Quote Originally Posted by azmyth View Post
    I double checked my camera to make sure we were shooting in 23.976

    I didn't run the camera, but i set it up..

    just noticed all the clips from the first scene of my new feature are all in 30p..

    What do I do? reshoot? (not likely) convert to 23.976 somehow? or leave it 30p and shoot the rest in 23.976 and mix them?
    Answer C. What's done is done and cannot be undone. Correct it and move forward.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •