模板版本:v0.2.2
[!TIP] Github 地址
请到三方库的 Releases 发布地址查看配套的版本信息:@react-native-oh-tpl/react-native-tts Releases 。对于未发布到npm的旧版本,请参考安装指南安装tgz包。
进入到工程目录并输入以下命令:
npm install @react-native-oh-tpl/react-native-tts
yarn add @react-native-oh-tpl/react-native-tts
下面的代码展示了这个库的基本使用场景:
[!WARNING] 使用时 import 的库名不变。
import {useState, useCallback} from 'react';
import {Text, View, StyleSheet, SafeAreaView} from 'react-native';
import Tts from 'react-native-tts';
const cnText = `炎炎夏日,阳光如烈火般炙烤大地,空气中弥漫着热浪的气息。树荫下,蝉鸣声如同热浪中跳跃的音符,微风吹过,带来一丝清凉。远处的田野上,金黄的麦浪随风起伏,仿佛在舞动着夏天的节奏。天空湛蓝如洗,白云悠然飘过,似是一幅宁静而美丽的夏日画卷。`;
export function TTSDemo() {
const [speakText, setSpeakText] = useState<string>(cnText);
const addEvent = useCallback(() => {
Tts.addEventListener('tts-start', res => {
console.log('tts-start', res);
});
}, []);
const removeEvent = useCallback(() => {
Tts.addEventListener('tts-start', res => {
console.log('tts-start', res);
});
}, []);
const stopSpeak = useCallback(() => {
Tts.stop();
}, []);
const speakFc = useCallback(() => {
Tts.speak(speakText);
}, []);
const getInitStatus = useCallback(() => {
Tts.getInitStatus().then(() => {
console.log('初始化已完成');
});
}, []);
const pauseFc = useCallback(() => {
Tts.pause();
}, []);
const resumeFc = useCallback(() => {
Tts.resume();
}, []);
const setSpeakRate = useCallback(() => {
Tts.setDefaultRate(2);
}, []);
const setSpeakPitch = useCallback(() => {
Tts.setDefaultPitch(2);
}, []);
const queryVoices = useCallback(() => {
Tts.voices().then(res => {
const resTr = JSON.stringify(res);
setSpeakText(resTr);
});
}, []);
return (
<>
<SafeAreaView style={styles.constainer}>
<Text style={styles.title}>react-native-tts功能验证</Text>
<View style={styles.content}>
<View style={styles.btnWrap}>
<Text style={styles.button} onPress={getInitStatus}>
getInitStatus
</Text>
<Text style={styles.button} onPress={speakFc}>
speak(zh)
</Text>
<Text style={styles.button} onPress={stopSpeak}>
stop
</Text>
<Text style={styles.button} onPress={pauseFc}>
pause
</Text>
<Text style={styles.button} onPress={resumeFc}>
resume
</Text>
<Text style={styles.button} onPress={setSpeakRate}>
setDefaultRate
</Text>
<Text style={styles.button} onPress={setSpeakPitch}>
setDefaultPitch
</Text>
<Text style={styles.button} onPress={queryVoices}>
voices
</Text>
<Text style={styles.button} onPress={addEvent}>
addEventListener
</Text>
<Text style={styles.button} onPress={removeEvent}>
removeEventListener
</Text>
</View>
</View>
</SafeAreaView>
</>
);
}
const styles = StyleSheet.create({
constainer: {
flex: 1,
},
content: {
flex: 1,
display: 'flex',
},
btnWrap: {
width: 'auto',
backgroundColor: 'gray',
display: 'flex',
flexDirection: 'row',
flexWrap: 'wrap',
paddingLeft: 20,
},
text: {
padding: 20,
fontSize: 20,
},
title: {
padding: 10,
fontSize: 30,
textAlign: 'center',
},
button: {
paddingVertical: 6,
paddingHorizontal: 12,
backgroundColor: 'hsl(193, 95%, 68%)',
borderWidth: 2,
borderColor: 'hsl(193, 95%, 30%)',
},
});
本库已经适配了 Codegen
,在使用前需要主动执行生成三方库桥接代码,详细请参考 Codegen 使用文档。
目前鸿蒙暂不支持 AutoLink,所以 Link 步骤需要手动配置。
首先需要使用 DevEco Studio 打开项目里的鸿蒙工程 harmony
{
...
"overrides": {
"@rnoh/react-native-openharmony" : "./react_native_openharmony"
}
}
目前有两种方法:
- 通过 har 包引入(在 IDE 完善相关功能后该方法会被遗弃,目前首选此方法);
- 直接链接源码。
方法一:通过 har 包引入(推荐)
[!TIP] har 包位于三方库安装路径的
harmony
文件夹下。
打开 entry/oh-package.json5
,添加以下依赖
"dependencies": {
"@rnoh/react-native-openharmony": "file:../react_native_openharmony",
"@react-native-oh-tpl/react-native-tts": "file:../../node_modules/@react-native-oh-tpl/react-native-tts/harmony/rn_tts.har"
}
点击右上角的 sync
按钮
或者在终端执行:
cd entry
ohpm install
方法二:直接链接源码
[!TIP] 如需使用直接链接源码,请参考直接链接源码说明
打开 entry/src/main/ets/RNPackagesFactory.ts
,添加:
...
+ import { RNTTSPackage } from '@react-native-oh-tpl/react-native-tts/ts';
export function createRNPackages(ctx: RNPackageContext): RNPackage[] {
return [
new SamplePackage(ctx),
+ new RNTTSPackage(ctx)
];
}
点击右上角的 sync
按钮
或者在终端执行:
cd entry
ohpm install
然后编译、运行即可。
要使用此库,需要使用正确的 React-Native 和 RNOH 版本。另外,还需要使用配套的 DevEco Studio 和 手机 ROM。
请到三方库相应的 Releases 发布地址查看 Release 配套的版本信息:@react-native-oh-tpl/react-native-tts Releases
[!TIP] "Platform"列表示该属性在原三方库上支持的平台。
[!TIP] "HarmonyOS Support"列为 yes 表示 HarmonyOS 平台支持该属性;no 则表示不支持;partially 表示部分支持。使用方法跨平台一致,效果对标 iOS 或 Android 的效果。
Name | Description | Type | Required | Platform | HarmonyOS Support |
---|---|---|---|---|---|
getInitStatus | Returns a promise that resolves when the TTS engine is initialized. | Function | no | All | yes |
requestInstallEngine | Requests installation of the TTS engine if not already installed. | Function | no | Android | no |
requestInstallData | Requests installation of the TTS data if not already installed. | Function | no | Android | no |
setDucking | Sets whether the TTS engine should duck other audio when speaking. | Function | no | All | no |
setDefaultEngine | Sets the default TTS engine. | Function | no | Android | no |
setDefaultVoice | Sets the default voice for the TTS engine. | Function | no | All | no |
setDefaultRate | Sets the default speech rate for the TTS engine. | Function | no | All | yes |
setDefaultPitch | Sets the default pitch for the TTS engine. | Function | no | All | yes |
setDefaultLanguage | Sets the default language for the TTS engine. | Function | no | All | no |
setIgnoreSilentSwitch | Sets whether to ignore the silent button. | Function | no | iOS | no |
voices | Retrieves a list of available voices from the TTS engine. | Function | no | All | yes |
engines | Retrieves a list of available TTS engines. | Function | no | Android | no |
speak | Speaks the given utterance and returns a promise with the utterance ID. | Function | no | All | yes |
stop | Stops the current TTS utterance. | Function | no | All | yes |
pause | Pause the current TTS utterance. | Function | no | All | yes |
resume | Resume the current TTS utterance. | Function | no | All | yes |
addEventListener | Adding an Event Listener | Function | no | All | yes |
removeEventListener | Remove Event Listener | Function | no | All | yes |
- 三方引擎相关功能无法实现的问题:issue#2
- 语言类型只支持中文的问题:issue#3
- setDucking无法实现的问题:issue#4
- setIgnoreSilentSwitch无法实现的问题:issue#5
- setDefaultVoice无法实现的问题:issue#6
- 边合成边播放的问题:issue#7
- 参数skipTransform、onWordBoundary无效的问题:issue#8
本项目基于 The MIT License (MIT),请自由地享受和参与开源。