App2Clap


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.

Download and Installation

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.

Usage with a DAW

  1. Add the App2Clap plug-in to a track in your DAW.
  2. Choose whether you want to capture a specific process only, capture everything except a specific process or capture everything. Note that capturing everything could cause feedback, as it may capture the output of your DAW itself.
  3. Select a process from the list. You can filter the list to show only certain processes by typing part of the executable name or process id into the Filter text box.
  4. Press Capture to start capturing.
  5. If you want to capture a different process, change the settings and press Capture again.
  6. To capture multiple, separate processes, use separate instances of the plug-in on separate tracks.
  7. If you want to record the captured audio, you will need to configure your DAW to record the output of the track, rather than the input.

Reporting Issues

Issues should be reported on GitHub.

Building

This section is for those interested in building App2Clap from source code.

Getting the 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.

Dependencies

To build App2Clap, you will need:

How to Build

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.