<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Terry Beer</title>
    <description>The latest articles on DEV Community by Terry Beer (@terry_beer_de05cb907967ac).</description>
    <link>https://dev.to/terry_beer_de05cb907967ac</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4125625%2F55d06fe4-7fbc-4b28-b870-b06b21b48f87.png</url>
      <title>DEV Community: Terry Beer</title>
      <link>https://dev.to/terry_beer_de05cb907967ac</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/terry_beer_de05cb907967ac"/>
    <language>en</language>
    <item>
      <title>I built a browser-based spectrum analyzer because I wanted something simpler</title>
      <dc:creator>Terry Beer</dc:creator>
      <pubDate>Tue, 15 Sep 2026 09:36:09 +0000</pubDate>
      <link>https://dev.to/terry_beer_de05cb907967ac/i-built-a-browser-based-spectrum-analyzer-because-i-wanted-something-simpler-50n8</link>
      <guid>https://dev.to/terry_beer_de05cb907967ac/i-built-a-browser-based-spectrum-analyzer-because-i-wanted-something-simpler-50n8</guid>
      <description>&lt;p&gt;A while ago, I just wanted to do something simple: drop in an audio file, see the frequency spectrum, find suspicious peaks, and move on.&lt;br&gt;
But most tools I found were either 🖥️ full desktop apps, 🧱 more complicated than I needed, ☁️ uploading audio to a server, or just felt a little outdated.&lt;/p&gt;

&lt;p&gt;So I started wondering: why can't this just run entirely in the browser?&lt;br&gt;
That question turned into Online Spectrum Analyzer: 👉 &lt;a href="https://onlinespectrumanalyzer.com" rel="noopener noreferrer"&gt;https://onlinespectrumanalyzer.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔒 Keep the audio local&lt;/p&gt;

&lt;p&gt;The main idea was simple: your audio shouldn't need to leave your device just to calculate an FFT. Modern browsers already have the Web Audio API, so the whole flow can stay client-side: audio file → decode locally → analyze → visualize.&lt;br&gt;
No account. No mandatory backend upload. I also added 🎙️ microphone input, so you can inspect live audio directly.&lt;/p&gt;

&lt;p&gt;📊 The FFT was the easy part&lt;/p&gt;

&lt;p&gt;Getting frequency data wasn't really the hardest part. Making it readable was.I spent more time than expected tweaking FFT size, smoothing, frequency scaling, peak detection, low-frequency visibility, and rendering performance.A raw FFT graph can look technical while still being surprisingly hard to interpret. I wanted someone looking for a 50/60 Hz hum to be able to spot it without first studying DSP.&lt;/p&gt;

&lt;p&gt;🌈 Then I added a spectrogram&lt;/p&gt;

&lt;p&gt;This became one of my favorite parts. A spectrum shows what frequencies exist right now. A spectrogram shows how frequencies change over time.&lt;br&gt;
That makes things like electrical hum, background noise, sudden transients, high-frequency tones, and strange sections of audio much easier to spot visually.&lt;br&gt;
Sometimes a problem is easier to see than to hear.&lt;/p&gt;

&lt;p&gt;🤯 The browser is surprisingly capable&lt;/p&gt;

&lt;p&gt;This project reminded me how much signal processing can now happen directly in the browser. You already get 🎵 audio decoding, 🎙️ microphone access, 📈 real-time analysis, 🧮 FFT data, 🖼️ canvas visualization, and pretty decent client-side performance.&lt;br&gt;
A few years ago, I probably would've built this as upload → server → process → return result. For this kind of tool, that would actually make the experience worse.&lt;/p&gt;

&lt;p&gt;🛠️ What it does now&lt;/p&gt;

&lt;p&gt;Right now it supports:&lt;/p&gt;

&lt;p&gt;🎧 audio file analysis&lt;br&gt;
🎙️ live microphone input&lt;br&gt;
📊 real-time frequency spectrum&lt;br&gt;
📍 peak frequency detection&lt;br&gt;
🌈 spectrogram visualization&lt;br&gt;
🔒 local browser-side processing&lt;/p&gt;

&lt;p&gt;I'm still improving it. One direction I'm interested in is making it more useful for practical audio debugging: hum, noise, clipping, resonances, strange tones, recording issues, etc. Without turning it into a giant DAW.&lt;br&gt;
If you work with audio, Web Audio, music production, podcasting, or browser DSP, I'd be interested to know what you normally look for in a spectrum analyzer.&lt;/p&gt;

&lt;p&gt;👉 Try it here: &lt;a href="https://onlinespectrumanalyzer.com" rel="noopener noreferrer"&gt;https://onlinespectrumanalyzer.com&lt;/a&gt;&lt;br&gt;
Feedback is welcome 🙂&lt;/p&gt;

</description>
      <category>frontend</category>
      <category>javascript</category>
      <category>tools</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
