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:
| package main | |
| import( | |
| "log" | |
| "net/url" | |
| "net/http" | |
| "net/http/httputil" | |
| ) | |
| func main() { |
| var app = angular.module('plunker', []); | |
| app.controller('MainCtrl', function($scope, $timeout) { | |
| $scope.save = function(){ | |
| $scope.loading = true; | |
| $timeout(function(){ | |
| $scope.loading = false; | |
| }, 3000); | |
| }; |