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
소스 기사에는 이것이 적용되는 특정 OS로 Yosemite가 나열되어 있지만이 수정 사항은 Mavericks 및 Snow Leopard (unested)에서도 작동한다는 것을 알고 있습니다.
현재이 정확한 문제가 발생하여 눈에 띄지 않는 결과로 해당 명령을 입력했습니다. 머신을 재부팅하고 새로운 설정이 적용되는지 확인하겠습니다. 그러나이 명령은 대다수의 사람들 이이 문제를 해결 한 방법 인 것 같습니다.
편집 : 방금 재부팅하면 오디오 품질이 훨씬 좋아집니다. 눈에 띄는 고르지 않음 (나무에 노크). 위에 게시 한 명령으로 문제가 해결 된 것 같습니다.
편집 2 (2015-8-24) : 위의 명령 은 많은 경우에 도움이되고 눈에 띄는 품질 향상을 가져옵니다 . 그러나 안타깝게도 Yosemite는 블루투스 오디오와 관련하여 매우 기분 이 좋습니다 . 다른 블루투스 장치와 근접한 경우 문제가 복잡해집니다. 나는 위의 내 이전의 답변을 확장하려면 매우 다른 블루투스 오디오 매개 변수를 증가시키기 위해 다음과 같은 추가 명령을 입력하는 것이 좋습니다 :
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
이것에 대한 학점은 그것을 제안한 아래의 현명한 대단하다. (감사합니다!)