A right-click utility for macOS that measures loudness and converts audio and video files — directly from Finder.
Right-click any audio or video file and select Beat Kitchen Audio Tools. For files with audio you get:
- Integrated Loudness (LUFS) — the overall perceived loudness
- True Peak (dBTP) — the absolute signal peak
- Loudness Range (LRA) — how much the loudness varies
- Loudest Moment — timestamp of the peak momentary loudness so you can find it
Results appear in a dialog with a Copy button for pasting into notes or a session log.
The Convert menu offers:
- Convert to MP3 (320kbps) — saves alongside the original (audio)
- Stereo to Mono — saves as
filename_mono.extalongside the original (audio) - Normalize — EBU R128 loudness normalization to a target (presets for -14, -16, -23 LUFS or custom). Saves as
filename_-14LUFS.ext(audio) - Convert to MP4 — H.264 / AAC, web- and QuickTime-friendly with fast-start. Saves as
filename.mp4(video) - Convert to GIF — animated GIF from a short clip, two-pass palette for clean color, with a width picker (320 / 480 / 640 px / original) and a loop / play-once choice. Saves as
filename.gif(video)
The menu adapts to the file — video conversions appear for video files (including silent screen recordings), audio conversions for files with an audio track.
Works on WAV, AIFF, MP3, FLAC, MP4, MOV, and any format ffmpeg supports.
Grab the latest .dmg from the Releases page.
- Open the
.dmg - Double-click
Beat Kitchen Audio Tools.pkg - Follow the installer prompts
- Done — the tool is ready to use
ffmpeg is downloaded automatically on first use if you don't already have it installed.
macOS may warn that this installer is from an "unidentified developer." This is normal — it means the package isn't signed with a paid Apple Developer ID certificate ($99/year), not that anything is wrong with it.
The tool is open source. You can read every line of code in this repo before installing. The installer places a single Automator workflow in ~/Library/Services/ — it does not install background processes, daemons, or anything that runs when you're not using it.
To proceed past the warning: right-click the .pkg and choose Open, or go to System Settings → Privacy & Security and click Open Anyway.
git clone https://github.com/BeatKitchen/bks-audio-tools.git
cd bks-audio-tools
./build.sh
./install.sh- macOS 12 (Monterey) or later
- ffmpeg (auto-downloaded on first use, or install via
brew install ffmpeg)
- Right-click any audio or video file in Finder
- Go to Services (or Quick Actions on macOS 13+)
- Click Beat Kitchen Audio Tools
The default MP3 conversion is 320kbps CBR (the highest quality). To change it:
- Open
~/Library/Services/Beat Kitchen Audio Tools.workflowin Automator - Find
-b:a 320kin the shell script - Replace
320kwith your preferred bitrate (e.g.192k,256k) or use-q:a 2for VBR (~190kbps)
rm -rf ~/Library/Services/Beat\ Kitchen\ Audio\ Tools.workflowTo also remove the auto-downloaded ffmpeg:
rm -rf ~/.bks-audio-toolsMIT
Made by Beat Kitchen School