gpt4 book ai didi

audio - Dialogflow,从音频中检测意图

转载 作者:行者123 更新时间:2023-12-04 21:03:32 26 4
gpt4 key购买 nike

我正在尝试将音频文件发送到 dialogflow API 以进行意图检测。我已经有一个代理工作得很好,但只有文本。我正在尝试添加音频功能,但没有运气。

我正在使用此页面中提供的示例(Java):

https://cloud.google.com/dialogflow-enterprise/docs/detect-intent-audio#detect-intent-text-java

这是我的代码:

public  DetectIntentResponse detectIntentAudio(String projectId, byte [] bytes, String sessionId,
String languageCode)
throws Exception {


// Set the session name using the sessionId (UUID) and projectID (my-project-id)
SessionName session = SessionName.of(projectId, sessionId);
System.out.println("Session Path: " + session.toString());

// Note: hard coding audioEncoding and sampleRateHertz for simplicity.
// Audio encoding of the audio content sent in the query request.
AudioEncoding audioEncoding = AudioEncoding.AUDIO_ENCODING_LINEAR_16;
int sampleRateHertz = 16000;

// Instructs the speech recognizer how to process the audio content.
InputAudioConfig inputAudioConfig = InputAudioConfig.newBuilder()
.setAudioEncoding(audioEncoding) // audioEncoding = AudioEncoding.AUDIO_ENCODING_LINEAR_16
.setLanguageCode(languageCode) // languageCode = "en-US"
.setSampleRateHertz(sampleRateHertz) // sampleRateHertz = 16000
.build();

// Build the query with the InputAudioConfig
QueryInput queryInput = QueryInput.newBuilder().setAudioConfig(inputAudioConfig).build();

// Read the bytes from the audio file
byte[] inputAudio = Files.readAllBytes(Paths.get("/home/rmg/Audio/book_a_room.wav"));

byte[] encodedAudio = Base64.encodeBase64(inputAudio);
// Build the DetectIntentRequest
DetectIntentRequest request = DetectIntentRequest.newBuilder()
.setSession("projects/"+projectId+"/agent/sessions/" + sessionId)
.setQueryInput(queryInput)
.setInputAudio(ByteString.copyFrom(encodedAudio))
.build();

// Performs the detect intent request
DetectIntentResponse response = sessionsClient.detectIntent(request);

// Display the query result
QueryResult queryResult = response.getQueryResult();
System.out.println("====================");
System.out.format("Query Text: '%s'\n", queryResult.getQueryText());
System.out.format("Detected Intent: %s (confidence: %f)\n",
queryResult.getIntent().getDisplayName(), queryResult.getIntentDetectionConfidence());
System.out.format("Fulfillment Text: '%s'\n", queryResult.getFulfillmentText());

return response;

}

我尝试了几种格式,wav(PCM 16 位几个采样率)和 FLAC,并且还按照此处描述的两种不同方式将字节转换为 base64(通过代码或控制台):

https://dialogflow.com/docs/reference/text-to-speech

我什至使用本示例中提供的 .wav 进行了测试,并使用该训练短语在我的代理中创建了一个名为“预订房间”的新意图。它使用来自 dialogflow 控制台的文本和音频,但仅适用于文本,而不是来自我的代码的音频......我正在发送他们提供的相同 wav! (上面的代码)

我总是收到相同的响应 (QueryResult):

enter image description here

我需要一个线索什么的,我完全被困在这里了。没有日志,响应中没有错误......但不起作用。

谢谢

最佳答案

我写信给 dialogflow 支持,并用一段工作代码回复了我。基本上和上面贴的一样,唯一的区别是base64编码,没有必要这样做。

所以我删除了:

byte[] encodedAudio = Base64.encodeBase64(inputAudio);

(并直接使用 inputAudio )

现在它按预期工作......

关于audio - Dialogflow,从音频中检测意图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52852519/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com