Android TTS 声音破解

发布于 2024-10-09 05:19:59 字数 91 浏览 1 评论 0原文

我开发了一个基于 TTS 的应用程序。播放声音时,如果触发任何其他通知,则 TTS 播放声音中断。 (例如:如果短信收到 TTS 声音中断) 什么情况下会出现此类问题?

I have developed a TTS based application. When playing it sound, if any other notification triggered, then TTS playing with sound breaking. (Ex: if SMS received TTS sound breaks)
What are condition under which such an issue can occur?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情绪少女 2024-10-16 05:19:59

Android API 中存在一个错误 < 8、要恢复原来的声音,只要说“没什么”。

 protected void speak(final String text, final int mode) {
    speechParams.clear();
    speechParams.put(TextToSpeech.Engine.KEY_PARAM_STREAM, 
                              String.valueOf(AudioManager.STREAM_NOTIFICATION));
    engine.speak(text, TextToSpeech.QUEUE_ADD, speechParams);
    //Bug with API level < 8: The original sound isn't restored automatically.
    //So we do it by speaking nothing. 
    speechParams.put(TextToSpeech.Engine.KEY_PARAM_STREAM, String.valueOf(AudioManager.STREAM_MUSIC));
            this.engine.speak("", mode, speechParams);
        }       
    }

希望有帮助。

there is a bug in the Android API < 8. To restore the original sound, just say "nothing".

 protected void speak(final String text, final int mode) {
    speechParams.clear();
    speechParams.put(TextToSpeech.Engine.KEY_PARAM_STREAM, 
                              String.valueOf(AudioManager.STREAM_NOTIFICATION));
    engine.speak(text, TextToSpeech.QUEUE_ADD, speechParams);
    //Bug with API level < 8: The original sound isn't restored automatically.
    //So we do it by speaking nothing. 
    speechParams.put(TextToSpeech.Engine.KEY_PARAM_STREAM, String.valueOf(AudioManager.STREAM_MUSIC));
            this.engine.speak("", mode, speechParams);
        }       
    }

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文