Log in

View Full Version : Q: Start from a certain time code?


ApPojken
4th May 2006, 13:32
Hi,

Is it possible to start from a certain time using AVS? Example. I have 100 titles where I don't want the first 30 seconds to be a part of the video. Is there any command that allows me to control where in the source the AVS should start to play from?

Thanks!

trolltuning
4th May 2006, 15:58
Of course. You can just look at the frame rate and multiply it by the number of seconds you want to trim. So if framerate=29.97 then 30*30 us 900
The line would read.
Trim(900,0)

There is a more direct way to do this but I can't check the syntex on it as Avisynth just stopped working on my work computer. Time to reinstall.

ApPojken
4th May 2006, 17:00
Thanks alot!