惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
月光博客
月光博客
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
Vercel News
Vercel News
量子位
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
腾讯CDC
有赞技术团队
有赞技术团队

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I used FFmpeg.wasm to build a browser-based audio rem...
Code Master · 2026-04-30 · via DEV Community

Code Master

I had a recurring frustration: I needed to mute a video before sharing it. Every tool I found either uploaded the file to a server, added a watermark, or required me to create an account.

I know a single FFmpeg command handles this in milliseconds. But most people are not going to open a terminal for something like this.

So I built Remove Audio — a free, browser-based tool that strips the audio from any video, locally on the user's device.

The core idea

The whole thing runs on FFmpeg.wasm, a WebAssembly port of FFmpeg. When a user drops a video in, the browser downloads the WASM binary once and then runs FFmpeg entirely locally. Nothing leaves the device.

The underlying operation is essentially:

ffmpeg -i input.mp4 -an -c:v copy output.mp4

Enter fullscreen mode Exit fullscreen mode

-an drops the audio track. -c:v copy tells FFmpeg to copy the video stream without re-encoding, which means zero quality loss and fast processing even on large files.

Why not just use a server?

Server-side processing is simpler to build. But it has real downsides for the user:

  • Their file travels over the network (slow for large videos)
  • It lives on someone else's machine during processing
  • You need infrastructure, storage, and bandwidth costs

WebAssembly flips this. The compute happens on the user's machine. The only thing the server needs to serve is the WASM binary, which is cached after the first load.

What made it tricky

Cross-origin isolation. FFmpeg.wasm requires SharedArrayBuffer, which requires the page to be cross-origin isolated. That means setting Cross-Origin-Opener-Policy: same-origin and Cross-Origin-Embedder-Policy: require-corp response headers. This broke some third-party embeds and required careful workarounds.

Mobile Safari. iOS has stricter constraints on WASM memory and threading. I had to test and tune specifically for iPhone, where a lot of people do casual video editing.

Format handling. Remuxing MKV or MOV files while copying streams is not always straightforward. Some container formats need extra handling even when you are just copying the video stream directly.

What I shipped

remove-audio.com is free, no account required, works on Mac, Windows, iPhone, Android, and any modern browser. Supports MP4, MOV, MKV, AVI, and WEBM. Available in English, Spanish, French, German, and Dutch.

If you are building something where users need silent video — content tools, training platforms, social media schedulers — this is something you can just point people to.

Happy to answer questions about the FFmpeg.wasm integration or the COOP/COEP setup if anyone is curious.