-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
On macOS 15.5, PNGTube-Remix.app doesn’t ask for microphone access, so it never appears under System Settings → Privacy & Security → Microphone, and the mic input doesn’t work.
Cause
The exported bundle is missing the NSMicrophoneUsageDescription
key in Info.plist
, so macOS silently blocks mic access.
Quick Fix (worked for me):
APP="/Applications/PNGTube-Remix.app"
sudo /usr/libexec/PlistBuddy \
-c 'Add :NSMicrophoneUsageDescription string "PNGTube-Remix needs mic input to detect my voice"' \
"$APP/Contents/Info.plist"
codesign --force --deep --sign - "$APP"
After adding the key and re-signing, the normal permission dialog appears and the microphone works as expected.
Hope this helps!
nantokaworks
Metadata
Metadata
Assignees
Labels
No labels