General repository for Wavetable Synthesis Capstone project at Portland State, Fall 2016 - Winter 2017
The purpose of this project is to provide a C++ library and accompanying Python utility scripts allowing realistic instrumentation audio to be synthesized on the Teensy 3.2/3.6 Arduino Digital Analog Converter (DAC).
The project consists of two main components:
The project documentation can be found at: https://teensyaudio.github.io/Wavetable-Synthesis/html/index.html.
The project's source is available on GitHub: https://github.com/TeensyAudio/Wavetable-Synthesis
The SoundFont decoder is a python utility to decode a SoundFont file into native C++ datatypes. The decoder can be run via a GUI or via the command line.
To run the pre-built version of the SoundfontDecoder, simply execute the SoundfontDecoder.exe executable
To run the GUI via Python, you must use Python3, specifically 3.6. The Sf2Utils Python package must be installed in order to run/build the decoder. Sf2Utils can be installed via pip install sf2utils
After dependancies have been installed, invoke with $ python3 controller.py
How to invoke the script: The -d
flag is for debug mode The -i
flag precedes the input file $ python decoder.py -i soundfont
$ python decoder.py -d -i soundfont
pyinstaller --onefile --noconsole --name SoundfontDecoder <path-to-wavetable-code>\controller.py
Additional Instructions for building on Ubuntu:
C++ class implementing wavetable synthesis. For in-depth class member and field descriptions, see https://teensyaudio.github.io/Wavetable-Synthesis/html/index.html