This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
highlight -O rtf text.html --line-numbers --font-size 24 --font Inconsolata --style solarized-dark -W -J 50 -j 3 --src-lang html | pbcopy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |