view 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
line wrap: on
line source
1 package com.aurellem.capture.examples;
3 import java.io.File;
4 import java.io.IOException;
6 import jme3test.helloworld.HelloLoop;
8 import com.aurellem.capture.IsoTimer;
9 import com.aurellem.capture.Capture;
10 import com.jme3.app.SimpleApplication;
12 public class HelloVideoRecording {
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 }