Table of contents
Introduction
This page assumes you are already knowledgeable about playback of movies in the emulator. If not, consult Emulator Resources for advice on how to set that up first.
According to the Encoder Guidelines, your emulator should be configured to record video at its native resolution and at full frame rate. The settings you need to do this are listed in the following sections.
Common settings
Dumps should be made with a lossless codec using the RGB colorspace. Under Windows, most of the emulators in use on the site use VFW for their video dumping process. Popular VFW choices include Lagarith and UtVideo. These lossless RGB dumps can also be used for taking screenshots.
Lagarith
- Check Enable Null Frames
- Check Use Multithreading
- Select Mode: RGB (Default)
UtVideo
- Select UtVideo RGB VCM in codec list and configure it
- Set Intra-frame prediction type to Predict Median
Non-VFW Codecs via pipedec (Windows only)
Many of the emulators listed here dump video via VFW codecs, and must split those videos at 2GB intervals due to limitations in the aging technology. In cases where avoiding these splits is desirable (for instance, emulators that don't handle the split well and desync the audio/video), or where using a more modern codec (like lossless h.264) is preferable to VFW codecs, pipedec can be used. The following instructions will set up pipedec to use FFmpeg to encode using the lossless UtVideo codec as an example (take the decoder here), but pipedec can be configured to pipe video to any encoder you want.
- Download a compiled version of pipedec: https://github.com/vadosnaprimer/pipedec/releases/tag/v1
- Install pipedec according to the instructions that come in the download.
- If you're running a 32-bit emulator (like mupen64) on a 64-bit OS, execute the file called
register pipedec (32 bit on 64 bit system).reg
. It should installpipedec.dll
into%WinDir%\SysWoW64
. If that file fails to get moved there, copy it manually. -
%WinDir%
means your Windows directory, usually it'sC:\Windows
. If you simply put%WinDir%\SysWoW64
into Explorer address bar it should instantly bring you there.
- If you're running a 32-bit emulator (like mupen64) on a 64-bit OS, execute the file called
- Take
ffmpeg.exe
according to the bitness of your Operating System. For a 64-bit OS you can just grab it from https://github.com/TASEmulators/ffmpeg-binaries/blob/master/ffmpeg-4.4.1-static-windows-x64.7z - Open
.pipedec
in a text editor and replace theffmpeg
path with where you putffmpeg.exe
. Set theavi
file path to where you want your video created. - Copy the
.pipedec
file to%AppData%\pipedec
(create the folder if it's not there). - Start up an emulator that uses VFW for dumping, and starting dumping any kind of video so that the VFW codec selection dialog appears.
- You should see Pipe Codec in the list now. If you don't, you didn't install it correctly. Make sure that you install both the 32- and 64-bit versions if you are using older emulators alongside newer ones.
- Select Pipe Codec from the list.
- Select the path for the
avi
file as usual. Note that it will only contain your audio! The video file is created separately byffmpeg
.- If you don't get any output from pipedec for some reason, open up
%AppData%/pipedec\stdout.txt
to see what happened.
- If you don't get any output from pipedec for some reason, open up
- Stop dumping video as normal when finished.
- If everything is working, you should now have two files - the video file that pipedec outputted, and the audio file that the emulator directly created. You will need to mux these files together at some point during the encoding process. To load these files in AVISynth, use
AviSource("pipedec.avi", pixel_type="RGB24")
.
Deinterlacing (PSX, N64 with AngryLion, Saturn)
If you come across footage that's interlaced (480i or 576i), it will need to be deinterlaced. This is done with QTGMC. Download it and all of its dependencies and put them in the AviSynth+ plugins64+ folder. For the dependencies, get the DLLs from the x64 folder (or x64_W7 or x64_W7_AVX2 or x64_msvc for some of the dependencies). You'll also need FFTW3 (mentioned on the QTGMC page) and follow the steps on the QTGMC page (right below the dependencies).
Once everything's set up, you can deinterlace the segments in question. If Weave was used (the dump features combing), the following code is used:
AVISource("weavesource.avi")
SelectEven()
#AssumeTFF() # uncomment this if you notice the animation being jittery
ConvertToYUV444(chromaresample="point")
QTGMC(preset="Very Slow", SourceMatch=3, lossless=2, truemotion=true, subpel=4, blocksize=32, slmode=4)
If Bob was used instead (the dump features rapidly wobbling lines, also known as "Bobbing"), the following code is used instead:
AVISource("bobsource.avi")
SeparateFields()
SelectEven()
Weave()
ConvertToYUV444(chromaresample="point")
QTGMC(preset="Very Slow", SourceMatch=3, lossless=2, truemotion=true, subpel=4, blocksize=32, slmode=4)
It should be noted that for N64, everything is dumped at 480 height, so the interlaced segments will need to be isolated in order to leave the segements that don't feature interlacing intact. Something like this does the job (this is a Weave example):
vid = AVISource("movie.avi")
vid.Trim(0, 395).ConvertToRGB32 + \
vid.Trim(396, 1095) \
.SelectEven() \
.ConvertToYUV444(chromaresample="point") \
.QTGMC(preset="Very Slow", SourceMatch=3, lossless=2, truemotion=true, subpel=4, blocksize=32, slmode=4) \
.ConvertToRGB32() + \
vid.Trim(1096, 0).ConvertToRGB32()
In all cases, it is recommended to save the result to AVI for previewing the result at regular speed, as QTGMC is very slow.
BizHawk
Target settings
Resolution | Sound |
---|---|
variable | 44.1KHz stereo |
Alternate Sync
NOTE: as of BizHawk 2.6.1, this setting has been renamed to “Sync to Audio”
BizHawk doesn't dump video with variable framerate even if the console outputs it. It's converted to constant framerate, and there are two ways of doing this conversion: audio throttle and clock throttle.
If Alternate Sync is enabled, "Audio Throttle" is simulated. Video frames are repeated or skipped to sync with audio, whose absolute timing is more accurate and reliable when it comes to variable framerates.
Disabling Alternate Sync results in "Clock Throttle" for videos. Audio gets stretched to match video frames timings. If there's huge descrepancy between how audio and video are timed, skewed audio pitch will be noticeable to the viewer, so it's generally not recommended to use this approach.
System specific settings
Commodore 64
- Change border type to Normal and reboot the core. Use the same method as SMS on dealing with the uneven resolution.
Game Boy/Game Boy Color
- If the movie uses the Game Link Cable, run the game using the Multi-Disk Bundler under Tools with GBL selected and with the ROM(s) used in the movie.
- If game is using DMG mode (Original GB), use the greyscale palette.
- Enable Alternate Sync: File -> AVI/WAV -> Config and Record AVI/WAV.
Game Boy Advance
- If the movie uses VBA-Next, enable Alternate Sync: File -> AVI/WAV -> Config and Record AVI/WAV.
N64
- Enable Alternate Sync: File -> AVI/WAV -> Config and Record AVI/WAV.
- Since Jabo video plugin has been deprecated, no bug fixes or enhancements should be used for it. On the other hand, movies using GLideN64 should have all the enhancements that are possible to pull off. For movies using other plugins, reasonable effort should be invested to try to resync them on GLideN64 and apply possible enhancements.
- In some cases, it's recommended to update the GLideN64 plugin before dumping to get the latest bug fixes and improved accuracy.
- Recommended GLideN64 settings (note that "enhanced" is typically used for SD and HD publications, "accuracy" is listed as settings for anyone wishing to do additional native-resolution encodes with settings that better reflect the N64's native output). Only non-default or notable options are listed here.
- HW lighting: enabled for enhanced, disabled for accuracy (if you experience severely brightened colors, disable this).
- Multisampling: disabled (conflicts with other settings).
- FXAA: enabled for enhanced at resolutions 4K and above, otherwise disabled (can cause visual problems at lower resolutions)
- Max anisotropy: enabled for enhanced, disabled for accuracy.
- Bilinear filtering: N64 3-point.
- Use defaults for current game: unchecked.
- Copy Depth to RDRAM: use software renderer.
- Copy Color to RDRAM: copy in sync mode.
- N64 depth compare: enabled
- Note: Because FXAA is not advised to be used at medium or low resolutions, anti-aliasing is not available on SD dumps. It's recommended you dump at a multiple of the game's internal resolution ("Show Internal Resolution" is a checkbox that can be enabled to discover this) and use Aktan's modified AreaResize AVISynth plugin to resize the dumped footage down to SD, while still preserving the clarity of the game's 2D elements.
- Recommended GLideN64 settings (note that "enhanced" is typically used for SD and HD publications, "accuracy" is listed as settings for anyone wishing to do additional native-resolution encodes with settings that better reflect the N64's native output). Only non-default or notable options are listed here.
NES
- In Graphics Settings, disable Allow more than 8 sprites and Clip Left and Right Sides.
- Set drawing area to (0-239) for PAL, and to (8-231) for NTSC.
- In Sound Channels, set APU Volume to 10.
- However, if the movie uses a Famicom or FDS game that's on this list, set APU Volume back to 1. There are exceptions for certain games.
- Akumajou Densetsu (Japanese Castlevania III) requires an APU Volume of 5.
PCE
- Enable Sprite Limit.
PCE (TurboNyma)
- First rendered scanline: 0
- Last rendered scanline: 239
- Show horizontal overscan: True
PSX
- Enable Alternate Sync: File -> AVI/WAV -> Config and Record AVI/WAV.
- If the version of BizHawk is pre-2.5 Alternate Sync must only be enabled for PAL titles.
- Resolution Mode: Hardcore Debug Mode
- Horizontal Overscan Clipping: None
- Deinterlacing: Weave
Saturn (Saturn -> Preferences)
- Resolution Mode: Hardcore Debug
- Horizontal Blend: False
- Horizontal Overscan: True
- ScanlineStartNtsc: 0
- ScanlineEndNtsc: 239
- ScanlineStartPal: 0
- ScanlineEndPal: 255
More recent versions changed the configuration a little. On those, Constant Frame Buffer needs to be set to false, as it mimics Hardcore Debug Mode. Correct aspect ratio doesn't matter if CFB is set to false. The other settings above are kept as is.
SMS
- If you're using version 1.11.7 or greater, enable Overscan. See this post for how to handle the resulting uneven resolution.
- Enable Sprite Limit
- Enable FM Chip if it's a Japanese game (unless this causes a desync)
- Disable Overclock
- Disable Stereo Separation.
SNES
- If using any pre-2.0 BizHawk version, enable Alternate Sync: File -> AVI/WAV -> Config and Record AVI/WAV.
Virtual Boy
- VirtualBoy -> Preferences -> ThreeDeeMode: SideBySide.
Windows
- Select Speed/Skip to 0 (never skip)
- Open the ROM.
- Pause emulation. (Pause key)
- Load the movie.
- Select File -> AVI/WAV -> Record AVI/WAV. Note that Bizhawk 2.3 has a bug in unattended dumping (the video is always upscaled by 2), so use Config and Record AVI/WAV instead.
- Choose a file name (such as raw.avi), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK.
- Unpause emulation. At this point, audio and video are now being captured.
- When you reach the desired end point, select File -> AVI/WAV -> Stop AVI.
- For some systems, there will be multiple output files, one per resolution; these must be combined as in PSXjin.
Linux
BizHawk on Linux can dump with ffmpeg. TODO: Describe
Citra
Target settings
Resolution | Sound |
---|---|
400x480 | roughly 32728Hz stereo |
Guide
- Make sure no saves are present for the game you want to dump. If there are, right-click on the game and select Open Save Data Location. Go back to the title folder in the file explorer window that opens, and delete every folder there.
- Under Emulation -> Configuration, go to the Graphics settings and make sure the internal res is set to Native (400x240), linear filtering is enabled and no post-processing shader and texture filter are used (None).
- Additionally, the stereoscopic 3D mode should be left off, the screen layout is set to the default layout and everything in the Layout and Utility sections unchecked.
- In the Advanced tab of the graphics settings, it is not required to enable hardware renderer, but it is recommended anyway, as the emulator runs really slowly otherwise. Everything in the Renderer section should be checked.
- Under Tools -> Dump Video, select AVI as the output format and specify a filename path.
- The audio encoder should be set to PCM signed 16-bit little endian.
- The video encoder can be either FFV1, libx264rgb or UT Video with the following settings, then click on OK:
- UT Video:
pixel_format:gbrp,pred:median
- libx264rgb:
pixel_format:rgb24,qp:0,preset:veryfast
- FFV1:
pixel_format:bgr0,level:1
- UT Video:
- Next, go to Tools -> Movie -> Play and select the CTM you want to dump. Click on OK, and the game launches in movie playback mode and start dumping to AVI.
- When the movie finishes, the emulator will pause. Select Emulation -> Continue to unpause emulation and dump the credits.
- When you have reached the desired ending point, select Emulation -> Stop or close Citra.
Note: The audio starts a bit too early in the AVI dump, but it can be corrected via AviSynth. Just add
DelayAudio(3.7*4481136.0/268111856)
to the AVS+ script.
Dega
Target settings
Resolution | Sound |
---|---|
256x192 (SMS) | 44.1KHz mono |
160x144 (GG) | 44.1KHz stereo |
Guide
Windows
Dega's built-in VFW support is broken (causes audio desyncs), so external capture software is required; for this purpose, .kkapture is used for its ability to preserve all of the frames in the input at the expected frame rate.
- Open .kkapture.
- Under Demo, select the
dega
executable. - Under target, select the desired target AVI file (such as
raw.avi
). - Set the FPS to 60 for NTSC games or 50 for PAL games.
- Select kkapture!. This will start Dega.
- Make sure Sound -> Enhanced PSG is unchecked.
- Make sure Graphics -> Overlay is set to None.
- If applicable, check Sound -> FM chip; use of this is normally specified in the submission text.
- Load the ROM and start movie playback.
- At the appropriate end point, close Dega.
Linux
- Play back the movie, noting the desired end frame of the video recording.
- Calculate the number of frames past the end of the movie the target end frame is (the length of the movie in frames is specified at the end of the submission text).
- Assuming the movie file is
movie.mmv
and the ROM filename isrom.sms
, invoke degavi with the following command line:
dega -f <number from 2> -m movie.mmv -o raw.avi rom.sms -- -oac pcm -ovc lavc -lavcopts vcodec=ffv1:format=bgr32
degavi
will terminate automatically when dumping is done, yielding raw.avi
.
DeSmuME
Target settings
Resolution | Sound |
---|---|
256x384 | 44.1KHz stereo |
Guide
Windows
- Select Config -> 3D Settings and select SoftRasterizer as the Renderer.
- Select Config -> Frame Skip -> 0.
- Optionally, uncheck Config -> Frame Skip -> Limit framerate.
- Open the ROM.
- Pause emulation. (Pause key)
- Load the movie.
- Select File -> Record AVI.
- Choose a file name (such as raw.avi), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK.
- Unpause emulation. At this point, audio and video are now being captured.
- When you reach the desired end point, select File -> Stop AVI.
Linux
Linux builds of DeSmume do not, at present, have video capture ability. You will need to use Wine.
Dolphin
Target Settings
Resolution | Sound |
---|---|
variable, 4:3 or 16:9 | 32KHz or 48KHz stereo |
Dolphin 5.0
Prerequisites
- This guide assumes you have English as your Language in Config -> Interface.
- Download this build of Dolphin that fixes video dumping to work well with AVISynth and VirtualDub:
- If you create an empty file called
portable.txt
in your Dolphin folder, different versions of Dolphin won't try to override and corrupt global settings, and each one of them will keep its settings in its own folder. - To decode Dolphin video dumps, you will need http://ffdshow-tryout.sourceforge.net/download.php (make sure to enable the VfW interface in the installer) or https://codecguide.com/download_k-lite_codec_pack_mega.htm (make sure to enable ffdshow in VFW video codecs when selecting components to install).
- Familiarize yourself with this post about potential issues with Dolphin:
Guide
- In Graphics -> General -> Aspect Ratio make sure you use Auto. That way Dolphin will render the video with correct pixel aspect ratio, and you will not need to stretch the video afterwards to 4:3 or 16:9.
- In Graphics -> Advanced check Frame Dumps use FFV1 to get lossless video output.
- In Movie check Dump Frames and Dump Audio.
- Go to Config -> General and set Speed Limit to Unlimited.
- Go to Config -> Paths and Add... the folder you keep GameCube and Wii images in. Hit OK, wait for the game list to get populated, and then select the game you want to run by highlighting it in the list. Otherwise, load the game directly via File -> Open.
- Replay the movie by going to Movie -> Play Input Recording and selecting your .dtm file.
- When you're done dumping, hit the Stop button in the GUI. The resulting files will be in
Dolphin-x64-5.0-ffv1\User\Dump\Frames
andDolphin-x64-5.0-ffv1\User\Dump\Audio
.
Audio dump usually consists of 2 files:
dspdump.wav
and dtkdump.wav
. In most games, dtkdump.wav
is empty, but there are games that use it, so you'll have to mix them together for those. This can be done in AviSynth with MixAudio: MixAudio(dspdump, dtkdump, 1.0, 1.0)
Sometimes those audio dumps are also split into 2 more files. It's because Dolphin changes sameplarate on the fly. You'll need to set them to the same samplerate in order to splice them.
If for some reason, you can't preview the AVI in VirtualDub, you can convert the resulting AVI with ffmpeg:
- For UT Video:
ffmpeg -i framedump.avi -c:v utvideo -pix_fmt gbrp -pred median framedumpconv.avi
- For libx264rgb:
ffmpeg -i framedump.avi -c:v libx264rgb -qp 0 -preset veryfast -pix_fmt rgb24 framedumpconv.avi
Antialiasing
There a lot of ways to apply antialiasing, and options will differ in different Dolphin versions and revisions. Here's some basic principles.
- In Graphics -> Enhancements select the highest Anisotropic Filtering option.
- In Graphics -> Enhancements select the highest Anti-Aliasing option your GPU supports.
- If supported and works well, this option may be replaced with Post-Processing Effect -> FXAA, which works much faster and gives comparably good results at high resolutions.
- Make sure Scaled EFB Copy is enabled.
- If you're doing a high definition encode for youtube, increase Internal Resolution to something close to 2160p.
Note that option names for Internal Resolution may not match the exact resolution your video will be in, so to check what internal resolution it actually is in, hit the ScrShot button in Dolphin GUI and see what resolution the image in
Dolphin-x64-5.0-ffv1\User\ScreenShots
will have. Note that you don't have to match 2160p exactly, because rendering at non-integer scale factors may cause bugs in how the games render video. You'll resize it to your target resolution during encoding in the AVISynth script.
Another issue to be aware of is that Dolphin doesn't allow its window to go beyond your screen resolition.
- Depending on your Operating System, patches applied to Dolphin to overcome this limitation may or may not work for you. Talk to the community to figure this out. This may still not work in revisions of Dolphin that use Qt.
- If your monitor doesn't support 2160p or higher resolutions out of the box, you may try to create such a resolution manually and then set your monitor to it. Everything will look very blurry, but the video dump will be fine. On laptops, you will need to enable Virtual Super Resolution in AMD Radeon Software settings, or enable all DSR factors in nVidia 3D settings (Optimus needs to be disabled in BIOS).
- If you can't create such a resolution, try something smaller and use that instead.
- Sometimes 2160p is available but anything higher isn't. Configure Dolphin to use 2160p as a fullscreen resolution and switch to it for dumping, because the GUI window will still not fit, resulting in smaller resolution.
Some games outright refuse to apply anti-aliasing, because it's how they are configured in Dolphin's game database to prevent desyncs and emulation problems. Dump such games at native resolution and upscale via point-resize or lanczos-resize.
Aspect ratio
Dolphin tries not to render black bars that are present in some games, because that allowes to fill more of the screen with actual data in fullscreen mode. So aspect ratio of the video (ratio between width and height of the frame) may not always match that of the emulated console (namely, 4:3 for GameCube and 16:9 for Wii). Dolphin uses heuristics to determine proper pixel dimensions for any given video frame. So if the video is to be resized, both width and height need to be resized by the same exact factor.
Setting Graphics -> General -> Aspect Ratio to Auto forces correct aspect ratio most of the time, and you don't have to stretch the footage in either dimension to "fix" aspect ratio. However, with some games, Dolphin doesn't properly detect if the current mode is meant to be 4:3 or 16:9, so you may need to ensure the dump doesn't look unnaturally stretched or squiched.
- If the movie doesn't explicitly set anammorphic widescreen for a GameCube game, then forcing 4:3 is safe.
- For Wii, there's a system option to use the 4:3 mode and some games use it, also some games have an in-game option for it. But most of the time it's safe to force 16:9.
Resolution changing on the fly
Some games change resolution on the fly. Usually they have one resolution in gameplay segments and another in the rest of the footage. Aspect ratio (between width and height) may also be different in those segments.
After the game has changed resolution, Dolphin 5.0 stretches the video to whatever the initial resolution was. That means that if aspect ratio of the raw video frame also changes, pixel dimensions will be incorrect across segments.
- One workaround is dumping in segments, but you'll need to manually start and stop dumping when resolution changes.
- Use Dolphin's screenshot freature to determine internal resolution of any given frame.
- When splicing segments, keep resolution of gameplay segments and only resize the rest of the footage if needed.
- Do not stretch width and height by different factors, resize them equally and add black borders on the side that's too small.
- Another workaround is forcing gameplay resolution on the Dolphin window and letting it handle the rest.
- Enable Graphics -> General -> Auto-Adjust Window Size.
- Start the game and let it reach gameplay.
- Stop emulation.
- Disable Graphics -> General -> Auto-Adjust Window Size.
- Set Graphics -> Enhancements -> Internal Resolution to Auto (Window Size).
- Make sure Graphics -> General -> Aspect Ratio is not Stretch to Window.
- Dump the video as usual.
- Third workaround is letting the entire thing run in initial resolution of frame 0 and then stretching the whole video to gameplay resolution. That way PAR in gameplay segments will be incorrect in the dump, but you will fix it while encoding.
Newer revisions of Dolphin allow to Dump at Internal Resolution in Graphics -> Advanced, but if the game changes resolution on the fly, that will cause drifting audio-video desync when you splice them back together. Auto-Adjust Window Size in Graphics -> General causes the same problem even if Dump at Internal Resolution is disabled. So use the above workarounds to force gameplay resolution to the entire video (while dumping or in post-production).
Dolphin pre-5.0
Prerequisites
Make sure you get the correct Dolphin version, which should be stated in the submission notes, as different releases are neither sync-stable nor sync-compatible with each other. In versions before 4.0-3595, it is obligatory to fix Dolphin's broken video and audio dumping feature prior to obtaining a capture. Either rely on patched binaries or, as a Windows user, try patching yourself:
- https://github.com/nattthebear/dolphin-avsync/branches
- https://github.com/RisingFog/dolphin-avsync/releases
For Linux systems Ilari has created a set of patches providing similar functionality; ask on IRC if you need them. In any case applying the patches will likely result in merge conflicts, that have to be resolved manually. Ignoring this step will result in broken audio/video dumps on versions older than 4.0-3595! Some movies may require functionality (like memory card or disk switching) for playback that is not part of any official release. In these cases it is advisable to check the submission notes and discussion thread for provided patches or binaries.
Hint: Before starting the capturing process try to fully sync the run (Follow steps 1, 2 or 3, 7 (without Dump Audio) and 8). This is to make sure possible frustration caused by unnoticed late desyncs is kept to a minimum. Important: Sometimes a movie will desync on a second playback due to files being present that were created on first playback. Keep in mind that these have to be deleted before starting the capture! Check the submission details or discussion thread to be aware of such causes of desync. Should you get graphical glitches (missing/black or otherwise corrupted textures) try a different backend (e.g. OpenGL instead of DirectX) if possible.
Note: Windows Dolphin avsync versions older than 4.0-1711 crash after splitting the first 2GB segment. To overcome that, use one of these:
- Ask the person who made a build for you to move the piece of code that closes the timecodes file (AVIDump.cpp) from
AVIDump::CloseFile()
toAVIDump::Stop()
. - Use x264vfw codec and configure it to output a lossless single-segment file (seeking won't break):
- Basic -> last (nameless) drop-down menu -> Keep/Accept only RGB.
- Check Zero latency.
- Rate control -> Single pass - lossless.
- Output -> Output mode -> File.
- Output file -> specify the global path. Use the AVI container.
- Use Pipedec.
- Build Dolphin yourself, applying the fix from method 2. Use these steps then.
Guide
The following instructions assume you are using either natt's or Ilari's AVhack. Menu structure as well as names of menu items may change between releases.
- Note: the settings are in the following format Dolphin 4.0 UI / Dolphin 5.0 UI.
To avoid unnecessary hassle ensure you fulfill the assumptions made in step 9, first sentence.
- Navigate to Options->Configure. Uncheck Enable Dual Core and Enable Idle Skipping. Set Framelimit to off / Speed limit to Unlimited. Make sure the CPU emulator engine is set to JIT Recompiler.
- For some Gamecube games: Navigate to Options->Configure->Gamecube and check Skip BIOS. Some movies require a memory card inserted, while others expect none to be present. Set the Slot options accordingly.
- For some Wii games: Navigate to Options->Wiimote Settings. Click Configure for Wiimote 1 and Clear. Also choose or unset the extension controller. These instructions are not required for all games.
- Go to Options->Graphics Settings -> Hacks, disable External Frame Buffer (related to movie sync), enable EFB Copies and set it to RAM (and enable Cache if you wish).
- Dumping is to be done on highest graphical settings. Navigate to Options->Graphics Settings and check Auto adjust Window Size. From that window navigate to Enhancements and set Internal Resolution to 2x Native, Anti-Aliasing to 16xQ CSAA or equivalent (8x SSAA) and Anisotropic Filtering to 16x (anisotropic filtering leads to graphical glitches with some games. Leave it set to 1x if this is the case.)
- Linux specifics: For games displaying their content in 16:9 it may be necessary to force widescreen mode at this point: Options->Graphics Settings, set Aspect Ratio to Force 16:9. This however will not suffice because Dolphin will always resize the window to a 4:3 resolution and as the window dimensions determine the video resolution, you have to resize the window to the correct resolution (2x the native 16:9 resolution, i.e. 1536x864) yourself. Ensure the window content (that is without titlebar and other decoration by your window manager) has the correct dimensions with e.g. xwininfo.
- TODO: Windows specifics: Does the same apply to Windows?
- Start the game without any dumping feature enabled. This way Dolphin will resize its window to the correct resolution. Now Dolphin has to be configured to write audio and video data to disk.
- Navigate to Options->Graphics Settings and uncheck Auto-adjust Window Size. From that window navigate to Enhancements and set Internal Resolution to 4x Native. Check Dump Frames on the Options->Graphics Settings->Advanced tab / Movie->Dump frames menu.
- Linux specifics: Check Frame Dumps use FFV1 as well. The Dump Frames option will make Dolphin dump audio too.
- Navigate to Options->DSP Settings and choose DSP LLE recompiler as DSP emulator engine. This type of sound emulation requires dsp_coef.bin and dsp_rom.bin to be present in the User\GC\ on Windows or $HOME/.dolphin-emu/GC on Linux directory or you will receive an error message. On Windows check Dump Audio in the Emulation / Movie menu and set Options->DSP / Audio settings->Audio Backend to "No audio output" (sound will be dumped nevertheless).
- Assuming the game is in your library and you have started it at least once, choose Play Recording from the Emulation / Movie menu and select the movie file to be captured. On Windows and Dolphin 4.0 select a lossless RGB video codec of your choice and click Ok. Audio and video are now being captured. Should the emulator crash at this point examine the User\Dump\ directory of your Dolphin installation ($HOME/.dolphin-emu/GC on Linux) and create the folders Audio and Frames if either of those are missing.
- Linux specifics: Important: During the entire video capture no window must overlap with the one showing the actual gameplay, so it is wise to check Keep window on top in Options->Graphics Settings.
- To stop the capturing process at the desired end point click Emulation->Stop.
Read on if you want to find out how to deal with the files that have been created for encoding: Dolphin encoding guide
DOOM
Target Settings
Resolution | Sound |
---|---|
320x200 (default) | 44.1kHz stereo |
- Note: This guide uses feos' customized PrBoom+ setup, which you can get here.
- Note 2: This method produces video files that are at 70 fps, but the gameplay footage is actually at 35 fps, with every other frame repeated in the video files.
- If the WAD uses the original DOOM music, get the MP3 or Vorbis soundpack of the SC-55 recordings of the DOOM soundtracks and modify prboom-plus.cfg under the section
# Music
to use the sound files. - If the demo uses a custom PWAD that features higher resolution textures and sprites, in prboom-plus.cfg you can set the following. Otherwise, leave the settings as is.
-
videomode
->"OpenGL"
,screen_resolution
->"640x400"
,gl_texture_filter
->"2"
,gl_sprite_filter
->"2"
,gl_lightmode
->"3"
,useglgamma
->"0"
-
- Begin dumping the demo with the command
prboom-plus -iwad YourIWADFileHere.wad [-file YourPWADFileHere.wad] -timedemo YourDemoFileHere.lmp -viddump video.avi
You can do this either through the command line or with a batch file/bash script. This will produce an AVI file with UTVideo-encocded video and uncompressed PCM audio. - DOOM demos normally close the game themselves when they're finished. If they don't and you've reached your desired end point, access the menu and quit.
Famtasia
* Dacicus doesn't understand why so many people are having trouble with Famtasia <Grunt> Famtasia *is* trouble.
Target Settings
Resolution | Sound |
---|---|
256x224 (NTSC), 256x240 (PAL) | 44.1kHz mono |
- WARNING: The emulator dumps video RAW uncompressed in real-time, and in 2 GB segments.[10]
- Note: Make sure you have the patched version. The 60 FPS, Windows fix, 240 scanlines[11], and AVI recording patches are required; the Audio logger must not be selected. The others are optional.
- Start Famtasia
- Config -> Display -> Option: Resolution should be "Window Mode," Size x1, Drawing method should be "Window 8bpp,x1 size"
- Config -> Display -> Option: Check "Disable system messages"
- Config -> Speed: Refresh should be 1, Auto unchecked, ExecSpeed 100, and Windows Occupation all the way to the left
- Config -> Sound: No Reverberation should be checked, Sampling Rate should be 44,100Hz 8Bits
- Open the ROM. (It will instantly start recording upon loading the ROM, you may consider waiting a few seconds for the intro to change to make cropping it off easier)
- Edit -> Movie -> Play -> Play Movie -> click "..." and select the movie you want to record
- When you're done recording, close Famtasia.
Making the video files AviSynth-compatible using VirtualDub
- Open the first segment (usually recording00.avi).
- Video -> Compression -> Select Lagarith/CamStudio/your favorite lossless RGB codec and click OK.
- Fix display using the instructions below for NTSC or PAL, as appropriate.
- Save as something else (e.g., recording00_fixed.avi).
- Repeat for each segment.
Fixing the display using VirtualDub (NTSC)
- Video -> Filters -> Click "Add..." Select "null transform" and click OK.
- With "null transform" selected, click "Cropping."
- Set Y1 offset to 7 and Y2 offset to 9. Click OK twice.
Fixing the display using VirtualDub (PAL)
- Download Emiliano Ferrari's Shift filter and extract the ef_shift.vdf file into VDub's plugins directory. (Note: Simon Walters' ShiftWrap filter can also do this, but the processing settings aren't saved correctly for batch processing.)
- Video -> Filters -> Click "Add..."
- Select "Shift" in the filters list and click OK. (If it doesn't appear in the list, select "Load..." and navigate to the location of the ef_shift.vdf file.)
- In the Shift configuration dialog, check "Repeat the picture."
- Enter 1 into the Y text box, or click the down arrow once. Click OK twice.
FCEU/FCEUX
Target settings
Resolution | Sound |
---|---|
256x224 (NTSC), 256x240 (PAL) | 48KHz mono |
Guide
Download QuickNES Palette
Within FCEU/X:
- Go to Config -> Palette
- Load Palette
- Select QuickNES Palette
Windows
- Start FCEU or FCEUX.
- Select Config -> Video, and check Disable hardware acceleration (lower left corner).
- Select Config -> Sound. Set Rate to 48000 and Quality to high. Set all volume controls to their maximum.
- Open the ROM for the movie.
- Set the emulator speed to about 400% or more (= key); how fast you should go is limited only by the speed of your computer.
- Pause emulation (Pause key).
- Load the target movie file.
- Select File -> AVI/Wav -> Record AVI. Choose a file name (such as raw.avi), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK.
- If the movie uses new PPU (check the file header in a text editor), there's a bug that makes on-screen messages, counters, and icons get captured to the video on the first frame. Disable the icons and counters under Config -> Display and wait for the messages to disappear before unpausing emulation.
- Unpause emulation; audio and video are now being captured.
- Once you have reached your desired capture end point (usually at the end of credits), select File -> AVI/Wav -> Stop AVI.
Linux
Assuming the ROM is
rom.nes
and the fm2 is movie.fm2
, issue the following command:
fceux --subtitles 0 --slstart 0 --slend 239 --xscale 1 --yscale 1 --special 0 --pal 0 --sound 1 --soundq 1 --soundrate 48000 --volume 150 --trianglevol 256 --square1vol 256 --square2vol 256 --noisevol 256 --pcmvol 256 --mute 1 --nospritelim 1 --no-config 1 --videolog "mencoder - -o raw.avi -ovc lavc -lavcopts vcodec=ffv1:format=bgr32 -oac pcm -noskip -nocache -mc 0 NESVSETTINGS" --playmov movie.fm2 rom.nes
The
--videolog
argument for capturing with a more modern tool like ffmpeg is:
--videolog "ffmpeg -f s16le -ar 48000 -channels 1 -i /path/to/soundpipe/s.log -f rawvideo -r 60.0998 -s 256x224 -pix_fmt bgr24 -i - -c:a pcm_s16le -c:v libx264rgb -qp 0 -pix_fmt rgb24 output.mkv"
Note: Figure out the
/path/to/soundpipe/
by setting --videolog "NESVSETTINGS"
once.
Once you have reached your desired capture end point (usually at the end of credits), close the emulator.
In r3325 we added
--movielength int_number_of_frames
(experimental) which should automatically terminate the capture along with the emulator. Please let someone know whether this works out for you.
In either case (linux or windows) you could try incorporating this one-liner lua script which should be self-explanatory:
while true do
if movie.mode() == "playback" then
emu.frameadvance()
else
os.exit()
end
end
WARNING: Dumping video for publications usually requires a human to make sure it's safe to stop dumping, as the game usually keeps providing valuable content after the movie has ended.
- If capturing from FCEU 0.98.12 or FCEU 0.98.16 is needed for any reason, see this thread.
Final Burn Alpha
Target settings
Resolution | Sound |
---|---|
(variable)[6] | 48KHz stereo |
Guide
WARNING: FBA-rr does not automatically split the video file. It will dump video until the file reaches 4GB, after which the file will be invalid. To overcome this bug, track the size of the dumped video (update the folder containing it and hover the cursor, or check the File Properties), pause the emulator before 2GB is reached, stop dumping and then start again.
Windows
- Select Audio -> Plugin Options -> 48000Hz samplerate.
- Load the ROM.
- Pause emulation (Pause key).
- Start movie playback.
- Disable input display (, key) and frame display (. key).
- Select Game -> Movie -> Record AVI. Choose a file name (such as raw.avi), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK.
- Unpause emulation. You are now capturing audio/video in real-time.
- When you reach the desired end point, select Game -> Movie -> Stop AVI.
Linux
TODO
Gens
Target settings
Resolution | Sound |
---|---|
320x224 (NTSC), 320x240 (PAL), 256x224 (low resolution mode) | 44.1KHz stereo |
WARNING: Use the build of Gens fixed for AVI dumping, Gens-SplitAVI. It fixes the frame drop on new segment start, and splits on resolution changes.
Guide
Windows
- Select Graphics -> Frame Skip -> 0. This enables turbo speed while not skipping frames.
- Make sure Graphics -> VSync is unchecked.
- Make sure Sound -> PSG High Quality is unchecked.[9] This option is not present in the latest svn.
- Check Sound -> YM2612 High Quality and Sound -> DAC High Quality.
- Uncheck Sound -> Soften Filter.
- Uncheck Graphics -> Proper Aspect Ratio in low-resolution mode.
- If the game is a Sega CD game, uncheck Options -> General -> Show Sega-CD LED.
- Check Tools -> AVI -> Clean AVI screen.
- Check Tools -> AVI -> Fit AVI to game height.
- Uncheck Tools -> AVI -> Sync AVI with movie.
- Uncheck Options -> General... -> Message -> Enable.
- If the game is a 32x game, check Sound -> PWM.
- If using any CamHack build for Sonic games, check Graphics-> Layers-> Sprites-> "Sprites always on top", then press the "Num Lock" key on your keyboard to remove sprite numbers on screen.
- Open the ROM.
- Pause emulation (Pause key).
- Start movie playback.
- Select Tools -> AVI -> Start AVI dump. Choose a file name (such as raw.avi), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK.
- Unpause emulation. You are now capturing audio/video.
- When you reach the desired end point, select Tools -> AVI -> Stop AVI dump.
Linux
TODO
Hourglass
Target settings
Resolution | Sound |
---|---|
(variable) | (variable) |
- WARNING: Playing back Hourglass movies may require the usage of Windows XP, as they may not play back properly in later Windows versions. This emulator may not be a good first choice for those new to encoding.
- Note: Hourglass leaves out the MIDI track from games that use MIDI audio when dumping video and audio. Follow this guide for instructions on how to extract the MIDI track separately, which will then have to be edited into the dumped audio in post-processing.
- Note: As of r90, if the game's resolution's width is not mod4, it will append columns of pixels to the nearest resolution that's mod4. These will need to be cropped out. For Neko Project 21 in particular on the D3D renderer, the resulting dump will be 644x402, which needs to be cropped out with the following:
Crop(1, 1, -3, -1)
- Note: Duplicate frames may get lost upon splitting. To remedy this, using pipedec or x264vfw (and setting the output mode to File) is strongly recommended.
Guide
Windows
- Figure out the options to get the run to sync (must be mentioned in the submission if they aren't default).
- Movie File -> Browse. Pick the TAS file.
- Game Executable -> Browse. Select the game executable.
- AVI -> check Capture Video and Audio.
- Check Fast-Forward.
- Run and Play Existing Movie. It will then prompt you to locate the output video and to select the codec.
- When it's over, press Stop Playing.
JPC-RR
Target settings
Resolution | Sound |
---|---|
(variable) [7] | (variable) [8] |
WARNING: JPC-RR encoding is quite different from other emulators; if you are new to encoding, you should try working with different platforms first.
Guide
Get the latest JPC-RR build from this link, as it has all the tools needed for video dumping.
- From Drives -> Import Image, create the HDD image JPC-RR will use to run the game. Make sure it has all the game files the author used in their run and that the resulting Disk ID matches the one they provided. If the author also provided checksums for each of their game files, make sure they match the checksums for your files as well.
- In System -> Assemble, set Fda image to "FreeDOS" and Hdd image to the HDD image you created. Click Assemble.
- Load the movie (JRSR) file under Snapshot -> Load -> Movie.
- Set up the video dump by going to System -> Start Dumping. Name the file you want to save the dump to.
- Start the video dump by clicking System -> Start. The movie playback and dumping will begin.
- When you have reached your desired endpoint, click System -> Quit. The emulator will terminate the dump properly.
- Drag the resulting JMD file onto dumpcovert.exe. The file will be converted into a series of CamStudio-encoded AVI files split by differing resolutions and frame rates.
libTAS
Target settings
Resolution | Sound |
---|---|
(variable) | (variable) |
Guide
- Install ffmpeg, or else dumping won't work (e.g. under Ubuntu:
sudo apt-get install ffmpeg
). - In libTAS, set the path to the game to
/path/to/game
(or follow the instructions provided in the movie file's annotations) - Check Movie recording, then click on Browse.... Select the movie file.
- Under Tools -> Configure encode..., set the encode file path to
/path/to/encode.avi
- If you're using a VM, make sure to save to a shared folder both the host OS and the guest OS can access read+write).
- Make sure to append the
.avi
extension, or libTAS won't be able to recognize which format it should output.
- Copy one of the following commands in the ffmpeg options text box, then click Ok:
- For UTVideo:
-c:v utvideo -pred median -pix_fmt gbrp -c:a pcm_s16le
- For FFV1:
-c:v ffv1 -pix_fmt bgr0 -level 1 -g 1 -c:a pcm_s16le
- For H.264 RGB:
-c:v libx264rgb -qp 0 -preset ultrafast -g 1 -pix_fmt rgb24 -context 1 -c:a pcm_s16le
- For UTVideo:
- Start the encode by clicking on Tools -> Start encode. This will start the encode when launching the game.
- Click Start, then press the Pause key to un-pause if you started the game paused. This will capture audio and video to AVI (even if audio is muted).
- When you reach the desired end point, click on Stop or close the game window.
IMPORTANT NOTE WHEN USING H.264 RGB: If you have x264vfw installed, absolutely make sure to open the AVI in AviSynth with the following line, or else it will use Microsoft's garbage H.264 codec instead:
AVISource("encode.avi", pixel_type="RGB24", fourCC="X264")
lsnes
Target settings
Resolution | Sound |
---|---|
256/512x224/240/448/480 | 44.1 KHz stereo |
Guide
- Open the emulator, load the ROM.
- Select load movie/savestate tab, select the movie, check start paused and hit ok.
- Set
avi-soundrate
to 5 (Settings, Advanced tab, orset-setting avi-soundrate 5
). In lsnes-rr2, set AVI Sound mode to High quality 48kHz instead. - Select AVI capture (CamStudio / PCM) from capture menu.
- Set speed to turbo (or other desired speed).
- If you want to, you can mute audio by unchecking Config->Sounds enabled. This won't affect dumped audio.
- Unpause the emulator
- When reaching the end, select end avi dump.
- Close the emulator.
- On Linux, TSCC can be used instead of CamStudio (it is usually bit faster and compresses better).
- The reason not to use that on Windows is the difficulty decoding it using VfW.
- If you're having issues with black screens not being completely black, use an rrtest build from https://lsnes.tasbot.net.
MAME-RR
Target settings
Resolution | Sound |
---|---|
Variable | 48KHz |
All the settings should be default. Just use the following command line (assuming your ROM name is
myrom.zip
, and your movie name is myrom.mar
):
mame-rr myrom -aviwrite myrom.avi -playback myrom.mar
Alternatively, save this script as
dump_avi.bat
, put near mame-rr.exe, and run it
@echo off
echo Type ROM name (without extension):
set /p ROM=
echo Type movie name (without extension):
set /p MOVIE=
echo Type AVI name (without extension):
set /p AVI=
mame-rr %ROM% -aviwrite %AVI%.avi -playback %MOVIE%.mar
Unpause the emulator (
P
key by default), since it autopauses to prevent timestamp desync. When you're done, just close the emulator. That will properly stop AVI dumping.
- NOTE: mame-rr v0.1-beta reports the intended aspect ratio for each game, make sure to use it when encoding.
- NOTE: mame-rr v0.1-beta splits the dump at 2GB, but might desync if the run was made on -alpha, so check if it syncs and use -beta. Splitting is needed to avoid the annoyance with fixing the broken frames at 2GB border.
Mednafen
Target settings
Resolution | Sound |
---|---|
(variable)[4] | 44.1KHz stereo |
Guide
Windows or linux
- Use the following command-line to launch Mednafen and automatically start movie playback and .mmm recording:
mednafen.exe -mmm 1 -mmmfile "where\to\save\movie.mmm" -mmmframes 5000 -mov "path\to\movie.mcm" -play 1 "path\to\rom.pce"
- Change 5000 by the number of frames you want to dump.
- Now transfert the
.mmm
file on Linux to convert it to.mov
(quicktime).
Linux only
- You will need to compile the transcoder yourself on Linux
- Install the following dependencies:
sudo apt-get install subversion build-essential automake autoconf libtool patchutils binutils libc6-dev bison flex gawk gettext imagemagick zlib1g-dev libsndfile-dev libquicktime-dev
- Go to
mednafen-rr/trunk/mednafen-mmmencode
, execute
sudo chmod +x ./autogen.sh
- Edit
./po/Makefile.in.in
and change theGETTEXT_MACRO_VERSION
version to0.19
- Run
./autogen.sh
sudo ./configure
sudo make
sudo make install
- You will find the program in
/usr/local/bin/
- Once compiled, go in the folder containing the .mmm file and use the following commang to convert it:
mednafen-mmmencode mymovie.mmm
- You will have a
test.mov
file- If the command
mednafen-mmmencode
is not recognized, make sure the program exist in the/usr/local/bin
folder. If it exists there, this means/usr/local/bin
is not in your $PATH variable, so use this command instead:
{/usr/local/bin/mednafen-mmmencode mymovie.mmm
}
- If the command
- Open the QuickTime movie in VirtualDub with the FFInput Plugin to convert it to .avi
- File -> Aave as AVI
Mupen64
Target settings
Resolution | Sound |
---|---|
variable, normally 320x240 (or multiple thereof)[2] | 44.1KHz stereo |
NOTE: This guide is focused on the use of AngryLion as the video plugin. while it should sync for most games, it’s not guaranteed. If a game doesn’t sync on AngryLion, you will have to use different plugins and figure out a different method.
Guide
Windows
It is recommended that you use the TASVideos Mupen64 package as it contains all the plugins and extra files you’ll need. You can download it here.
- Start Mupen.
- Options -> Settings -> General -> uncheck Limit FPS (auto).
- Options -> Settings -> Advanced -> uncheck Force Internal AVI Capture
- Options -> Settings -> Other -> select Audio-Authoritative Sync
- Options -> Settings -> Config Plugins -> select AngryLion as the video plugin and Jabo’s audio plugin for audio.
- On the plugins page, select Config for AngryLion and do the following:
- Un-Check Multithreaded Rendering
- Select Filtered for output mode
- Leave the rest of the settings unchecked (however if the game is interlaced, check Bob deinterlacing)
- Click Apply then close the window.
- Load your game ROM
- Utilities -> Movie -> Start Movie Playback
- Select the movie to play back
- Check Open Read-Only
- Enter 0 for Pause at frame:
- Click OK
- The movie should now be paused on the first frame. Alternately, pause the game that's currently running, and then load the movie file, as it will start playback as soon as you unpause (or rather, the ROM gets reset).
- Utilities -> Movie -> Start AVI capture and select the desired location for the dump, as well as select your desired codec. This will start dumping video. Do not pause the emulator at all during playback or the movie will desync.
- Once you reach the desired ending point, go to Utilities -> Movie -> Stop AVI capture
Old Guide
WARNING: Mupen64 is notoriously unstable and difficult to work with. If you are new to encoding, you should try working with different platforms first.
- http://code.google.com/p/glidehqplusglitch64/downloads/detail?name=Glide64_Final.zip
- http://rustedlogic.net/wikiold/index.php?title=Nintendo_64_Emulation_plugins
Windows
Mupen64's built-in dumping is very unreliable and should not be used at all. Aktan has developed the following alternate dumping method using a modified build of .kkapture. It is recommended, where possible, to use the Glide64 'Final' video plugin and Azimer's audio plugin (both plugins are mirrored on that page); some segments of the following set of instructions may assume the use of those plugins.
- Make a backup of your plugin directory so that your old settings are preserved, as necessary. Also backup glide3x.dll in your Mupen64 root directory.
- Place the above plugins into your Mupen plugins directory, and glide3x.dll from the "wrapper" directory in the Glide64 package into the Mupen64 base directory.
- Edit Plugins/Glide64.ini; change instances of "filtering = 1" to "filtering = 0", and "hotkeys = 1" to "hotkeys = 0".
- Start Mupen.
- Options -> Settings -> General -> uncheck "Limit FPS (auto)".
- Options -> Settings -> Config Plugins -> select Glide64 Napalm WX as the video plugin and Azimer's audio plugin for audio.
- Go into the Glide64 configuration dialogue, check "show advanced emulation options", and close and reopen the dialogue.
- Set video options as seen here and here. (Note: "use frame buffer objects" may be necessary for some video cards).
- Select a video resolution that is a multiple of 320x240 (or 342x256), but smaller than your screen size (antialiasing).
- Load your game ROM, and observe the Glide64 text at the bottom of the screen. You should see "Filtering: Automatic" specified. If it's not, you will need to exit Mupen64 and edit Glide64.ini as described in step 3.
- Utilities -> Movies -> Start Movie Playback. Select the movie to play back, check "Open Read-Only", and enter 1 for "Pause at frame:". Click OK. The movie should now be paused on the first frame.
- Make a save state.
- Close Mupen.
- Check that there are no .eep files for your game in the Save directory in the Mupen root directory (playback from .kkapture as follows doesn't clear these files out, and their presence can cause desyncs).
- Start .kkapture; configure it as seen here. Note in particular the frame rate (120fps); this is to ensure that all frames in 60fps segments are captured. There will be a lot of duplicate frames in the output; as such, use of a codec such as Lagarith that can store null frames is suggested.
- Set "Demo" to your Mupen executable and set "Target" to a target filename, then click "kkapture!". Mupen will start.
- Load the game ROM; wait for the Glide64 text to disappear (and ideally for a recognisable action to appear on the screen, so that you know when playback of the movie starts).
- Pause Mupen.
- Utilities -> Movies -> Start Movie Playback; select the movie as earlier, check "Open Read-Only", and click OK (don't specify a pause frame).
- Load your save state from earlier.
- Unpause Mupen - you are now capturing. Do not attempt to move any part of the emulator window off-screen - it will ruin rendering on the off-screen area.
- At the end of desired playback, highlight a non-Mupen window and press the right CTRL key. (WARNING: this means you can't use right CTRL during video capture!) Mupen will exit upon doing so.
Some notes on this method:
- The capture may have an extra 20 pixel border at the bottom, which should be cropped out.
- The audio plugin may add a audio delay of around 192 ms (could be a function of the sound card).
- Duplicate frame removal is strongly recommended for captures using this method, given the number of duplicate frames in the video dump.
- The sound output may not be 44.1kHz. If it is not, it will generally be a very odd sampling rate, and you may resample the sound track to be 44.1kHz.
- On certain games, the capture FPS can be set to 60 FPS for a smoother capture.
Linux
There is no known completely reliable way to get stock builds of Mupen to play back effectively on Linux with video dumping. Some encoders have reported success with Wine; for others it fails miserably. At least two encoders have modified builds of Mupen in order to dump video reliably; ask on the forums for more information.
openMSX
Target settings
Resolution | Sound |
---|---|
640x480 | 44.1 KHz mono/stereo |
openMSX dumps video with the lossless ZMBV (Zipped Motion-Blocks Video) codec and audio in uncompressed WAV. The ZMBV encoder is built in (and will thus work on any platform). On Windows, openMSX comes with a separate codec dll to be able to play the resulting AVI on any installed media player. Make you sure you install that dll to be able to import the AVI file to AVISynth and preview it in VirtualDub.
The resolution used in this guide is 480p, but some games can safely be downscaled to 240p. Here's a list of resolutions MSX screen modes use. Run the replay as described below and type
toggle_info_panel
in openMSX internal console, that will tell you the mode used by the game (only the mode used for actual gameplay is relevant here).
Guide
IMPORTANT NOTES
- The replay file doesn't necessarily have to be on
C:\Documents and Settings\<user>\My Documents\openMSX\replays
(for Windows XP) or onC:\Users\<user>\Documents\openMSX\replays
(for Vista/Windows 7) or on/home
(Users
if you're using a Mac)/<user>/.openMSX/replays
(for Linux / Mac) (where<user>
is your user folder), but it's highly recommended that the replay is in that folder, as it'll be a bit easier to load the replay file. - As openMSX will use the exact same machine as specified in the replay file, you also need the system ROMs for that machine, which is explained in the openMSX Setup Guide. Of course, we don't provide them here.
- If you get unlucky enough to experience openmsx switch the framerate on the fly during video recording, it'd cause an av desync. To fight it, make use of this tcl script, it would split the file on each fps change.
Windows
The easiest way is to use this script.
@echo off
cd /d "%~dp0"
echo record start -doublesize ./movie.avi > dump.tcl
openmsx %1 -script dump.tcl
Save this as a batch file (
something.bat
) near your openmsx.exe
, put the movie there too, and drag'n'drop the movie onto the script. movie.avi
dump will appear in the same directory. When you're done, just close the emulator, it will properly stop the video recording.
The following is the old, manual way.
- Method 1: load manually from the console
- Open Catapult (openMSX GUI) or openMSX (non-GUI).
- In case you started Catapult, start openMSX with the Start button.
- In the openMSX window where the emulation is running, hit Pause to pause emulation.
- Hit F10 to bring up the openMSX console.
- Type
reverse loadreplay -viewonly <replay>
(where<replay>
is the replay file you want to dump as AVI), then hit Enter. You can use TAB-completion to find the replay file easier.
- Method 2: auto load
- Drop the replay on openMSX.exe (or start openMSX from the command line with the replay file as only argument)
- In the openMSX window where the emulation is running, hit Pause to pause emulation.
- Hit F10 to bring up the openMSX console.
- Type
reverse goto 0
to jump back to the beginning of the replay
- Type
record start -doublesize raw
(whereraw
is the file name of the AVI, then hit Enter. You are now capturing audio/video.- Note: the reason why
-doublesize
is needed is because some MSX2 modes are 512x212 - Note: it will automatically detect if the currently emulated MSX can output stereo sound or mono sound and use that in the resulting AVI
- Note: the reason why
- Unpause emulation. (Pause key)
- Hit F9 to speed up emulation (if you don't want to wait for the whole movie to play at normal time).
- When you reach the desired end point, pause emulation, type
record stop
, then hit Enter.
The AVI dump is to be found on
C:\Documents and Settings\<user>\My Documents\openMSX\videos
(for Windows XP) or on C:\Users\<user>\Documents\openMSX\videos
(for Vista/Windows 7) (where <user>
is your user folder)
Linux / Mac
- Basically the same as for Windows, except that the AVI file is to be found on
/home
(Users
if you're using a Mac)/<user>/.openMSX/videos
(where<user>
is your user folder). - The hot keys to open the console, pause and speed up emulation are different on Mac, though, see the openMSX User's manual.
If you don't know if the emulated MSX can output mono or stereo sound, open the AVI dump in any media player, e.g. VLC or MPlayer.
This whole guide can also be found (in other words) in the openMSX FAQ part of the manual.
For more information about openMSX, please check the complete openMSX manual.
PCEjin
Target settings
Resolution | Sound |
---|---|
(variable)[5] | 44.1KHz stereo |
Guide
Windows
- Load the ROM.
- Turn on Fast-Forward mode by pressing T.
- Pause emulation. (Pause key)
- Load the movie file.
- Select File -> Record AVI. Choose a file name (such as
raw.avi
), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK. - Unpause emulation. At this point, audio and video are now being captured in real-time.
- When you reach the desired end point, select File -> Stop AVI.
Linux
PCEjin is Windows-only, but works well with Wine. You may also be able to play back the movie with recent builds of Mednafen (see above).
PCSX
Target settings
Resolution | Sound |
---|---|
(variable)[3] | 44.1KHz stereo |
- WARNING: PCSX is not particularly stable and requires an unusual video dumping setup. It also dumps video files that may require a not-insignificant amount of video post-processing effort. It is not a good first choice of emulator for new encoders.
- NOTE: Don't forget to pick the bios. SCPH-1001 for NTSC-U, SCPH-1000 for NTSC-J, SCPH-1002 for PAL. If you have problems, ask the judge or the author.
Spikestuff has compiled sync notes for each problematic movie.
- NOTE: If it's a multi-disc movie, leave the ISO path field in the CD-ROM config blank. That will let you select both discs at proper time.
- WARNING: This guide will not produce publication quality captures. Use of Aktan's special methods is required. The automated version of the resync setup can be found here.
Guide
Windows
PCSX's native AVI dumping is broken - it does not result in synchronised sound - so external capture software is required; for this purpose, custom PCSX .kkapture is used for its ability to preserve all of the frames in the input at the expected frame rate.
You may wish to use an alternate sound plugin for improved sound compatibility. The MIDAS plugin has been reported to be sync-compatible with the TAS Sound plugin while offering slightly better sound emulation; alternatively, you can attempt to use the Eternal SPU plugin which offers the best known sound emulation but which does not sync reliably, use of the automated version of the resync setup which can be found here is highly recommended.
If the game has graphical issues where characters are not visible then grab Pete's Soft Driver 1.54 and Activate Special Game Fixes and Enable No Sprite Transparancy Abe games.
- Configure PCSX's plugins for playback and close PCSX.
- Go to Configuration -> Graphics (You must use TAS Soft Plugins 0.2)
- In Stretching, select 1:1 (faster with some cards)
- In Dithering, select Always dither g-shaded polygons (slowest)
- If you are using PCSX-Resync enable Skip SPU Loadstate in the Tools menu, this will correct any lost audio.
- Open .kkapture.
- Under Demo, select the
pcsx
executable. - Under Arguments, enter
-play movie.pxm
(wheremovie.pxm
is the name of the movie file). - Under Target, select the desired target AVI file (such as
raw.avi
). - Set the FPS to 60 for NTSC games or 50 for PAL games.
- Select kkapture!. This will start PCSX and start the dumping process.
- Once the desired endpoint is reached, close PCSX.
Linux
PCSX is Windows-only. Further, .kkapture does not work with Wine. There has been at least one report of using a version of glc modified to sync video and capture all frames for a successful PCSX encode in a Linux environment.
PSXjin
Target settings
Resolution | Sound |
---|---|
(variable)[3] | 44.1KHz stereo |
Guide
- NOTE: Dumps from PSXjin are slightly wrong. Use this (unofficial) version instead.
- NOTE: Don't forget to pick the bios. SCPH-1001 for NTSC-U, SCPH-1000 for NTSC-J, SCPH-1002 for PAL. If you have problems, ask the judge or the author.
Windows
- Go to Configuration -> Graphics
- In Stretching, select 1:1 (faster with some cards)
- In Dithering, select Always dither g-shaded polygons (slowest)
- Uncheck FPS limit
- Make sure Use Frame skipping is unchecked.
- Click OK.
- Go to Configuration -> Sound
- In Mode, select 2: Synchronous (tas safe, buffering glitches).
- Click OK.
- Load the ISO by going to File -> Open CD.
- Pause emulation. (Pause key)
- Select File -> Movie -> Start playback, or press CTRL + R to load a movie file.
- Select File -> Record AVI. Choose a file name (such as raw.avi), and a lossless RGB codec of your choice (see Common settings for suggestions). Click OK.
- Unpause emulation. At this point, an audio file and multiple video files (one per resolution change) are now being captured
- When you reach the desired end point, select File -> Stop AVI
- You'll need to resize each video part into the largest width and largest height captured.
Linux
TODO
Snes9x
Target settings
Resolution | Sound |
---|---|
256x224 (NTSC), 256x240 (PAL) | 48KHz stereo[1] |
Guide
Windows
Note: This applies to v1.43 v17 and most revisions of v1.51. Earlier versions of v1.43 have a different menu layout.
- Select Config -> Speed -> Frame skip -> skip 0.
- Select Config -> Sound -> Playback rate -> 48KHz.[1]
- If you're using v1.43, select Config -> Video -> Display Configuration... and make sure that "Bi-Linear Mode 7" is checked.
- Load the ROM.
- Set speed to about 400% (= key or Config -> Speed -> Set Speed).
- Pause emulation (Pause key).
- Load the movie file, with Sync Sound checked (it increases sound resolution).
- Select File -> Audio/Video Recording -> Start AVI Recording. Choose a file name (such as
raw.avi
), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK. - Unpause emulation. You are now capturing audio/video.
- When you reach the desired end point, select File -> Audio/Video Recording -> Stop AVI Recording.
Linux
At present, there's no known method other than Wine to get video output from v1.51 movies. A patch has been written for the v1.43 source code in order to get video output, but this may not be compatible with newer movies.
VBjin
Target settings
Resolution | Sound |
---|---|
384x224 | 44.1KHz stereo |
Guide
NOTE: Special encoding steps are required.
Windows
- Load the ROM.
- Pause emulation. (Pause key)
- Load the movie file.
- Select File -> Record AVI. Choose a file name (such as
raw.avi
), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK. - Unpause emulation. At this point, audio and video are now being captured.
- When you reach the desired end point, select File -> Stop AVI.
Linux
VBjin is Windows-only, but works well with Wine.
VisualBoyAdvance
Target settings
Resolution | Sound |
---|---|
160x144 (GB), 240x160 (GBA) | 44.1KHz stereo |
Guide
Windows
- Go to Options -> Sound -> 44 KHz.
- Go to Options -> Gameboy Mode -> Gameboy Colors.
- Open the ROM.
- Speed up to 300% or more. (
=
key) - Pause emulation. (
Pause
key) - Select Tools -> Movie -> Play Movie and select the movie file you want to dump to AVI.
- If you are running a Game Boy game that is Super Game Boy compatible but the movie does not run in Super Game Boy mode, enable Options -> Gameboy Mode -> Game Boy (GB).
- Select Tools -> Start AVI Recording. Choose a file name (such as
raw.avi
), and choose a lossless RGB codec of your choice (see Common settings for suggestions). Click OK. - Unpause emulation. At this point, audio and video are now being captured.
- When you reach the desired end point, select Tools -> Stop AVI Recording.
Linux
TODO
Yabause
Target settings
Resolution | Sound |
---|---|
320x240 | 44.1KHz stereo |
Guide
Windows
TODO
Linux
TODO
[1]: The SNES has a 32KHz native sampling rate, but using this option in Snes9x tends to result in sound desynchronisation.
[2]: For the N64, you can rip at an integer multiple of this resolution and scale it down to the appropriate size during the Pre-encoding stage.
[3]: Games for the PSX use many resolutions; 320x240 is the most common.
[4]: Mednafen, being cross-platform, uses the resolution of whatever platform it is currently emulating.
[5]: Most games for the PCE that have been run are one of 256x224, 256x232, 320x232, or 320x240.
[6]: There is no standard resolution for this platform.
[7]: Depends on game. Usually 640x400, sometimes 640x480, rarely something else (measure size of frames shown during in-game sequences. Some games have different resolution in menu and in actual game).
[8]: Depends on game. If game only uses PCM output with constant sampling rate, that sampling rate should be used. Otherwise sampling rate should be set to 44.1kHz or 48kHz.
[9]: PSG High Quality actually distorts PSG noises by performing filtering on the sound. As a result, sharp noises become very washed out and soft. For example, Sonic's jumping noise.
[10]: Famtasia was not meant to have video dumping capabilities. It had the feature hacked into it by blip.
[11]: Famtasia incorrectly renders the NES's 240 scanlines. It shifts the topmost one to the bottom of the display. Furthermore, the 224 scanlines version (without the 240 scanlines patch) cuts off the bottom 16 scanlines instead of 8 from the top and 8 from the bottom. This results in 8 extra scanlines being displayed at the top and 8 fewer at the bottom. The best practice is to apply the 240 scanlines patch and remove the extra scanlines (NTSC) or move the bottom one to the proper location (PAL) after dumping.
[2]: For the N64, you can rip at an integer multiple of this resolution and scale it down to the appropriate size during the Pre-encoding stage.
[3]: Games for the PSX use many resolutions; 320x240 is the most common.
[4]: Mednafen, being cross-platform, uses the resolution of whatever platform it is currently emulating.
[5]: Most games for the PCE that have been run are one of 256x224, 256x232, 320x232, or 320x240.
[6]: There is no standard resolution for this platform.
[7]: Depends on game. Usually 640x400, sometimes 640x480, rarely something else (measure size of frames shown during in-game sequences. Some games have different resolution in menu and in actual game).
[8]: Depends on game. If game only uses PCM output with constant sampling rate, that sampling rate should be used. Otherwise sampling rate should be set to 44.1kHz or 48kHz.
[9]: PSG High Quality actually distorts PSG noises by performing filtering on the sound. As a result, sharp noises become very washed out and soft. For example, Sonic's jumping noise.
[10]: Famtasia was not meant to have video dumping capabilities. It had the feature hacked into it by blip.
[11]: Famtasia incorrectly renders the NES's 240 scanlines. It shifts the topmost one to the bottom of the display. Furthermore, the 224 scanlines version (without the 240 scanlines patch) cuts off the bottom 16 scanlines instead of 8 from the top and 8 from the bottom. This results in 8 extra scanlines being displayed at the top and 8 fewer at the bottom. The best practice is to apply the 240 scanlines patch and remove the extra scanlines (NTSC) or move the bottom one to the proper location (PAL) after dumping.