-
Cheap alternative to Vegasaur?
Posted by Gabriel Meono on February 6, 2016 at 3:54 pmI need Vegasaur just for one simple feature: “Split media markers into events”.
The trial is about to end, and I’m unable to justify the price tag for a single feature. Is there an affordable alternative for Vegas that can do this?
Example:
Ellen Maurer replied 9 years, 3 months ago 6 Members · 11 Replies -
11 Replies
-
Wayne Waag
February 6, 2016 at 4:23 pmYou might try Timeline Tools. You can promote media markers and then split at markers. https://www.nfatoys.com/moasoftwarellc/ Its free.
wwaag
-
John Rofrano
February 6, 2016 at 5:05 pm[Gabriel Meono] “I’m unable to justify the price tag for a single feature. Is there an affordable alternative for Vegas that can do this?”
You could buy VASST Marker Editor for only $9.95 USD. At VASST we understand that it’s difficult to justify buying a large plug-in for just one or two functions so we took our flagship Ultimate S Pro plug-in and broke it up into a collection of smaller plug-ins called FasstApps that all retail for $9.95 each. You can buy only the functions you need and not pay for those that you don’t
You would use the Split Events at Embedded Markers option to accomplish what you want.
Here is a short promo video on Marker Editor
https://player.vimeo.com/video/50317511In the interest of full disclosure, I’m the author of Marker Editor. 😉
~jr
http://www.johnrofrano.com
http://www.vasstsoftware.com -
Edward Troxel
February 6, 2016 at 5:22 pm/**
* 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);
} -
Gabriel Meono
February 6, 2016 at 5:24 pm -
Gabriel Meono
February 6, 2016 at 5:30 pmEdward, is there a way to make grouped tracks, split with the media regions?
For example, I have an audio track with embedded markers, and I want a video track above to also split at those markers? Any chance to do this?
-
John Rofrano
February 6, 2016 at 5:40 pm[Gabriel Meono] “I have an audio track with embedded markers, and I want a video track above to also split at those markers? Any chance to do this?”
It looks like Edward’s script is operating on selected tracks so all you would have to so is select both tracks and they will both get split.
~jr
http://www.johnrofrano.com
http://www.vasstsoftware.com -
Gabriel Meono
February 6, 2016 at 5:55 pmYou are right John, however I still require to convert the embedded regions into markers to make this script work. Timeline Tools is able to do this on it’s own and I’m very pleased.
Thank you all for your help!
-
John Rofrano
February 6, 2016 at 6:05 pm[Gabriel Meono] “Timeline Tools is able to do this on it’s own and I’m very pleased.”
Glad you found a solution.
~jr
http://www.johnrofrano.com
http://www.vasstsoftware.com -
Ali Irteza
April 19, 2016 at 7:16 pmHi Ed,
Thanks for the script! I’m totally new to Vegas and accidentally deleted .sfl files line an idiot. Naturally DVD Architect can’t open the chapter that I’ve created. Re-rending takes sooo long!
Can you kindly (or anyone else) please give me simplified step by step instruction installing the script, I’ll be eternally thankful.
Thanks,
-
Wayne Waag
April 21, 2016 at 2:42 amPretty straightforward. Just copy the script and paste it into the Vegas Script Menu folder–something like “C:\Program Files\Sony\Vegas Pro 13.0\Script Menu”. That’s it. If Vegas is open when you do this, you will have to re-scan the script menu. Tools|Scripting|Rescan Script Menu Folder. If Vegas is closed when you add the script to the Script Menu Folder, just open Vegas and it will be there.
wwaag
Reply to this Discussion! Login or Sign Up

