diff options
| -rw-r--r-- | README | 16 | ||||
| -rw-r--r-- | ofxMaxim/ofxMaxim/libs/maxiGrains.h | 2 |
2 files changed, 17 insertions, 1 deletions
@@ -5,6 +5,22 @@ |__|_| (____ /__/\_ \__|__|_| /__|____/__(____ /___| / \/ \/ \/ \/ \/ \/ +::::::::::::::::::::::::::What's Maximilian? + +Maximilian is an audio synthesis and signal processing library written in C++. It's cross-platform compatible with MacOS, Windows, Linux and IOS systems. The main features are: + +- sample playback, recording and looping +- read from WAV and OGG files. +- a selection of oscillators and filters +- enveloping +- multichannel mixing for 1, 2, 4 and 8 channel setups +- controller mapping functions +- effects including delay, distortion, chorus, flanging +- granular synthesis, including time and pitch stretching +- atom synthesis +- realtime music information retrieval functions: spectrum analysis, spectral features, octave analysis, and MFCCs +- example projects for Windows and MacOS, using command line and OpenFrameworks environments + :::::::::::::::::::::::::::BASIC EXAMPLES diff --git a/ofxMaxim/ofxMaxim/libs/maxiGrains.h b/ofxMaxim/ofxMaxim/libs/maxiGrains.h index e95d026..e3b7664 100644 --- a/ofxMaxim/ofxMaxim/libs/maxiGrains.h +++ b/ofxMaxim/ofxMaxim/libs/maxiGrains.h @@ -274,7 +274,7 @@ public: delete(*it); it = grains.erase(it); }else{ - ++it; + it++; } } return total; |
