有没有办法在录制时获得声音的分贝值?我正在使用MediaRecorder
来录制声音
我不能在市场上使用任何应用程序,因为我无法确定用户是否会在手机上安装它,例如Audalyzer
我正在使用以下公式,但不确定它们是否正确或我的结果是否正确!
short data[] = new short[bufferSize];
read = recorder.read(data, 0, bufferSize);
double p2 = data[data.length-1];
System.out.println("p2: " + p2);
double decibel;
if (p2==0)
decibel=Double.NEGATIVE_INFINITY;
else
decibel = 20.0*Math.log10(p2/65535.0);
System.out.println("p2/65535: " + (p2/65535.0));
System.out.println("decibel: " + decibel);
目前的结果:
01-11 16:43:03.821: I/System.out(14530): p2: 0.0
01-11 16:43:03.821: I/System.out(14530): p2/65535: 0.0
01-11 16:43:03.821: I/System.out(14530): decibel: -Infinity
01-11 16:43:03.911: I/System.out(14530): p2: 0.0
01-11 16:43:03.911: I/System.out(14530): p2/65535: 0.0
01-11 16:43:03.911: I/System.out(14530): decibel: -Infinity
01-11 16:43:04.001: I/System.out(14530): p2: 0.0
01-11 16:43:04.001: I/System.out(14530): p2/65535: 0.0
01-11 16:43:04.001: I/System.out(14530): decibel: -Infinity
01-11 16:43:04.091: I/System.out(14530): p2: 0.0
01-11 16:43:04.091: I/System.out(14530): p2/65535: 0.0
01-11 16:43:04.091: I/System.out(14530): decibel: -Infinity
01-11 16:43:04.191: I/System.out(14530): p2: 0.0
01-11 16:43:04.191: I/System.out(14530): p2/65535: 0.0
01-11 16:43:04.191: I/System.out(14530): decibel: -Infinity
01-11 16:43:04.281: I/System.out(14530): p2: 0.0
01-11 16:43:04.281: I/System.out(14530): p2/65535: 0.0
01-11 16:43:04.281: I/System.out(14530): decibel: -Infinity
01-11 16:43:04.371: I/System.out(14530): p2: 0.0
01-11 16:43:04.371: I/System.out(14530): p2/65535: 0.0
01-11 16:43:04.371: I/System.out(14530): decibel: -Infinity
答案 0 :(得分:2)
使用AudioRecord,您可以直接访问音频样本......从那里,您可以以分贝或任何您想要的方式计算声音的音量......
This似乎也是同一个问题(并且有计算公式)
编辑(基于评论和额外代码):
现在,您使用的变量data []是声明为数组还是字节还是短路?这将改变将使用哪一个read()函数。如果你声明它是短路,那么这将照顾你的16位。如果将其声明为字节数组,则必须组合两个连续的字节。
您不应该担心负值和正值,您应该将data []声明为'unsigned short'数组。
您需要了解分贝值是将当前音量与其他音量进行比较。我不是一个真正的专家,但我相信大多数时候你把它与最大可能的幅度进行比较。我相信,现在,您正在进行的计算是比较两个连续的样本,这就是为什么该值相当低...而不是p1,而是使用值65535(这是可能的最大值)。那么你应该看到当没有任何东西时分贝值是一个负值,并且应该随噪声增加(但仍然是负值)。
编辑(基于最新代码):
由于样本大小为16位,请使用短路...
short buffer[] = new short[bufferSize];
read = recorder.read(buffer, 0, bufferSize);
double p2 = data[data.length-1];
double decibel;
if (p2==0)
decibel=Double.NEGATIVE_INFINITY;
else
decibel = 20.0*Math.log10(p2/65535.0);
尝试打印所有值(data [data.length-1],p2,p2 / 65535,Math.log10(p2 / 65535)...等...)你会发现那里的所有值如果没有,就会出现0。