根据振幅计算分贝 - Android 媒体录音机

发布于 2024-11-18 12:30:53 字数 86 浏览 5 评论 0原文

如何从 maxAmplitude 计算分贝,我编写了一个 Android 应用程序来定期获取 maxAmplitude,我需要以分贝为单位向用户显示 o/p。

How to calculate decibel from maxAmplitude, I wrote an android application to get maxAmplitude at regular interval, I need to show the o/p to the user in decibels.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尐籹人 2024-11-25 12:30:53

分贝是一个相对单位,它们表示信号相对于某个参考功率的功率。

如果您使用振幅,则公式为:(

power_db = 20 * log10(amp / amp_ref);

请参阅 http://en.wikipedia.org /wiki/Decibel#Field_quantities)。

另请注意,最大幅度通常不是响度(甚至功率)的很好指标。更典型的是,您应该测量信号的RMS功率,并且将其转换为 dB。

Decibels are a relative unit, they express the power of your signal relative to some reference power.

If you are working with amplitudes, then the formula is:

power_db = 20 * log10(amp / amp_ref);

(See http://en.wikipedia.org/wiki/Decibel#Field_quantities).

Note also that maximum amplitude is not usually a very good indicator of loudness (or even of power). More typically, you should measure the RMS power of your signal, and convert that to dB instead.

仅冇旳回忆 2024-11-25 12:30:53

普通手机麦克风没有经过校准来测量绝对响度,因此如果没有声级计来初始校准手机,就不可能实现。正如奥利提到的,您也许能够计算响度的相对变化,但我希望您想要复制一个真实的声级计。

Regular phone microphones aren't calibrated to measure absolute loudness, so it's not possible without also having a sound meter to initially calibrate the phone. As Oli mentions, you may be able to calculate a relative change in loudness, but I expect you want to replicate a real sound level meter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文