comparison src/com/aurellem/capture/examples/HelloVideoRecording.java @ 45:5cd9e6c65a93

system is shaping up
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 12:44:23 -0600
parents src/com/aurellem/capture/examples/HelloVideo.java@784a3f4e6202
children 74b53dfe369e
comparison
equal deleted inserted replaced
44:388f9d062012 45:5cd9e6c65a93
1 package com.aurellem.capture.examples;
2
3 import java.io.File;
4 import java.io.IOException;
5
6 import jme3test.helloworld.HelloLoop;
7
8 import com.aurellem.capture.IsoTimer;
9 import com.aurellem.capture.Capture;
10 import com.jme3.app.SimpleApplication;
11
12 public class HelloVideoRecording {
13
14 public static void main(String[] ignore) throws IOException {
15 SimpleApplication app = new HelloLoop();
16 File video = File.createTempFile("helloVideo", ".avi");
17 app.setTimer(new IsoTimer(60));
18 Capture.captureVideo(app, video);
19 app.start();
20 System.out.println(video.getCanonicalPath());
21 }
22 }