HDCVT HDMI1.4 70m Extender with IR - HDCVT | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
HDCVT

HDCVT HDMI1.4 70m Extender with IR

SKU: HDC-ED970C
R 749.00
In Stock

The HDCVT HDMI Extender with IR Control can extend your high definition video/audio signal and IR control signal up to 70m for 1080p resolution, and up to 40m for 4K30 resolution via a single CAT6 cable. The high-quality construction allows you to achieve zero delays, as well as uncompressed...

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

Frequently Bought Together

The HDCVT HDMI Extender with IR Control can extend your high definition video/audio signal and IR control signal up to 70m for 1080p resolution, and up to 40m for 4K30 resolution via a single CAT6 cable. The high-quality construction allows you to achieve zero delays, as well as uncompressed long-distance transmission between the transmitter and receiver. This extender with HDMI loop output can also be cascaded to the next extender, supporting resolutions of up to 4K @ 30Hz. For additional versatility, it supports the EDID copy function as well (you can choose local or remote EDID). To top it all off it also supports high-quality audio formats like PCM7.1, Dolby True HD, DTS HD. This product can be widely used in multimedia conference halls, TV teaching or with large-screen displays.

FEATURES:

  • HDMI 1.4, HDCP 1.4 and DVI 1.0 Compliant
  • Support Video Resolution up to 4K2K@30Hz YUV 4:4:4
  • CAT6: 230ft/70m for 1080p, 131ft/40m for 4K30
  • CAT5E: 197ft/60m for 1080p, 115ft/35m for 4K30
  • Support Copying EDID from Receiver Display or Loop Out Display
  • Allow for Cascading via additional HDMI loop out port
  • Support one-way POC functionality (from transmitter to receiver)
  • One-way IR signal transmission

SPECIFICATIONS:

  • HDMI Compliance: HDMI 1.4
  • HDCP Compliance: HDCP 1.4
  • Video Bandwidth: 10.2Gbps
  • Video Resolution: Up to 4K@30Hz
  • Audio Support Up to 7.1CH HD audio
  • Input TMDS Signal: 3.3 volts
  • Input DDC Signal: 5.0 volts/P-P
  • ESD Protection
    • Human Body model:
      • +/- 8 kV (air-gap discharge)
      • +/- 4 kV (contact discharge)
  • Transmitter:
    • Input:
      • 1 x HDMI Type A [19-pin female]
    • Output:
      • 1 x HDMI Type A [19-pin female]
      • 1 x IR OUT [3.5mm Stereo Mini-jack]
      • 1 x CAT OUT [RJ45, 8-pin female]
  • Receiver:
    • Inputs:
      • 1x IR IN [3.5mm Stereo Mini-jack]
      • 1x CAT IN [RJ45, 8-pin female]
    • Output:
      • 1x HDMI Type A [19-pin female]
  • Housing: Metal Enclosure
  • Colour: Black
  • Power Supply 12V/1A DC
  • Power Consumption
    • Transmitter: 1.86W
    • Receiver: 0.87W
  • Product Dimensions: 7.9 x 6.9 x 1.7 cm
  • Weight:
    • Transmitter: 132g
    • Receiver: 130g

WHAT'S IN THE BOX:

  • HDCVT HDMI 70M Extender Receiver x1
  • HDCVT HDMI 70M Extender Transmitter x1
  • IR Blaster Cable x1
  • IR Receiver Cable x1
  • 12V/1A DC Power Adapter x1
  • User Manual x1
Brand HDCVT
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

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

Related Products

HDCVT SWITCH HDMI 2.0 3-1
HDCVT

HDCVT SWITCH HDMI 2.0 3-1

R 299.00

In Stock

UGREEN HDMI 1×4 Video Splitter 4K – Black
Ugreen

UGREEN HDMI 1×4 Video Splitter 4K – Black

R 779.00

Out of Stock

WINX LINK FAR 4K HDMI Extender
WINX

WINX LINK FAR 4K HDMI Extender

R 779.00

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!