Forum Replies Created

Page 27 of 459
  • Edward Troxel

    June 25, 2014 at 6:45 pm in reply to: Slow motion is reducing clip length

    CTRL+Drag simply changes the playback rate. By manually changing the playback rate you are doing the exact same thing except you are specifying an exact value. Either way, you’re changing the playback rate.

    When you manually change the playback rate, the length of the event on the timeline does not change – it just plays more slowly. Therefore, after changing the playback rate you must make the event longer for the whole event to now play.

    Edward Troxel

  • Edward Troxel

    June 24, 2014 at 4:22 pm in reply to: Sony Vegas and GTX770M problem.

    You might also try this:

    1. Open the nVidia control panel
    2. Go to 3D Settings -> Manage 3D Settings -> Program Settings
    3. Select the Vegas EXE file from the list or add it using the browser
    4. Choose the “High-Permformance nvidia processor” option

    Edward Troxel

  • SelectAllEventsAfterCursor.cs


    /**
    * This script will select all events after the cursor
    *
    * Written By: Edward Troxel
    * Modified: 10-23-2007
    **/

    using System;
    using Sony.Vegas;
    public class EntryPoint
    {
    Vegas myVegas;

    public void FromVegas(Vegas vegas)
    {
    myVegas = vegas;

    foreach (Track track in myVegas.Project.Tracks)
    {
    foreach(TrackEvent evnt in track.Events)
    {
    evnt.Selected = false;
    if (evnt.Start >= myVegas.Cursor)
    {
    evnt.Selected = true;
    }
    }
    }

    }

    }

    /**
    * This script will select all events after the cursor
    *
    * Written By: Edward Troxel
    * Modified: 10-23-2007
    **/

    using System;
    using Sony.Vegas;
    public class EntryPoint
    {
    Vegas myVegas;

    public void FromVegas(Vegas vegas)
    {
    myVegas = vegas;

    foreach (Track track in myVegas.Project.Tracks)
    {
    foreach(TrackEvent evnt in track.Events)
    {
    evnt.Selected = false;
    if (evnt.Start >= myVegas.Cursor)
    {
    evnt.Selected = true;
    }
    }
    }

    }

    }

    Edward Troxel

  • If I have clips that need stabilizing, I would ALWAYS add only Stabilizer, get the settings correct for that clip and then render out a new stabilized version. Repeat that for all clips that need to be stabilized. Now finish your edit using these new stabilized clips. Sometimes it’s best to do things one step at a time.

    Edward Troxel

  • Edward Troxel

    June 13, 2014 at 2:29 pm in reply to: Vegas Pro 12 duplicates audio tracks.

    Check Options – Preferences – Import Stereo as Dual Mono

    Edward Troxel

  • Edward Troxel

    June 2, 2014 at 6:08 pm in reply to: Auto ripple

    Mike gave you the “one time enabling”

    F: Affected Tracks
    Ctrl+F: Affected Tracks, Bus Tracks, Markers, and Regions
    Ctrl+Shift+F: All Tracks, Markers, and Regions

    Make the change you want and then press “F” to adjust only the affected tracks.

    Make the change you want and then press “CTRL+F” to adjust only the Affected Tracks, Bus Tracks, Markers, and Regions.

    Make the change you want and then press “Ctrl+Shift+F” to adjust All Tracks, Markers, and Regions

    There’s your “one time use”.

    Edward Troxel

  • A script can determine if a plugin is an OFX plugin. Just have the script check to see if it’s the correct one.

    Edward Troxel

  • Edward Troxel

    May 20, 2014 at 6:30 pm in reply to: NewBlue Titler Pro 3 Question

    Sam, Titler Pro 3 is actually more flexible than the build it titlers. First, you can use it exactly the same. Go to the Generated Media tab, go to Titler Pro 3, and then drag it directly to the timeline the same as any other Titler.

    Secondly, you can actually add Titler Pro to an event on the timeline as an effect. When used as an effect, you can actually get video preview in Titler preview window as well.

    Edward Troxel

  • You might post his script with a description of how it is failing and maybe we could debug it for him.

    Edward Troxel

  • Edward Troxel

    April 29, 2014 at 2:49 pm in reply to: Narration with an automatic main audio track fade

    I use the “Quick Fade” tool in Excalibur.

    Edward Troxel

Page 27 of 459

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