我有一個.wav
文件。我想從該聲音文件中獲取PCM數據,以便從聲音中獲取各個數據塊並對其進行處理。如何從wav文件中獲取PCM數據?
但我不知道該怎麼做。誰能告訴我該怎麼做? 到目前爲止,我已經做到了這一點:
public class test
{
static int frameSample;
static int timeofFrame;
static int N;
static int runTimes;
static int bps;
static int channels;
static double times;
static int bufSize;
static int frameSize;
static int frameRate;
static long length;
public static void main(String[] args)
{
try
{
AudioInputStream ais = AudioSystem.getAudioInputStream(new File("music/audio.wav"));
AudioInputStream a;
int numBytes = ais.available();
System.out.println("numbytes: "+numBytes);
byte[] buffer = new byte[numBytes];
byte[] buffer1=new byte[numBytes] ;
int k=0;
int count=0;
while(count!=-1){
count=ais.read(buffer, 0, numBytes);
}
long value = 0;
for (int i = 0; i < buffer.length; i++)
{
value = ((long) buffer[i] & 0xffL) << (8 * i);
System.out.println("value: "+value);
}
} catch(Exception e) {
}
}
}
你想用Java或J做這個嗎?在你提出問題之前,我從未聽說過'J',並懷疑你的意思是Java。 –
對不起。我不是指j。我想用java來做。再次抱歉。 – Pallab