comparison src/com/aurellem/capture/IVideoRecorder.java @ 3:a92de00f0414

migrating files
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 11:55:55 -0700
parents
children
comparison
equal deleted inserted replaced
2:59509c585530 3:a92de00f0414
1 package com.aurellem.capture;
2
3 import java.awt.image.BufferedImage;
4
5 public interface IVideoRecorder{
6
7 void record(BufferedImage image);
8
9 void pause();
10
11 void start();
12
13 /**
14 * closes the video file, writing appropriate headers, trailers, etc.
15 * After this is called, no more recording can be done.
16 */
17 void finish();
18
19 }
20
21