Mame Video Capturing: Unterschied zwischen den Versionen

Zeile 58: Zeile 58:


== Capturing with mngwrite/wavwrite (old & complicated method) ==
== Capturing with mngwrite/wavwrite (old & complicated method) ==
===Introduction:===


*This capturing method is for older mame versions which do not support avi recording.  
*This capturing method is for older mame versions which do not support avi recording.  


*You need to create a windows batch file which does the entire capturing work for you. Here is an example. It is explained below. This is the line for capturing Super Street Fighter 2 Turbo. I´ve chosen this game as an example. What this batch file does is quite simple:  
*You need to create a windows batch file which does the entire capturing work for you. This is the line for capturing Super Street Fighter 2 Turbo. I´ve chosen this game as an example. What this batch file does is quite simple:
:<code>MameUI32.exe ssf2t -pb ssf2t.inp -mngwrite ssf2t.mng -wavwrite ssf2t.wav</code>
:<code>MameUI32.exe ssf2t -pb ssf2t.inp -mngwrite ssf2t.mng -wavwrite ssf2t.wav</code>


===Explanation:===
===Brief Explanation:===


* 1. This batch script opens up your mame with your inputfile as an argument and does a playback of the stuff you have recorded previously.
* 1. This batch script opens up your mame with your inputfile as an argument and does a playback of the stuff you have recorded previously.
* 2. The next thing it does is: It writes a mng video stream to your harddisk together with an uncompressed wave file. The mng stream is nothing more than a every frame of gameplay saved to a png picture and then merged together to a mng file.     
* 2. The next thing it does is: It writes a mng videostream to your harddisk together with an uncompressed wave file. The mng stream is nothing more than a every frame of gameplay saved to a png picture and then merged together to a mng file.     
* 3. The resulting mng video stream can be found in your snap folder
* 3. The resulting mng video stream can be found in your snap folder


===Explanation in detail:===
===Explanation in detail:===


This basic commandline contains 8 arguments in order to work correctly. Each argument is explained below:
This basic commandline contains '''eight''' arguments in order to work correctly. Each argument is explained below:


* The '''1st''' word is the name of your mame exe file. We are using MameUI32 so in this case its: '''MameUI32.exe'''
* The '''1st''' word is the name of your mame exe file. We are using MameUI32 so in this case its: '''MameUI32.exe'''