Library for generating optical soundtracks with Processing.
Go to file
mmcwilliams ee0b810c91 Add a note about the folder name when installing. SoundtrackOptical-master will not work. 2020-01-15 15:39:51 -05:00
.settings Create eclipse project for building jar of library. IDE is showing lots of errors. Will have to modify core functionality. 2019-10-29 00:15:19 -04:00
data Add two audio files to use with examples 2019-10-29 01:20:06 -04:00
examples Major API change, use `draw()` in place of `frame()` 2019-11-10 12:02:19 -05:00
library Use parent renderer 2019-11-10 12:27:21 -05:00
src/soundtrack/optical Use parent renderer 2019-11-10 12:27:21 -05:00
.classpath Build project to git repo 2019-10-29 01:19:54 -04:00
.gitignore Ignore DS_Store 2020-01-05 11:39:03 -05:00
.project Build project to git repo 2019-10-29 01:19:54 -04:00
LICENSE Add last name 2019-10-29 00:12:06 -04:00
README.md Add a note about the folder name when installing. SoundtrackOptical-master will not work. 2020-01-15 15:39:51 -05:00
library.properties Use parent renderer 2019-11-10 12:27:21 -05:00

README.md

soundtrack.optical

Download library

Library for generating 16mm optical soundtracks with Processing.

Install library by downloading library as .zip, uncompressing and placing SoundtrackOptical in your Processing library directory. Note: When extracting the .zip, the folder may be named "SoundtrackOptical-master" and should be renamed "SoundtrackOptical" before installing. Start up (or restart) Processing to use this library in a sketch.

Supports mono audio only (at the moment, feel free to contribute).

Draws various kinds of 16mm soundtracks. Read about them here..

  • unilateral
  • dual unilateral (in progress!)
  • single variable area
  • dual variable area
  • multiple variable area (Maurer)
  • variable density

Example Usage

import processing.sound.*;
import soundtrack.optical.*;

SoundtrackOptical soundtrack;

String soundtrackFile = "../../data/barking.wav";
int dpi = 2400;
float volume = 1.0;
String type = "dual variable area";
String pitch = "long";
boolean positive = true;

void setup() {
  size(213, 620, P2D);
  frameRate(24);
  soundtrack = new SoundtrackOptical(this, soundtrackFile, dpi, volume, type, pitch, positive);
}

void draw () {
  soundtrack.draw(0, 0);
}

Alternate usage

Use the frame(int x, int y, int frameNumber) method to draw specific frames--used for laying out multiple frames of soundtrack on a single screen.

void draw () {
	soundtrack.frame(0, 0, frameCount);
}