Batch Render Markers gordon white wrote on 3/8/2008, 5:46 AM Hi, When you use the batch render script in Vegas Pro 8, how can you keep the markers intact for use in DVD Architect? Many thanks, Gordon Back to post
Comments jetdv wrote on 3/8/2008, 6:35 AM The batch render script contains this line: RenderStatus status = myVegas.Render(filePath, renderItem.Template, start, length); That does not explicitly tell Vegas to include the markers. To do that, that one line must be changed to: RenderArgs args = new RenderArgs(); args.OutputFile = filePath; args.RenderTemplate = renderItem.Template; args.Start = start; args.Length = length; args.IncludeMarkers = true; args.StretchToFill = false; RenderStatus status = myVegas.Render(args); 1