New audio distortion after upgrade from Sequoia to Tahoe 26.5.1

Yesterday, after finding no serious outstanding bugs reported for the latest release of MacOS, I upgraded my M1 MacBook Pro (16 inch, 2021) from Sequoia 15.6.1 to Tahoe 26.5.1. I am now experiencing serious audio distortion that was not there under Sequoia. I am a composer, and this happens chiefly with MIDI playback within my notation software (Dorico), but I have also noticed it when playing back previously rendered mock-ups in Apple Music. The distortion begins with random crackles and grows until the sound output is muffled and badly distorted. The problem can be temporarily corrected with a reboot, or by killing coreaudiod, but it ALWAYS comes back, sooner or later. Obviously, this is a showstopper and I need to find a solution.


I have found online reports of this issue under earlier Tahoe releases, as well as other audio problems causing distortion in much older versions of MacOS, but only one report from a Tahoe user with an M4 system on these forums. Is anyone else here experiencing similar issues, and has anyone found a permanent fix?

MacBook Pro 16″, macOS 26.5

Posted on Jun 2, 2026 8:14 AM

Reply
Question marked as Top-ranking reply

Posted on Jun 2, 2026 9:26 AM

Hi elisatems,

As a fellow audio-focused Mac user, I understand how critical this is for your workflow. The fact that killing coreaudiod temporarily fixes it is a very important clue — it tells us the Core Audio daemon is entering a degraded state over time, likely due to a change in how Tahoe handles audio buffer management compared to Sequoia. Here are some steps that may help:

  1. Reset Core Audio preferences: Open Terminal and run:




   sudo rm -rf ~/Library/Preferences/com.apple.audio.DeviceSettings.plist
   sudo rm -rf ~/Library/Preferences/com.apple.audio.SystemSettings.plist

Then restart your Mac. These files store audio device configuration and can carry over incompatible settings from Sequoia that conflict with Tahoe's audio stack.

  1. Check and adjust your audio buffer size: Open Audio MIDI Setup (found in Applications > Utilities). Select your built-in output, click "Configure Speakers" and verify the settings. More importantly, if you're using your notation software with a specific sample rate (e.g., 48 kHz), make sure the system output matches. A mismatch between the app's sample rate and the system's can cause progressive distortion on Apple Silicon.
  2. Disable audio-related system features: Go to System Settings > Sound and turn off "Play sound on startup"and check that Sound Effects output is set to the same device as your main output. Then go to System Settings > Accessibility > Audio and make sure nothing unusual is enabled. Conflicting audio routing can stress coreaudiod.
  3. Create a script to restart coreaudiod without rebooting: Since you know killing coreaudiod works, you can make it more convenient. Open Terminal and run:



   sudo launchctl kickstart -kp system/com.apple.audio.coreaudiod

This cleanly restarts the audio daemon without a full reboot. You could save this as a shell script on your desktop for quick access when the distortion starts.

  1. Check for Audio Unit plugins that may not be Tahoe-compatible: Open Terminal and run:




   auval -a

