Troubleshooting
Solutions to common problems
Recording Issues
Hotkey Not Working
Symptoms:
- Pressing the hotkey does nothing
- No recording overlay appears
Solutions:
Check Accessibility permissions (macOS)
- Go to System Settings → Privacy & Security → Accessibility
- Ensure Yap is enabled
- Try removing and re-adding if already enabled
Try a different hotkey
- Go to Settings → Recording Hotkey
- Select an alternative (Left Option, Fn, or Double-tap)
Check for conflicts
- Other apps may be capturing the hotkey
- Try quitting other apps that use global hotkeys
Restart Yap
- Quit completely (including from menu bar)
- Reopen the app
No Audio Recording
Symptoms:
- Recording starts but transcription is empty
- Waveform shows no activity
Solutions:
Check Microphone permissions (macOS)
- Go to System Settings → Privacy & Security → Microphone
- Ensure Yap is enabled
Select the correct audio device
- Go to Settings → Audio Input Device
- Choose your active microphone
Test your microphone
- Use another app to verify the mic works
- Check system sound settings
Check physical connections
- Ensure external mics are properly connected
- Check USB connections
Transcription Issues
Transcription Fails
Symptoms:
- Error message after recording
- “Transcription failed” error
Solutions:
For local transcription:
- Ensure whisper-cpp is installed:
brew install whisper-cpp - Verify it’s in PATH:
which whisper-cli - Ensure a model is downloaded in Settings
- Ensure whisper-cpp is installed:
For OpenAI:
- Verify your API key is correct
- Check your OpenAI account has credits
- Test API access:
curl https://api.openai.com/v1/models \ -H "Authorization: Bearer YOUR_API_KEY"
Poor Transcription Quality
Symptoms:
- Many mistakes in transcription
- Missing words or phrases
Solutions:
Use a larger model
- Try
small.enormedium.enfor better accuracy large-v3offers highest accuracy
- Try
Improve audio quality
- Use an external microphone
- Reduce background noise
- Speak clearly and not too fast
Try cloud transcription
- OpenAI Whisper often has better accuracy
- Enable in Settings → Provider → Cloud
Slow Transcription
Symptoms:
- Long wait time after recording
- App appears frozen during transcription
Solutions:
Use a smaller model
tiny.enorbase.enare fastest- Larger models take longer
Use cloud transcription
- OpenAI’s servers are faster than local processing
- Especially helpful on older hardware
Auto-Paste Issues
Text Not Pasting
Symptoms:
- Transcription completes but text doesn’t appear
- Text goes to clipboard but doesn’t paste
Solutions:
Check Accessibility permissions
- Auto-paste requires Accessibility access
- Re-add Yap in System Settings
Check target application
- Some apps block paste commands
- Try pasting manually with Cmd+V
Disable and re-enable auto-paste
- Go to Settings → Auto-Paste
- Toggle off, then on
Try another application
- Test with a simple app like Notes or TextEdit
- Some apps have non-standard text input
Model Issues
Model Download Fails
Symptoms:
- Download starts but never completes
- Error during download
Solutions:
Check internet connection
- Models are downloaded from HuggingFace
- Verify you can access https://huggingface.co
Check disk space
- Large models need several GB
- Free up space if needed
Retry the download
- Cancel and try again
- Network issues may be temporary
Manual download
- Download models directly from HuggingFace
- Place in
~/Library/Application Support/yap/models/
Model Not Found
Symptoms:
- “Model not found” error
- Transcription fails with model error
Solutions:
Download the model
- Go to Settings and download the selected model
Check model files
- Verify model exists:
ls ~/Library/Application\ Support/yap/models/
- Verify model exists:
Re-download corrupted model
- Delete the model file
- Download again from Settings
Installation Issues
macOS Security Warning
Symptoms:
- “Cannot be opened because it is from an unidentified developer”
- App won’t launch
Solutions:
Allow in Security settings
- Go to System Settings → Privacy & Security
- Find the message about Yap
- Click “Open Anyway”
Remove quarantine attribute
xattr -d com.apple.quarantine /Applications/Yap.app
App Crashes on Launch
Symptoms:
- App immediately closes after opening
- Crash report appears
Solutions:
Check system requirements
- macOS 10.15 or later required
- Apple Silicon or Intel (via Rosetta)
Reset configuration
rm ~/Library/Application\ Support/yap/config.jsonReinstall the app
- Delete from Applications
- Download fresh from releases
Performance Issues
High CPU Usage
Symptoms:
- Fan running during transcription
- System slowdown
Solutions:
Use a smaller model
tiny.enuses least CPU
Use cloud transcription
- Offloads processing to OpenAI
Close unnecessary applications
- Free up CPU resources
High Memory Usage
Solutions:
Use smaller models
- Large models load entirely into RAM
Quit and restart
- Clears any memory leaks
Getting Help
If these solutions don’t help:
Check GitHub Issues
- Search for similar problems
- github.com/ApplauseLab/yap/issues
Open a new issue
- Include your OS version
- Include Yap version
- Describe steps to reproduce
- Include any error messages