Well, there might be a day in your life where you have to make a product video with limited budget/time and skill or you might fall in love in with the TEDed videos like me and wanted to create one . Okay , now lets watch the video.
Choosing the sandbox
I sat down to find the best suite of tools for making a 2d short film( List of 2d animation software). I evaluated each one of them carefully based on its availability(free or otherwise) and learning curve it possesses . Finally, I settled with Synfig, but only after spending a day with it, I realized that it will work good with Linux distros and not in El Capitan(newer MacOSx). So , I iterated my skillset to find a combination that would help me. Finally, I came up with the list
Create animation with CSS3 keyframes and JS (for refined controls)
Use a browser in full screen and record the scene using an HD recorder
Add background sounds and voice over using a movie editor preferably iMovie.
Make a movie out of all the videos recorded
Git Initialization
Initialize the folder with Git . Every scene in the short film will be a git branch
Every scene will definitely have common assets and functionality. All of this will go into the master branch. For eg. In the fish story, the background, the underground bubbles, the clouds are going to be the same always.
All the scenes will either check out from the master branch or the immediate scene before it .
You can switch back for the scenes by checking out to different branches
CSS keyframes
CSS3’s keyframes are the most underused features. It has multiple sophisticated capabilities with simple
syntatic structure.
You can loop an animation, provide a transition to it and define what the element should like at each state. For the water bubbles that came out from the bottom in the film the css is like
This will be for one bubble , I populated the bubble using JS.
<div id="bubble-holder">
</div>
Orchestration using JS
JS is very much needed to make the co ordination between different animations of different characters.
Listen to the key stroke and perform necessary actions. You ll feel like making an actual film shooting except you have to tell “ACTION” using your mind voice .
But who is recording all this ?
You need a HD screenrecorder to record whats going on the screen. Make sure you set your browser to full screen. The screen recorder is like cinematograper for your movie
Post production
Finally , you have to combine all the videos that was shot into a sequence of scences with narration and background music.
You will need a video editor to do all this. iMovie (free for mac) is one of the best and has a small learning curve although .
Your movie is as good as your assets(images, css, sound), CSS3 animation and your patience. Thanks for stopping by