From c7d830c57cc1d0a3cf7577ed88926f55d4603817 Mon Sep 17 00:00:00 2001 From: Glitchtest <141680927+Glitchtest51@users.noreply.github.com> Date: Thu, 17 Apr 2025 17:23:42 -0400 Subject: [PATCH] Revert loopbackWithMute to loopback (#1155) apparently loopbackWithMute does not mute your own app like initially assumed but rather mutes the system audio for the user --- src/main/screenShare.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/screenShare.ts b/src/main/screenShare.ts index 2218a04..5ba93a8 100644 --- a/src/main/screenShare.ts +++ b/src/main/screenShare.ts @@ -77,7 +77,7 @@ export function registerScreenShareHandler() { const streams: Streams = { video: source }; - if (choice.audio && process.platform === "win32") streams.audio = "loopbackWithMute"; + if (choice.audio && process.platform === "win32") streams.audio = "loopback"; callback(streams); });