This is the snap for Audacity, “Audio software for multi-track recording and editing”. It works on Ubuntu, Fedora, Debian, and other major Linux distributions.
sudo snap install audacity
Published for with 💝 by Snapcrafters
This snap contains support for AI features including:
- Music Separation
- Noise Suppression
- Music Generation and Continuation
- Transcription
- Super Resolution
The plugins come installed out-of-the-box and support running on Intel hardware only (CPU, GPU, and NPU). Instructions for using each of the features can be found in the upstream GitHub repository.
For Intel NPU support, make sure to install the snap containing the supporting libraries and to connect the Audacity snap prior to running Audacity:
sudo snap install intel-npu-driver
sudo snap connect audacity:npu-libs intel-npu-driver:npu-libs
Important
The models (which are roughly 6.2 GiB in size total) are NOT built into the snap. To use the AI features you must download and install them from the command line. Note that downloading the models may take several minutes or longer, depending on the speed of your internet connection. Please be patient!
To ease the process of downloading and installing the models, an interactive command is available within the snap that can be invoked like so:
sudo audacity.fetch-models
This will provide you with an interactive menu where you can select the model you wish to download and install. Alternatively, if you wish to enable all of the AI features, you can simply pass the --batch
flag:
sudo audacity.fetch-models --batch
Important
Please ensure you are in the render
Unix group on your system in order to access Intel accelerators for the plugins (Intel GPU and NPU).
To check your current groups, please run the following from a terminal:
groups
If you do not see render
listed in the output, you may add your current user with the following:
sudo usermod -a -G render $USER
Now log out and back in to ensure your active session has the render
group included.
To ensure the device nodes have appropriate group permissions set, you may also run:
sudo chown root:render /dev/accel/accel*
sudo chmod g+rw /dev/accel/accel*
sudo chown root:render /dev/dri/render*
sudo chmod g+rw /dev/dri/render*
Thanks for your interest! Below you find instructions to help you contribute to this snap.
The general workflow is to submit pull requests that merges your changes into the candidate
branch here on GitHub. Once the pull request has been merged, a GitHub action will automatically build the snap and publish it to the candidate
channel in the Snap Store. Once the snap has been tested thoroughly, we promote it to the stable
channel so all our users get it!
If this is your first time contributing to this snap, you first need to set up your own fork of this repository.
-
Fork the repository into your own GitHub namespace.
-
Clone your fork, so that you have it on your local computer.
-
Configure your local repo. To make things a bit more intuitive, we will rename your fork's remote to
myfork
, and add the snapcrafters repo assnapcrafters
.git remote rename origin myfork git remote add snapcrafters https://github.com/snapcrafters/audacity.git git fetch --all
Once you're all setup for contributing, keep in mind that you want the git information to be all up-to-date. So if you haven't "fetched" all changes in a while, start with that:
git fetch --all -p
Now that your git metadata has been updated you are ready to create a bugfix branch, make your changes, and open a pull request.
-
All pull requests should go to the stable branch so create your branch as a copy of the stable branch:
git checkout -b my-bugfix-branch snapcrafters/candidate
-
Make your desired changes and build a snap locally for testing:
snapcraft --use-lxd
-
After you are happy with your changes, commit them and push them to your fork so they are available on GitHub:
git commit -a git push -u myfork my-bugfix-branch
-
Then, open up a pull request from your
my-bugfix-branch
to thesnapcrafters/candidate
branch. -
Once you've opened the pull request, it will automatically trigger the build-test action that will launch a build of the snap. You can watch the progress of the snap build from your pull request (Show all checks -> Details). Once the snap build has completed, you can find the built snap (to test with) under "Artifacts".
-
Someone from the team will review the open pull request and either merge it or start a discussion with you with additional changes or clarification needed.
-
Once the pull request has been merged into the stable branch, a GitHub action will rebuild the snap using your changes and publish it to the Snap Store into the
candidate
channel. After sufficient testing of the snap from the candidate channel, one of the maintainers or administrators will promote the snap to the stable branch in the Snap Store.
- The license of the build files in this repository is MIT