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:
| import hashlib | |
| import sys | |
| try: | |
| website_name = sys.argv[1] | |
| hash_value = hashlib.md5(website_name) | |
| print(hash_value.hexdigest().upper() + ".png") | |
| except Exception, e: |