我必须将matlab代码转换为Android。该matlab代码包含能量计算,如下所示:
首先我将音频文件读入矩阵x,并将采样频率读入fs,然后计算每个窗口的能量:
[x, fs] = wavread('C:\1359873105438.wav')
energy=energy+sum(x(1:fs).^2)*Tss;
我不知道如何将其转换为Android / Java。
你以前经历过这个吗?请帮我解决这个问题。
提前感谢您的帮助
答案 0 :(得分:0)
基本上,你必须做这样的事情:
double x;//Read Wave in here
for (i=0;i<x.length;i++)
{
energy+=Tss*(x[i]^2);
}
如何阅读从this article借来的wave文件。
public class ReadExample
{
public static void main(String[] args)
{
try
{
// Open the wav file specified as the first argument
WavFile wavFile = WavFile.openWavFile(new File(args[0]));
// Get the number of audio channels in the wav file
int numChannels = wavFile.getNumChannels();
// Create a buffer of 100 frames
double[] buffer = new double[100 * numChannels];
int framesRead;
do
{
// Read frames into buffer
framesRead = wavFile.readFrames(buffer, 100);
// Loop through frames and look for minimum and maximum value
for (int s=0 ; s<framesRead * numChannels ; s++)
{
//This is where you put the your code in
}
}
while (framesRead != 0);
// Close the wavFile
wavFile.close();
}
catch (Exception e)
{
System.err.println(e);
}
}
}
最重要的是,没有像matlab中那样干净利落的方式。甚至没有直接读入波形文件的功能。不过,使用网站提供的WavFile课程相对简单。