<?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: 이진욱</title>
    <description>The latest articles on DEV Community by 이진욱 (@matthew_lee).</description>
    <link>https://dev.to/matthew_lee</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%2F3842768%2Fa6b3ec01-3f0a-4f5f-babe-6187dc4cd0bd.png</url>
      <title>DEV Community: 이진욱</title>
      <link>https://dev.to/matthew_lee</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matthew_lee"/>
    <language>en</language>
    <item>
      <title>I Built an AI Dubbing App with Claude Code Agents — Here's What I Learned</title>
      <dc:creator>이진욱</dc:creator>
      <pubDate>Thu, 26 Mar 2026 08:41:11 +0000</pubDate>
      <link>https://dev.to/matthew_lee/i-built-an-ai-dubbing-app-with-claude-code-agents-heres-what-i-learned-75p</link>
      <guid>https://dev.to/matthew_lee/i-built-an-ai-dubbing-app-with-claude-code-agents-heres-what-i-learned-75p</guid>
      <description>&lt;h2&gt;
  
  
  1 OVERVIEW
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/jin-wook-lee-96/ai-dubbing" rel="noopener noreferrer"&gt;https://github.com/jin-wook-lee-96/ai-dubbing&lt;/a&gt; ⭐&lt;/p&gt;

&lt;p&gt;Upload audio or video → get a dubbed MP3 in 7 languages. Built with Next.js 16, ElevenLabs STT/TTS, GPT-4o-mini, and a 5-agent Claude Code workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  2 Pipeline
&lt;/h2&gt;

&lt;p&gt;File upload → ElevenLabs STT → GPT-4o-mini translation → ElevenLabs TTS → MP3&lt;/p&gt;




&lt;h2&gt;
  
  
  3 Problems Worth Sharing
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Vercel's 4.5 MB request limit&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Never send the file to the API. Client uploads directly to Vercel Blob; API receives only the URL.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. SSRF on the Blob URL input&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Allowlist before any fetch — &lt;code&gt;https:&lt;/code&gt; protocol + hostname must end with &lt;code&gt;blob.vercel-storage.com&lt;/code&gt;. Same for &lt;code&gt;targetLang&lt;/code&gt; to block prompt injection.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Large files&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Files over 60s are cropped client-side using Web Audio API + MediaRecorder before upload. Works on iOS Safari via &lt;code&gt;webkitAudioContext&lt;/code&gt; fallback. Server never sees the oversized file.&lt;/p&gt;




&lt;h2&gt;
  
  
  4-Agent Claude Code Workflow
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Agent&lt;/th&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;senior-web-designer&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;UI/UX&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;frontend-senior-dev&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Components&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;code-error-fixer&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Bugs &amp;amp; build errors&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;security-auditor&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;OWASP, SSRF, injection&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;senior-pm-writer&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Docs &amp;amp; articles&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;code&gt;security-auditor&lt;/code&gt; caught 4 issues pre-launch: unprotected DB init endpoint, hardcoded emails in source, open SSRF vector, and missing input allowlist on &lt;code&gt;targetLang&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bonus trick:&lt;/strong&gt; &lt;code&gt;AGENTS.md&lt;/code&gt; tells every agent "this is Next.js 16 — read &lt;code&gt;node_modules/next/dist/docs/&lt;/code&gt; first." Zero deprecated API usage across the entire codebase.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Try it:&lt;/strong&gt; &lt;a href="https://ai-dubbing-seven.vercel.app" rel="noopener noreferrer"&gt;https://ai-dubbing-seven.vercel.app&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Star it:&lt;/strong&gt; &lt;a href="https://github.com/jin-wook-lee-96/ai-dubbing" rel="noopener noreferrer"&gt;https://github.com/jin-wook-lee-96/ai-dubbing&lt;/a&gt; ⭐&lt;/p&gt;

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