├── .github └── workflows │ └── all.yml ├── .gitignore ├── .gitmodules ├── CMake ├── Default.cmake ├── DefaultCXX.cmake ├── DefaultFortran.cmake └── Utils.cmake ├── CMakeLists.txt ├── LICENSE ├── Plugins └── .gitignore ├── README.md ├── SketchSynth.toe ├── TD-Faust.toe ├── TD-Faust ├── FaustCHOP.cpp ├── FaustCHOP.h ├── Info.plist └── faustchop_ui.cpp ├── assets ├── .gitignore ├── 60988__folktelemetry__crash-fast-14.wav ├── Pink Floyd - On the Run.mid ├── README.md ├── download_bitklavier.py ├── faustlibraries │ └── my_library.lib └── make_wavecycles.py ├── dsp_output └── .gitignore ├── faust2td.py ├── faust2touchdesigner ├── CMakeLists.txt ├── Info.plist ├── template_FaustCHOP.cpp ├── template_FaustCHOP.h └── template_faustaudio.h ├── reverb.dsp ├── thirdparty ├── .gitignore ├── TouchDesigner │ ├── CHOP_CPlusPlusBase.h │ ├── CPlusPlus_Common.h │ └── GL_Extensions.h ├── libfaust │ ├── .gitignore │ └── download_libfaust.py └── unistd │ └── unistd.h └── toxes └── FAUST ├── FAUST.tox ├── FaustGlobal.py ├── main_faust_base.tox └── script_build_ui.py /.github/workflows/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/.github/workflows/all.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMake/Default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/CMake/Default.cmake -------------------------------------------------------------------------------- /CMake/DefaultCXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/CMake/DefaultCXX.cmake -------------------------------------------------------------------------------- /CMake/DefaultFortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/CMake/DefaultFortran.cmake -------------------------------------------------------------------------------- /CMake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/CMake/Utils.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/Plugins/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/README.md -------------------------------------------------------------------------------- /SketchSynth.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/SketchSynth.toe -------------------------------------------------------------------------------- /TD-Faust.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/TD-Faust.toe -------------------------------------------------------------------------------- /TD-Faust/FaustCHOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/TD-Faust/FaustCHOP.cpp -------------------------------------------------------------------------------- /TD-Faust/FaustCHOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/TD-Faust/FaustCHOP.h -------------------------------------------------------------------------------- /TD-Faust/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/TD-Faust/Info.plist -------------------------------------------------------------------------------- /TD-Faust/faustchop_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/TD-Faust/faustchop_ui.cpp -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/60988__folktelemetry__crash-fast-14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/60988__folktelemetry__crash-fast-14.wav -------------------------------------------------------------------------------- /assets/Pink Floyd - On the Run.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/Pink Floyd - On the Run.mid -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/download_bitklavier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/download_bitklavier.py -------------------------------------------------------------------------------- /assets/faustlibraries/my_library.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/faustlibraries/my_library.lib -------------------------------------------------------------------------------- /assets/make_wavecycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/assets/make_wavecycles.py -------------------------------------------------------------------------------- /dsp_output/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.xml -------------------------------------------------------------------------------- /faust2td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/faust2td.py -------------------------------------------------------------------------------- /faust2touchdesigner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/faust2touchdesigner/CMakeLists.txt -------------------------------------------------------------------------------- /faust2touchdesigner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/faust2touchdesigner/Info.plist -------------------------------------------------------------------------------- /faust2touchdesigner/template_FaustCHOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/faust2touchdesigner/template_FaustCHOP.cpp -------------------------------------------------------------------------------- /faust2touchdesigner/template_FaustCHOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/faust2touchdesigner/template_FaustCHOP.h -------------------------------------------------------------------------------- /faust2touchdesigner/template_faustaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/faust2touchdesigner/template_faustaudio.h -------------------------------------------------------------------------------- /reverb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/reverb.dsp -------------------------------------------------------------------------------- /thirdparty/.gitignore: -------------------------------------------------------------------------------- 1 | libsndfile-*win64 -------------------------------------------------------------------------------- /thirdparty/TouchDesigner/CHOP_CPlusPlusBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/thirdparty/TouchDesigner/CHOP_CPlusPlusBase.h -------------------------------------------------------------------------------- /thirdparty/TouchDesigner/CPlusPlus_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/thirdparty/TouchDesigner/CPlusPlus_Common.h -------------------------------------------------------------------------------- /thirdparty/TouchDesigner/GL_Extensions.h: -------------------------------------------------------------------------------- 1 | // Stub file for simpler CHOP usage than an OpenGLTOP 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /thirdparty/libfaust/.gitignore: -------------------------------------------------------------------------------- 1 | win64* 2 | darwin* 3 | ubuntu* 4 | *.dmg 5 | *.exe -------------------------------------------------------------------------------- /thirdparty/libfaust/download_libfaust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/thirdparty/libfaust/download_libfaust.py -------------------------------------------------------------------------------- /thirdparty/unistd/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/thirdparty/unistd/unistd.h -------------------------------------------------------------------------------- /toxes/FAUST/FAUST.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/toxes/FAUST/FAUST.tox -------------------------------------------------------------------------------- /toxes/FAUST/FaustGlobal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/toxes/FAUST/FaustGlobal.py -------------------------------------------------------------------------------- /toxes/FAUST/main_faust_base.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/toxes/FAUST/main_faust_base.tox -------------------------------------------------------------------------------- /toxes/FAUST/script_build_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBraun/TD-Faust/HEAD/toxes/FAUST/script_build_ui.py --------------------------------------------------------------------------------