Enables Fiddles That Capture Audio via Apple's New CoreAudio Tap API#1844
Open
Bug-Reaper wants to merge 1 commit intoelectron:mainfrom
Open
Enables Fiddles That Capture Audio via Apple's New CoreAudio Tap API#1844Bug-Reaper wants to merge 1 commit intoelectron:mainfrom
Bug-Reaper wants to merge 1 commit intoelectron:mainfrom
Conversation
🎶 : [CoreAudio Tap API Reference](https://github.com/insidegui/AudioCap)
3 tasks
nikwen
approved these changes
Feb 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey there,
Big fan of this app, it was really useful on my most recent adventure. Let me be the first to introduce you to:
Core Audio Tap API
Apple introduced a new permission to be able to use their latest API for audio-capture available since some version of macOS 14. In line with enabling other permissions like web-cam and microphone (which enable audio capture through a different API anyways) we should also include this new permission to our Fiddle's info.plist.
This PR adds the proper
usageDescriptionto the forge-script so at build time the new flag is added to Fiddle's info.plistI've spent the last 5 days reviewing C++/Objective-C Chromium source to hone in on why my DesktopAudioCapture broke on an electron version update.
It is in-fact chromium started using this new
Core Audio Tap APIand has no fallback to the old API if the new one fails. Frustratingly, the error is silent from the electron-side and it fails even though a valid permission for audio-capture exists under a different API.This PR is important to resolve aforementioned issues for Fiddler's attempting to use desktop audio on electron versions
39.0.0-beta.3