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?
How to slow down a movie
How to slow down a movie
Cor de Visser
Registered PureBasic user
Author of ChordPlanet
Made with PureBasic
http://www.chordplanet.com
Registered PureBasic user
Author of ChordPlanet
Made with PureBasic
http://www.chordplanet.com
;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
;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

