Created
January 28, 2015 17:53
-
-
Save avdi/6fe88aa08b8f67c05f18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Sony.Vegas; | |
var one_second = Timecode.FromMilliseconds(1000); | |
var transport = Vegas.Transport; | |
var start = transport.LoopRegionStart; | |
var length = transport.LoopRegionLength; | |
transport.LoopRegionLength = length + one_second + one_second; | |
transport.LoopRegionStart = start - one_second; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment