A monster monophonic synth, written in faust.
Here are two short audio demo's.
You can think of the macros as modulate-able presets, arranged in a cube. Each of the "modulation->1/2/3" settings cross-fades between two sides of the cube, in either the x,y or z dimension.
So: "modulation->1" cross-fades from preset 1,3,5 and 7 to 2,4,6,8. "modulation->2" cross-fades from preset 1,2,5,6 to 3,4,7,8. "modulation->3" cross-fades from preset 1,2,3,4 to 5,6,7,8.
By default, "modulation->1/2/3" are all 0, so you hear preset 1. When you turn up "modulation->1", the settings morph to preset 2.
git clone https://github.com/magnetophon/DigiDrie/
cd DigiDrie/faust/
To get a jack standalone app:
faust2jack -t 0 -time -midi DigiDrie.dsp && ./DigiDrie
It's quite a long compile for a single faust program, +/- 7 minutes on my hardware. The compiler is not hanging! ;)
To look at a block diagram:
faust -lang ocpp -t 0 -time -svg -f 1 DigiDiagram.dsp -o -drf /dev/null && xdg-open DigiDiagram-svg/process.svg
The file DigiDiagram.dsp
is slightly different from the main dsp, in that it doesn't use a cludge written in faust to work around the poor monophonic handeling faust currently has.
It increases the size of the diagram a lot, and doesn't help to clarify the actual synth.
This is work in progress. If something is not working, please open issue.
git clone --recursive https://github.com/magnetophon/DigiDrie/
cd DigiDrie/plugin/dpf
make -j
Plugins are built into DigiDrie/dpf/bin
.
DigiDrie
: JACK standaloneDigiDrie.lv2
: LV2DigiDrie-vst.so
: VST2To build plugin from Faust code, see plugin/data/README.md
.
Bug reports, feature requests and other issues welcome!