Cleaner AllSoundtracks example.
This commit is contained in:
parent
5552589502
commit
aaf65c3a9b
|
@ -1,37 +1,29 @@
|
||||||
import processing.sound.*;
|
import processing.sound.*;
|
||||||
import soundtrack.optical.*;
|
import soundtrack.optical.*;
|
||||||
|
|
||||||
SoundtrackOptical soundtrack1;
|
SoundtrackOptical[] soundtracks = {null, null, null, null, null };
|
||||||
SoundtrackOptical soundtrack2;
|
String[] types = { "unilateral", "variable area", "dual variable area", "maurer", "variable density" };
|
||||||
SoundtrackOptical soundtrack3;
|
|
||||||
SoundtrackOptical soundtrack4;
|
|
||||||
SoundtrackOptical soundtrack5;
|
|
||||||
|
|
||||||
//String soundtrackFile = "../../data/barking.wav";
|
String soundtrackFile = "../../data/barking.wav";
|
||||||
String soundtrackFile = "/Users/matthewmcwilliams9/Documents/Processing/optical_soundtrack/barking.wav";
|
|
||||||
int dpi = 2400;
|
int dpi = 2400;
|
||||||
float volume = 1.0;
|
float volume = 1.0;
|
||||||
String pitch = "long";
|
String pitch = "long";
|
||||||
boolean positive = true;
|
boolean positive = true;
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
size(1065, 620);
|
size(1065, 620, P2D);
|
||||||
soundtrack1 = new SoundtrackOptical(this, soundtrackFile, dpi, volume, "unilateral", pitch, positive);
|
for (int i = 0; i < types.length; i++) {
|
||||||
soundtrack2 = new SoundtrackOptical(this, soundtrackFile, dpi, volume, "variable area", pitch, positive);
|
soundtracks[i] = new SoundtrackOptical(this, soundtrackFile, dpi, volume, types[i], pitch, positive);
|
||||||
soundtrack3 = new SoundtrackOptical(this, soundtrackFile, dpi, volume, "dual variable area", pitch, positive);
|
}
|
||||||
soundtrack4 = new SoundtrackOptical(this, soundtrackFile, dpi, volume, "maurer", pitch, positive);
|
|
||||||
soundtrack5 = new SoundtrackOptical(this, soundtrackFile, dpi, volume, "variable density", pitch, positive);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void draw () {
|
void draw () {
|
||||||
soundtrack1.frame(0, 0);
|
for (int i = 0; i < types.length; i++) {
|
||||||
soundtrack2.frame(213, 0);
|
soundtracks[i].frame(i * 213, 0);
|
||||||
soundtrack3.frame(213 * 2, 0);
|
}
|
||||||
soundtrack4.frame(213 * 3, 0);
|
|
||||||
soundtrack5.frame(213 * 4, 0);
|
|
||||||
|
|
||||||
stroke(255, 0, 0);
|
stroke(255, 0, 0);
|
||||||
for (int i = 1; i < 5; i++) {
|
for (int i = 1; i < types.length; i++) {
|
||||||
line(213 * i, 0, 213 * i, height);
|
line(213 * i, 0, 213 * i, height);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue