これが私のスレッド関数です
public void run() {
recorder.start();
d.startUtt();
d.setRawdataSize(300000);
byte[] b = new byte[4096];
// Skip the first buffer, usually zeroes
recorder.read(b, 0, b.length);
while ((!interrupted()))
{
int nbytes;
short[] s = null;
nbytes = recorder.read(b, 0, b.length);
ByteBuffer bb = ByteBuffer.wrap(b, 0, nbytes);
s = new short[nbytes/2];
bb.asShortBuffer().get(s);
d.processRaw(s, nbytes/2, false, false);
if (nbytes > 0)
{
d.processRaw(s, nbytes, false, false);
Hypothesis hypothesis = d.hyp();
if(hypothesis != null)
System.out.println(hypothesis.getHypstr());
}
if (this.timeoutSamples != -1) {
this.remainingSamples -= nbytes;
}
}
recorder.stopRecording();
d.endUtt();
}
これで、マイクは継続的に録音され、マイクを停止する前に、audioInputStreamデータをdecoder.processRawに送信しています。やってみたけどなんとなく。.dll ライブラリはログを返さず、decoder.hyp() も null になります。継続的に。レコーダー スレッドがデコーダー ライブラリ スレッドをいじっていると思います。Cライブラリで。
編集: デコーダーの初期化
Config c = Decoder.defaultConfig();
String acousticModelLoc = "speech\\model\\en-us-ptm";
String dictLoc = "dictionary\\cmudict-en-us.dict";
String kwFileLoc = "speech\\grammar\\digits.gram";
c.setString("-hmm", acousticModelLoc);
c.setString("-jsgf", kwFileLoc);
c.setString("-dict", dictLoc);
d = new Decoder(c);
助けてください