Forum Replies Created

Page 64 of 459
  • Edward Troxel

    October 12, 2010 at 2:58 pm in reply to: Vegas 9 Pro/Photoshop/ Vegas 9 Pro

    I would use JPG or PNG. Virtually anything is better than TIF.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    October 12, 2010 at 2:57 pm in reply to: audio tracks – volume linked???

    You have multiple tracks selected and all selected tracks change. Press CTRL-SHIFT-A to deselect everything and then adjust the audio level (or just click on that track header to select only that one track)

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 26, 2010 at 12:21 pm in reply to: 1280x720x12, 59.940 fps to explain

    [Sergey Rtishchev] “What is the meaning of the “x12” and “x24″ above?”

    12-bit color depth and 24-bit color depth.

    The 12-bit would allow 4 bits for each of RGB while the 24-bit will allow 8 bits for each of RGB.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 20, 2010 at 8:04 pm in reply to: Text Toolbar Might be Offscreen

    Look UNDER the “start” bar in Windows.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 20, 2010 at 7:59 pm in reply to: Multi-select import order ?

    The one that you drag will be FIRST. The rest will be in numerical order. So make sure you drag the first one. What’s WINDOW’s convention of doing things.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 19, 2010 at 12:27 pm in reply to: changing 1000 clip properties, alpha chanels in 1 command

    Both Excalibur and Ultimate S will do that as well. Here’s an OLD script I wrote five years ago that does this. Just save it as “AlphaChannelAllMedia.js” and run it in Vegas Pro.

    /**
    * This script will modify the alpha channel in the current
    * project’s media pool.
    *
    * Written by Edward Troxel – http://www.JETDV.com
    * Revision Date: Dec. 16, 2005
    **/
    import System.Windows.Forms;
    import Sony.Vegas;

    //var AType = VideoAlphaType.None;
    //var AType = VideoAlphaType.Straight;
    var AType = VideoAlphaType.Premultiplied;
    //var AType = VideoAlphaType.PremultipliedDirty;

    try {
    var mediaEnum = new Enumerator(Vegas.Project.MediaPool);
    while (!mediaEnum.atEnd()) {
    var media = mediaEnum.item();
    // only add the effect if the media object has a video stream.
    if (media.HasVideo())
    {
    var mediaStream = media.Streams.GetItemByMediaType(MediaType.Video, 0);;
    mediaStream.AlphaChannel = AType;
    }
    mediaEnum.moveNext();
    }

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

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 17, 2010 at 1:03 pm in reply to: Text Toolbar Issues Unresolved

    Usually when this happens, the “missing” window is actually under Window’s START bar. Set the start bar to auto hide, look under there and move it back to the main area of the screen, and the turn off auto hide. Alternately, change the screen resolution to a higher resolution, move the screen back to the main area, and reset the screen resolution back to where you want it.

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 11, 2010 at 1:48 pm in reply to: SUPER Slow Motion in SMS9

    Yeah, but once you go past 0, you’re no longer “slowing down” – You’re speeding up – just in the opposite direction! 🙂

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 10, 2010 at 1:54 pm in reply to: SUPER Slow Motion in SMS9

    [John Rofrano] “If you had the Pro version you could add a velocity envelope and slow it down 12x.”

    Speeding up can go up to 12x. Slowing down, a single Velocity envelope can slow down to 0% (freeze frame).

    Edward Troxel
    JETDV Scripts

  • Edward Troxel

    September 8, 2010 at 1:06 pm in reply to: Create animation of plane flying over map ?

    I have that process explained in my newsletters.

    Vol 4 #3

    Direct link:
    https://www.jetdv.com/tts/TTS04-03.pdf

    Edward Troxel
    JETDV Scripts

Page 64 of 459

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