Commit Graph

1158 Commits

Author SHA1 Message Date
Ben Fry
ee9584bf53 Merge pull request #2588 from kfeuz/Issue2364
Implements the active() method for Serial and Server (Issue #2364).
2014-11-14 15:01:17 -07:00
Ben Fry
c832bde934 Merge pull request #2922 from kfeuz/Issue2576
Fixes NPE when calling ip() on disconnected clients.
2014-11-14 14:43:04 -07:00
Ben Fry
badd307ec9 Merge pull request #2578 from kfeuz/Issue2577
Fixes NPE when writing to disconnected client, Issue #2577
2014-11-14 14:31:14 -07:00
wirsing
ebe8d3664d Moved sound library to processing-sound 2014-11-06 14:01:41 -08:00
codeanticode
180a100f64 Merge pull request #2898 from federicobond/lwjgl-fix
Pass correct offset to glCopyTexSubImage2D
2014-11-03 11:39:11 -05:00
Kyle Feuz
3f01414d01 Changed ip() to return null when client has disconnected 2014-11-01 23:08:58 -06:00
Federico Bond
ce5daefffd Use 1.7 as source and target Java version 2014-10-20 23:52:26 -03:00
Wilm Thoben
b271f85ff4 Merge pull request #2897 from federicobond/sound-fix
Fix infinite recursion in sound library
2014-10-16 18:22:11 -07:00
wirsing
bb96d9388b fixed mp3 loading problem for osx and added failsafe if file is not existing. 2014-10-16 18:00:18 -07:00
Federico Bond
7c99811e55 Pass correct offset to glCopyTexSubImage2D 2014-10-13 02:48:33 -03:00
Federico Bond
37f5151d4e Fix infinite recursion in sound library 2014-10-13 02:36:01 -03:00
wirsing
6cc68ad1da attempt to fix 32bit load library problem with little success. 2014-09-24 18:46:45 -07:00
Federico Bond
768c72e4e8 Replace instances of StringBuffer with StringBuilder 2014-09-13 20:12:23 -03:00
wirsing
8ea07aa413 added 32bit win dll's, updated todo 2014-09-06 14:28:17 -07:00
wirsing
6a07e47a86 added windows 64 bit support and made platform specific library loader. 2014-08-25 18:19:17 -07:00
REAS
91679d072f Change to Sound library to re-enable building the project 2014-08-18 15:49:53 -07:00
Wilm Thoben
9fabe7cfaf Update Engine.java
missing mix method fix
2014-08-18 09:37:27 -07:00
Daniel Shiffman
36898624d0 adding missing method re #2797 2014-08-17 22:19:36 -04:00
wirsing
46e47ed994 added library folder + changed win build file for jnilib 2014-08-14 17:00:46 -07:00
wirsing
279cc0fb44 fixed FFT Crash with FFT Sizes smaller than Audio Buffer Size 2014-08-11 15:43:53 -07:00
Ben Fry
ada4423aa9 deal with some warnings and other notes 2014-07-31 21:18:46 -04:00
Ben Fry
bff235dcb9 throw exception if Server constructor fails 2014-07-30 21:37:12 -04:00
Ben Fry
62d76f588d remove welcome chatter; not recommded for libraries, never part of core libs 2014-07-30 17:25:58 -04:00
Ben Fry
e28a61c453 remove minim, remove sound.jar, add sound to build process 2014-07-26 11:43:28 -04:00
wirsing
4a60bfbfd2 repaired Filter + took out res + introduced Bandwidth for BPass. fixed some public/private bugs 2014-07-25 20:10:33 -07:00
wirsing
09bac0b1a0 updated doc pdf, made interfaces non-public + added noise interface 2014-07-21 19:42:14 -07:00
wirsing
c52911db73 Fixed FFT Bug 2014-07-17 20:03:35 -07:00
wirsing
fbf8dbeca9 updated todo.txt 2014-07-17 15:30:51 -07:00
wirsing
be62826a0e AudioInput works now 2014-07-17 15:29:13 -07:00
wirsing
cde6050277 effects can be passed to analyzers. started on making inputs modulatable 2014-07-16 11:49:07 -07:00
wirsing
be6b60bb81 updated todo.txt 2014-07-11 10:40:25 -07:00
wirsing
f7d9ac924c Added todo.txt 2014-07-11 10:39:07 -07:00
wirsing
1a0620d23c Revised Examples + fixed WhiteNoise Bug 2014-07-10 18:59:37 -07:00
wirsing
57f9f3c7a5 Added Reverb Class 2014-07-10 17:47:28 -07:00
wirsing
a8337dfd13 Fixed loop jump() issue 2014-07-06 17:47:04 -07:00
wirsing
251e23dd63 added .jump() for SoundFile 2014-07-06 17:15:08 -07:00
wirsing
969328b342 Added Brown Noise 2014-07-05 21:04:35 -07:00
wirsing
c7feaa1bbf added PinkNoise + changed filter Classes to long names 2014-07-03 23:38:44 -07:00
wirsing
f4b2b36e0d Removed Sound class, added Engine + Audio Device. No need to start a stream anymore. 2014-07-01 18:47:40 -07:00
wirsing
4d6e986a60 bugfixed 2014-06-27 19:35:15 -07:00
wirsing
3f470bfb2b defaulted start values for SoundObject
updated + reorganized examples
changed process() to analyze for analyzers
changed play() to process() for effects
2014-06-27 19:26:15 -07:00
wirsing
3ad8315ffd updated README 2014-06-27 18:41:46 -07:00
wirsing
678fc45e53 Added sound library 2014-06-27 18:19:09 -07:00
Kyle Feuz
6274986bd6 Implements the active() method for Serial and Server (Issue #2364). 2014-06-10 23:22:08 -07:00
Kyle Feuz
94e01acb7b Fixes Issue #2576 NPE when calling ip() on disconnected clients. 2014-06-10 01:37:46 -07:00
REAS
a7dbe905f8 All examples removed from processing/processing 2014-06-09 23:50:50 -07:00
REAS
4ae60c7aa5 Books removed from Examples 2014-06-09 23:45:49 -07:00
Kyle Feuz
3a7a1c07b5 Fixes NPE when writing to disconnected client, Issue #2577 2014-06-09 23:06:17 -07:00
codeanticode
4956ef2d81 delete video library now in processing-video 2014-06-05 17:03:07 -04:00
Jonathan Feinberg
bd3fe3514c Permit implementing serialEvet and serialAvailable without having to link to Serial at buildtime.
This is useful for Python mode, or any other Java-compatible Processing that doesn't allow reflection on the sketch.
2014-05-19 20:42:26 -04:00