<?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: Jonathan Wallace</title>
    <description>The latest articles on DEV Community by Jonathan Wallace (@jonathan_wallace_c6087363).</description>
    <link>https://dev.to/jonathan_wallace_c6087363</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%2F3810551%2F638e7b63-86b3-496a-bfa5-8254c46ec9ba.jpg</url>
      <title>DEV Community: Jonathan Wallace</title>
      <link>https://dev.to/jonathan_wallace_c6087363</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jonathan_wallace_c6087363"/>
    <language>en</language>
    <item>
      <title>Building a Privacy-First Video Converter with WebAssembly</title>
      <dc:creator>Jonathan Wallace</dc:creator>
      <pubDate>Fri, 06 Mar 2026 20:29:57 +0000</pubDate>
      <link>https://dev.to/jonathan_wallace_c6087363/building-a-privacy-first-video-converter-with-webassembly-4pi4</link>
      <guid>https://dev.to/jonathan_wallace_c6087363/building-a-privacy-first-video-converter-with-webassembly-4pi4</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every time you use a typical online video converter, your file gets uploaded to a remote server. For most people that is mildly concerning. For anyone working in healthcare, law, or finance it can be a compliance violation. HIPAA, GDPR, and internal data policies all have something to say about sending sensitive media to a third party.&lt;/p&gt;

&lt;p&gt;I wanted a converter that was truly private — one where the file never leaves the user's machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: FFmpeg + WebAssembly
&lt;/h2&gt;

&lt;p&gt;FFmpeg is the gold standard for media processing. Thanks to Emscripten, it can be compiled to WebAssembly and run inside a browser tab. That means:     &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Zero server uploads.&lt;/strong&gt; The file stays on your device from start to finish.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full FFmpeg power.&lt;/strong&gt; 30+ video and audio formats, codec control, bitrate tuning.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works offline&lt;/strong&gt; once the WASM binary is cached.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works Under the Hood
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;The user drops a file onto the page. A &lt;code&gt;File&lt;/code&gt; object is created — no network request.&lt;/li&gt;
&lt;li&gt;The file bytes are written into an in-memory virtual filesystem that FFmpeg WASM exposes.&lt;/li&gt;
&lt;li&gt;FFmpeg runs the conversion entirely in a Web Worker, keeping the UI responsive.&lt;/li&gt;
&lt;li&gt;The output file is read from the virtual FS and offered as a Blob download.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;At no point does any byte leave the browser. You can verify this yourself by opening DevTools → Network and watching the requests during a conversion — there are none.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;WASM binary size.&lt;/strong&gt; The FFmpeg WASM core is ~30 MB. Lazy-loading and caching with a service worker keeps repeat visits fast.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Memory limits.&lt;/strong&gt; Browsers cap WASM memory. Very large files (multi-GB) can hit this ceiling, so I surface a clear error instead of crashing silently.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SharedArrayBuffer.&lt;/strong&gt; Some FFmpeg WASM builds require cross-origin isolation headers (&lt;code&gt;COOP&lt;/code&gt;/&lt;code&gt;COEP&lt;/code&gt;), which can conflict with third-party scripts.
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;The tool is live at &lt;a href="https://getconvertfree.com" rel="noopener noreferrer"&gt;getconvertfree.com&lt;/a&gt;. It is completely free — no account, no limits, no ads.&lt;/p&gt;

&lt;p&gt;If you handle sensitive media and need a conversion tool you can trust, give it a spin. Feedback and feature requests are welcome.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Happy converting.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webassembly</category>
      <category>privacy</category>
      <category>javascript</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
