Installation
AudioPie is available for Linux, Windows, and macOS. Choose your preferred installation method below.
Download Pre-built Binaries
The easiest way to install AudioPie is to download the pre-built binaries from the GitHub Releases page.
Linux
- Download the
.AppImagefile from the releases page - Make it executable:
chmod +x AudioPie_*.AppImage - Run the application:
./AudioPie_*.AppImage
Alternatively, you can extract the linux-unpacked archive and run the audiopie binary directly.
Windows
- Download the
.exeinstaller from the releases page - Run the installer and follow the instructions
- Launch AudioPie from the Start menu
If Windows SmartScreen shows "Windows protected your PC", click "More info" → "Run anyway". This happens because the app is not yet code-signed. Code signing is in progress.
macOS
- Download the
.dmgfile from the releases page - Open the DMG and drag AudioPie to your Applications folder
- Launch AudioPie from Launchpad or Spotlight
If macOS shows "AudioPie is damaged and can't be opened", this is because the app is not yet code-signed. Code signing is in progress.
Solution: Run in Terminal:
xattr -cr /Applications/AudioPie.app
Or go to System Settings → Privacy & Security and click "Open Anyway".
Build from Source
If you prefer to build AudioPie from source, follow these steps:
Prerequisites
Steps
-
Clone the repository:
git clone https://github.com/ikloster03/audiopie.git
cd audiopie -
Install dependencies:
npm install -
Start development server (optional):
npm run dev -
Build for production:
npm run build
The built application will be in the release/{version} directory.
FFmpeg
AudioPie uses FFmpeg for audio processing. The application includes a bundled version of FFmpeg, so you don't need to install it separately.
However, if you want to use your system's FFmpeg installation:
- Open AudioPie
- Go to Settings (gear icon)
- Set the path to your FFmpeg and FFprobe executables
See the FFmpeg Configuration guide for more details.
Troubleshooting
Application Won't Start
- Linux: Make sure the AppImage has execute permissions
- macOS: If you see "damaged and can't be opened" error, run
xattr -cr /Applications/AudioPie.appin Terminal, or allow the app in System Settings → Privacy & Security → "Open Anyway" - Windows: If Windows SmartScreen blocks the app, click "More info" → "Run anyway"
Code signing for macOS and Windows is currently in progress. Once complete, these security warnings will no longer appear.
FFmpeg Errors
If you see FFmpeg-related errors:
- Check the Settings to ensure FFmpeg path is correct
- Try using the bundled FFmpeg (leave paths empty in Settings)
- Ensure FFmpeg has permissions to access your audio files
Other Issues
If you encounter other issues, please:
- Check the FAQ
- Search GitHub Issues
- Create a new issue with detailed information about your problem