1) can you do it?
2) how can you? haha
any help would be geatly appreciated. Thanks!![]()
+ Reply to Thread
Results 1 to 3 of 3
-
-
There's a script that comes with Vegas that will export the active part of the time line as a sequence of bitmaps. Look in the scripting folder(s).
EDIT
Copy and paste this into Notepad and save it as SnapshotToClipboard.js in C:\Program Files\Sony\Vegas Pro 8.0\Script Menu
// This script copies a snapshot of the current cursor position to the clipboard
import System.Windows.Forms;
import SonicFoundry.Vegas.Script;
import SonicFoundry.Vegas;
// Save original Settings
var origPreviewRenderQuality = Vegas.Project.Preview.RenderQuality;
var origPreviewFillSize = Vegas.Project.Preview.FullSize;
var origFieldOrder = Vegas.Project.Video.FieldOrder;
var origProjectDeinterlaceMethod = Vegas.Project.Video.DeinterlaceMethod;
try
{
// Setup Preview for image capture
Vegas.Project.Preview.RenderQuality = VideoRenderQuality.Best;
Vegas.Project.Preview.FullSize = true;
// Set the field order and deinterlace method
Vegas.Project.Video.FieldOrder = VideoFieldOrder.ProgressiveScan;
Vegas.Project.Video.DeinterlaceMethod = VideoDeinterlaceMethod.InterpolateFields;
// Copy Snapshot to Clipboard
Vegas.SaveSnapshot() == RenderStatus.Complete
}
catch (e)
{
MessageBox.Show(e);
}
// Restore Previous Settings
Vegas.Project.Preview.RenderQuality = origPreviewRenderQuality;
Vegas.Project.Preview.FullSize = origPreviewFillSize;
Vegas.Project.Video.FieldOrder = origFieldOrder;
Vegas.Project.Video.DeinterlaceMethod = origProjectDeinterlaceMethod;John Miller
Similar Threads
-
Sony Vegas 9 Pro: Is uncompressed video the only option?
By HurlyBurly3027 in forum Video ConversionReplies: 2Last Post: 6th Jun 2011, 15:29 -
Head swap in a video using Sony Vegas Pro - is it possible and how?
By Nicole2011 in forum EditingReplies: 6Last Post: 19th Feb 2011, 16:52 -
Best settings in Sony Vegas for capturing DV video
By fuzzblaster in forum Capturing and VCRReplies: 0Last Post: 9th Sep 2010, 23:39 -
Problem with capturing video from webcam from Sony Vegas 8 Pro.
By videodirector in forum Newbie / General discussionsReplies: 0Last Post: 7th Mar 2009, 03:51 -
Problem with swirl video fx on sony vegas pro 8
By stealers in forum EditingReplies: 1Last Post: 30th Dec 2008, 20:27