<?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: Yeongchan Jang</title>
    <description>The latest articles on DEV Community by Yeongchan Jang (@yeongchan_jang_4454b174f1).</description>
    <link>https://dev.to/yeongchan_jang_4454b174f1</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%2F3824788%2Fe822eb73-8f05-443d-bf57-81447d5c8fa4.png</url>
      <title>DEV Community: Yeongchan Jang</title>
      <link>https://dev.to/yeongchan_jang_4454b174f1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yeongchan_jang_4454b174f1"/>
    <language>en</language>
    <item>
      <title>Most of this project was built by collaborating with Claude as a coding agent.</title>
      <dc:creator>Yeongchan Jang</dc:creator>
      <pubDate>Sun, 15 Mar 2026 03:19:31 +0000</pubDate>
      <link>https://dev.to/yeongchan_jang_4454b174f1/most-of-this-project-was-built-by-collaborating-with-claude-as-a-coding-agent-4891</link>
      <guid>https://dev.to/yeongchan_jang_4454b174f1/most-of-this-project-was-built-by-collaborating-with-claude-as-a-coding-agent-4891</guid>
      <description>&lt;h1&gt;
  
  
  Building an AI Audio Dubbing Web App Using Claude as a Coding Agent
&lt;/h1&gt;

&lt;p&gt;Recently I built a small AI project that automatically generates dubbed audio from uploaded speech.&lt;/p&gt;

&lt;p&gt;The idea behind the project is simple:&lt;/p&gt;

&lt;p&gt;Upload an audio file → transcribe it → translate it → generate dubbed speech in another language.&lt;/p&gt;

&lt;p&gt;What made this project particularly interesting was that most of the development was done with the help of &lt;strong&gt;Claude as a coding agent&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It feels like we are entering a world where ideas and imagination can quickly become real applications with the help of AI coding agents.&lt;/p&gt;




&lt;h2&gt;
  
  
  What the Project Does
&lt;/h2&gt;

&lt;p&gt;The application allows users to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Upload an audio file&lt;/li&gt;
&lt;li&gt;Automatically transcribe the speech&lt;/li&gt;
&lt;li&gt;Translate the text into another language&lt;/li&gt;
&lt;li&gt;Generate dubbed audio using AI voice synthesis&lt;/li&gt;
&lt;li&gt;Play and download the generated dubbed audio&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal of this project was to explore how quickly an idea can be turned into a working application using AI-assisted development.&lt;/p&gt;




&lt;h2&gt;
  
  
  AI Pipeline
&lt;/h2&gt;

&lt;p&gt;The application follows this processing pipeline:&lt;/p&gt;

&lt;p&gt;Audio Upload&lt;br&gt;&lt;br&gt;
↓&lt;br&gt;&lt;br&gt;
Speech-to-Text (OpenAI Whisper)&lt;br&gt;&lt;br&gt;
↓&lt;br&gt;&lt;br&gt;
Translation (OpenAI API)&lt;br&gt;&lt;br&gt;
↓&lt;br&gt;&lt;br&gt;
Text-to-Speech (ElevenLabs)&lt;br&gt;&lt;br&gt;
↓&lt;br&gt;&lt;br&gt;
Dubbed Audio Output  &lt;/p&gt;




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

&lt;p&gt;Frontend:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Next.js&lt;/li&gt;
&lt;li&gt;TypeScript&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI Services:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OpenAI API (Translation)&lt;/li&gt;
&lt;li&gt;ElevenLabs API &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Deployment:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vercel&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Using Claude as a Coding Agent
&lt;/h2&gt;

&lt;p&gt;A large portion of the development process was assisted by &lt;strong&gt;Claude&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of writing every part of the code manually, I used Claude iteratively to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generate UI components&lt;/li&gt;
&lt;li&gt;Implement audio upload and processing logic&lt;/li&gt;
&lt;li&gt;Integrate AI APIs&lt;/li&gt;
&lt;li&gt;Fix UI and runtime errors&lt;/li&gt;
&lt;li&gt;Debug deployment issues&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The workflow looked something like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Describe the feature I wanted&lt;/li&gt;
&lt;li&gt;Let Claude generate the initial implementation&lt;/li&gt;
&lt;li&gt;Test the code&lt;/li&gt;
&lt;li&gt;Ask Claude to refine or debug the result&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This process significantly accelerated development compared to writing everything from scratch.&lt;/p&gt;




&lt;h2&gt;
  
  
  MVP Status
&lt;/h2&gt;

&lt;p&gt;This project is currently an &lt;strong&gt;MVP (Minimum Viable Product)&lt;/strong&gt;, so there are still many areas that could be improved.&lt;/p&gt;

&lt;p&gt;Still, it was fascinating to see how quickly an idea could turn into a working application using AI coding agents.&lt;/p&gt;




&lt;h2&gt;
  
  
  Live Demo
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://perso-ai-dubbing.vercel.app" rel="noopener noreferrer"&gt;https://perso-ai-dubbing.vercel.app&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  GitHub Repository
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/YOUR_USERNAME/perso-ai-dubbing" rel="noopener noreferrer"&gt;https://github.com/YOUR_USERNAME/perso-ai-dubbing&lt;/a&gt;&lt;/p&gt;




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

&lt;p&gt;Projects like this make me feel that we are entering a new era of software development.&lt;/p&gt;

&lt;p&gt;With AI coding agents, developers can focus more on ideas and problem solving rather than writing every line of code manually.&lt;/p&gt;

&lt;p&gt;It will be interesting to see how tools like Claude, ChatGPT, and other coding agents continue to change the way we build software.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>programming</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
