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 | |
# Path to the BKLibrary file | |
BKLIBRARY_PATH=~/Library/Containers/com.apple.iBooksX/Data/Documents/BKLibrary | |
# Check if BKLibrary file exists | |
if [ ! -f "$BKLIBRARY_PATH/BKLibrary-"*".sqlite" ]; then | |
echo "BKLibrary file not found. Please make sure Books app is installed and has been opened at least once." | |
exit 1 | |
fi |