在 React Native 中使用 Whisper 进行语音识别
在React Native中使用react-native-voice
库进行语音识别,首先需要安装这个库:
npm install react-native-voice --save
然后根据平台指南进行相应的链接设置:
react-native link react-native-voice
接下来,你可以创建一个简单的组件来使用Whisper进行语音识别:
import React, { useState } from 'react';
import { Text, View, Button } from 'react-native';
import Voice from 'react-native-voice';
const SpeechToTextComponent = () => {
const [transcription, setTranscription] = useState('');
const startRecognizing = () => {
Voice.start('en_US', false, false, false);
Voice.onResult = (e) => onResult(e);
Voice.onError = (e) => console.error(e);
Voice.onStart = () => console.log('Recognition started');
};
const onResult = (e) => {
setTranscription(e.value);
Voice.stop();
};
return (
<View>
<Button title="Start Recognizing" onPress={startRecognizing} />
<Text>{transcription}</Text>
</View>
);
};
export default SpeechToTextComponent;
在这个例子中,我们定义了一个名为SpeechToTextComponent
的函数组件,它使用了useState
钩子来管理语音转文本的结果状态。startRecognizing
函数用于启动语音识别,并且设置了Voice.onResult
和Voice.onError
回调来处理识别结果和错误。当识别开始时,它会通过Voice.onStart
回调打印一条消息。
请确保你的设备或模拟器拥有正确的麦克风权限,并且在使用时设备的麦克风处于启用状态。
评论已关闭