Prerequisites:
- decent hardware, depending on the quality you want to achieve
- lots of free disk space (about 500 mb per minute for low quality vids)
Install glc according to their tutorial.
Step 2:
Start spring with
Code: Select all
glc-capture -o captured spring
- "-f #" - capture # frames per seconds (reduce this if you experience stuttering while recording or in the video, it decreases the load alot), 30 is default
- "-r #" - scale the video, 1.0 is default. This will actually slow things down if you set it to anythng except 1.0 or 0.5. In other cases, its much better to resize the window or use another resolution
Extract the sound with
Code: Select all
glc-play captured -a 1 -o audio.wav
Extract the video in YUV4MPEG form
Code: Select all
glc-play captured -y 1 -o video.y4m
The video editing program I use, avidemux cannot handle YUV4MPEG, so transcode it into uncompressed video in avi container:
Code: Select all
mencoder -of avi -ovc raw video.y4m -o video.avi
Edit, transcode, cut or publish with your favorite video editing programs (this should involve muxing video and audio back together):