Skip to content

Instantly share code, notes, and snippets.

View polyrhythmatic's full-sized avatar
💭
🤓

Seth polyrhythmatic

💭
🤓
View GitHub Profile
@polyrhythmatic
polyrhythmatic / gist:64adc25cadc0e5b3fa1a80d6fd352973
Created June 6, 2017 01:52
syntax highlighting in RTF for keynote presentations etc
highlight -O rtf text.html --line-numbers --font-size 24 --font Inconsolata --style solarized-dark -W -J 50 -j 3 --src-lang html | pbcopy
for i in *.MP4;
do ffmpeg -i $i -filter:v "crop=810:1080:555:0" -f mpegts -codec:v mpeg1video -s 540x720 -b:v 800k -r 29.97 -bf 0 -an $i.ts;
done;