<?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: Chanyeong Yun</title>
    <description>The latest articles on DEV Community by Chanyeong Yun (@edwardyun).</description>
    <link>https://dev.to/edwardyun</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%2F3842668%2F3e48ce05-288f-4ab8-969a-521117c729ee.jpg</url>
      <title>DEV Community: Chanyeong Yun</title>
      <link>https://dev.to/edwardyun</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/edwardyun"/>
    <language>en</language>
    <item>
      <title>I Built an AI Auto-Dubbing Web App Using Claude Code 🎙️ (For the first time!!!)</title>
      <dc:creator>Chanyeong Yun</dc:creator>
      <pubDate>Wed, 25 Mar 2026 07:24:59 +0000</pubDate>
      <link>https://dev.to/edwardyun/i-built-an-ai-auto-dubbing-web-app-using-claude-code-for-the-first-time-4pog</link>
      <guid>https://dev.to/edwardyun/i-built-an-ai-auto-dubbing-web-app-using-claude-code-for-the-first-time-4pog</guid>
      <description>&lt;p&gt;Hey devs! I recently shipped an AI-powered auto-dubbing web service built almost entirely with the help of coding agents (Claude Code + Google Gemini), and I wanted to share what I learned along the way.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/user-attachments/assets/e77a38d9-8ecb-4010-aff0-bfc8d9d80cf3" rel="noopener noreferrer"&gt;https://github.com/user-attachments/assets/e77a38d9-8ecb-4010-aff0-bfc8d9d80cf3&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🐙 GitHub: &lt;a href="https://github.com/edwardyun12/ai-dubbing-web-app" rel="noopener noreferrer"&gt;https://github.com/edwardyun12/ai-dubbing-web-app&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;📌 What Does It Do?&lt;br&gt;
Upload any audio or video file → get it dubbed in your target language automatically.&lt;br&gt;
Here's the full pipeline:&lt;br&gt;
Upload file → transcribe speech via ElevenLabs API&lt;br&gt;
Transcription → translate with Google Translate API&lt;br&gt;
Pick an AI voice for the target language (male/female, calm/energetic, etc.)&lt;br&gt;
Synthesize dubbed audio with ElevenLabs TTS&lt;/p&gt;
&lt;h2&gt;
  
  
  Play back and download the result
&lt;/h2&gt;

&lt;p&gt;🛠️ Tech Stack&lt;br&gt;
Category    Technology&lt;br&gt;
Framework   Next.js (TypeScript)&lt;br&gt;
Deployment  Vercel&lt;br&gt;
Database    Turso&lt;br&gt;
Voice API   ElevenLabs&lt;br&gt;
Translation Google Translate API&lt;br&gt;
Auth    Google OAuth (NextAuth)&lt;/p&gt;
&lt;h2&gt;
  
  
  Dev Agents  Claude Code, Google Gemini
&lt;/h2&gt;

&lt;p&gt;🤖 How Claude Code Actually Helped (Honestly)&lt;br&gt;
The hardest parts weren't the features themselves — they were the architecture decisions and debugging.&lt;br&gt;
Here's where Claude Code made a real difference:&lt;br&gt;
NextAuth + Turso DB integration&lt;br&gt;
The auth logic was surprisingly complex. Once I gave Claude a clear spec of the input/output I needed, it generated accurate, working code on the first try.&lt;br&gt;
Next.js Suspense errors&lt;br&gt;
I kept hitting client component boundary issues. Pasting the raw error log into Claude immediately surfaced the root cause and the fix.&lt;br&gt;
Env variable security&lt;br&gt;
Claude proactively flagged a &lt;code&gt;.env.local&lt;/code&gt; mistake before it became a problem.&lt;/p&gt;
&lt;h2&gt;
  
  
  I also used Google Gemini (AntiGravity) for fine-grained debugging and documentation, then cross-validated between the two agents to boost code stability.
&lt;/h2&gt;

&lt;p&gt;💡 Tips for Working With Coding Agents&lt;br&gt;
After building this project, here's what actually works:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Be specific about I/O
Instead of "make a dubbing function," say "write a function that takes a &lt;code&gt;File&lt;/code&gt; input and returns a translated audio &lt;code&gt;Blob&lt;/code&gt;." Precision = better output.&lt;/li&gt;
&lt;li&gt;Break it into small units
Asking for everything at once creates tangled logic. Feature-by-feature requests consistently produce cleaner results.&lt;/li&gt;
&lt;li&gt;Paste error logs raw
Don't summarize. Just paste the full stack trace. The agent picks up on details you might miss.&lt;/li&gt;
&lt;li&gt;Always review before you commit
Treat agent code like a junior dev's PR. Read it, understand it, then ship it.
&amp;gt; 💡 The process of &lt;strong&gt;collaborating with agents to solve problems&lt;/strong&gt; matters more than the polish of the final code.
---
⚙️ Want to Run It Locally?
Prerequisites
You'll need API keys from:
Service Purpose
ElevenLabs  Speech transcription &amp;amp; synthesis
Turso   Database
Google Cloud    OAuth + Translate API
Vercel  Deployment
Steps
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/edwardyun12/ai-dubbing-web-app.git
&lt;span class="nb"&gt;cd &lt;/span&gt;ai-dubbing-web-app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Create a &lt;code&gt;.env.local&lt;/code&gt; file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ELEVENLABS_API_KEY=your_elevenlabs_api_key
TURSO_DATABASE_URL=your_turso_database_url
TURSO_AUTH_TOKEN=your_turso_auth_token
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
NEXTAUTH_SECRET=your_nextauth_secret
NEXTAUTH_URL=http://localhost:3000
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install
&lt;/span&gt;npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Open &lt;a href="http://localhost:3000" rel="noopener noreferrer"&gt;http://localhost:3000&lt;/a&gt; and you're good to go!
&lt;/h2&gt;

&lt;p&gt;If this was useful or interesting, a ⭐ on GitHub would mean a lot!&lt;br&gt;
👉 &lt;a href="https://github.com/edwardyun12/ai-dubbing-web-app" rel="noopener noreferrer"&gt;https://github.com/edwardyun12/ai-dubbing-web-app&lt;/a&gt;&lt;br&gt;
Happy to answer any questions in the comments 🙌&lt;/p&gt;

</description>
      <category>ai</category>
      <category>nextjs</category>
      <category>development</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
