gpt4 book ai didi

android - 如何从 android 中 RecognitionListener 接口(interface)的 onResults 方法获取音频 URI?

转载 作者:行者123 更新时间:2023-12-02 23:40:37 25 4
gpt4 key购买 nike

我在 Web 上到处寻找从 RecognitionListener 获取音频文件的 URI,使用监听器我正在获取我所说的文本作为输出。但我无法获得音频的 URI。我没有找到任何其他链接,而不是这个 - HERE这仍然没有答案。如果有人知道如何实现这一目标?

@Override
public void onResults(Bundle results) {
Log.i("Voice Recognition", "onResults");
ArrayList<String> matches = results.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION);
txtOutput.setText(matches.get(0));
}

最佳答案

@Override
protected void onActivityResult(int requestCode, int resuleCode, Intent intent) {
super.onActivityResult(requestCode, resuleCode, intent);

if (resuleCode == Activity.RESULT_OK) {
if (requestCode == INTENT_PICK_AUDIO) {
Uri uri = intent.getData(); }}

关于android - 如何从 android 中 RecognitionListener 接口(interface)的 onResults 方法获取音频 URI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39220253/

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