Making Animation from Stills

Spread the love

Hi, my name is Jasmine, and I’m 7 years old. Today I made two animated movies, The Basket (1m 18s long) and Snowbell’s Accident (2m 23s long) (Nov 2nd, new with audio!) Enjoy!

I made these by taking still photographs of the action with my dad’s iPhone and then recording an audio soundtrack (for the second animation). My dad then assembled the stills into an animation and layered on the soundtrack (see below for how). I’m working to add music to it — check again soon!

The Basket (1m 18s long) (silent film)
The Pets find a cozy basket. But amidst all the hustle and bustle, will anyone be able to take a nap?

Snowbell’s Accident 2m 23s long)(Nov 2nd, new with audio!)
Snowbell the cat has a terrible accident. Will her family be able to act quickly enough to save her?

Animation (2m 23s long) made from stills assembled into an sequence playing at 1 frame per second.

Animation (2m 23s long) made from stills assembled into an sequence playing at 1 frame per second.


How-to instructions, for Windows PC, using free software. (written by Jasmine’s daddy)

1. How to make Animations from Stills
Use Total Commander with two free plugins: (1) the Graphic Converter plugin converts the iPhone’s native HEIC images to PNG files, and can compresses the images to reduce data bulk; (2) the AVI plugin (Alt+F5) sequences images at a user selectable speed (frames-per-second 1 to 30) and image compression quality (Full 100% or MS Video 1 @ 75% compression)

2. How to record Audio soundtrack
Use Audacity (download the zip file which is portable). This will allow you to record one or multiple audio tracks, edit them, add effects if desired, and export to an audio file (MP3). (Audacity quickstart.) For good sound quality, it’s worth investing in a good USB headset with microphone (Logitech makes decent ones, even at the lower price points). (Note that Comparable software to Audacity have $30-$50 licenses.) Troubleshooting: If the sound bars jump to yellow/red whenever you’re recording, you likely have sound amplification (e.g. +10dB boost) or other enhancement configured. Fix: turn off such settings from Windows control panel (Control Panel > Sound > Microphone > Recording). Or, you could try the free online voice recorder, but you’ll have less control in the editing studio department than with Audacity.

3. How to merge animation video and audio soundtrack
Download the portable version of FFMPEG video/audio converter. Using this you can merge separate audio and video tracks with the following simple command line script which you putting it in the same location as the audio and video files, and updating the variables of the script to your filenames and directory structure:

@echo off
echo Merge AVI video and MP3 audio with FFMPEG (AE, Nov 2, 2019, v1)
:: configure the below to match your setup
set ffdir=c:\totalcmd\ffmpeg64\bin
set video=snowbells_accident_jasmine_second_take_silent.avi
set audio=snowbells-accident-audio_track4.mp3
pause
:: instruction
%ffdir%\ffmpeg.exe -i %video% -i %audio% -c:v copy -c:a aac -strict experimental output.avi

Note: This should work for FFMPEG versions even as old as from 2012.

(For those who like Total Commander, the AVIWCX plugin looks promising, though FFMPEG will have many more options and be able to input and output many more AV formats.)

4. Concatenating (merging, joining, chaining) video files (works with FFMPEG 4.4.1, not with
Use FFMPG concatenate video function:


@echo off
echo Concatenating selected videos with FFMPEG (AE, Jan 2, 2020 v1)
:: configure the below to match your setup
set ffdir=c:\totalcmd\ffmpeg64\bin
pause
:: instruction
%ffdir%\ffmpeg -y -f concat -i list.txt -vcodec copy -acodec copy merged.MOV

This concatenates files in list.txt, which is formatted as:

# comment
file IMG_2814.MOV
file IMG_2818.MOV
file IMG_2822.MOV
file IMG_2826.MOV

5. Hosting your video on YouTube
Get an account with YouTube. This is the easiest and quickest way to get your video content on the web. No need to deal with storage, download rates, server bandwidth. With the embedding link, you can get the player to appear within your own webpage and play the content.

That’s it! Enjoy!

2 comments to Making Animation from Stills

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

  

  

  

Your comments are valued! (Please indulge the gatekeeping question as spam-bots cannot (yet) do simple arithmetic...) - required

Optionally add an image (JPEG only)

 

Stats: 1,066,417 article views since 2010 (March update)

Dear Readers:

Welcome to the conversation!  We publish long-form pieces as well as a curated collection of spotlighted articles covering a broader range of topics.   Notifications for new long-form articles are through the feeds (you can join below).  We love hearing from you.  Feel free to leave your thoughts in comments, or use the contact information to reach us!

Reading List…

Looking for the best long-form articles on this site? Below is a curated list by the main topics covered.

Mathematics-History & Philosophy

  1. What is Mathematics?
  2. Prehistoric Origins of Mathematics
  3. The Mathematics of Uruk & Susa (3500-3000 BCE)
  4. How Algebra Became Abstract: George Peacock & the Birth of Modern Algebra (England, 1830)
  5. The Rise of Mathematical Logic: from Laws of Thoughts to Foundations for Mathematics
  6. Mathematical Finance and The Rise of the Modern Financial Marketplace
  7. A Course in the Philosophy and Foundations of Mathematics
  8. The Development of Mathematics
  9. Catalysts in the Development of Mathematics
  10. Characteristics of Modern Mathematics

Electronic & Software Engineering

  1. Electronics in the Junior School - Gateway to Technology
  2. Coding for Pre-Schoolers - A Turtle Logo in Forth
  3. Experimenting with Microcontrollers - an Arduino development kit for under £12
  4. Making Sensors Talk for under £5, and Voice Controlled Hardware
  5. Computer Programming: A brief survey from the 1940s to the present
  6. Forth, Lisp, & Ruby: languages that make it easy to write your own domain specific language (DSL)
  7. Programming Microcontrollers: Low Power, Small Footprints & Fast Prototypes
  8. Building a 13-key pure analog electronic piano.
  9. TinyPhoto: Embedded Graphics and Low-Fat Computing
  10. Computing / Software Toolkits
  11. Assembly Language programming (Part 1 | Part 2 | Part 3)
  12. Bare Bones Programming: The C Language

Pure & Applied Mathematics

  1. Fuzzy Classifiers & Quantile Statistics Techniques in Continuous Data Monitoring
  2. LOGIC in a Nutshell: Theory & Applications (including a FORTH simulator and digital circuit design)
  3. Finite Summation of Integer Powers: (Part 1 | Part 2 | Part 3)
  4. The Mathematics of Duelling
  5. A Radar Tracking Approach to Data Mining
  6. Analysis of Visitor Statistics: Data Mining in-the-Small
  7. Why Zero Raised to the Zero Power IS One

Technology: Sensors & Intelligent Systems

  1. Knowledge Engineering & the Emerging Technologies of the Next Decade
  2. Sensors and Systems
  3. Unmanned Autonomous Systems & Networks of Sensors
  4. The Advance of Marine Micro-ROVs

Math Education

  1. Teaching Enriched Mathematics, Part 1
  2. Teaching Enriched Mathematics, Part 2: Levelling Student Success Factors
  3. A Course in the Philosophy and Foundations of Mathematics
  4. Logic, Proof, and Professional Communication: five reflections
  5. Good mathematical technique and the case for mathematical insight

Explore…

Timeline