3

可能重复:
Android:录音和保存音频

我是说 ;

我在 android 上使用语音识别类,我成功进行了语音识别。但我想要真实的语音数据而不是单词而不是它。例如,我说'teacher'和 android 让你说老师。哦,好的,但我想要我的声音,其中包括'teacher'。它在哪里?我可以拿走它并保存另一个位置吗?

我使用这个类来语音到文本:

package net.viralpatel.android.speechtotextdemo;

import java.util.ArrayList;

import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.Menu;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

    protected static final int RESULT_SPEECH = 1;

    private ImageButton btnSpeak;
    private TextView txtText;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        txtText = (TextView) findViewById(R.id.txtText);

        btnSpeak = (ImageButton) findViewById(R.id.btnSpeak);

        btnSpeak.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                Intent intent = new Intent(
                        RecognizerIntent.ACTION_RECOGNIZE_SPEECH);

                intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US");

                try {
                    startActivityForResult(intent, RESULT_SPEECH);
                    txtText.setText("");
                } catch (ActivityNotFoundException a) {
                    Toast t = Toast.makeText(getApplicationContext(),
                            "Ops! Your device doesn't support Speech to Text",
                            Toast.LENGTH_SHORT);
                    t.show();
                }
            }
        });

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        switch (requestCode) {
        case RESULT_SPEECH: {
            if (resultCode == RESULT_OK && null != data) {

                ArrayList<String> text = data
                        .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);

                txtText.setText(text.get(0));
            }
            break;
        }

        }
    }
}

谢谢。

4

1 回答 1

2

因此,您想使用Android 语音识别 API来获取用户所说内容的转录和音频。我知道的唯一解决方案是使用SpeechRecognizer-class。这允许您与安装在系统上的语音识别器进行交互,但您必须自己实现 UI(麦克风按钮、错误消息显示等)。所以它比使用 plain 多一点工作RecognizerIntent.ACTION_RECOGNIZE_SPEECH。您的案例中的相关类/方法是:

请注意,最后一个方法的文档包括不保证会调用此方法,因此语音识别 API 并非真正设计为允许音频捕获。它还说采样率取决于实现。,即您甚至不知道如何播放音频(或将其保存为 wav)。

另请参阅答案https://stackoverflow.com/a/10918416/12547

总结一下:

  • Android 语音识别 API返回 MP3
  • Android 语音识别 API不会在 SD 卡上写入任何内容
  • Android 语音识别 API 包含一个以字节数组形式返回音频的方法,但您不能依赖每个语音识别应用程序来实现此方法
于 2012-11-05T08:36:13.180 回答