This validates all installed Audio Unit plugins. Watch for any that report errors or failures — an incompatible plugin can destabilize coreaudiod over time even if it's not actively in use. The output will show PASS or FAIL for each plugin.

  1. Try creating a new user account: Go to System Settings > Users & Groups and create a temporary admin account. Log into it and test your audio workflow there. If the distortion doesn't occur in the new account, the issue is tied to something in your user profile (a launch agent, audio preference, or cached plugin state) rather than a system-wide problem.
  2. Safe Mode test: Shut down your Mac, then turn it on and immediately hold the Power button until you see startup options. Select your disk, hold Shift, and click "Continue in Safe Mode." Test audio playback in Safe Mode — this disables all non-essential system extensions and clears some system caches. Even if you can't run your full notation software in Safe Mode, testing Apple Music playback there will tell you if the issue is system-level or related to an extension.
  3. Submit detailed feedback: Since this is clearly tied to the Tahoe upgrade, reporting it at apple.com/feedback under macOS > Audio with your specific hardware (M1 MacBook Pro 16", 2021) and the coreaudiod workaround detail would be very valuable. The engineering team can use that to trace the regression.

The coreaudiod degradation pattern you're describing (works fine after restart, gradually worsens) is consistent with a memory or buffer handling change in the Tahoe audio stack. This is the type of issue Apple typically addresses in a point update once they have enough diagnostic data.

Let us know if any of these steps help stabilize it!

4 replies
Question marked as Top-ranking reply

Jun 2, 2026 9:26 AM in response to elisatems

Hi elisatems,

As a fellow audio-focused Mac user, I understand how critical this is for your workflow. The fact that killing coreaudiod temporarily fixes it is a very important clue — it tells us the Core Audio daemon is entering a degraded state over time, likely due to a change in how Tahoe handles audio buffer management compared to Sequoia. Here are some steps that may help:

  1. Reset Core Audio preferences: Open Terminal and run:




   sudo rm -rf ~/Library/Preferences/com.apple.audio.DeviceSettings.plist
   sudo rm -rf ~/Library/Preferences/com.apple.audio.SystemSettings.plist

Then restart your Mac. These files store audio device configuration and can carry over incompatible settings from Sequoia that conflict with Tahoe's audio stack.

  1. Check and adjust your audio buffer size: Open Audio MIDI Setup (found in Applications > Utilities). Select your built-in output, click "Configure Speakers" and verify the settings. More importantly, if you're using your notation software with a specific sample rate (e.g., 48 kHz), make sure the system output matches. A mismatch between the app's sample rate and the system's can cause progressive distortion on Apple Silicon.
  2. Disable audio-related system features: Go to System Settings > Sound and turn off "Play sound on startup"and check that Sound Effects output is set to the same device as your main output. Then go to System Settings > Accessibility > Audio and make sure nothing unusual is enabled. Conflicting audio routing can stress coreaudiod.
  3. Create a script to restart coreaudiod without rebooting: Since you know killing coreaudiod works, you can make it more convenient. Open Terminal and run:



   sudo launchctl kickstart -kp system/com.apple.audio.coreaudiod

This cleanly restarts the audio daemon without a full reboot. You could save this as a shell script on your desktop for quick access when the distortion starts.

  1. Check for Audio Unit plugins that may not be Tahoe-compatible: Open Terminal and run:




   auval -a

This validates all installed Audio Unit plugins. Watch for any that report errors or failures — an incompatible plugin can destabilize coreaudiod over time even if it's not actively in use. The output will show PASS or FAIL for each plugin.

  1. Try creating a new user account: Go to System Settings > Users & Groups and create a temporary admin account. Log into it and test your audio workflow there. If the distortion doesn't occur in the new account, the issue is tied to something in your user profile (a launch agent, audio preference, or cached plugin state) rather than a system-wide problem.
  2. Safe Mode test: Shut down your Mac, then turn it on and immediately hold the Power button until you see startup options. Select your disk, hold Shift, and click "Continue in Safe Mode." Test audio playback in Safe Mode — this disables all non-essential system extensions and clears some system caches. Even if you can't run your full notation software in Safe Mode, testing Apple Music playback there will tell you if the issue is system-level or related to an extension.
  3. Submit detailed feedback: Since this is clearly tied to the Tahoe upgrade, reporting it at apple.com/feedback under macOS > Audio with your specific hardware (M1 MacBook Pro 16", 2021) and the coreaudiod workaround detail would be very valuable. The engineering team can use that to trace the regression.

The coreaudiod degradation pattern you're describing (works fine after restart, gradually worsens) is consistent with a memory or buffer handling change in the Tahoe audio stack. This is the type of issue Apple typically addresses in a point update once they have enough diagnostic data.

Let us know if any of these steps help stabilize it!

Jun 2, 2026 12:16 PM in response to Emij_Udine

I can now confirm that the distortion also occurs when streaming audio from YouTube. The amount of time it takes to develop varies widely - and it also tends to be triggered by louder passages - but once it starts, it worsens steadily until the output has devolved into total mush.


My impression is that letting sufficient time pass between attempts to play audio also "resets" the distortion so that when the same clip is played, it takes the same amount of time to develop. In that sense, killing coreaudiod is not necessary - but of course it was never a useful "fix".

Jun 2, 2026 10:50 AM in response to Emij_Udine

Hi Emij_Udine,


I tried all of your suggestions through auval -a, except for creating a script to restart coreaudiod - given how quickly this problem develops when using Dorico, and the fact that Dorico can't talk to a coreaudiod that starts after Dorico has started up (meaning you have to restart Dorico), restarting coreaudiod by whatever means is not a useful workaround.


Auval reports no *incompatible* plugins, but I use NotePerformer and auval reported that it couldn't open the NP AU because it supposedly only supports "MakeMusic Finale", whatever that is. It also reported a duplicate class name SMTG_AUCocoaUIBase_CLASS_NAME in two Dorico-supplied files and said one of the files needs to be renamed or removed. I'm not sure how relevant that is - it sounds unrelated to the Tahoe upgrade and probably was there for some time.


I don't think I can run Dorico under another user account - and I'm quite sure I can't run it in Safe Mode. It wouldn't surprise me if the problem didn't occur in Safe Mode under Apple Music, since there is anyway a fairly wide spread in the time it takes for the problem to begin to show up, depending on what I'm listening to. System load appears to be a factor, as others have reported, and that load is greatly lessened in Safe Mode. So I wouldn't conclude from an apparently negative result that the issue was due to a specific extension.


Unless someone knows of a permanent fix - and if Apple hasn't fixed this by 26.5.1 despite a LARGE number of similar complaints, it seems unlikely that they will anytime soon - so absent a permanent fix, it seems my only remedy is to downgrade my OS back to Sequoia, something I'm very much afraid to try as I nearly hosed a previous machine of mine in a downgrade several years ago.

New audio distortion after upgrade from Sequoia to Tahoe 26.5.1

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.