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:
| # Installation | |
| brew install ffmpeg --with-vpx --with-vorbis --with-libvorbis --with-vpx --with-vorbis --with-theora --with-libogg --with-libvorbis --with-gpl --with-version3 --with-nonfree --with-postproc --with-libaacplus --with-libass --with-libcelt --with-libfaac --with-libfdk-aac --with-libfreetype --with-libmp3lame --with-libopencore-amrnb --with-libopencore-amrwb --with-libopenjpeg --with-openssl --with-libopus --with-libschroedinger --with-libspeex --with-libtheora --with-libvo-aacenc --with-libvorbis --with-libvpx --with-libx264 --with-libxvid | |
| # Easy Peasy | |
| ffmpeg -i video.mp4 video.webm |
| set conf_name to text returned of ¬ | |
| (display dialog ¬ | |
| "Enter conference name:" with title ¬ | |
| "Schedule Conference" default answer ¬ | |
| "" default button 2) | |
| tell application "Things" | |
| set newProject to make new project ¬ | |
| with properties {name:conf_name} | |
| end tell |
| " flog wrappers | |
| function! FlogFile() | |
| let current = fnamemodify(expand("%"), ':p') | |
| call FlogAnalyze(current) | |
| endfunction | |
| function! FlogAll() | |
| call FlogAnalyze('app lib -g') | |
| endfunction |
| # | |
| # Author:: Adam Jacob (<[email protected]>) | |
| # Copyright:: Copyright (c) 2008 HJK Solutions, LLC | |
| # License:: GNU General Public License version 2 or later | |
| # | |
| # This program and entire repository is free software; you can | |
| # redistribute it and/or modify it under the terms of the GNU | |
| # General Public License as published by the Free Software | |
| # Foundation; either version 2 of the License, or any later version. | |
| # |
| it "should support one API key" do | |
| key = stub_model(ApiKey, :valid? => true) | |
| p = Provider.new(@valid_attributes) | |
| p.api_keys << key | |
| p.api_keys.should have(1).items # <= don't forget to add .items!! | |
| end |