Tuesday, August 23, 2011

Frame-by-frame Analysis of the Famous Socialnomics Video

One of the most impressive promotional videos I have seen is Eric Qualman's "Socialnomics" 2009 video:


I believe there are newer versions of this video, but the key points of the following analysis hold for this and other such videos.

The target audience = business owners

This is, without a doubt, a 2:35 expostulation of advertising through social media.  It is filled with facts that are of most interest to business owners who meet the following descriptions:

  • Aged 40+
  • Owners / seniors in business
  • Not computer experts
  • Not avid users of social media

Viewers who are younger, do not have a controlling stake in the business, or are already comfortable with social networking and the prominent websites mentioned will either be unimpressed or will not need much convincing.

Let's have a look at the main argument:  (Click to see a full sized map)

It's not the most incisive analysis, but it gives a good overview.


As we can see, the argument is not cogent: it is an assemblage of unconnected facts that are cleverly worked appeals to fear.  Here is a great resource on fallacies of reasoning.

But it is nevertheless very compelling viewing.

Why?

Presentation.

Every statistic, every assertion, every description is presented in snappy, engaging animated text and images to well selected music.

Here is a frame-by-frame analysis of the holds (static text or image on screen) and transitions, performed using OpenShot Video Editor:

A few key points:

  • Longest Transition = 100 frames = 3.3 seconds
  • Longest Hold = 175 frames = 5.83 seconds
  • Average Transition = 9 frames = just under 1/3 of a second
  • Average Hold = 31.16 = just over one second
  • Number of Cuts = 19 = a cut every eight seconds on average

Note the following distributions:



What this means is that for most of the video the text and images are moving almost continuously .  And when they're not in motion, they're only dead still for 1-3 seconds.
Likewise, transitions are almost too fast to follow -- over half of them occur in less than a third of a second!

However, it is also worth noting:
  • The screen goes blank 15 times
  • There are very few instances of more than one item moving on screen

What does this mean for your video?

  1. Keep it brief, 
  2. Keep it coming, 
  3. Don't change more than one thing on screen at a time.
Oh, and have fun ;-)

I Didn't Think I Could Love OpenShot Any More Than I Do, But I Was Wrong

Over the last couple of years, I have supported the OpenShot project in every way I could, and have been inspired by its evolution under the guidance of Jonathan Thomas -- the guy deserves a medal.

One feature that I needed was a keyboard shortcut for adding a marker.  So with a little bit of grep I managed to find the information I needed in the MainGTK.py file.

Here is what my change looks like in code:

if self.is_edit_mode == False:
            if keyname == "c":
                # Cut all tracks at this point (whereever the playhead is)
                self.cut_at_playhead()
                return True
           
            if keyname == "m":
                # Experimental, trying to add a keyboard shortcut for adding a marker
                self.on_tlbAddMarker_clicked(widget)
                return True   


Here is what my change looks like on screen:




And here is what my change looks like on face:




Thank you, JT and the OpenShot community, for this magnificent software :D