You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# Summary
2
-
This repository is a collection of audio effects plugins implemented from the explanations in the book *"Audio Effects: Theory, Implementation and Application"* by Joshua D. Reiss and Andrew P. McPherson.
2
+
This repository is a collection of audio effects plugins implemented from the explanations in the book *"Audio Effects: Theory, Implementation and Application"* by Joshua D. Reiss and Andrew P. McPherson, and takes as example the code provided with the book which has contributions and implementations by Brecht De Man, and others.
3
3
4
4
The audio effects implemented are:
5
5
@@ -9,7 +9,7 @@ The audio effects implemented are:
9
9
-[**Delay**](Delay) implements a basic delay with feedback and mix controls using a circular delay line. It uses simple linear interpolation to achieve fractional delay times.
10
10

11
11
12
-
-[**Vibrato**](Vibrato) uses a Low Frequency Oscilator (LFO) to modulate the delay of the input signal to simulate periodic variations of pitch. Various types of sample interpolation are introduced in this plugin.
12
+
-[**Vibrato**](Vibrato) uses a Low Frequency Oscilator (LFO) to modulate the delay of the input signal and simulate periodic variations of pitch. Various types of sample interpolation are introduced in this plugin.
13
13

14
14
15
15
-[**Flanger**](Flanger) simulates a delay-based audio effect where a copy of the input signal is delayed with a variable delay time, and mixed with the original sound, thus producing the characteristic "swooshing" sound of this classic audio effect.
@@ -55,7 +55,7 @@ The audio effects implemented are:
55
55

56
56
57
57
# Clone and build
58
-
These plugins are implemented using [JUCE](https://juce.com/), which provides a framework for building audio plugins for various platforms (Windows and macOS), and in multiple formats (VST, AU, RTAS, and AAX). You can run the following commands in the terminal to clone this repository and to checkout the version of JUCE that was used to build all the projects:
58
+
These plugins are implemented using [JUCE](https://juce.com/), which provides a framework for building audio plugins for various platforms (Windows and macOS), and in multiple formats (VST, AU, RTAS, and AAX), as well as standalone applications. You can run the following commands in the terminal to clone this repository and to checkout the version of JUCE that was used to build all the projects:
0 commit comments