| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Implements a number of different reverb algorithms, including plate and hall reverbs from Dattorro; Gardner's 1992 room reverbs; 4 feedback delay network reverbs using the "FDN Toolbox"; and two experimental/special-effect reverbs. More algorithms to come.
RSAlgorithmicVerb_test_061124.mp4 RSAlgorithmicVerb_constellation_061924.mp4xattr -rc "/Library/Audio/Plug-Ins/Components/RSAlgorithmicVerb.component"...for VST3...
xattr -rc "/Library/Audio/Plug-Ins/VST3/RSAlgorithmicVerb.vst3"xattr -rc ...(with a space at the end) and dragging the plugin file into the terminal, which will automatically add the file path.
Download the JUCE repo onto your computer. You will need to set the Projucer so that it knows where this folder is. Open the .jucer file in the Projucer, generate the Linux Makefile, Visual Studio project, or Xcode project, and then you can compile the plugins using those respective tools. Alternatively, see below for CMake instructions.
git submodule update --init --recursive# sets up a default build:
cmake -S . -B build
# alternatively, you can explicitly set up a debug or release build:
cmake -S . -B build/ -D CMAKE_BUILD_TYPE=Debug
# or
cmake -S . -B build/ -D CMAKE_BUILD_TYPE=Release
# you can add the flag -D COPY_PLUGIN_AFTER_BUILD=TRUE to copy the built files to the default location on macOS
# after running one of the above three options, run
cmake --build buildYou can also use CMake to generate Xcode/Visual Studio projects.
cmake -B Builds -G Xcodecmake -B Builds -G "Visual Studio 17 2022"launch.json sets up the ability to launch an app of your choice (e.g., REAPER, JUCE's AudioPluginHost, etc.) as part of a debugging session. Change the path for the app in launch.json to match the one on your system.
You can also use Pluginval. After installing Pluginval and adding the binary to your PATH, run pluginval --strictness-level 5 <path-to-plugin>. Strictness level 5 is the baseline, and it can go up to 10 for more rigorous testing.
Pluginval uses aufx under the hood for AU plugins on macOS. You can run auval directly with auval -strict -v aufx Rsav Rspi if this plugin is installed on the computer.
| Back | FazBrowse Home | New Git URL |