Some random data visualisation things I made into a repo so I wouldn't lose them.
Go to file
Paco Hope 7da4d9e816 Took out -c:v and -c:a which you don't do on gif. 2024-03-18 09:10:45 -04:00
LICENSE Initial commit 2017-03-26 15:18:03 +01:00
README.md Took out -c:v and -c:a which you don't do on gif. 2024-03-18 09:10:45 -04:00
bounded-voronoi.html Removed the litle dot for the mouse and all the mouse movement bits. 2017-03-26 15:32:52 +01:00
voronoi.html Updated README, committed two voronois. 2017-03-26 15:24:54 +01:00

README.md

Random Data Visualisation stuff

This is just some random stuff I wanted to put somewhere since I spent time figuring it out.

Convert mov to mp4 trivially.

ffmpeg -i input.mov -c:v copy -c:a copy output.mp4

convert movie clip to animated gif

From blog post. Original documentation

START="01:13:22"
AMOUNT="8"
FPS=10
ffmpeg -ss $START -t $AMOUNT -i input.mp4 -r $FPS output.gif