Skip to content

Microphone doesn't work on Mac #21

@bmpolonsky

Description

@bmpolonsky

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions