我能够将文本转换为音频,现在我想将此文件发送给Google助手。
VoiceParameters params = new VoiceParameters("here is the text which gets converted to audio", Languages.English_India);
params.setCodec(AudioCodec.MP3);
params.setFormat(AudioFormat.Format_44KHZ.AF_44khz_16bit_stereo);
params.setBase64(false);
params.setSSML(false);
params.setRate(0);
byte[] voice = tts.speech(params);
FileOutputStream fos = new FileOutputStream("C:\\Users\\tom\\Desktop\\voice.mp3");
fos.write(voice, 0, voice.length);
fos.flush();
fos.close();
谢谢!