想在蓝牙耳机上播放TTS

发布于 2024-12-06 04:03:16 字数 203 浏览 0 评论 0原文

我有一个 TTS 应用程序,可以在手机扬声器和有线耳机上正常工作。但是当我连接蓝牙耳机时,蓝牙耳机不说话。

如何在不使用任何已弃用的 API 的情况下执行此操作。

问题出在 Android 2.3 AudioManager 中。 setRouting()、setBluetoothA2DP 均已弃用。

请指导如何将我的 TTS 输出发送到蓝牙。

I have a TTS Application which works fine on phone speaker and wired headsets. But when I connect Bluetooth headset, it does not speak on Bluetooth headset.

How can I do this without using any deprecated API.

The problem is in Android 2.3 AudioManager .. setRouting(), setBluetoothA2DP all are deprecated.

Please guide how can I send my TTS output to bluetooth.

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

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

发布评论

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

评论(1

旧话新听 2024-12-13 04:03:16

你确定要尝试这个吗:

HashMap<String, String> myHashAlarm = new HashMap<String, String>();
myHashAlarm.put(TextToSpeech.Engine.KEY_PARAM_STREAM, String.valueOf(AudioManager.STREAM_SYSTEM_CALL));
mTts.speak(" aabb1321100111000",TextToSpeech.QUEUE_ADD, myHashAlarm);

AudioManager mAudioManager = (AudioManager) getContext().getSystemService(Context.AUDIO_SERVICE);
mAudioManager.setStreamMute(AudioManager.STREAM_VOICE_CALL, true);
mAudioManager.startBluetoothSco();

Are you sure you try this:

HashMap<String, String> myHashAlarm = new HashMap<String, String>();
myHashAlarm.put(TextToSpeech.Engine.KEY_PARAM_STREAM, String.valueOf(AudioManager.STREAM_SYSTEM_CALL));
mTts.speak(" aabb1321100111000",TextToSpeech.QUEUE_ADD, myHashAlarm);

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