BLOG@CACM
Education

Media Computation: For Creativity and Surprises

Posted
Georgia Institute of Technology Professor Mark Guzdial
In the responses I received to my “There’s an App for That” blog post led to the creation of a list of reasons for learning computing:
  1. because of the deep ideas and questions in computing that are important to know,
  2. because of the things you can build,
  3. because of the unique things you can express with computing, and
  4. as a tool for exploring ideas and data. 
 
The Media Computation approach that I work on is typically associated with the expression reason. Media Computation is an approach to introductory computing where students write programs to manipulate digital media (pixels of a picture, samples of a sound), in order to generate Photoshop-like filters, reverse sounds, create music, and implement digital video special effects.  Studies of the approach have shown an increase in success rates and in student motivation. (There are several Media Computation workshops being offered to faculty, for free, this summer.) Students use Media Computation to create images, sounds, music, and videos. However, we often find surprises in MediaComp classes, and thus, we use media computation for exploring ideas like how media are digitized and how humans perceive.  Here’s an example.

First a brief lesson: Digital sounds are made up of samples, essentially, measures of air pressure on a microphone at moments in time. For CD-quality sound, these samples are collected 44,100 times per second.  These samples typically have integer values varying between -32768 and 32767 because we typically collect 16 bit samples.

First time I ever taught MediaComp, and I taught the above facts, someone asked from the back of the room, “What if you set all the samples to 32767?!?  Would your speakers explode?” Try it — you hear nothing at all, except for maybe some speaker hum.  Human hearing is based on changes in sound pressures.  Having constant higher pressure isn’t sound.

But, I offered him an alternative that gets to what he really wanted to do.  I opened a sound of me saying “This is a test.” (Click on that link to hear the sound.) Here’s what the visualization of the sound looks like in the Sound Explorer in our Python IDE, JES.
 


I then wrote a program to change the value of each sample.  If it’s at positive, make it as positive as it can possibly be.  If it’s not or zero, make it as negative as it can possibly be.

def maximize(sound):
  for sample in getSamples(sound):
    value = getSampleValue(sample)
    if value       setSampleValue(sample,-32768)
    if value > 0:
      setSampleValue(sample,32768)


The new sound visualization looks like this:
 
 
Before I hit play, I ask the class, “What’s it going to sound like?”  Usually, I get responses like “a mess” or “lots of noise.”  Then I ask a more specific question, “Will we hear the words ‘this is a test’?”  I will often even take a vote.  The majority of the class almost always vote, “No.”  Then we listen to the sound. Go ahead and try it.

Were you surprised?  While it is very noisy (try to work out why), we can make out the words.  Why?  Usually someone in the class figures out that we have not changed the frequency of the sound.  We’ve changed the amplitude of the sound, but the number of zero crossings and where they are (in time) has not changed at all.  That tells us that human understanding of speech is much more dependent on sound frequency than amplitude and thus volume.

There’s an interesting computer science implication here, too.  How many bits are necessary to record speech, per sample?  In this experiment, we’re showing that the answer is “one.”  We have re-encoded the sound into either high amplitude or low amplitude, 1 or 0.  And we can hear the speech.  What are all the bits (16 typically) that we normally use for encoding sound really representing?  There’s a question for another class.

Join the Discussion (0)

Become a Member or Sign In to Post a Comment

The Latest from CACM

Shape the Future of Computing

ACM encourages its members to take a direct hand in shaping the future of the association. There are more ways than ever to get involved.

Get Involved

Communications of the ACM (CACM) is now a fully Open Access publication.

By opening CACM to the world, we hope to increase engagement among the broader computer science community and encourage non-members to discover the rich resources ACM has to offer.

Learn More