This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| #!/bin/bash | |
| # THESE ARE NOTES, NOT TESTED AS SCRIPT! | |
| # We need the following to get and run teamcity agent | |
| sudo apt-get install openjdk-7-jre-headless | |
| sudo apt-get install unzip #For unzipping buildAgent.zip | |
| # For compiling Simple.Web | |
| sudo apt-get install ruby1.9.1 |
| // Simple JavaScript Templating | |
| // John Resig - http://ejohn.org/ - MIT Licensed | |
| (function(){ | |
| var cache = {}; | |
| this.tmpl = function tmpl(str, data){ | |
| // Figure out if we're getting a template, or if we need to | |
| // load the template - and be sure to cache the result. | |
| var fn = !/\W/.test(str) ? | |
| cache[str] = cache[str] || |