Overview
The Shure SM7B is a dynamic microphone designed for professional audio applications, particularly vocal recording, broadcasting, and podcasting. Its design prioritizes a flat, wide-range frequency response that aims to reproduce vocals and instruments accurately. A key characteristic is its ability to reject off-axis sound, which contributes to its performance in acoustically untreated rooms or environments with background noise. This directional pick-up pattern focuses on the sound source directly in front of the microphone while minimizing ambient sounds.
Engineered with an internal air suspension shock isolation system, the SM7B is intended to eliminate mechanical noise transmission. It also incorporates an advanced electromagnetic hum rejection system, developed to shield against broadband interference from computer monitors and other electrical equipment, a common issue in many recording setups. Included with the microphone are two windscreens: the standard A7WS for general use and the larger A7WS for close-talk applications, which also provides a warmer tonal response.
The microphone's robust build quality is part of its appeal, ensuring durability in various studio and broadcast settings. Due to its dynamic nature and low output level, the SM7B typically requires a high-gain preamplifier to achieve optimal signal-to-noise ratio. Many users pair it with an inline preamplifier, such as a Cloudlifter, to boost the signal before it reaches the main audio interface or mixer. This setup helps prevent the introduction of noise that can occur when a preamplifier is pushed to its maximum gain settings. The Shure SM7B is a common choice for content creators and musicians seeking a reliable microphone for clear and consistent audio capture in diverse recording conditions, as detailed on the Shure SM7B product page.
In competitive gaming and esports, the SM7B is often seen in professional broadcast booths and streaming setups due to its sound isolation capabilities and broadcast-quality audio. Its ability to perform in environments where acoustic treatment might be minimal makes it a functional tool for live streams and online content creation. Platforms like ProSettings.net often feature the SM7B among top recommendations for streamers, highlighting its adoption across various professional media contexts.
Key features
- Flat, Wide-Range Frequency Response: Designed to reproduce vocals and instruments with clarity across a broad sonic spectrum, from 50 Hz to 20 kHz.
- Cardioid Polar Pattern: Primarily picks up sound from the front while rejecting off-axis environmental noise, reducing room ambiance in recordings.
- Internal Air Suspension Shock Isolation: Minimizes mechanical noise and vibrations that can be transmitted through the microphone stand.
- Advanced Electromagnetic Hum Rejection: Shielded against interference from electronic devices like computer monitors and power lines, maintaining signal integrity.
- Two-Stage Pop Filter: Built-in internal pop filter eliminates plosive sounds without needing an external pop screen. An additional A7WS windscreen is included for close-talk applications.
- Bass Roll-Off and Mid-Range Presence Boost Controls: Switchable frequency response controls allow users to tailor the microphone's sound profile for different vocal or instrumental applications.
- Robust Construction: Durable build quality with a steel case and internal components designed for professional use and longevity.
Pricing
| Product | Price (USD, as of 2026-06-09) | Notes |
|---|---|---|
| Shure SM7B Vocal Microphone | $399.00 | Standard retail price. Often available from authorized dealers. Pricing details available on the Shure product page. |
Common integrations
- Audio Interfaces with XLR Inputs: Connects to interfaces like Focusrite Scarlett series (Focusrite Scarlett 2i2), Universal Audio Apollo, or Behringer UMC series (Behringer UMC202HD) for digital conversion and computer connectivity.
- Inline Preamplifiers: Often paired with devices like the Cloud Microphones Cloudlifter CL-1 (Cloudlifter CL-1 product page) or Triton Audio FetHead to provide additional clean gain.
- Mixing Consoles: Integrates with analog or digital mixing consoles for live sound, broadcast, or multi-track studio recording environments.
- Digital Audio Workstations (DAWs): Compatible with DAWs such as Pro Tools, Logic Pro, Ableton Live, and FL Studio through an audio interface for recording, editing, and mixing.
- Broadcast Consoles: Standard in radio and podcasting studios, connecting to dedicated broadcast mixers for live production.
Alternatives
- Rode Procaster: A broadcast-quality dynamic microphone known for its rich sound and internal pop filter, designed for vocal applications.
- Electro-Voice RE20: A classic broadcast dynamic microphone widely used for radio and voice-over work, featuring Variable-D technology to minimize proximity effect.
- Audio-Technica BP40: A large-diaphragm dynamic broadcast microphone offering a natural, smooth vocal reproduction and robust off-axis rejection.
Getting started
The Shure SM7B is an analog microphone, and its integration typically involves physical audio connections and software configuration within a Digital Audio Workstation (DAW). The primary setup involves connecting the microphone to an audio interface that provides phantom power and sufficient gain.
// Pseudocode for typical audio setup and DAW configuration
// 1. Physical Connection
// - Connect Shure SM7B XLR output to an inline preamp (e.g., Cloudlifter CL-1)
// - Connect inline preamp XLR output to an audio interface (e.g., Focusrite Scarlett 2i2) XLR input
// - Connect audio interface USB output to computer
// 2. Driver Installation (if necessary)
// - Download and install the latest drivers for your audio interface from the manufacturer's website.
//
// 3. Operating System Audio Settings
// - Open System Preferences/Settings -> Sound/Audio Devices
// - Select your audio interface as the input and output device.
// 4. Digital Audio Workstation (DAW) Configuration (Example using a generic DAW)
interface AudioInterface {
// Represents the connected audio interface
getAvailableInputs(): string[];
setSampleRate(rate: number): void;
setBufferSize(size: number): void;
getGainControl(inputName: string): GainControl;
}
interface GainControl {
setGain(level_dB: number): void;
getGain(): number;
}
interface DAW {
selectAudioDriver(driverName: string): void;
createAudioTrack(): Track;
assignInputToTrack(track: Track, inputName: string): void;
enableMonitoring(track: Track): void;
record(track: Track): void;
stopRecording(track: Track): void;
}
// --- Setup Process ---
function setupSM7B(audioInterface: AudioInterface, daw: DAW, targetGain_dB: number = 55) {
console.log("Initializing Shure SM7B setup...");
// Assume 'Input 1' is where the SM7B (via preamp) is connected
const sm7bInput = audioInterface.getAvailableInputs()[0];
if (!sm7bInput) {
console.error("No audio input detected on the interface.");
return;
}
// Set sample rate and buffer size for recording
audioInterface.setSampleRate(48000); // Common for broadcast/podcast
audioInterface.setBufferSize(128); // Low latency for monitoring
console.log(`Audio interface configured: Sample Rate = 48kHz, Buffer Size = 128 samples.`);
// Adjust gain on the audio interface for the SM7B
const inputGainControl = audioInterface.getGainControl(sm7bInput);
inputGainControl.setGain(targetGain_dB); // SM7B typically needs high gain (e.g., 55-60 dB)
console.log(`Input gain for '${sm7bInput}' set to ${targetGain_dB} dB.`);
// Configure DAW
daw.selectAudioDriver("ASIO" || "Core Audio" || "WASAPI"); // OS-specific driver
const vocalTrack = daw.createAudioTrack();
daw.assignInputToTrack(vocalTrack, sm7bInput);
daw.enableMonitoring(vocalTrack);
console.log("DAW track created and input assigned. Monitoring enabled.");
console.log("Shure SM7B setup complete. Ready to record!");
console.log("Test microphone by speaking and observing DAW input meters.");
}
// --- Example Usage ---
// const myAudioInterface: AudioInterface = { /* ... implementation ... */ };
// const myDAW: DAW = { /* ... implementation ... */ };
// setupSM7B(myAudioInterface, myDAW);
This pseudocode illustrates the logical steps involved in setting up the Shure SM7B. The critical component is the audio interface's preamplifier, which must provide sufficient clean gain for the microphone's low output. Without adequate gain, recordings may suffer from a high noise floor. Monitoring the input levels within the DAW is essential to ensure a healthy signal without clipping.