view src/com/aurellem/capture/examples/HelloAudioRecording.java @ 49:121b6d7e4d3f

more friendly AppSettings handling
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 13:22:27 -0600
parents fc71e797f4fa
children 8a091a5f48fa
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.HelloAudio;
8 import com.aurellem.capture.Capture;
9 import com.aurellem.capture.IsoTimer;
10 import com.jme3.app.Application;
12 public class HelloAudioRecording {
14 public static void main(String[] ignore) throws IOException{
15 Application app = new HelloAudio();
16 File audio = File.createTempFile("JME-simple-audio", ".wav");
17 app.setTimer(new IsoTimer(60));
18 Capture.captureAudio(app, audio);
19 app.start();
20 System.out.println(audio.getCanonicalPath());
21 }
23 }