On Apple:
convert -background black -fill white -font /Library/Fonts/Apple\ LiSung\ Light.ttf -size 1920x1080 -pointsize 120 -gravity center label:'Dink Thifferent' title.png
On Linux:
#! /bin/sh | |
lynx -source https://duckduckgo.com/?q=$1 | grep -o 'http://[^"]*' | grep -v w3 | head -n 1 |
Intro
Editng and Processing with FFMPEG and Imagemagick is fairly strait forword. Process your clips, concatenate, and compress. You need to make sure all you footage and title cards are the same resolution, framerate, and audio settings. You can convert the files when you first compress them to your working format.
Formats
Lossless Raw Video Format for editing.
#! /bin/sh | |
ipconfig getifaddr en0 |
layout | tags | date | title | published | slug |
---|---|---|---|---|---|
post |
blog |
2020-01-01 09:30 |
Blah Blah Blah |
true |
blah-blah-blah |
body { | |
max-width: 900px; | |
margin: 0 auto; | |
} | |
img { | |
max-width: 100%; | |
border-radius: 3px; | |
display: block; | |
margin-left: auto; |
#! /bin/sh | |
echo 'Pulling down Wordpress' | |
wget https://wordpress.org/latest.tar.gz | |
echo 'Extracting Wordpress' | |
tar -zxvf latest.tar.gz | |
cd wordpress | |
mv * ../ | |
cd .. | |
rm -Rf wordpress |