FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How We Made Screen Recording Work on Every Browser
How-ToWeb Development

How We Made Screen Recording Work on Every Browser

via Dev.to JavaScriptAlex Neamtu1mo ago

Our screen recorder was Chrome-only for months. Safari users couldn't record at all. Firefox users got a cryptic error. And anyone who recorded on Chrome still produced WebM files that needed server-side transcoding before Safari users could watch them. We shipped a fix in v1.60.0 that makes recording work on Safari, Firefox, and Chrome — and eliminates most transcoding entirely. Here's what we changed and why. The problem: hardcoded WebM The original recorder had this: const recorder = new MediaRecorder ( screenStream , { mimeType : " video/webm;codecs=vp9,opus " , }); This worked on Chrome, which supports VP9 WebM recording. But it fails on two other major browsers: Safari doesn't support WebM MediaRecorder at all. It supports video/mp4 recording (since Safari 14.1), but not WebM. Calling new MediaRecorder(stream, { mimeType: "video/webm;..." }) throws a NotSupportedError . Firefox supports WebM recording but with VP8, not VP9. Passing video/webm;codecs=vp9,opus throws because Firefo

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
46 views

Related Articles

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 3d ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 3d ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 3d ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 3d ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 3d ago

Discover More Articles