我正试图通过套接字将语音从android发送到PC。我的代码正在运行,但在PC端,我听到的是很多噪音,我甚至无法听到任何声音。
这是我正在使用的Android代码:
byte buffer[]=new byte[1024];
int buffersize = AudioRecord.getMinBufferSize(SAMPLE_RATE, AudioFormat.CHANNEL_IN_MONO, AudioFormat.ENCODING_PCM_16BIT);
mic=new AudioRecord(MediaRecorder.AudioSource.MIC, SAMPLE_RATE, AudioFormat.CHANNEL_IN_MONO, AudioFormat.ENCODING_PCM_16BIT, buffersize);
mic.startRecording();
while(running){
count=mic.read(buffer, 0, buffer.length);
if(count>0){
OutputStream.write(buffer, 0, count);
}
}
这是PC代码:
float sampleRate=44100;
int sampleSize=16;
int channel=1;
boolean sign=true;
boolean bigendian=true;
AudioFormat format=new AudioFormat(sampleRate, sampleSize, channel, sign, bigendian);
SourceDataLine voiceLine;
DataLine.Info LineInfo=new DataLine.Info(SourceDataLine.class, format);
if(AudioSystem.isLineSupported(LineInfo)){
System.out.println("Line Supported...");
}else{
System.out.println("not supported Line...");
}
voiceLine = (SourceDataLine) AudioSystem.getLine(LineInfo);
voiceLine.open(format);
voiceLine.start();
byte buffer[] = new byte[1024];
inputStream=new BufferedInputStream(connection.getInputStream());
while(true){
count=inputStream.read(buffer,0,buffer.length);
InputStream in;
in=new ByteArrayInputStream(buffer);
AudioInputStream ais=new AudioInputStream(in, format, buffer.length /format.getFrameSize());
ais.read(audio, 0, count);
voiceLine.write(audio, 0, count);
}
到目前为止我测试的是什么:
到目前为止我尝试过:
但什么也没得到。我太糊涂了。有人请帮助我............... :(
答案 0 :(得分:0)
我最终解决了这个问题。
事实证明我必须将其更改为bigendian=false;
,现在它可以正常工作。