From 55d5c2d31ec5c9ba2d5a9d6c9b108dc46608008b Mon Sep 17 00:00:00 2001 From: litter Date: Tue, 29 Oct 2019 01:19:25 -0400 Subject: [PATCH] Basic example --- examples/BasicOptical/BasicOptical.pde | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/examples/BasicOptical/BasicOptical.pde b/examples/BasicOptical/BasicOptical.pde index 2114541..a5cd4f4 100755 --- a/examples/BasicOptical/BasicOptical.pde +++ b/examples/BasicOptical/BasicOptical.pde @@ -1,9 +1,22 @@ +import processing.sound.*; //requires Sound library to work import soundtrack.optical.*; +SoundtrackOptical soundtrack; + +String soundtrackFile = "../../data/barking.wav"; //path to your mono audio file +int dpi = 2400; //the "resolution" of your soundtrack (library is designed for printing) +float volume = 1.0; //volume of the output, scaled from 0 to 1 +String type = "dual variable area"; //one of the following [unilateral, single variable area, dual variable area, multiple variable area] +String pitch = "long"; //whether the film is "long" or "short" pitch +boolean positive = true; //whether the film is positive or negative + void setup() { + size(213, 620); //this will perfectly fill the frame with the soundtrack @ 2400DPI + frameRate(24); //this will playback at realtime speed + soundtrack = new SoundtrackOptical(this, soundtrackFile, dpi, volume, type, pitch, positive); } void draw () { - -} + soundtrack.frame(0, 0); +} \ No newline at end of file