Install recordMyDesktop from the terminal
sudo apt-get install recordmydesktop gtk-recordmydesktop
Drag the area of the screen you wish to record using the small preview of the whole screen. Click record when ready. The video will save as out.ogv
Next you'll need FFMpeg. The easiest way is to install WinFF from the Ubuntu Software Centre.
Create a folder to hold all the frames you're going to generate
mkdir frames
Next run this to split the video into PNG frames. JPEG is too compressed.
ffmpeg -i out.ogv frames/frame%d.png
Now you'll have all the frames.
Run GIMP Image Editor from the menu. Select File > Open as Layers... and hold down the shift key to select the frames you want. You can crop or do any image processing here if need be. Then File > Save as and give a .gif extension to your file. Save as animated GIF. You are done.
2 comments:
I get this error:
[image2 @ 0x2676d70]Could not open file : frames/frame1.png
Hi, sounds to me like you have a write permission issue. What path are you running this on? Thanks - Chris
Post a Comment