diff src/com/aurellem/capture/examples/Basic.java @ 24:5f616cc420dd

improved WaveFileWriter using tritonus
author Robert McIntyre <rlm@mit.edu>
date Sun, 30 Oct 2011 04:42:40 -0700
parents c7a07eefaeea
children 7184bc09a92e 3dc1f15e1e13
line wrap: on
line diff
     1.1 --- a/src/com/aurellem/capture/examples/Basic.java	Sun Oct 30 04:22:14 2011 -0700
     1.2 +++ b/src/com/aurellem/capture/examples/Basic.java	Sun Oct 30 04:42:40 2011 -0700
     1.3 @@ -26,9 +26,6 @@
     1.4  		File video = File.createTempFile("JME-water-video", ".avi");
     1.5  		File audio = File.createTempFile("JME-water-audio", ".wav");
     1.6  		
     1.7 -		System.out.println(video.getCanonicalPath());
     1.8 -		System.out.println(audio.getCanonicalPath());
     1.9 -		
    1.10  		SimpleApplication app = new TestPostWater();
    1.11  		app.setTimer(new IsoTimer(60));
    1.12  		app.setShowSettings(false);
    1.13 @@ -37,5 +34,8 @@
    1.14  		Capture.captureAudio(app, audio);
    1.15  		
    1.16  		app.start();
    1.17 +		
    1.18 +		System.out.println(video.getCanonicalPath());
    1.19 +		System.out.println(audio.getCanonicalPath());
    1.20  	}
    1.21  }