So today i wanted to write a small tutorial html page.
I thought maybe it is not bad to have animated gifs as instructional images.
Well, with linux it was kinda trivial to make it work
GeSHi`ed bash code for
screengiffed.sh 1
2
3
4
56
7
8
9
1011
12
13
|
#!/bin/bash
cd ${0%/*}
mkdir ./gifs
rm ./out.ogvrm ./out.gif
rm gifs/out.gif
sleep 3
beep
recordmydesktop --no-soundffmpeg -i out.ogv -pix_fmt rgb24 -r 6 -s 800x600 out.gif # 10 FPS
convert -layers Optimize out.gif gifs/out.gif
|
Of course there is lot´s of room for improving, but i will upload my first try with that little script:
(attachment takes a while)