From 1209c051472a01c424cd11a54aeac9308888b308 Mon Sep 17 00:00:00 2001 From: NickCulbertson Date: Thu, 27 Mar 2025 09:37:57 -0400 Subject: [PATCH] Update Mac Sample Rate --- Cookbook/Cookbook/CookbookApp.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cookbook/Cookbook/CookbookApp.swift b/Cookbook/Cookbook/CookbookApp.swift index 1293a88..d2f86d8 100644 --- a/Cookbook/Cookbook/CookbookApp.swift +++ b/Cookbook/Cookbook/CookbookApp.swift @@ -20,8 +20,8 @@ struct CookbookApp: App { } } if #available(macOS 15.0, *) { - // Set samplerRate for macOS 15 and newer - Settings.sampleRate = 48_000 + // Set samplerRate for macOS 15 and newer (reverted back to 44_100) + Settings.sampleRate = 44_100 } try AVAudioSession.sharedInstance().setPreferredIOBufferDuration(Settings.bufferLength.duration)