Video Recording Issues with 1.5.0-git
#1
Hey there, I'm trying to record some Ace Combat: Zero gameplay with the native recorder.
Audio seems to record just fine (defaults to ~/recording.wav) but instead of getting video when I press F12, I just get dumped frames.
Is this because the GNU/Linux version does not support video recording or am I doing something wrong?

[Image: suYq.png]
Reply

Sponsored links

#2
Nope, you're not doing anything wrong. The Linux version just dumps png frames and wav recordings, only the Windows version supports avi files.

After you're done recording, you can use ffmpeg to put both the png and wav files inside a mkv container:

Code:
For NTSC games:
ffmpeg -n -framerate 59.940 -i your_video/frame.%10d.png -i your_video/recording.wav -vcodec copy -acodec pcm_s16le your_video.mkv

For PAL games:
ffmpeg -n -framerate 50 -i your_video/frame.%10d.png -i your_video/recording.wav -vcodec copy -acodec pcm_s16le your_video.mkv
Reply




Users browsing this thread: 1 Guest(s)