Comments

juan_rios wrote on 11/11/2022, 1:58 PM

What I would do is create a "Default" project with what I need and simply open it with a double click. I upload a example.

https://mega.nz/file/wcx3iJhJ#Qgoe5M48NIs3JNTA8zqh3rMBild12f1YvGcrfkZnNoY

PC-ESTUDIO1:

- VEGAS Pro 19 B651.

- Windows 11 64 bits - Intel Core i7 10.700K CPU @ 3.80GHz

- Motherboard Rog Strix 8460-H Gaming - RAM 32GB.

- nVidia GeForce GTX 1650 Super.

- Intel UHD Graphics 630.

PC-ESTUDIO2:

-Shotcut.

-Kdenlive.

-Linux Mint 21.2 -Victoria - Intel Core i5 6.400 CPU @ 2.7GHz

-Motherboard Gigabyte H110M-S2PV DD3 - RAM 16GB

-Intel Graphics 530.

LAPTOP:

-HP Victus 16-e

-VEGAS Pro 19 B651

- Windows 11 64 bits - AMD Ryzen 7 5.800H with Radeon Graphics 3.20 GHz

-GeForce RTX 3050 Laptop GPU

-RAM 16 GB.

CAMERAS:

Panasonic FZ300; FZ1000; FZ2000 and HC X1500.

 

 

FayFen wrote on 11/12/2022, 1:01 AM

There is this script

/**
 * Program: TrackSetup.js
 * Description: This script will create some initial tracks in Vegas for Video,
 *              Audio, Video Overlay, and Title. This is for people who don't
 *              like the fact that Vegas starts without labeled tracks.
 *
 * Author: Johnny (Roy) Rofrano  john_rofrano@hotmail.com
 *
 * Date: March 29, 2004
 **/import ScriptPortal.Vegas;
import System.Windows.Forms;try
{
    // Add three video tracks
    AddTrack(1, MediaType.Video, "Title");
    AddTrack(2, MediaType.Video, "Overlay");
    AddTrack(3, MediaType.Video, "Video");    // Add threee Audio tracks
    AddTrack(4, MediaType.Audio, "Audio");
    AddTrack(5, MediaType.Audio, "Music");
    AddTrack(6, MediaType.Audio, "Effects");
}
catch (errorMsg)
{
    MessageBox.Show(errorMsg, "TrackSetup Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}/*
 * Adds a track to the project with a name and index
 */
function AddTrack(index : int, mediaType : MediaType, name : String)
{
    var track;
    if (mediaType == MediaType.Audio)
    {
        track = new AudioTrack(index, name);    // create audio track
    }
    else
    {
        track = new VideoTrack(index, name);    // create video track
    }    Vegas.Project.Tracks.Add(track);    // add the track
}

Maybe it can be modified to all the things you want.