Forum Replies Created

Page 23 of 459
  • Edward Troxel

    February 6, 2016 at 5:22 pm in reply to: Cheap alternative to Vegasaur?

    /**
    * This script will split selected tracks at all marker location(s).
    * MarkerSplit.js
    *
    * Written By: Edward Troxel
    * Copyright 2005 – JETDV Scripts
    * Modified: 07-18-2005
    **/

    import System;
    import System.IO;
    import System.Windows.Forms;
    import Sony.Vegas;

    try {
    var markers = Vegas.Project.Markers;
    for (var i=0; i < Vegas.Project.Markers.Count; i++)
    {

    //Go through the list of Tracks
    var trackEnum = new Enumerator(Vegas.Project.Tracks);
    while (!trackEnum.atEnd())
    {
    var track : Track = Track(trackEnum.item());

    if (track.Selected)
    {
    //Go through the list of Events
    var eventEnum = new Enumerator(track.Events);
    while (!eventEnum.atEnd())
    {
    var evnt : TrackEvent = TrackEvent(eventEnum.item());

    if ((evnt.Start < markers[i].Position) && ((evnt.Start + evnt.Length) > markers[i].Position))
    {
    var NewLength = markers[i].Position – evnt.Start;
    //Split the event
    evnt.Split(NewLength);
    }

    eventEnum.moveNext();
    }
    }
    trackEnum.moveNext();
    }
    }

    } catch (e) {
    MessageBox.Show(e);
    }

    Edward Troxel

  • Open the project, go to File – Properties, and change the “Output Rotation”.

    Edward Troxel

  • It could have been moved “off the screen”. You might try changing to a higher video resolution and then locate the window and move it back to the main area. Then you can reset it to the resolution you desire.

    Edward Troxel

  • Edward Troxel

    October 24, 2015 at 8:30 pm in reply to: pro titler 4

    Welland, what settings are you wanting to change? If it’s just a matter of changing the title to a different length, then just change the event on the Vegas timeline to the length you want and then make the event that length.

    Edward Troxel

  • Edward Troxel

    October 17, 2015 at 3:46 pm in reply to: How to freeze a NewBlue Titler Pro animation

    See the “Keyframe 1”, “Keyframe 2”, and “Keyframe 3” options in your image? You select the keyframe you wish to adjust and then make the changes. Now select another keyframe and make changes. Each keyframe needs to be adjusted individually.

    Edward Troxel

  • Edward Troxel

    October 11, 2015 at 12:29 am in reply to: How to freeze a NewBlue Titler Pro animation

    Maria, if you add an “effect”, it will apply to that text for the entire length of the paragraph.

    If you add a “transition”, you can adjust the length within the paragraph to which it applies.

    If you did use an effect, you can open the effect settings in Titler Pro and add keyframes and adjust it to “do nothing” after a period of time. You would have the initial keyframe with the animation, another keyframe two seconds over with the same settings, and then a third keyframe another frame or two over changing the animation settings to none.

    Edward Troxel

  • Edward Troxel

    October 10, 2015 at 4:30 pm in reply to: Extend Multiple Events Without Grouping

    Scripts are the way to go for adjusting multiple events. Excalibur can do this as well.

    Edward Troxel

  • What’s “the black line”?

    Edward Troxel

  • Edward Troxel

    July 31, 2015 at 11:18 pm in reply to: Closed Captioning

    We have discovered that the “Promote” option does not always work correctly (because Vegas does not always put the embedded markers in the correct location).

    I have a video where Vegas reads the markers and places the first one at the 0 second mark when the first marker is actually at 10 seconds so all subsequent markers are 10 seconds off. However, if you load the SCC file that Vegas created when reading the markers, the markers are placed in the correct location. This is in all versions of Vegas I tested.

    Edward Troxel

  • Edward Troxel

    July 31, 2015 at 11:05 pm in reply to: Script to Add VideoFX Preset to Clip

    You can use this as a base. Just change the effect name and the preset name as desired. This one was named “BWEffect.js”

    /**
    * This script will add the B&W effect to all selected events.
    *
    * Written By: Edward Troxel
    * Copyright 2004 – JETDV Scripts
    * Modified: 10-01-2004
    **/

    import System;
    import System.IO;
    import System.Windows.Forms;
    import Sony.Vegas;

    try {

    //Go through the list of Tracks
    var trackEnum = new Enumerator(Vegas.Project.Tracks);
    while (!trackEnum.atEnd()) {
    var track : Track = Track(trackEnum.item());

    //Go through the list of Events
    var eventEnum = new Enumerator(track.Events);
    while (!eventEnum.atEnd()) {
    var evnt : TrackEvent = TrackEvent(eventEnum.item());

    if (evnt.Selected) {

    var ve : VideoEvent = VideoEvent(evnt);

    var plugInName = “Sony Black and White”;
    var presetName = “100% Black and White”;
    var fx = Vegas.VideoFX;
    var plugIn = fx.GetChildByName(plugInName);

    var effect = new Effect(plugIn);
    ve.Effects.Add(effect);
    if (null != presetName) {
    effect.Preset = presetName;
    }

    }
    eventEnum.moveNext();
    }
    trackEnum.moveNext();
    }

    } catch (e) {
    MessageBox.Show(e);
    }

    Edward Troxel

Page 23 of 459

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