Mercurial > jmeCapture
view src/com/aurellem/capture/video/IVideoRecorder.java @ 10:4c5fc53778c1
moved randelshofer stuff to rightfull place, enabled XuggleVideoRecorder
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Wed, 26 Oct 2011 09:38:27 -0700 |
parents | 5dfc9e768816 |
children |
line wrap: on
line source
1 package com.aurellem.capture.video;3 import java.awt.image.BufferedImage;5 public interface IVideoRecorder{7 void record(BufferedImage image);9 void pause();11 void start();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();19 }