TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How would you find “interesting” audio from a video file or stream?

1 pointsby thrwawy20160421almost 9 years ago
Let's say you have a 12 hour long video file from a surveillance or security camera, and you know that motion detection didn't find any interesting events in the video part. What about the audio? Is there any software that can let you define "interesting" audio, even just amplitude over a certain level. For example, given a minimum threshold in dB and a video file, give me a shortened video file that contains all the video except the periods where the threshold was too low?

2 comments

niftichalmost 9 years ago
This is an extremely low-budget solution, but you could load the audio into a program that charts the amplitude of the signal over its length, like most audio editors (e.g. Audacity [1])<p>Then you can visually see spikes [2].<p>You may be able to use such an editor to remove the ambient noise and see it more clearly as well.<p>[1] <a href="http:&#x2F;&#x2F;www.audacityteam.org&#x2F;download&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.audacityteam.org&#x2F;download&#x2F;</a><p>[2] <a href="http:&#x2F;&#x2F;manual.audacityteam.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;manual.audacityteam.org&#x2F;</a>
jeffmouldalmost 9 years ago
You might be able to hack something up using a audio library such as:<p>1) <a href="http:&#x2F;&#x2F;yaafe.sourceforge.net&#x2F;" rel="nofollow">http:&#x2F;&#x2F;yaafe.sourceforge.net&#x2F;</a><p>2) <a href="https:&#x2F;&#x2F;github.com&#x2F;jamiebullock&#x2F;LibXtract&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jamiebullock&#x2F;LibXtract&#x2F;</a>