Buddabing: Thank you very much for your hard work.
I'm trying this out for the first time. Would it be possible for you or someone else with working knowledge of the Movie Maker to post a complete list of the necessary steps to make all of this work? This thread is starting to get really long, and I am having some difficulty finding the information I need.
Thank you again.
The stuff you need to download is on the first post in this thread.
You'll also need two more files: batch.bat and makemovies.bat. Here's a sample batch.bat. Cut and paste into a file and modify.
@if not exist e:\mame\movies mkdir e:\mame\movies
@if exist e:\mame\movies\%1.avi goto end
time /T
@mame %1 -window -makemovie -resolution %2 -wavwrite %1.wav
@if not exist %1.vdb goto end
@\virtualdub\virtualdub /s"%1.vdb" /wait /x
@del %1.wav
@del %1.vdb
@del snap\*.png
@move /Y %1.avi e:\mame\movies
time /T
:end
The second file you need is called makemovies.bat, which calls batch.bat for each of your ROMs.
Here's a sample:
@call batch 005 224x256
@call batch 1941 224x384
@call batch 1943 224x256
@call batch 1944 384x224
@call batch 19xx 224x384
@call batch 2020bb 304x224
@call batch 280zzzap 256x224
@call batch 3countb 320x224
@call batch 3stooges 256x240
@call batch 3wonders 384x224
@call batch 40love 256x224
@call batch 4dwarrio 256x224
@call batch 4enraya 256x224
@call batch 4in1 224x256
You can generate your own makemovies.bat by using my ListGen utility, a link to it is in the first post of this thread.
HTH,
Buddabing