<?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: Pedro Szabo</title>
    <description>The latest articles on DEV Community by Pedro Szabo (@pedroszabo).</description>
    <link>https://dev.to/pedroszabo</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%2F3732062%2Fe6c6b4bd-97fd-4dc4-86ca-9cfbc818e858.jpg</url>
      <title>DEV Community: Pedro Szabo</title>
      <link>https://dev.to/pedroszabo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pedroszabo"/>
    <language>en</language>
    <item>
      <title>How I Built a Serverless Video Converter at 13 Years Old (React + FFmpeg WASM)</title>
      <dc:creator>Pedro Szabo</dc:creator>
      <pubDate>Mon, 26 Jan 2026 01:26:08 +0000</pubDate>
      <link>https://dev.to/pedroszabo/how-i-built-a-serverless-video-converter-at-13-years-old-react-ffmpeg-wasm-1l5</link>
      <guid>https://dev.to/pedroszabo/how-i-built-a-serverless-video-converter-at-13-years-old-react-ffmpeg-wasm-1l5</guid>
      <description>&lt;p&gt;Why I stopped uploading files to servers and decided to process everything locally using WebAssembly.&lt;/p&gt;

&lt;p&gt;We’ve all been there. You have a 500MB .MKV video file that you need to convert to .MP4 to edit in Premiere or share on WhatsApp.&lt;/p&gt;

&lt;p&gt;You search "Free Video Converter" on Google. You click the first link. It asks you to upload the file. You stare at a loading bar for 20 minutes: "Uploading 12%...". Then, when it finally finishes, it says: "Limit reached. Please upgrade to Pro for files larger than 100MB."&lt;/p&gt;

&lt;p&gt;I got tired of this. I’m a 13-year-old developer from Brazil, and I decided to build a solution that respects both my time and my privacy.&lt;/p&gt;

&lt;p&gt;Meet &lt;a href="https://zeroconvert.net/" rel="noopener noreferrer"&gt;ZeroConvert.net&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Concept: Why Upload?&lt;/strong&gt;&lt;br&gt;
Traditional converters work like this: Your PC -&amp;gt; Upload -&amp;gt; Server (Conversion) -&amp;gt; Download -&amp;gt; Your PC&lt;/p&gt;

&lt;p&gt;This is slow, expensive for the developer (server costs), and bad for privacy (who is watching your videos?).&lt;/p&gt;

&lt;p&gt;I wanted to build something using WebAssembly (WASM). The idea is to bring the conversion engine to the browser, not the file to the server. Your PC (Browser) -&amp;gt; Conversion -&amp;gt; Done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Stack&lt;/strong&gt;&lt;br&gt;
To make this happen, I used:&lt;br&gt;
- Frontend: React + Vite (for speed)&lt;br&gt;
- Styling: TailwindCSS&lt;br&gt;
- Engine: FFmpeg.wasm (v0.11)&lt;br&gt;
- Backend/Auth: Supabase&lt;br&gt;
- Hosting: Firebase + Cloudflare&lt;/p&gt;

&lt;p&gt;The Technical Challenge: SharedArrayBuffer&lt;br&gt;
The biggest headache in building ZeroConvert was enabling Multithreading.&lt;/p&gt;

&lt;p&gt;Video conversion is heavy. If you run it on a single thread in JavaScript, the UI freezes, and the browser crashes. To use the full power of the user's CPU, I needed SharedArrayBuffer.&lt;/p&gt;

&lt;p&gt;However, modern browsers block this by default for security reasons (Spectre/Meltdown vulnerabilities). To fix it, I had to configure strict security headers on Cloudflare.&lt;/p&gt;

&lt;p&gt;Getting these headers to play nice with Firebase Hosting and external image resources was a week-long battle, but it was worth it. Now, the converter uses multiple cores of your CPU, making it incredibly fast.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy First&lt;/strong&gt;&lt;br&gt;
Since the code runs 100% on the client side, your files never leave your device. You can even turn off your Wi-Fi after the page loads, and it will still convert your videos.&lt;/p&gt;

&lt;p&gt;This was crucial for me. I wanted a tool where I could convert personal family videos or copyrighted game clips without sending them to a random server in a different country.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's Next?&lt;/strong&gt;&lt;br&gt;
I’m currently working on adding a "Pro" feature for cloud storage, but my main focus is optimizing the WASM engine to handle 4K videos even smoother.&lt;/p&gt;

&lt;p&gt;If you are a developer, an editor, or just someone who hates waiting for uploads, give it a try.&lt;/p&gt;

&lt;p&gt;Try it here: &lt;a href="https://zeroconvert.net" rel="noopener noreferrer"&gt;https://zeroconvert.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback is always welcome! I'm constantly learning.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>privacy</category>
      <category>security</category>
    </item>
  </channel>
</rss>
