diff src/com/aurellem/capture/examples/Basic.java @ 28:7184bc09a92e

need to solve audio recording clicks
author Robert McIntyre <rlm@mit.edu>
date Sun, 30 Oct 2011 10:00:29 -0700
parents 5f616cc420dd
children
line wrap: on
line diff
     1.1 --- a/src/com/aurellem/capture/examples/Basic.java	Sun Oct 30 08:10:26 2011 -0700
     1.2 +++ b/src/com/aurellem/capture/examples/Basic.java	Sun Oct 30 10:00:29 2011 -0700
     1.3 @@ -26,6 +26,7 @@
     1.4  		File video = File.createTempFile("JME-water-video", ".avi");
     1.5  		File audio = File.createTempFile("JME-water-audio", ".wav");
     1.6  		
     1.7 +		
     1.8  		SimpleApplication app = new TestPostWater();
     1.9  		app.setTimer(new IsoTimer(60));
    1.10  		app.setShowSettings(false);
    1.11 @@ -34,7 +35,7 @@
    1.12  		Capture.captureAudio(app, audio);
    1.13  		
    1.14  		app.start();
    1.15 -		
    1.16 +				
    1.17  		System.out.println(video.getCanonicalPath());
    1.18  		System.out.println(audio.getCanonicalPath());
    1.19  	}