<?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: Trần Vĩnh Trí</title>
    <description>The latest articles on DEV Community by Trần Vĩnh Trí (@devcodewithai).</description>
    <link>https://dev.to/devcodewithai</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3331934%2Fa7c1d8da-fffa-41b8-a433-346629c4c9a4.jpg</url>
      <title>DEV Community: Trần Vĩnh Trí</title>
      <link>https://dev.to/devcodewithai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devcodewithai"/>
    <language>en</language>
    <item>
      <title>I Built a Real-Time VST3 Host That Runs Waves &amp; Auto-Tune — With 100% AI-Generated Code</title>
      <dc:creator>Trần Vĩnh Trí</dc:creator>
      <pubDate>Mon, 07 Jul 2025 14:51:01 +0000</pubDate>
      <link>https://dev.to/devcodewithai/i-built-a-real-time-vst3-host-that-runs-waves-auto-tune-with-100-ai-generated-code-4fli</link>
      <guid>https://dev.to/devcodewithai/i-built-a-real-time-vst3-host-that-runs-waves-auto-tune-with-100-ai-generated-code-4fli</guid>
      <description>&lt;h1&gt;
  
  
  🎤 How I Built a Real-Time Plugin Host That Runs Waves &amp;amp; Auto-Tune
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;with JUCE, C++, and a little help from AI (actually... all the code)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Hi, I'm Trí — a system designer and indie developer from Vietnam.&lt;br&gt;&lt;br&gt;
I never studied programming in school. I didn’t even finish high school.&lt;br&gt;&lt;br&gt;
But I built a real-time plugin host — and it actually works.&lt;br&gt;&lt;br&gt;
In fact, &lt;strong&gt;100% of the code was written by AI&lt;/strong&gt;, based on my ideas, designs, and logic.&lt;/p&gt;

&lt;h2&gt;
  
  
  🎧 What is idolLiveAudio?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/DEVCodeWithAI/idolLiveAudio" rel="noopener noreferrer"&gt;idolLiveAudio&lt;/a&gt; is an open-source audio plugin host built with &lt;strong&gt;JUCE&lt;/strong&gt; and &lt;strong&gt;C++20&lt;/strong&gt;, designed specifically for &lt;strong&gt;idol livestreamers&lt;/strong&gt; who sing and perform live on platforms like &lt;strong&gt;TikTok, YouTube, Facebook&lt;/strong&gt;, and more.&lt;/p&gt;

&lt;p&gt;It runs &lt;strong&gt;Waves&lt;/strong&gt;, &lt;strong&gt;Auto-Tune Pro&lt;/strong&gt;, and most &lt;strong&gt;VST3&lt;/strong&gt; plugins with low latency.&lt;br&gt;&lt;br&gt;
Think of it as a mini-DAW — but lightweight, fast, and laser-focused on live vocals.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7w5he9a029761ohjeirf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7w5he9a029761ohjeirf.png" alt="screenshot" width="800" height="506"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🔧 Why I built this?
&lt;/h2&gt;

&lt;p&gt;Because most DAWs are overkill for livestream use.&lt;br&gt;&lt;br&gt;
And most free plugin hosts? Either unstable, bloated, or can’t handle complex plugins like Waves or Antares.&lt;/p&gt;

&lt;p&gt;idolLiveAudio is designed to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Be dead simple to use&lt;/li&gt;
&lt;li&gt;Load professional plugins like CLA Vocals, Auto-Tune Pro&lt;/li&gt;
&lt;li&gt;Sync playback with RAW vocal recordings&lt;/li&gt;
&lt;li&gt;Support real-time effects like Reverb, Delay, EQ&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prevent disasters&lt;/strong&gt; on stage or livestream (with Safety Lock mode)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⚙️ Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;JUCE&lt;/strong&gt; (C++ framework for audio)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;C++20&lt;/strong&gt; (compiled with Visual Studio)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;WavesShell support&lt;/strong&gt; with plugin extraction logic&lt;/li&gt;
&lt;li&gt;Real-time audio pipeline with FX routing per track&lt;/li&gt;
&lt;li&gt;AI-assisted architecture planning (ChatGPT + Gemini)&lt;/li&gt;
&lt;li&gt;Full plugin scanning, loading, playback, and preset systems&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧪 What was hard?
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Waves Plugin Shells&lt;/strong&gt; — They're tricky. Most hosts can't scan or load them correctly. I built a custom &lt;code&gt;WavesShellManager&lt;/code&gt; to detect and extract actual plugins from &lt;code&gt;.vst3&lt;/code&gt; containers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Plugin crash protection&lt;/strong&gt; — Some plugins crash if you breathe wrong. So I wrapped all state loading and playback in &lt;code&gt;try–catch&lt;/code&gt; blocks to keep the app alive even when a plugin dies.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Synchronized multi-track playback&lt;/strong&gt; — idolLiveAudio records unprocessed input from both vocal and music channels, then plays them back in sync using custom transport logic.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Making it “idiot-proof”&lt;/strong&gt; — Since many users are non-tech idols, I built a “Safety Lock” feature to freeze settings during livestream — no more accidental disasters.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🚀 Features in v1.1.0
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;✅ Runs &lt;strong&gt;Waves&lt;/strong&gt; and &lt;strong&gt;Auto-Tune Pro&lt;/strong&gt; plugins
&lt;/li&gt;
&lt;li&gt;🎙️ &lt;strong&gt;Multi-track RAW recording&lt;/strong&gt; (vocal + music input)
&lt;/li&gt;
&lt;li&gt;🎧 Per-track &lt;strong&gt;FX chains&lt;/strong&gt;, &lt;strong&gt;recorders&lt;/strong&gt;, and &lt;strong&gt;players&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;🔊 &lt;strong&gt;Soundboard&lt;/strong&gt; for triggering effects live
&lt;/li&gt;
&lt;li&gt;🟢 Real-time bypass, gain, mute, and RMS meters
&lt;/li&gt;
&lt;li&gt;🔒 &lt;strong&gt;Safety Lock&lt;/strong&gt; to prevent misclicks mid-show
&lt;/li&gt;
&lt;li&gt;💾 Save/Load complete plugin presets with state recall&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💡 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;I may not be a professional developer by degree —&lt;br&gt;&lt;br&gt;
but with the right tools, system logic, and a bit of AI magic, you can create something &lt;em&gt;real&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;🎯 My mission is simple:&lt;br&gt;&lt;br&gt;
Make high-end vocal processing accessible to &lt;strong&gt;non-technical performers&lt;/strong&gt; — especially livestreaming idols.&lt;/p&gt;

&lt;p&gt;Check out the project:&lt;br&gt;&lt;br&gt;
👉 &lt;a href="https://github.com/DEVCodeWithAI/idolLiveAudio" rel="noopener noreferrer"&gt;https://github.com/DEVCodeWithAI/idolLiveAudio&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Thanks for reading!&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Feel free to connect if you're also building tools for creators, or using AI to code crazy things.&lt;/p&gt;




&lt;p&gt;🛠️ &lt;strong&gt;100% AI-generated code. Human-designed. Field-tested.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
🎤 &lt;strong&gt;Built for live performers — not just developers.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>cpp</category>
      <category>opensource</category>
      <category>audio</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
