PCBuilder CAST STEADY Microphone Boom Arm - PCBuilder | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
PCBuilder

PCBuilder CAST STEADY Microphone Boom Arm

SKU: PCB-MBA-CAST-STEADY
R 999.00
In Stock

Take your content setup to the next level with the PCBuilder CAST STEADY Microphone Boom Arm - a premium desk mic arm designed to deliver smooth performance, rock-solid stability, and pro-level flexibility for gamers, streamers, podcasters, and creators. Whether you're recording gameplay, hosting a...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Take your content setup to the next level with the PCBuilder CAST STEADY Microphone Boom Arm - a premium desk mic arm designed to deliver smooth performance, rock-solid stability, and pro-level flexibility for gamers, streamers, podcasters, and creators. Whether you're recording gameplay, hosting a podcast, or producing content for YouTube, TikTok, or Twitch streaming, this versatile streaming mic arm ensures your microphone stays exactly where you need it - no drooping, no readjusting, no distractions.

Crafted from a durable blend of aluminium alloy and high-quality ABS, this desk mic arm combines strength and sleek aesthetics with ease. Its self-locking design holds your mic in place with perfect tension, so once you position it, it stays - letting you focus on delivering great content. Plus, the whisper-quiet joints and fluid movement eliminate creaks and bumps, keeping your audio clean and professional.

Engineered for maximum compatibility, the CAST STEADY supports 3/8", 5/8", and 1/4" thread sizes. Whether you’re using a PCBuilder CAST CORE, a CAST ULTRA USB mic, or another brand, this desk mic arm has you covered - no need for extra adapters or complicated setup.

What sets this podcast mic arm apart is its smart, user-focused design. A quick-release mechanism allows for fast gear swaps, making it easy to switch between mic setups or accessories on the fly. The built-in cable channel keeps your workspace tidy by routing your cables cleanly through the arm - ideal for creators who care about both performance and presentation.

Thanks to its 360° swivel and extended vertical (77.5cm) and horizontal (75cm) reach, the PCBuilder CAST STEADY gives you complete control over your mic’s position. The upper arm offers a tilt range from 90° to -50°, allowing for precision adjustments whether you're seated at your desk or standing for a dynamic shoot. Compatible with surfaces 15–105mm thick, this streaming mic arm fits securely on most desks and supports mics up to 2.5kg - ideal for both lightweight USB mics and heavier professional gear.

This isn’t just another desk mic arm - it’s a serious upgrade for any creator’s setup. Whether you’re a gamer building your first rig, a podcaster looking to improve sound quality, or a seasoned content creator in need of reliable gear, the CAST STEADY delivers. Smooth, silent, and strong, it’s the podcast mic arm that helps you sound your best - and the streaming mic arm your audience deserves.

Elevate your workflow. Declutter your space. The PCBuilder CAST STEADY Microphone Boom Arm is your next step toward pro-level content creation. Elevate your setup and sound like a pro, every time you go live.

FEATURES:

  • Designed for streamers, podcasters, and content creators seeking a pro-grade setup
  • Ideal for use with the PCBuilder CAST CORE and CAST ULTRA USB Gaming Microphones
  • Works with 3/8", 5/8", and 1/4" threads - compatible with most mics and accessories
  • Built-in cable channel keeps your workspace clean and distraction-free
  • Quick-release design makes switching gear fast and effortless
  • Flexible height and positioning lets you fine-tune your mic setup exactly how you want it
  • Auto-locking arm holds its position perfectly - no slipping, no adjusting
  • Glides silently and smoothly, so your recordings stay crisp and interruption-free

SPECIFICATIONS:

  • Colour: Black
  • Material: Aluminum alloy & ABS
  • Compatible thread sizes: 3/8", 5/8", & 1/4"
  • Cable channel: Yes
  • Self-locking: Yes
  • Supported mounting surfaces: 15-105mm thick
  • Horizontal reach: 75cm
  • Vertical reach: 77.5cm
  • Swivel angle: 360°
  • Upper arm tilt angle: 90° to -50°
  • Load-bearing capacity: Up to 2.5kg
  • Product Dimensions: 77.5 x 3 x 3 cm
  • Product Weight: 2.1 kg

WHAT'S IN THE BOX:

  • PCBuilder CAST STEADY Microphone Boom Arm x 1
  • Quick microphone mounting system x 1
  • C-clamp mount x 1
  • Grommet mount kit x 1
  • 3/8” to 5/8“ adapter (pre-installed) x 1
  • 3/8” to 1/4" adapter x 1
  • Riser poles x 2
  • Allen key x 1
  • User manual x 1
Brand PCBuilder
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 18 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

PCBuilder CAST CORE USB Gaming Microphone
PCBuilder

PCBuilder CAST CORE USB Gaming Microphone

R 699.00

In Stock

Redragon GM303 PULSAR Gaming Stream Microphone - Black
Redragon

Redragon GM303 PULSAR Gaming Stream Microphone - Black

R 349.00

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!