Reset Bluetooth audio codec after walking away and coming back
When using Bluetooth headphones with A2DP, if I walk away from my computer to the edge of reception, I can hear that the codec switches down to a lower bitrate to try to accommodate the situation. When I come back, the low quality audio remains until I power off my headphones, turn them back on, and pair them again.
Is there any sort of easier/faster way to reset the codec without having to reset the headphones?
Intel Bluetooth on a Lenovo T480 running Windows 10 x64, and a Shure BT1 earphones adapter.
windows audio bluetooth
add a comment |
When using Bluetooth headphones with A2DP, if I walk away from my computer to the edge of reception, I can hear that the codec switches down to a lower bitrate to try to accommodate the situation. When I come back, the low quality audio remains until I power off my headphones, turn them back on, and pair them again.
Is there any sort of easier/faster way to reset the codec without having to reset the headphones?
Intel Bluetooth on a Lenovo T480 running Windows 10 x64, and a Shure BT1 earphones adapter.
windows audio bluetooth
See if in an elevated PowerShell this has the same effect as re-pairing:Get-Service -DisplayName *Bluetooth* | Restart-Service
, orGet-Service -DisplayName *Bluetooth* | Restart-Service -Force
. If that works, it can be packaged inside a batch file on the desktop.
– harrymc
Jan 10 at 17:00
add a comment |
When using Bluetooth headphones with A2DP, if I walk away from my computer to the edge of reception, I can hear that the codec switches down to a lower bitrate to try to accommodate the situation. When I come back, the low quality audio remains until I power off my headphones, turn them back on, and pair them again.
Is there any sort of easier/faster way to reset the codec without having to reset the headphones?
Intel Bluetooth on a Lenovo T480 running Windows 10 x64, and a Shure BT1 earphones adapter.
windows audio bluetooth
When using Bluetooth headphones with A2DP, if I walk away from my computer to the edge of reception, I can hear that the codec switches down to a lower bitrate to try to accommodate the situation. When I come back, the low quality audio remains until I power off my headphones, turn them back on, and pair them again.
Is there any sort of easier/faster way to reset the codec without having to reset the headphones?
Intel Bluetooth on a Lenovo T480 running Windows 10 x64, and a Shure BT1 earphones adapter.
windows audio bluetooth
windows audio bluetooth
asked Sep 25 '18 at 14:56
BradBrad
3,48843261
3,48843261
See if in an elevated PowerShell this has the same effect as re-pairing:Get-Service -DisplayName *Bluetooth* | Restart-Service
, orGet-Service -DisplayName *Bluetooth* | Restart-Service -Force
. If that works, it can be packaged inside a batch file on the desktop.
– harrymc
Jan 10 at 17:00
add a comment |
See if in an elevated PowerShell this has the same effect as re-pairing:Get-Service -DisplayName *Bluetooth* | Restart-Service
, orGet-Service -DisplayName *Bluetooth* | Restart-Service -Force
. If that works, it can be packaged inside a batch file on the desktop.
– harrymc
Jan 10 at 17:00
See if in an elevated PowerShell this has the same effect as re-pairing:
Get-Service -DisplayName *Bluetooth* | Restart-Service
, or Get-Service -DisplayName *Bluetooth* | Restart-Service -Force
. If that works, it can be packaged inside a batch file on the desktop.– harrymc
Jan 10 at 17:00
See if in an elevated PowerShell this has the same effect as re-pairing:
Get-Service -DisplayName *Bluetooth* | Restart-Service
, or Get-Service -DisplayName *Bluetooth* | Restart-Service -Force
. If that works, it can be packaged inside a batch file on the desktop.– harrymc
Jan 10 at 17:00
add a comment |
2 Answers
2
active
oldest
votes
Restarting the Bluetooth services might have the same effect as redoing the
pairing, regarding the playback quality on the computer, as the Bluetooth
software should then forget the need for lower bitrate.
Use the following command in elevated mode:
powershell "Get-Service -DisplayName *Bluetooth* | Restart-Service -Force"
If this works, you can put it in a desktop shortcut for easy use.
add a comment |
You probably don't need to turn the headphones off - just disconnect and reconnect. Similar to harrymc's answer, you could also try to restart the bluetooth services - experiment around by reproducing the problem then opening the services (run services.msc
at a command prompt or Run box) and try it with the bluetooth entries (for ex, bluetooth support service). If it fixes it, find the service name and make a batch file to run net restart <service>
(without the arrow characters). Then you could keep it on the desktop to double click to restart the bluetooth service, potentially re-connecting it to your headphones.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1361256%2freset-bluetooth-audio-codec-after-walking-away-and-coming-back%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Restarting the Bluetooth services might have the same effect as redoing the
pairing, regarding the playback quality on the computer, as the Bluetooth
software should then forget the need for lower bitrate.
Use the following command in elevated mode:
powershell "Get-Service -DisplayName *Bluetooth* | Restart-Service -Force"
If this works, you can put it in a desktop shortcut for easy use.
add a comment |
Restarting the Bluetooth services might have the same effect as redoing the
pairing, regarding the playback quality on the computer, as the Bluetooth
software should then forget the need for lower bitrate.
Use the following command in elevated mode:
powershell "Get-Service -DisplayName *Bluetooth* | Restart-Service -Force"
If this works, you can put it in a desktop shortcut for easy use.
add a comment |
Restarting the Bluetooth services might have the same effect as redoing the
pairing, regarding the playback quality on the computer, as the Bluetooth
software should then forget the need for lower bitrate.
Use the following command in elevated mode:
powershell "Get-Service -DisplayName *Bluetooth* | Restart-Service -Force"
If this works, you can put it in a desktop shortcut for easy use.
Restarting the Bluetooth services might have the same effect as redoing the
pairing, regarding the playback quality on the computer, as the Bluetooth
software should then forget the need for lower bitrate.
Use the following command in elevated mode:
powershell "Get-Service -DisplayName *Bluetooth* | Restart-Service -Force"
If this works, you can put it in a desktop shortcut for easy use.
edited Jan 12 at 20:40
answered Jan 12 at 19:36
harrymcharrymc
257k14268568
257k14268568
add a comment |
add a comment |
You probably don't need to turn the headphones off - just disconnect and reconnect. Similar to harrymc's answer, you could also try to restart the bluetooth services - experiment around by reproducing the problem then opening the services (run services.msc
at a command prompt or Run box) and try it with the bluetooth entries (for ex, bluetooth support service). If it fixes it, find the service name and make a batch file to run net restart <service>
(without the arrow characters). Then you could keep it on the desktop to double click to restart the bluetooth service, potentially re-connecting it to your headphones.
add a comment |
You probably don't need to turn the headphones off - just disconnect and reconnect. Similar to harrymc's answer, you could also try to restart the bluetooth services - experiment around by reproducing the problem then opening the services (run services.msc
at a command prompt or Run box) and try it with the bluetooth entries (for ex, bluetooth support service). If it fixes it, find the service name and make a batch file to run net restart <service>
(without the arrow characters). Then you could keep it on the desktop to double click to restart the bluetooth service, potentially re-connecting it to your headphones.
add a comment |
You probably don't need to turn the headphones off - just disconnect and reconnect. Similar to harrymc's answer, you could also try to restart the bluetooth services - experiment around by reproducing the problem then opening the services (run services.msc
at a command prompt or Run box) and try it with the bluetooth entries (for ex, bluetooth support service). If it fixes it, find the service name and make a batch file to run net restart <service>
(without the arrow characters). Then you could keep it on the desktop to double click to restart the bluetooth service, potentially re-connecting it to your headphones.
You probably don't need to turn the headphones off - just disconnect and reconnect. Similar to harrymc's answer, you could also try to restart the bluetooth services - experiment around by reproducing the problem then opening the services (run services.msc
at a command prompt or Run box) and try it with the bluetooth entries (for ex, bluetooth support service). If it fixes it, find the service name and make a batch file to run net restart <service>
(without the arrow characters). Then you could keep it on the desktop to double click to restart the bluetooth service, potentially re-connecting it to your headphones.
answered Jan 12 at 20:47
QuickishFMQuickishFM
1465
1465
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1361256%2freset-bluetooth-audio-codec-after-walking-away-and-coming-back%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See if in an elevated PowerShell this has the same effect as re-pairing:
Get-Service -DisplayName *Bluetooth* | Restart-Service
, orGet-Service -DisplayName *Bluetooth* | Restart-Service -Force
. If that works, it can be packaged inside a batch file on the desktop.– harrymc
Jan 10 at 17:00