这是提供给BluetoothAudioAgent
负责流式传输的守护程序的功率/带宽量的问题。显然,大多数人都可以通过在以下命令中输入以下命令来获得成功terminal.app
:
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40
资料来源:http : //lifehacker.com/fix-your-bluetooth-audio-in-yosemite-with-this-terminal-1670380974
源文章将Yosemite列为适用于此的特定操作系统,但我知道此修复程序还适用于Mavericks和(可能)Snow Leopard(未经测试)。
我目前遇到这个确切的问题,并以不明显的结果输入了该命令。我将重新启动计算机,并查看是否将新设置考虑在内。但似乎此命令是大多数人解决此问题的方式。
编辑:刚刚重新启动,音频质量明显更好。没有任何明显的起伏(敲敲木头)。我上面发布的命令似乎确实可以解决该问题。
编辑2(2015-8-24):上面的命令在许多情况下确实有帮助,并且可以显着改善质量。然而不幸的是,优胜美地对于蓝牙音频非常喜怒无常。当靠近其他蓝牙设备时,问题会自行加剧。为了扩展上面的答案,我强烈建议输入以下其他命令来增加其他蓝牙音频参数:
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 48
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 40
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool Min (editable)" 40
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 58
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 58
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 48
编辑3(2015-9-08):好的。很抱歉,我一直在更新此答案,但是我一直在寻找有关此问题的更多信息(因为改善优胜美地的蓝牙音频显然是一项长期的工作)。我发现了几种直接切入芥末的来源,80
并将似乎是Bitpool
设置的最大允许值的所有内容都设置为该来源。如果以上设置对您来说效果不佳,请尝试“ All In™”方法。
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool Min (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 80
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 80
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 80
要查看当前的默认值:
defaults read com.apple.BluetoothAudioAgent
编辑4(2016-07-14):再进行一次(希望最后一次)编辑。更改这些设置后,请确保重新启动bluetoothaudiod
(或coreaudiod
)服务。
sudo killall bluetoothaudiod
或者,如果您在El Capitan上:
sudo killall coreaudiod
值得赞扬的是以下提出建议的多重智慧书呆子。(谢谢!)