diff --git a/library.properties b/library.properties index 3f277ed..8f0959d 100755 --- a/library.properties +++ b/library.properties @@ -6,7 +6,7 @@ url = https://github.com/sixteenmillimeter/SoundtrackOptical categories = "Animation,Sound,Video & Vision" sentence = Framework for generating 16mm optical soundtracks from a digital audio file. paragraph = Create optical soundtracks in different styles to be used in super16 film-out -version = 3 -prettyVersion = 0.03a +version = 4 +prettyVersion = 0.04a minRevision = 2 #maxRevision = 2 diff --git a/library/SoundtrackOptical.jar b/library/SoundtrackOptical.jar index 56a987b..b16b5b6 100644 Binary files a/library/SoundtrackOptical.jar and b/library/SoundtrackOptical.jar differ diff --git a/src/soundtrack/optical/SoundtrackOptical.java b/src/soundtrack/optical/SoundtrackOptical.java index f447793..9aacbb3 100755 --- a/src/soundtrack/optical/SoundtrackOptical.java +++ b/src/soundtrack/optical/SoundtrackOptical.java @@ -75,8 +75,7 @@ public class SoundtrackOptical { FRAMES = (int) Math.ceil(soundfile.frames() / RAW_FRAME_H); frameSample = new float[RAW_FRAME_H]; - raw = parent.createGraphics(RAW_FRAME_W, RAW_FRAME_H);//mode option? - + raw = parent.createGraphics(RAW_FRAME_W, RAW_FRAME_H, parent.sketchRenderer()); for (int x = 0; x < soundfile.frames(); x++) { compare = soundfile.read(x);