开源ReactNative集成百度语音开源库

57次阅读

共计 1082 个字符,预计需要花费 3 分钟才能阅读完成。

笔者在之前这篇文章中 ReactNative 集成百度语音合成介绍了在项目中如何集成百度语音合成步骤和部分代码。
今天重 (you) 磅(dian)推 (peng) 出(zhang)百度语音合成开源库# react-native-baidu-vtts , 目前只做了 Android 端的集成,后期补上 IOS 端集成,开源不易,欢迎大家 star

Github 地址:react-native-baidu-vtts

开源的初衷:

  • 虽然能够在项目中集成,但是使用起来还是需要写 Android 类和 js 代码,相对有些繁琐
  • 部分读者在上一篇文章反馈,按照笔者的步骤集成中出现一些问题,比较闹心
  • 网上也有一些类似的开源库,存在如下一下问题:没有使用文档、根本就不是一个库、兼容性问题(Android 机型)ReactNative 集成百度语音合成文章有也有提到。
  • 一直想开源。。。

准备工作

请参考 ReactNative 集成百度语音合成的“兵马未动粮草先行”模块

安装

npm install react-native-baidu-vtts --save
or
yarn add react-native-baidu-vtts 
自动添加原生依赖
react-native link 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 String appid = ''const String apikey =''
        const String 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>
        );
    }
}

最后

同步更新至个人网站:https://wayne214.github.io
欢迎关注我的公众号:君伟说,一个有温度的公众号。

正文完
 0