2020
12-23
12-23
Java 实现麦克风自动录音
最近在研究语音识别,使用百度的sdk。发现只有识别的部分,而我需要保存音频文件,并且实现当有声音传入时自动生成音频文件。先上代码:publicclassEngineeCore{StringfilePath="E:\\voice\\voice_cache.wav";AudioFormataudioFormat;TargetDataLinetargetDataLine;booleanflag=true;privatevoidstopRecognize(){flag=false;targetDataLine.stop();targetDataLine.close();}private...
继续阅读 >