python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Pydub library to find the loudest portion of an audio clip, save from 5 seconds before to 5 seconds after, and print out the max decibels?
I want to take m4a files from iPhones and use Python to find the max-decibel portion of the segment. I then want to trim the clip to start 5 seconds before, and end 5 seconds after the max-decibel poi...
JapeHarf
Votes: 0
Answers: 0
How to determine the voltage range of a microphone output?
I have an analog microphone: PMM-3738-VM1010-R. I want to know what will be the voltage range of the microphone's output at a specific threshold level, let's say 89 dB threshold (different thresholds ...
Dar
Votes: 0
Answers: 0
get db values from .wav file python
I am trying to get db values from .wav file python using this formula:
dbs = [20 * np.log10(np.sqrt(np.mean(chunk ** 2))) for chunk in chunks]
The issue I am facing is I am getting NaN values in dbs l...
AncientOne
Votes: 0
Answers: 0