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:
| --- | |
| - hosts: all | |
| sudo: yes | |
| tasks: | |
| - name: Update packages list | |
| apt: update_cache=yes | |
| when: ansible_os_family == 'Debian' | |
| - name: List packages to upgrade (1/2) |
| #!/bin/bash | |
| if [ "$#" -ne 1 ] ; then | |
| echo "Usage: $0 <title>" >&2 | |
| exit 1 | |
| fi | |
| title=`echo "$1" |sed 's/ /-/g'` | |
| fileName="_posts/`date +%Y-%m-%d-$title.markdown`" |