UGREEN HDMI Wireless Transmitter and Receiver 50m - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN HDMI Wireless Transmitter and Receiver 50m

SKU: CM506-50633A
R 2 077.76
In Stock

Wirelessly Extend HDMI Up to 50m | Dual-Band 2.4GHz & 5GHz | Full HD 1080p @ 60Hz Quick Specs

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

Frequently Bought Together

Wirelessly Extend HDMI Up to 50m | Dual-Band 2.4GHz & 5GHz | Full HD 1080p @ 60Hz

Quick Specs

  • Up to 50m wireless HDMI transmission
  • Full HD 1920 × 1080 @ 60Hz
  • Dual-band 2.4GHz & 5GHz wireless connection
  • HDMI transmitter and receiver set
  • HDMI, VGA and 3.5mm audio output
  • Supports up to 24-bit / 48kHz audio

Product Introduction

Eliminate the need for long HDMI cables with the UGREEN 50m HDMI Wireless Transmitter & Receiver. Designed for reliable Full HD wireless video and audio transmission, this dual-band wireless solution extends your HDMI connection up to 50 metres in open environments while providing flexible display connectivity through HDMI, VGA and 3.5mm audio outputs.

Product Description

The UGREEN 50m HDMI Wireless Transmitter & Receiver provides a simple way to transmit Full HD video and audio wirelessly between compatible devices. Operating on both 2.4GHz and 5GHz wireless bands, it delivers stable wireless performance over distances of up to 50 metres in unobstructed environments.

Supporting resolutions up to 1920 × 1080 at 60Hz, the system is suitable for smooth video playback while maintaining high-quality audio with support for up to 24-bit / 48kHz sampling.

The transmitter features an HDMI input and USB Type-C power input, while the receiver offers HDMI, VGA, USB Type-C power and 3.5mm audio outputs, providing flexible connectivity for a range of compatible display devices.

Features

  • Wirelessly transmits HDMI signals up to 50m in unobstructed environments
  • Supports Full HD 1920 × 1080 resolution at 60Hz
  • Dual-band 2.4GHz and 5GHz wireless operation
  • Stable wireless video and audio transmission
  • HDMI transmitter with USB Type-C power input
  • Receiver with HDMI, VGA and 3.5mm audio outputs
  • Supports audio sampling up to 24-bit / 48kHz
  • Includes two USB-A to USB Type-C power cables
  • External power required for both transmitter and receiver

Specs

  • Maximum Wireless Transmission Distance: Up to 50m (unobstructed)
  • Wireless Frequency Bands: 2.4GHz / 5GHz
  • Wireless Frequency Range: 2400–2483.5MHz / 5150–5250MHz / 5475–5850MHz
  • Maximum Resolution: 1920 × 1080 @ 60Hz (Full HD)
  • Audio Sample Rate: Up to 24-bit / 48kHz
  • Transmitter Ports: 1 × HDMI, 1 × USB Type-C
  • Receiver Ports: 1 × HDMI, 1 × VGA, 1 × USB Type-C, 1 × 3.5mm Audio
  • Power Requirement: External 5V (±5%), ≥1A power supply required for both transmitter and receiver
  • Power Cables Included: 2 × USB-A to USB Type-C
  • Packaged Weight: 998g
  • Packaged Dimensions: 32 × 26 × 6cm

What's in the Box

  • Wireless HDMI Transmitter x 1
  • Wireless HDMI Receiver x 1
  • USB-A to USB Type-C Power Cables x 2

Why UGREEN?

UGREEN develops reliable connectivity solutions designed to simplify everyday device connections. Combining dependable performance with practical design, UGREEN products deliver convenient solutions for home entertainment, office and professional display applications.

Disclaimer

Wireless transmission distance of up to 50m is achieved in open, unobstructed environments. Actual performance may vary depending on environmental conditions, physical obstacles and wireless interference. Both the transmitter and receiver require an external 5V , ≥1A power supply for operation.

Brand Ugreen
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

UGREEN 2-In-1 HDMI KVM Switch 4 USB Ports 4K@60Hz–Black
Ugreen

UGREEN 2-In-1 HDMI KVM Switch 4 USB Ports 4K@60Hz–Black

R 1 216.05

Out of Stock

UGREEN 1x 2 HDMI Splitter 4K 30Hz 3D – Black
Ugreen

UGREEN 1x 2 HDMI Splitter 4K 30Hz 3D – Black

R 655.42

In Stock

WINX LINK FAR 4K HDMI Extender
WINX

WINX LINK FAR 4K HDMI Extender

R 811.15

Out of 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!