react native baidu vtts
1.0.0
This is an React-native library that can do text-to-speech
please follow this page ReactNative集成百度语音合成 make setting.
current is only support android, ios coming soon.
$ npm install react-native-baidu-vtts --save
$ react-native link react-native-baidu-vtts
coming soon
android/app/src/main/java/[...]/MainActivity.javaimport com.wayne.baiduvoice.RNBaiduvoicePackage; to the imports at the top of the filenew RNBaiduvoicePackage() to the list returned by the getPackages() methodandroid/settings.gradle:
include ':react-native-baidu-vtts'
project(':react-native-baidu-vtts').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-baidu-vtts/android')
android/app/build.gradle:
implementation project(':react-native-baidu-vtts')
import RNBaiduvoice from 'react-native-baidu-vtts';
// TODO: What to do with the module?
class App extends Component{
componentDidMount() {
// 填写百度语音官网申请的appid, apikey, secretkey
const appid = ''
const apikey = ''
const secretkey = ''
RNBaiduvoice.initBaiduTTS(appid,apikey,secretkey)
}
_speechText = () => {
RNBaiduvoice.speak('百度语音')
}
render() {
return (
<View style={styles.container}>
{/*<TwoList/>*/}
<TouchableOpacity onPress={this._speechText}>
<Text style={{fontSize: 20, height: 30}}>测试语音</Text>
</TouchableOpacity>
</View>
);
}
}