comparison src/com/aurellem/capture/video/VideoRecorder.java @ 53:3dc1f15e1e13

going to write main documentation
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 13:54:47 -0600
parents 784a3f4e6202
children
comparison
equal deleted inserted replaced
52:d799a0278cc9 53:3dc1f15e1e13
9 * @param image the image to write 9 * @param image the image to write
10 */ 10 */
11 void record(BufferedImage image); 11 void record(BufferedImage image);
12 12
13 /** 13 /**
14 * stop recording temporarally. The recording can be started again 14 * Stop recording temporarily. The recording can be started again
15 * with start() 15 * with start()
16 */ 16 */
17 void pause(); 17 void pause();
18 18
19 /** 19 /**
20 * start the recording. 20 * Start the recording.
21 */ 21 */
22 void start(); 22 void start();
23 23
24 /** 24 /**
25 * closes the video file, writing appropriate headers, trailers, etc. 25 * Closes the video file, writing appropriate headers, trailers, etc.
26 * After this is called, no more recording can be done. 26 * After this is called, no more recording can be done.
27 */ 27 */
28 void finish(); 28 void finish();
29 } 29 }