Thanks for Watching! video generator
With the power of Docker, ffmpeg, Node, and other technologies, you can make hilarious videos like this!
To make your own:
git clone https://github.com/pmaxhogan/thanks-for-watching
cd thanks-for-watching
# build and start
docker build -t thanks-for-watching .
docker run -d --rm --publish 8000:5000 --name thanks-for-watching thanks-for-watching:latest
# generate a video (replace with your own text)
curl -G --data-urlencode "$(echo -ne 'text=Top 10 Reasons to\nLove Pineapple on Pizza')" http://localhost:8000/video --output out.mp4
# play your video
vlc out.mp4
# remove the container when you're done
docker rm --force thanks-for-watching