No Audio Devices
Audio devices not appearing in the device selection dropdown.
Symptoms
- System Audio Device dropdown shows "none" or is empty
- Microphone Device dropdown shows no devices
- "Refresh Devices" doesn't populate the list
- Error message: "No audio devices found"
Common Causes
Windows
| Cause | Solution |
|---|---|
| VB-Cable not installed | Install VB-Cable |
| FFmpeg not working | Check FFmpeg |
| Windows audio permissions | Enable microphone access |
| Device enumeration failed | Restart application |
macOS
| Cause | Solution |
|---|---|
| FFmpeg not installed | Install FFmpeg |
| Microphone permission denied | Grant microphone access |
| BlackHole not installed | Install BlackHole |
| FFmpeg lacks AVFoundation | Reinstall FFmpeg |
Windows Solutions
Install VB-Cable
VB-Cable is required for capturing system audio.
- Download from vb-audio.com/Cable
- Extract the ZIP file
- Right-click
VBCable_Setup_x64.exe→ Run as Administrator - Click Install
- Reboot your computer
- Check Windows Sound Settings → "CABLE Input" and "CABLE Output" should appear
Reboot Required
VB-Cable requires a reboot to work properly.
Check FFmpeg
Intervu uses FFmpeg to enumerate audio devices.
- Open Settings (gear icon)
- Check for FFmpeg error message
- If error, the bundled FFmpeg may not have downloaded
Manual FFmpeg fix:
# Check if FFmpeg exists
dir %LOCALAPPDATA%\intervu\ffmpeg.exe
# If missing, try reinstalling the app
# Or set a custom FFmpeg path in SettingsUsing system FFmpeg:
If you have FFmpeg installed system-wide:
- Open Settings
- Go to Advanced Settings
- Set FFmpeg Path to your FFmpeg location
- Example:
C:\ffmpeg\bin\ffmpeg.exe
- Example:
Enable Microphone Permissions (Windows)
Windows may block microphone access.
- Open Settings → Privacy → Microphone
- Enable "Allow apps to access your microphone"
- Enable "Allow desktop apps to access your microphone"
- Restart Intervu
Refresh Devices
- Open Settings (gear icon)
- Click Refresh Devices
- Wait for enumeration (may take a few seconds)
Restart Application
Sometimes Windows audio system needs a refresh:
- Close Intervu completely
- Open Windows Sound Settings
- Verify devices appear in Windows
- Restart Intervu
macOS Solutions
Install FFmpeg (macOS)
FFmpeg is required on macOS and must be installed manually.
# Install via Homebrew
brew install ffmpeg
# Verify installation
ffmpeg -versionThe FFmpeg path on macOS is typically:
- Intel Macs:
/usr/local/bin/ffmpeg - Apple Silicon Macs:
/opt/homebrew/bin/ffmpeg
If Intervu still can't find FFmpeg:
- Open Settings (gear icon)
- Go to Advanced Settings
- Set FFmpeg Path to
/usr/local/bin/ffmpegor/opt/homebrew/bin/ffmpeg
Verify AVFoundation support:
ffmpeg -f avfoundation -list_devices true -i ""This should list available audio and video devices. If it fails, reinstall FFmpeg:
brew reinstall ffmpegGrant Microphone Access (macOS)
macOS requires explicit microphone permission for Intervu.
- Open System Settings → Privacy & Security → Microphone
- Find Intervu and enable it
- If Intervu is not listed:
- Open Intervu and click the microphone button
- macOS will display a permission prompt
- Click "Allow"
- Restart Intervu
Install BlackHole
BlackHole is required for capturing system audio on macOS.
- Download from existential.audio
- Open the
.pkgfile and install - Reboot your Mac
- Check System Settings → Sound → BlackHole should appear in Input/Output
Refresh Devices
- Open Settings in Intervu
- Click Refresh Devices
- Wait for AVFoundation enumeration (may take a few seconds)
Verifying Installation
Windows: VB-Cable
Open Settings → System → Sound:
- Playback: Should show "CABLE Input (VB-Audio Virtual Cable)"
- Recording: Should show "CABLE Output (VB-Audio Virtual Cable)"
macOS: BlackHole
Open System Settings → Sound:
- Input: Should show "BlackHole 2ch"
- Output: Should show "BlackHole 2ch"
Also verify multi-output device in Audio MIDI Setup.
Testing Audio Capture
Windows:
- Play any audio on your computer
- Set your speaker output to "CABLE Input"
- Set another app (like Audacity) to record from "CABLE Output"
- You should see the audio waveform
macOS:
- Set system output to your multi-output device
- Open Intervu Settings
- Select BlackHole as System Audio Device
- Play any audio — level meter should show activity
Device Enumeration Details
What Intervu Looks For
Windows (DirectShow):
- Render devices: For system audio capture (CABLE Output)
- Capture devices: For microphone input
macOS (AVFoundation):
- All audio devices: Listed by FFmpeg with AVFoundation
- BlackHole: For system audio capture
- Physical microphones: For your voice input
FFmpeg Commands
Windows:
ffmpeg -list_devices true -f dshow -i dummymacOS:
ffmpeg -f avfoundation -list_devices true -i ""If either command fails, device enumeration will fail.
Still Not Working?
Windows
Check Logs
- Open Settings (gear icon)
- Click Open Logs Folder
- Check
app.logfor errors
Common Log Errors
[dshow] Could not find device→ VB-Cable not installed or device name changed
ffmpeg: command not found→ FFmpeg missing or path incorrect
Permission denied→ Windows microphone permissions blocked
Reset Settings
# Close Intervu
# Delete settings
rmdir /s /q %APPDATA%\intervu
# Restart Intervu
# Reconfigure from scratchmacOS
See macOS Troubleshooting for macOS-specific issues.
Common macOS Log Errors
FFmpeg not found. Install via: brew install ffmpeg→ FFmpeg is not installed or not in PATH
No audio devices found. Ensure FFmpeg is installed→ FFmpeg lacks AVFoundation or microphone permission not granted
Microphone permission not granted→ Grant permission in System Settings → Privacy & Security → Microphone
Next Steps
- Audio Devices — Configure audio settings
- FFmpeg Errors — FFmpeg-specific issues
- macOS Setup — macOS audio setup guide
- macOS Troubleshooting — macOS-specific issues