You can try my movieplayer that I've put together some time ago.
All you have to do, is:
- download the source-code
- compile it into an exe (debug off)
- place the executable anywhere you want (I've got it at C:\MoviePlayer)
The movieplayer accepts a video-file via it's command line.
To play a movie:
- right click a video-file (mpeg, avi, divx, ...)
- select "Open With ..."
- browse to the location of the MoviePlayer executable
- select the executable and click "Ok"
Now the movieplayer should be playing your file in a 1024x768x32 resolution, fullscreen.
It resizes the movie to fit the screen, with respect to the aspect-ratio.
Note that you cannot skip forward/backward and that you cannot adjust the audio-volume, as these features are not supported by Blitz.
To end the movie, press ESC.
To take a screenshot, press F8.
If you hold down either CTRL-key, some info is shown, like the original size of the movie, the size of the video that being played (resized size), resize multiplier and the number of screenshots to take in one go.
Pressing F9 takes several screenshots in one go.
The number can be adjusted by pressing the Keypad's minus and plus keys.
The screenshots are placed in this directory:
C:\MoviePlayer\Screenshots
You can change this by changing the line:
Global ScreenshotDir$ = "C:\Movieplayer\Screenshots\"
which is located at the top of the file.
Just remember to hold the ending backslash.
Don't do:
Global ScreenshotDir$ = "C:\Movieplayer\Screenshots"
http://users.pandora.be/vge/Blitz/MoviePlayer.bbIf this can help you, use any part of the source-code you want for your own projects.