How to slow down a movie

Just starting out? Need help? Post your questions and find answers here.
Cor
Enthusiast
Enthusiast
Posts: 124
Joined: Fri Apr 25, 2003 7:52 pm
Location: Netherlands
Contact:

How to slow down a movie

Post 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?
Cor de Visser

Registered PureBasic user

Author of ChordPlanet
Made with PureBasic
http://www.chordplanet.com
gadams
New User
New User
Posts: 3
Joined: Tue Aug 12, 2003 4:32 am

Post 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
Post Reply