I helped myself with a batch file (y'know, this old DOS stuff, sometimes it's still great), placed in the same directory like the video files:
dir *.avi *.mpg *.mpeg *.wmv *.asf *.m2v /b /-p %1 >scoobydoo.bsl
start scoobydoo.bsl
It creates a playlist and starts it with BSPlayer. File extension .bsl must be linked with BSPlayer, of course. I don't remember if I did it on my own or BSPlayer Setup did this for me.
The %1 is for additional parameters, like /s (scans subdirectories, too).
If you want it more flexible, write
dir %1\*.avi %1\*.mpg %1\*.mpeg *%1\.wmv %1\*.asf %1\*.m2v /b /-p >scoobydoo.bsl
start scoobydoo.bsl
so you can pass the viedo files' directory as parameter to the batch file.
It's not tested, maybe it should be "dir %1*.avi %1*.mpg ..." (without the backslashes).
MFG
Marcel
|