├── .gitignore ├── ButterworthFilter ├── ButterworthFilter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── WavePlayer Debug.xcscheme │ │ └── WavePlayer Release.xcscheme ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── GrainSynth ├── Makefile ├── MusicBoxCam.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MusicBoxCam Debug.xcscheme │ │ └── MusicBoxCam Release.xcscheme ├── Project.xcconfig ├── addons.make ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── GranularSynth ├── GranularSynth.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── GranularSynth Debug.xcscheme │ │ └── GranularSynth Release.xcscheme ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── data │ ├── sound15.wav │ └── stereo.wav ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── MicroInput ├── Makefile ├── MicroInput.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── MicroInput Debug.xcscheme │ │ └── MicroInput Release.xcscheme ├── Project.xcconfig ├── addons.make ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── MusicBoxCam ├── Makefile ├── MusicBoxCam.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MusicBoxCam Debug.xcscheme │ │ └── MusicBoxCam Release.xcscheme ├── Project.xcconfig ├── addons.make ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── README.md ├── WavePlayer ├── Makefile ├── Project.xcconfig ├── WavePlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── WavePlayer Debug.xcscheme │ │ └── WavePlayer Release.xcscheme ├── addons.make ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── ofxAudioEffect.cpp ├── ofxAudioEffect.h ├── ofxAudioGen.h ├── ofxAudioGenConstants.h ├── ofxAudioSynth.cpp ├── ofxAudioSynth.h ├── ofxBaseAudioGen.h ├── ofxButterworthFilterEffect.cpp ├── ofxButterworthFilterEffect.h ├── ofxDelayEffect.cpp ├── ofxDelayEffect.h ├── ofxGrain.cpp ├── ofxGrain.h ├── ofxGranularSynth.cpp ├── ofxGranularSynth.h ├── ofxGranulateEffect.cpp ├── ofxGranulateEffect.h ├── ofxMicroInput.cpp ├── ofxMicroInput.h ├── ofxNoiseSynth.cpp ├── ofxNoiseSynth.h ├── ofxSawSynth.cpp ├── ofxSawSynth.h ├── ofxSineSynth.cpp ├── ofxSineSynth.h ├── ofxSquareSynth.cpp ├── ofxSquareSynth.h ├── ofxWavePlayer.cpp └── ofxWavePlayer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/.gitignore -------------------------------------------------------------------------------- /ButterworthFilter/ButterworthFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/ButterworthFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ButterworthFilter/ButterworthFilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/ButterworthFilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ButterworthFilter/ButterworthFilter.xcodeproj/xcshareddata/xcschemes/WavePlayer Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/ButterworthFilter.xcodeproj/xcshareddata/xcschemes/WavePlayer Debug.xcscheme -------------------------------------------------------------------------------- /ButterworthFilter/ButterworthFilter.xcodeproj/xcshareddata/xcschemes/WavePlayer Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/ButterworthFilter.xcodeproj/xcshareddata/xcschemes/WavePlayer Release.xcscheme -------------------------------------------------------------------------------- /ButterworthFilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/Makefile -------------------------------------------------------------------------------- /ButterworthFilter/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/Project.xcconfig -------------------------------------------------------------------------------- /ButterworthFilter/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioGen 2 | ofxGui 3 | -------------------------------------------------------------------------------- /ButterworthFilter/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/config.make -------------------------------------------------------------------------------- /ButterworthFilter/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ButterworthFilter/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/src/main.cpp -------------------------------------------------------------------------------- /ButterworthFilter/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/src/ofApp.cpp -------------------------------------------------------------------------------- /ButterworthFilter/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/ButterworthFilter/src/ofApp.h -------------------------------------------------------------------------------- /GrainSynth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/Makefile -------------------------------------------------------------------------------- /GrainSynth/MusicBoxCam.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/MusicBoxCam.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GrainSynth/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Debug.xcscheme -------------------------------------------------------------------------------- /GrainSynth/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Release.xcscheme -------------------------------------------------------------------------------- /GrainSynth/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/Project.xcconfig -------------------------------------------------------------------------------- /GrainSynth/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioGen 2 | -------------------------------------------------------------------------------- /GrainSynth/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/config.make -------------------------------------------------------------------------------- /GrainSynth/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/openFrameworks-Info.plist -------------------------------------------------------------------------------- /GrainSynth/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/src/main.cpp -------------------------------------------------------------------------------- /GrainSynth/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/src/ofApp.cpp -------------------------------------------------------------------------------- /GrainSynth/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GrainSynth/src/ofApp.h -------------------------------------------------------------------------------- /GranularSynth/GranularSynth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/GranularSynth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GranularSynth/GranularSynth.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/GranularSynth.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GranularSynth/GranularSynth.xcodeproj/xcshareddata/xcschemes/GranularSynth Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/GranularSynth.xcodeproj/xcshareddata/xcschemes/GranularSynth Debug.xcscheme -------------------------------------------------------------------------------- /GranularSynth/GranularSynth.xcodeproj/xcshareddata/xcschemes/GranularSynth Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/GranularSynth.xcodeproj/xcshareddata/xcschemes/GranularSynth Release.xcscheme -------------------------------------------------------------------------------- /GranularSynth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/Makefile -------------------------------------------------------------------------------- /GranularSynth/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/Project.xcconfig -------------------------------------------------------------------------------- /GranularSynth/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioGen 2 | ofxGui 3 | -------------------------------------------------------------------------------- /GranularSynth/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/config.make -------------------------------------------------------------------------------- /GranularSynth/data/sound15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/data/sound15.wav -------------------------------------------------------------------------------- /GranularSynth/data/stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/data/stereo.wav -------------------------------------------------------------------------------- /GranularSynth/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/openFrameworks-Info.plist -------------------------------------------------------------------------------- /GranularSynth/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/src/main.cpp -------------------------------------------------------------------------------- /GranularSynth/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/src/ofApp.cpp -------------------------------------------------------------------------------- /GranularSynth/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/GranularSynth/src/ofApp.h -------------------------------------------------------------------------------- /MicroInput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/Makefile -------------------------------------------------------------------------------- /MicroInput/MicroInput.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/MicroInput.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MicroInput/MicroInput.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/MicroInput.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MicroInput/MicroInput.xcodeproj/xcshareddata/xcschemes/MicroInput Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/MicroInput.xcodeproj/xcshareddata/xcschemes/MicroInput Debug.xcscheme -------------------------------------------------------------------------------- /MicroInput/MicroInput.xcodeproj/xcshareddata/xcschemes/MicroInput Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/MicroInput.xcodeproj/xcshareddata/xcschemes/MicroInput Release.xcscheme -------------------------------------------------------------------------------- /MicroInput/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/Project.xcconfig -------------------------------------------------------------------------------- /MicroInput/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioGen 2 | -------------------------------------------------------------------------------- /MicroInput/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/config.make -------------------------------------------------------------------------------- /MicroInput/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/openFrameworks-Info.plist -------------------------------------------------------------------------------- /MicroInput/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/src/main.cpp -------------------------------------------------------------------------------- /MicroInput/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/src/ofApp.cpp -------------------------------------------------------------------------------- /MicroInput/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MicroInput/src/ofApp.h -------------------------------------------------------------------------------- /MusicBoxCam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/Makefile -------------------------------------------------------------------------------- /MusicBoxCam/MusicBoxCam.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/MusicBoxCam.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MusicBoxCam/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Debug.xcscheme -------------------------------------------------------------------------------- /MusicBoxCam/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/MusicBoxCam.xcodeproj/xcshareddata/xcschemes/MusicBoxCam Release.xcscheme -------------------------------------------------------------------------------- /MusicBoxCam/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/Project.xcconfig -------------------------------------------------------------------------------- /MusicBoxCam/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioGen 2 | -------------------------------------------------------------------------------- /MusicBoxCam/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/config.make -------------------------------------------------------------------------------- /MusicBoxCam/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/openFrameworks-Info.plist -------------------------------------------------------------------------------- /MusicBoxCam/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/src/main.cpp -------------------------------------------------------------------------------- /MusicBoxCam/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/src/ofApp.cpp -------------------------------------------------------------------------------- /MusicBoxCam/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/MusicBoxCam/src/ofApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ofxAudioGen 2 | -------------------------------------------------------------------------------- /WavePlayer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/Makefile -------------------------------------------------------------------------------- /WavePlayer/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/Project.xcconfig -------------------------------------------------------------------------------- /WavePlayer/WavePlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/WavePlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WavePlayer/WavePlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/WavePlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WavePlayer/WavePlayer.xcodeproj/xcshareddata/xcschemes/WavePlayer Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/WavePlayer.xcodeproj/xcshareddata/xcschemes/WavePlayer Debug.xcscheme -------------------------------------------------------------------------------- /WavePlayer/WavePlayer.xcodeproj/xcshareddata/xcschemes/WavePlayer Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/WavePlayer.xcodeproj/xcshareddata/xcschemes/WavePlayer Release.xcscheme -------------------------------------------------------------------------------- /WavePlayer/addons.make: -------------------------------------------------------------------------------- 1 | ofxAudioGen 2 | ofxGui 3 | -------------------------------------------------------------------------------- /WavePlayer/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/config.make -------------------------------------------------------------------------------- /WavePlayer/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/openFrameworks-Info.plist -------------------------------------------------------------------------------- /WavePlayer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/src/main.cpp -------------------------------------------------------------------------------- /WavePlayer/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/src/ofApp.cpp -------------------------------------------------------------------------------- /WavePlayer/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/WavePlayer/src/ofApp.h -------------------------------------------------------------------------------- /src/ofxAudioEffect.cpp: -------------------------------------------------------------------------------- 1 | #include "ofxAudioEffect.h" 2 | -------------------------------------------------------------------------------- /src/ofxAudioEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxAudioEffect.h -------------------------------------------------------------------------------- /src/ofxAudioGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxAudioGen.h -------------------------------------------------------------------------------- /src/ofxAudioGenConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxAudioGenConstants.h -------------------------------------------------------------------------------- /src/ofxAudioSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxAudioSynth.cpp -------------------------------------------------------------------------------- /src/ofxAudioSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxAudioSynth.h -------------------------------------------------------------------------------- /src/ofxBaseAudioGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxBaseAudioGen.h -------------------------------------------------------------------------------- /src/ofxButterworthFilterEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxButterworthFilterEffect.cpp -------------------------------------------------------------------------------- /src/ofxButterworthFilterEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxButterworthFilterEffect.h -------------------------------------------------------------------------------- /src/ofxDelayEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxDelayEffect.cpp -------------------------------------------------------------------------------- /src/ofxDelayEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxDelayEffect.h -------------------------------------------------------------------------------- /src/ofxGrain.cpp: -------------------------------------------------------------------------------- 1 | #include "ofxGrain.h" 2 | -------------------------------------------------------------------------------- /src/ofxGrain.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ofxGranularSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxGranularSynth.cpp -------------------------------------------------------------------------------- /src/ofxGranularSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxGranularSynth.h -------------------------------------------------------------------------------- /src/ofxGranulateEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxGranulateEffect.cpp -------------------------------------------------------------------------------- /src/ofxGranulateEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxGranulateEffect.h -------------------------------------------------------------------------------- /src/ofxMicroInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxMicroInput.cpp -------------------------------------------------------------------------------- /src/ofxMicroInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxMicroInput.h -------------------------------------------------------------------------------- /src/ofxNoiseSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxNoiseSynth.cpp -------------------------------------------------------------------------------- /src/ofxNoiseSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxNoiseSynth.h -------------------------------------------------------------------------------- /src/ofxSawSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxSawSynth.cpp -------------------------------------------------------------------------------- /src/ofxSawSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxSawSynth.h -------------------------------------------------------------------------------- /src/ofxSineSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxSineSynth.cpp -------------------------------------------------------------------------------- /src/ofxSineSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxSineSynth.h -------------------------------------------------------------------------------- /src/ofxSquareSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxSquareSynth.cpp -------------------------------------------------------------------------------- /src/ofxSquareSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxSquareSynth.h -------------------------------------------------------------------------------- /src/ofxWavePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxWavePlayer.cpp -------------------------------------------------------------------------------- /src/ofxWavePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludoviclaffineur/ofxAudioGen/HEAD/src/ofxWavePlayer.h --------------------------------------------------------------------------------