1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
JSynJSyn is a modular audio synthesizer for Java by Phil Burk. You can use JSyn to create unit generators, such as oscillators, filters, and envelopes. Units can be connected together and controlled in real-time from a Java program. More information about JSyn, including documentation, is at: http://www.softsynth.com/jsyn/ Pre-compiled JSyn JAR files are at: http://www.softsynth.com/jsyn/developers/download.php The JSyn source code is available at: https://github.com/philburk/jsyn Building JSynYou can build JSyn using either Ant or Gradle. Build Using AntEnter:
The resulting jar will be placed in "dist/lib/". To run the built-in test App on a desktop, enter something like this:
but with the correct date. To create javadocs enter:
Build Using GradleEnter:
The resulting jar will be placed in "build/libs/". To run the built-in test App on a desktop, enter something like this:
but with the correct version. Test Using GradleTo run the unit tests, enter:
JSyn - Copyright 1997 Mobileer Inc |