Comments

Rosebud wrote on 11/11/2008, 3:16 AM
I don’t think we can set this properties by default.
However, you can use this simple CS script to disable resample of all video Events.


using System;
using Sony.Vegas;

public class EntryPoint
{
Vegas myVegas;
public void FromVegas(Vegas vegas)
{
myVegas = vegas;
foreach (Track track in myVegas.Project.Tracks)
if (track.IsVideo())
foreach (VideoEvent evnt in track.Events)
evnt.ResampleMode = VideoResampleMode.Disable;
}
}
nataq wrote on 11/17/2008, 9:48 PM
puh, I´m pretty late with my reply. Thanks a lot for your help. I haven´t yet used scripting, but I will try to get into that ;-).