博览会演讲在某些iOS设备上不起作用



我在我的应用程序中使用了expo-speech,但在某些iOS设备中没有读出文本。 从让我的朋友测试它,我得到的结果是:

工程:

  • 苹果手机 X. 13.3.1
  • 苹果手机 10.
  • 苹果手机 X. 13.3.1
  • iPhone 8 Plus. 13.3.1
  • iPhone 7+. 13.1.2

不工作:

  • 苹果手机 Xs. 13.3.1
  • 苹果手机 8. 13.4.1

它也可以在我在本地开发时尝试的每个 iOS 模拟器中正常工作。

我创建了一个非常简单的存储库(下面的链接(来使用以下代码进行测试:

import React from 'react';
import * as Speech from "expo-speech";
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
setInterval(()=>{
Speech.speak(`I am a test`);
}, 2000);
return (
<View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});

https://snack.expo.io/@jamesweblondon/sound-test

使用世博会应用程序在iPhone 8 13.4.1上对其进行测试,它也不起作用。

更新:事实证明,是静音模式导致了这种情况:https://github.com/expo/expo/issues/8235

理想的解决方案是像YouTube等一样播放声音。

第二好的方法是在iOS中检测静音模式,这样我至少可以通知用户此功能不起作用以及如何修复它。

由于静音模式,我在锻炼时间应用程序上遇到了同样的问题。

世博会解决方案:

我们可以使用 Expo-AV Expo 库在 SLIENT 模式下播放语音playsInSilentModeIOS: true

在"显示文本到语音"中,当其他声音处于播放模式时,文本到语音转换正在工作。所以你可以附加空的声音

这里下载空的声音

import React, { useEffect } from "react";
import * as Speech from "expo-speech";
import { StyleSheet, Text, View, Platform } from "react-native";
import { Audio } from "expo-av";
const soundObject = new Audio.Sound();
export default function App() {
useEffect(() => {
const enableSound = async () => {
if (Platform.OS === "ios") {
await Audio.setAudioModeAsync({
playsInSilentModeIOS: true,
});
await soundObject.loadAsync(require("./soundFile.mp3"));
await soundObject.playAsync();
}
setInterval(() => {
Speech.speak(`I am a test`);
}, 1000);
};
enableSound();
});
return (
<View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});

反应原生解决方案:

var Sound = require('react-native-sound');
Sound.setCategory('Playback'); // this will enable sound on silent mode

相关内容

  • 没有找到相关文章

最新更新