Immediate Fix
The most common reason for the Notion microphone not working is restricted browser or system permissions. Most users inadvertently block audio access during the initial “Allow access” popup.
Check Browser Permissions
If you are using Notion in a web browser, click the lock icon located on the left side of the address bar. Ensure the “Microphone” toggle is set to “Allow.” Refresh the page immediately after making this change.
| Platform | Action Required |
|---|---|
| Chrome / Edge | Go to Settings > Privacy and security > Site Settings > Microphone. |
| macOS System | System Settings > Privacy & Security > Microphone > Enable Notion/Browser. |
| Windows System | Settings > Privacy & security > Microphone > Let desktop apps access your microphone. |
Reset the Notion Desktop App
If the desktop app is failing, a cache clear or a hard reset is often necessary. Close the app completely and restart your computer to release any hardware locks held by other applications.
Technical Explanation
Notion utilizes the MediaDevices API via your browser engine to capture audio streams. This process is sandboxed for security, meaning if the operating system (OS) doesn’t explicitly grant the “Notion Helper” process permission, the stream is blocked at the kernel level.
In some cases, the audio sampling rate of your microphone (e.g., 48kHz vs 44.1kHz) may conflict with the browser’s expected input. You can check for active audio processes that might be “hijacking” the hardware using the command line.
# For macOS users to identify processes using audio
lsof | grep "CoreAudio"
# For Linux users to check PulseAudio/Pipewire status
systemctl --user status pipewire

Alternative Methods
If the built-in recording feature continues to fail, there are more reliable ways to integrate audio into your workspace without relying on the browser’s real-time capture.
Use Native Voice Recorders
Record your audio using a dedicated system application like Voice Memos (macOS) or Sound Recorder (Windows). Once finished, simply drag and drop the exported MP3 or WAV file directly into your Notion page.
Mobile App Synchronization
The Notion mobile app typically handles hardware permissions more gracefully than the desktop client. Record the audio block on your smartphone; it will sync to your desktop workspace in real-time via the cloud.
Check for Driver Updates
Outdated audio drivers can cause the WebRTC interface to hang. Ensure your microphone drivers are updated via the Device Manager on Windows or by checking for System Updates on macOS to maintain compatibility with Notion’s frequent updates.