Skip to content

The source code of some silly spiky animation I made

License

Notifications You must be signed in to change notification settings

Erkaman/spiky-anim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spiky Animation Source Code

The source code of some silly spiky animation I made. This program creates a bunch of SVGs(they are the frames of the animation), converts them all to png, and then makes a mp4 video file from them.

Animated

Making the Animation

You can build using make:

make

You can now generate all frames by doing

./spiky

this will generate all frames into temp/, and put a video file in ./out.mp4. But this will only work if you have the programs rsvg-convert and ffmpeg installed! And it will probably only work on Linux or OS X. You can now convert out.mp4 to a nice gif by using for instance gifgen:

gifgen -f 30 -o spiky.gif out.mp4