Class MovieMaker

java.lang.Object
  extended by MovieMaker

public class MovieMaker
extends Object

Class to create frames for a movie

Author:
Barb Ericson

Constructor Summary
MovieMaker()
           
 
Method Summary
static void main(String[] args)
           
 void makeFadeOutMovie(String directory)
          Method to create a movie that fades out the person from one background to another.
 void makeFishMovie(String dir)
          Method to change the red and green values in the frames
 void makeKidsOnMoonMovie(String dir)
          Method to make a movie of the kids crawling on the moon
 void makeLighterMovie(String dir)
          Method to lighten the pixels that are near black in a movie
 void makeMommyWatchingMovie(String dir)
          Method to make a movie of barb's head moving and katie dancing
 void makeRectangleMovie(String directory)
          Method to make a movie that has a rectangle moving around
 void makeSunsetMovie(String directory)
          Method to slowly create a sunset
 void makeTickerTapeMovie(String directory, String message)
          Method to create a tickertape movie
 void makeTwoRectangleMovie(String directory)
          Method to make a movie that has a two rectangles moving around
 void moveMarksHead(String directory)
          Method to move Mark's head around
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MovieMaker

public MovieMaker()
Method Detail

makeRectangleMovie

public void makeRectangleMovie(String directory)
Method to make a movie that has a rectangle moving around

Parameters:
directory - the directory to put the movie frames

makeTickerTapeMovie

public void makeTickerTapeMovie(String directory,
                                String message)
Method to create a tickertape movie

Parameters:
directory - the directory to write to
message - the string to display

makeTwoRectangleMovie

public void makeTwoRectangleMovie(String directory)
Method to make a movie that has a two rectangles moving around

Parameters:
directory - the directory to put the movie frames

moveMarksHead

public void moveMarksHead(String directory)
Method to move Mark's head around


makeSunsetMovie

public void makeSunsetMovie(String directory)
Method to slowly create a sunset

Parameters:
directory - the directory to write to

makeFadeOutMovie

public void makeFadeOutMovie(String directory)
Method to create a movie that fades out the person from one background to another.

Parameters:
directory - the directory to write to

makeMommyWatchingMovie

public void makeMommyWatchingMovie(String dir)
Method to make a movie of barb's head moving and katie dancing

Parameters:
dir - the directory to read from and write to

makeKidsOnMoonMovie

public void makeKidsOnMoonMovie(String dir)
Method to make a movie of the kids crawling on the moon

Parameters:
dir - the directory to write the frames to

makeLighterMovie

public void makeLighterMovie(String dir)
Method to lighten the pixels that are near black in a movie

Parameters:
dir - the directory to write the frames to

makeFishMovie

public void makeFishMovie(String dir)
Method to change the red and green values in the frames

Parameters:
dir - the directory to write the frames to

main

public static void main(String[] args)