Overview

The Elgato Wave:3 is a USB condenser microphone primarily designed for digital content creators, streamers, and podcasters. It connects directly to a computer via USB-C, eliminating the need for an external audio interface, which simplifies setup for users focused on software-based audio production (Elgato Wave:3 product page). The microphone features a cardioid polar pattern, which focuses audio capture on sounds directly in front of the unit, reducing background noise from sides and rear.

A central component of the Wave:3 ecosystem is the accompanying Wave Link software. This application functions as a digital mixer, allowing users to control up to nine independent audio sources, including game audio, music, voice chat, and the microphone itself. This integration provides granular control over individual audio levels, making it possible to create a balanced mix for both the user's headphones and the audience's stream. The software also enables the routing of different audio mixes to separate outputs, such as a monitor mix for the user and a broadcast mix for live streams.

One of the microphone's distinguishing features is Clipguard technology. This proprietary system operates by simultaneously processing two audio streams from the microphone: a primary signal and a secondary signal attenuated by 20 dB. If the primary signal peaks and distorts, the Wave Link software automatically switches to the non-clipped, lower-volume signal, preventing audible distortion in the output (Elgato Wave:3 Clipguard details). This feature is relevant for live broadcasts where sudden loud noises, such as shouting or impacts, might otherwise cause clipping.

The Wave:3 is suitable for environments where ease of setup and integrated software control are priorities. Its USB connectivity means it is compatible with most modern operating systems without requiring additional drivers. The microphone includes a multi-function dial for gain control, headphone volume, and crossfade between microphone and PC mix, offering tactile control over essential parameters directly on the device. For professional reviews and technical measurements, resources like RTINGS.com's Elgato Wave:3 review provide objective data on sound quality and features.

Key features

  • USB-C Connectivity: Direct plug-and-play operation with computers, eliminating the need for an external audio interface.
  • Cardioid Polar Pattern: Primarily captures audio from the front, reducing ambient noise from other directions.
  • Wave Link Software: A digital mixing console allowing control of up to nine independent audio sources, including the microphone, game audio, music, and voice chat (Elgato Wave Link software downloads).
  • Clipguard Technology: Prevents audio clipping by automatically routing a secondary, lower-volume audio signal if the primary signal distorts (Elgato Wave:3 technical specifications).
  • Multi-function Control Dial: On-device control for microphone gain, headphone volume, and crossfade between microphone input and PC mix.
  • Capacitive Mute Button: Touch-sensitive mute button on the top of the microphone for silent operation.
  • Direct Monitoring: Zero-latency monitoring via a 3.5mm headphone jack on the microphone, allowing users to hear their voice in real-time.
  • Integrated Pop Filter: Internal pop filter designed to reduce plosive sounds.

Pricing

The Elgato Wave:3 is a hardware product available at a fixed price.

Product Price (USD) As of Date Details
Elgato Wave:3 Microphone $159.99 2026-06-14 Includes microphone, USB-C cable, desktop stand, and Wave Link software access (Elgato Wave:3 purchase page).

Common integrations

The Elgato Wave:3's primary integration is with its proprietary Wave Link software, which acts as a central hub for audio management. Beyond this, it is designed to work within standard operating system audio frameworks.

  • Elgato Wave Link Software: Core digital mixer for managing microphone input and up to eight other audio sources. This software allows users to create custom mixes for different outputs, such as a stream mix and a monitor mix. Detailed setup guides are available through Elgato's support documentation.
  • OBS Studio: As a standard audio input device, the Wave:3 can be selected directly within OBS Studio as a microphone source. The Wave Link software can also provide its monitor or stream mix as a virtual audio device to OBS, simplifying audio routing for live broadcasts (Elgato Wave Link user manual).
  • Streamlabs Desktop: Similar to OBS Studio, Streamlabs Desktop can recognize the Wave:3 as an audio input. The virtual audio outputs from Wave Link can be used to manage complex audio setups within Streamlabs for streaming.
  • Voice Chat Applications: Compatible with applications such as Discord, Zoom, and Microsoft Teams, where the Wave:3 can be selected as the primary input device, or a Wave Link submix can be used.

Alternatives

  • Blue Yeti: A popular USB condenser microphone offering multiple polar patterns, often used for general content creation.
  • Rode NT-USB+: A USB condenser microphone known for its audio quality, featuring a headphone jack for direct monitoring and internal DSP.
  • HyperX QuadCast S: A USB condenser microphone with RGB lighting and four selectable polar patterns, marketed towards gamers and streamers.

Getting started

The Elgato Wave:3 is a hardware device. Its primary 'getting started' involves physical setup and configuring the accompanying Wave Link software. There is no direct code interaction for typical users, but the software provides an API for advanced integration with Stream Deck and other tools.

For basic audio setup, after connecting the Wave:3 to your computer via USB-C, download and install the Wave Link software. The software allows you to manage audio inputs and outputs. The following pseudo-code illustrates the logical steps for configuring audio sources within Wave Link:

// Initialize Wave Link Software
WaveLink.startApplication();

// Add Wave:3 Microphone as an input source
WaveLink.addInputSource("Elgato Wave:3", "Microphone");

// Add other common audio sources
WaveLink.addInputSource("Game Audio", "Application", "Game.exe");
WaveLink.addInputSource("Music Player", "Application", "Spotify.exe");
WaveLink.addInputSource("Voice Chat", "Application", "Discord.exe");

// Configure individual source volumes
WaveLink.setVolume("Elgato Wave:3", 75); // Set microphone gain
WaveLink.setVolume("Game Audio", 60);
WaveLink.setVolume("Music Player", 40);
WaveLink.setVolume("Voice Chat", 80);

// Adjust output mixes
// Example: Monitor mix (for streamer's headphones)
WaveLink.setOutputMix("Monitor", {
    "Elgato Wave:3": 100,
    "Game Audio": 100,
    "Music Player": 100,
    "Voice Chat": 100
});

// Example: Stream mix (for audience)
WaveLink.setOutputMix("Stream", {
    "Elgato Wave:3": 90,
    "Game Audio": 70,
    "Music Player": 50,
    "Voice Chat": 85
});

// Enable Clipguard for microphone input
WaveLink.enableFeature("Elgato Wave:3", "Clipguard");

// Activate direct monitoring
WaveLink.enableFeature("Elgato Wave:3", "DirectMonitoring");

This pseudo-code demonstrates how a user would logically configure their audio environment through the Wave Link graphical user interface, setting up discrete audio channels and managing their output levels for different audiences.