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 Added System Audio to Screen Recording
How-ToWeb Development

How We Added System Audio to Screen Recording

via Dev.to WebdevAlex Neamtu1mo ago

We already had screen recording with webcam overlay, drawing tools, and pause/resume. But when someone recorded a product walkthrough with background music or a tutorial with UI sounds, the recording was silent. The browser captured the screen but not the audio coming from it. The fix was surprisingly small — two constraints on one API call. But understanding why those constraints exist and how they interact with different browsers took more work than writing the code. The problem The getDisplayMedia() API lets web apps capture a user's screen. You can request audio alongside video: const stream = await navigator . mediaDevices . getDisplayMedia ({ video : true , audio : true , }); This works — sort of. The audio: true flag tells the browser you'd like audio, but the browser decides what that means. In Chrome, the share picker shows an "Also share tab audio" checkbox. If the user shares a tab, they get tab audio. If they share an entire screen or window, they might get nothing. The rea

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
32 views

Related Articles

DAY 8: The System Was Never Meant to Pay You
How-To

DAY 8: The System Was Never Meant to Pay You

Medium Programming • 2d ago

How-To

MakerCode v2.0 Release

Medium Programming • 2d ago

Introduction to the PineTime Pro
How-To

Introduction to the PineTime Pro

Lobsters • 2d ago

How to Turn MiroFish Into a Production Grade Polymarket Research Engine
How-To

How to Turn MiroFish Into a Production Grade Polymarket Research Engine

Medium Programming • 2d ago

Claude Code March Update: 8 Features Broken Down, With Setup Instructions
How-To

Claude Code March Update: 8 Features Broken Down, With Setup Instructions

Medium Programming • 2d ago

Discover More Articles