comparison src/com/aurellem/capture/video/AVIVideoRecorder.java @ 15:be5ac56826be

created part of the advanced documentation
author Robert McIntyre <rlm@mit.edu>
date Fri, 28 Oct 2011 06:52:46 -0700
parents 4c5fc53778c1
children 784a3f4e6202
comparison
equal deleted inserted replaced
14:e299cd89074d 15:be5ac56826be
36 try {out.writeFrame(frame);} 36 try {out.writeFrame(frame);}
37 catch (IOException e){e.printStackTrace();} 37 catch (IOException e){e.printStackTrace();}
38 } 38 }
39 39
40 public void finish() { 40 public void finish() {
41 System.out.println("I'm finished! <3");
42 try {out.close();} 41 try {out.close();}
43 catch (IOException e) {e.printStackTrace();} 42 catch (IOException e) {e.printStackTrace();}
44 } 43 }
45 44
46 45