Build a synth in C++: Difference between revisions
Jump to navigation
Jump to search
(Created page with "JUCE Tutorials https://docs.juce.com/master/tutorial_sine_synth.html Build a sine wave synthesiser Learn how to use a sine wave to synthesise a basic musical tone. Let th...") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
JUCE Tutorials | JUCE Tutorials | ||
[[https://docs.juce.com/master/tutorial_sine_synth.html Build a sine wave synthesiser]] | |||
* [[https://docs.juce.com/master/tutorial_simple_synth_noise.html Build a white noise generator]] | |||
Create a basic audio app that outputs some sound. In this example, we will build a simple white noise generator. | |||
* [[https://docs.juce.com/master/tutorial_sine_synth.html Build a sine wave synthesiser]] | |||
Learn how to use a sine wave to synthesise a basic musical tone. Let the user modify the pitch of the tone from the graphical user interface. | Learn how to use a sine wave to synthesise a basic musical tone. Let the user modify the pitch of the tone from the graphical user interface. | ||
* [[https://docs.juce.com/master/tutorial_synth_using_midi_input.html Build a MIDI synthesiser]] | |||
This tutorial implements a polyphonic sine wave synthesiser that responds to MIDI input. This makes use of the Synthesiser class and related classes. |
Latest revision as of 13:46, 26 June 2019
JUCE Tutorials
Create a basic audio app that outputs some sound. In this example, we will build a simple white noise generator.
Learn how to use a sine wave to synthesise a basic musical tone. Let the user modify the pitch of the tone from the graphical user interface.
This tutorial implements a polyphonic sine wave synthesiser that responds to MIDI input. This makes use of the Synthesiser class and related classes.