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
Browser Screen Recording Without Extensions: The MediaRecorder API
How-ToWeb Development

Browser Screen Recording Without Extensions: The MediaRecorder API

via Dev.to JavaScriptMichael Lip2h ago

You don't need OBS, Loom, or a Chrome extension to record your screen. The browser's MediaRecorder API, combined with getDisplayMedia, provides everything needed for screen recording. And since it runs entirely in the browser, nothing is uploaded to anyone's server. The API async function startRecording () { const stream = await navigator . mediaDevices . getDisplayMedia ({ video : { mediaSource : ' screen ' }, audio : true }); const recorder = new MediaRecorder ( stream , { mimeType : ' video/webm;codecs=vp9 ' }); const chunks = []; recorder . ondataavailable = e => chunks . push ( e . data ); recorder . onstop = () => { const blob = new Blob ( chunks , { type : ' video/webm ' }); const url = URL . createObjectURL ( blob ); // Create download link }; recorder . start (); } getDisplayMedia prompts the user to select what to share: entire screen, a specific window, or a browser tab. The selection UI is browser-provided and can't be customized or bypassed (this is a security feature). Au

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
2 views

Related Articles

Net Worth Is the Only Financial Metric That Matters
How-To

Net Worth Is the Only Financial Metric That Matters

Dev.to Tutorial • 3h ago

Lululemon bets Epoch Biodesign can eat its shorts, literally
How-To

Lululemon bets Epoch Biodesign can eat its shorts, literally

TechCrunch • 5h ago

Crusoe makes big battery buys for its data centers
How-To

Crusoe makes big battery buys for its data centers

TechCrunch • 8h ago

What Your Engineering Manager Actually Does All Day
How-To

What Your Engineering Manager Actually Does All Day

Medium Programming • 9h ago

The Lego Game Boy makes for a great gift, and it’s $10 off today
How-To

The Lego Game Boy makes for a great gift, and it’s $10 off today

The Verge • 10h ago

Discover More Articles