CS 101 - Introduction to Computing, Fall 2010

Lab 12

This lab will have you combine two sound files to add a "background" soundtrack to a foreground sound. The following files of the Gettysburg Address and the Preamble of the U.S. Constitution are great foreground sound files.

The background file should be repeated it if is not as long as the foreground file. We will also want to make the background sound quieter than it originally is, so we wish to make its volume a third of its original value. The example program of Lect1111c.java is a good starting place for this lab. Here are some good files for the background sound:

To combine two sound files, you simply just add the sample values together. The only problem occurs if the resulting value goes above 32,767 or below -32,768. A simple solution is to use an if statement to check for this. Two simple if statements can check for this and correct the problem if it occurs. To correct this, just set the value to either 32,767 if the value was greater than 32,767 or set the value to -32768. if the value was less than -32,768.

Lab Assignment 12

Due: Thursday 11/18/2010 by 11:59 pm

Create a Java program that will:

  1. Contain a comment indicating

  2. Contain the main() method that will

  3. Contain the method combineSounds() that will

  4. You are also to submit the Java file electronically via the assignment link for Lab 12 in BLackboard.
Here are some example sound files you can use with this assignment.