App2Clap is a CLAP plug-in that captures audio from a specific Windows application. It can be used, for example, to record audio from another application into a DAW. Windows 11 is required.
For now, there is no installer.
You can download the latest build using the link at the top of this page.
Once downloaded, simply copy the app2clap.clap
file out of the zip file you downloaded to the %localappdata%\Programs\Common\CLAP
folder using Windows File Explorer.
The CLAP
directory might not exist there yet, in which case you will need to create it under %localappdata%\Programs\Common
.
App2Clap
plug-in to a track in your DAW.Issues should be reported on GitHub.
This section is for those interested in building App2Clap from source code.
The App2Clap Git repository is located at https://github.com/jcsteh/app2clap.git. You can clone it with the following command, which will place files in a directory named app2clap:
git clone --recursive https://github.com/jcsteh/app2clap.git
The --recursive
option is needed to retrieve Git submodules we use.
If you didn't pass this option to git clone
, you will need to run git submodule update --init
.
Whenever a required submodule commit changes (e.g. after git pull), you will need to run git submodule update
.
If you aren't sure, run git submodule update
after every git pull, merge or checkout.
To build App2Clap, you will need:
Build Tools for Visual Studio 2022
Visual Studio 2022 Community/Professional/Enterprise is also supported. However, Preview versions of Visual Studio will not be detected and cannot be used.
Whether installing Build Tools or Visual Studio, you must enable the following:
Python, version 3.7 or later:
SCons, version 3.0.4 or later:
py -3 -m pip install scons
To build App2Clap, from a command prompt, simply change to the App2Clap checkout directory and run scons
.
The resulting plug-in can be found in the build
directory.