Page 1 of 1

How to slow down a movie

Posted: Fri Jul 18, 2003 3:48 pm
by Cor
I want to slown down a movie to learn from the masters of the gypsy playing guitar, The Rosenberg Trio.

I want to see the mpeg video at a slown downed tempo.

Is this possible?

Posted: Tue Aug 12, 2003 5:48 am
by gadams
;one way would be:-

;Load movie

NoOfFrames = MovieLength() ;Get movie lengths in frames

;create 2 loops

Repeat
M = 1 to NoOfFrames
MovieSeek(M) ;Change the current movie position to the given frame.
Delay(1000) ;Show 1 frame per second
Next M
Until GetAsyncKeyState_(1) <> 0

;This should show 1 frame per delay value until mouse click