Can I vibecode Masterchannel?
KINDA · weekend projectMastering is signal processing, and the open source world already solved a big chunk of it: reference matching, loudness normalization and true peak limiting are all off the shelf. An agent can wire matchering, pyloudnorm and ffmpeg into a local CLI that takes your mix plus a commercial reference and spits out a competitive master in an afternoon. What it cannot do is decide, with no reference, what your track should sound like: that judgment is the part these services trained on thousands of masters to fake. So the DIY build is genuinely usable if you already know which records you want to sound like, and mediocre if you don't. Also expect to babysit sample rates, mono compatibility and the occasional inter-sample peak.
Build a local command line audio mastering tool in Python 3.11. No web UI, no accounts, no cloud, no telemetry. Stack: Python 3.11, matchering for reference matching, pyloudnorm for loudness measurement, soundfile and numpy for IO and DSP, ffmpeg via subprocess for format conversion and MP3 export. Use a venv and a requirements.txt. No Docker. CLI, using argparse: master --input mix.wav --reference ref.wav --target-lufs -14 --true-peak -1.0 --out ./out Behavior: 1. Decode input and reference to 44.1kHz stereo 32-bit float WAV in a temp dir using ffmpeg, accepting wav, aiff, flac and mp3 inputs. 2. Print a before report for the input: integrated LUFS, loudness range, sample peak, estimated true peak, stereo correlation, and a rough 8-band spectral balance in dB. 3. Run matchering to match the input's spectrum and dynamics to the reference. 4. Apply a final loudness stage: measure integrated LUFS with pyloudnorm, apply gain to hit --target-lufs, then apply a simple lookahead true peak limiter (5ms lookahead, 50ms release) so estimated true peak never exceeds --true-peak. 5. Print an after report in the same format as the before report, plus the total gain applied and the number of limiter gain reduction events. 6. Export three files to --out: master_24bit.wav at 44.1kHz, master_16bit.wav dithered with TPDF, and master.mp3 at 320kbps via ffmpeg. 7. Write report.json next to them with all measured values for both stages. Also support --no-reference, which skips matchering and does loudness plus limiting only. Print a warning that this is a normalizer, not a master. Safety: never clip. Refuse to run and exit non-zero if the input is already above -6 LUFS integrated or if its estimated true peak is above 0.0 dBTP, with a message telling the user to export a quieter mix with headroom. Include a README with install steps, one worked example, and a short note that the reference track choice matters more than any flag. Ship three pytest tests: gain math hits the LUFS target within 0.3 dB, the limiter never exceeds the ceiling on a synthetic clipping signal, and the headroom guard exits non-zero. No stems, no batch mode, no plugin hosting, no genre presets.
$ open in your agent (prompt prefilled, you press enter) or copy it raw · this prompt is generated from the build plan · improve it via PR
prompt copied. want to know what dies next week?
new verdicts + top votes, weekly. free. one-click out.
Most people paying for AI mastering are not chasing the last two percent of fidelity, they are avoiding a decision. They have a mix, a release date, and no interest in learning about multiband compression or inter-sample true peaks. A web upload that returns something loud and balanced in ninety seconds is worth real money against that, and the reference-free convenience is exactly the part a local script does worst. Engineers and people with a strong reference library will get most of the value from the DIY build; everyone else will keep paying to skip the taste problem.
xReference-free mastering: the service guesses a target for you, your script needs you to pick one
xGenre-aware presets and the taste baked into a trained model
xStem mastering, vocal-forward variants and other per-track intelligence
xA clean web UI with instant previews and revision history
xAnything resembling a second opinion when your mix is the actual problem
Nothing worth pointing at. That's why the prompt exists.
Can I vibecode Masterchannel?
Kinda. The core of Masterchannel is buildable in a weekend with the prompt on this page, but there are real gaps: Reference-free mastering: the service guesses a target for you, your script needs you to pick one, Genre-aware presets and the taste baked into a trained model. Read the honest list above before committing.
How much does Masterchannel cost?
Masterchannel costs about $29/month (Artist, checked 2026-08-18), which is $348 per year.
What do I lose by replacing Masterchannel?
Honestly: Reference-free mastering: the service guesses a target for you, your script needs you to pick one; Genre-aware presets and the taste baked into a trained model; Stem mastering, vocal-forward variants and other per-track intelligence; A clean web UI with instant previews and revision history; Anything resembling a second opinion when your mix is the actual problem. If any of those are load-bearing for you, keep paying.
Is there an open-source alternative to Masterchannel?
No mature open-source alternative worth pointing at, which is exactly why the one-shot prompt on this page exists.