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 Silence Removal to SendRec
How-ToWeb Development

How We Added Silence Removal to SendRec

via Dev.to WebdevAlex Neamtu1mo ago

Anyone who has watched a screen recording knows the feeling: the presenter pauses to think, navigates a menu slowly, or just trails off between thoughts. Those dead seconds add up fast. In v1.65.4, SendRec can detect and remove them automatically. We already had filler word removal — detecting "um", "uh", and similar disfluencies from transcript data, presenting them as a checklist, and cutting them out. Silence removal follows the same pattern, but operates purely on audio energy rather than transcription. Detection: ffmpeg's silencedetect filter ffmpeg ships a silencedetect audio filter that scans an audio stream and emits timestamps whenever audio drops below a configurable noise floor for at least a minimum duration. The command: ffmpeg -i input.mp4 -vn -af silencedetect = noise = -30dB :d = 1.0 -f null - The -vn flag tells ffmpeg to skip video decoding entirely. Silence detection only needs the audio stream, and skipping video makes the scan significantly faster on large files. ff

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
25 views

Related Articles

Learning a Recurrent Visual Representation for Image Caption Generation
How-To

Learning a Recurrent Visual Representation for Image Caption Generation

Dev.to • 19h ago

How-To

# 5 JSON Mistakes Developers Make (And How to Fix Them Fast)

Medium Programming • 20h ago

10 subtle go mistakes that only show up in production
How-To

10 subtle go mistakes that only show up in production

Medium Programming • 21h ago

Stop Configuring Third-Party Libraries by Hand — Let Your Agent Handle It!
How-To

Stop Configuring Third-Party Libraries by Hand — Let Your Agent Handle It!

Medium Programming • 21h ago

How-To

How I Stay Consistent While Learning Coding

Medium Programming • 21h ago

Discover More Articles