Process, manage and automate your audio productions from the command line.
Install on Linux & macOS:
curl -sSL https://auphonic.com/cli/install.sh | sh
v0.4.10 · Free · Manual download ↓
Process single files, multitrack productions, or manage your entire catalog with simple, composable commands.
The most common workflow is a single command. Upload, process with default settings (noise reduction, leveling), and download the result.
# Process with default settings: noise reduction & leveling
$ auphonic process interview.wav --wait --download
Uploading interview.wav ████████████ 100%
Processing... Done (2m 15s)
Downloaded: interview.mp3
Use presets for repeatable settings. Pipe with ffmpeg, sox, or shell scripts for full automation.
# Use a preset for consistent settings
$ auphonic process ep43.wav \
--preset my-podcast-preset \
--wait --download
# Pipe from ffmpeg
$ ffmpeg -i video.mp4 -f wav - | \
auphonic process - --wait
List, inspect, update, and delete your productions. Download results at any time. Supports JSON, JSONL, and table output.
$ auphonic list
UUID STATUS TITLE
aB3xKmNpQr... Done Episode 42
zY9wLcFgHj... Done Interview
$ auphonic download aB3xKmNpQr
Downloaded: Episode_42.mp3
Combine multiple tracks with per-track algorithms, ducking, background music, and intros.
$ auphonic process \
--track id=Host,file=host.wav \
--track id=Guest,file=guest.wav \
--track id=Music,file=bgm.mp3,backforeground=background \
--intro jingle.wav \
--wait --download
Everything you need
The full power of Auphonic's audio algorithms and services, accessible from scripts and CI pipelines.
Explore the API docs →Version 0.4.10 · Free · Static binaries, no dependencies.
Recommended install (Linux & macOS):
curl -sSL https://auphonic.com/cli/install.sh | sh
| Platform | File |
|---|---|
| Linux (x86_64) | auphonic-cli_0.4.10_linux_amd64.tar.gz |
| Linux (ARM64) | auphonic-cli_0.4.10_linux_arm64.tar.gz |
| macOS (Intel) | auphonic-cli_0.4.10_darwin_amd64.tar.gz |
| macOS (Apple Silicon) | auphonic-cli_0.4.10_darwin_arm64.tar.gz |
| Windows (x86_64) | auphonic-cli_0.4.10_windows_amd64.zip |
SHA256 checksums (auphonic-cli_0.4.10_checksums.txt)
macOS: manual download blocked?
If you downloaded the binary manually instead of using the install script, macOS Gatekeeper may block it. Run this to allow execution:
xattr -d com.apple.quarantine ~/Downloads/auphonic
tar xzf auphonic-cli_0.4.10_*.tar.gz (or unzip for Windows)sudo mv auphonic /usr/local/bin/auphonic version