About Datapath Ltd.
Today, Datapath is a leader in control technologies for creative multi-display video walls, small- to medium-scale video walls in enterprise collaboration environments, and command and control room video walls of any scale. Datapath remains an expert in capture and graphics technology, offering a comprehensive range of capture cards to suit a variety of video modes and complementary graphics cards for multi-screen solutions. These factors make Datapath a specialist in handling media from any source.
Product Categories
Contact Us
Contact Us
Address: Bemrose HouseAddress 2: Bemrose Park
Address 3: Wayzgoose Drive
City: Derby
Country: United Kingdom
Zip: DE21 6XQPhone: +44 (0)1332 294 441
Website: www.datapath.co.uk
Target Markets
- Energy, Utilities
- Healthcare
- Media and Entertainment
- Transportation
- \r\n
The world’s most powerful video wall processor
\r\n
\r\n
\r\nThe addition of dual Intel Xeon E5 processors now gives a clock speed of 2.3GHz, 8 cores, and a 20MB cache. Memory options are the highest in the Datapath range - up to 128GB.
A 10-bit 4K 60 Capture Card
\r\n\r\nSuitable for applications from high-end retail environments and reception areas, to command and control rooms, the VisionSC-UHD2 ensures the very best quality and ultimate customer satisfaction.
\r\n\r\nProviding two HDMI 2.0 capture channels with HDCP2.2 support at 4K60p with 4:4:4 chroma sampling, the VisionSC-UHD2 compliments our hugely successful VisionSC capture card family and offers unparalleled performance in frame grabber technology.
\r\n', 'toggletype': 'showfeature', 'togglekeys': '121', 'exhid': '1198', 'addedtoplanner': '0', 'tags' : '' } , { 'thumbnailSrc': 'https://d3fv3oe83qat1b.cloudfront.net/eyJlZGl0cyI6eyJyZXNpemUiOnsiZml0IjoiY292ZXIiLCJ3aWR0aCI6MTI1LCJoZWlnaHQiOjg3fX0sImJ1Y2tldCI6Im15cy1zaG93ZmlsZXMiLCJrZXkiOiJwcm9kdWN0aW9uL2luZm9jb21tMjEvc2hvd19mZWF0dXJlcy8xMTk4L2lvbGl0ZV8xMmlfZnJvbnQuanBnIn0=', 'thumbnailSrc2': 'https://d3fv3oe83qat1b.cloudfront.net/eyJlZGl0cyI6eyJyZXNpemUiOnsiZml0IjoiY292ZXIiLCJ3aWR0aCI6MjUwLCJoZWlnaHQiOjE3NH19LCJidWNrZXQiOiJteXMtc2hvd2ZpbGVzIiwia2V5IjoicHJvZHVjdGlvbi9pbmZvY29tbTIxL3Nob3dfZmVhdHVyZXMvMTE5OC9pb2xpdGVfMTJpX2Zyb250LmpwZyJ9', 'previewSrc': 'https://d3fv3oe83qat1b.cloudfront.net/eyJlZGl0cyI6eyJyZXNpemUiOnsiZml0IjoiaW5zaWRlIiwid2lkdGgiOjEyMDAsImhlaWdodCI6OTAwfX0sImJ1Y2tldCI6Im15cy1zaG93ZmlsZXMiLCJrZXkiOiJwcm9kdWN0aW9uL2luZm9jb21tMjEvc2hvd19mZWF0dXJlcy8xMTk4L2lvbGl0ZV8xMmlfZnJvbnQuanBnIn0=', 'directorythumbnailSrc': '/mys_shared/INFOCOMM21/showfeatures/1198/iolite_12i_front_thumbnail_VTHVXRLP.jpg', 'directorythumbnailSrc2': '/mys_shared/INFOCOMM21/showfeatures/1198/iolite_12i_front_thumbnail_VTHVXRLP.jpg', 'directorypreviewSrc': '/mys_shared/INFOCOMM21/showfeatures/1198/iolite_12i_front.jpg', 'exhibitorName': 'Datapath Ltd.', 'featureTitleText': 'iolite 12i', 'mediatype': 'image', 'description': 'High end digital signage appliance
\r\n\r\n
\r\nIt runs unobtrusively, with its quiet operation and small footprint, making it perfect for the office environment or restaurant. It also includes a rack mounting kit to enable the 2U chassis to fit in a server-based control room.
NEW Video Wall Setup Wizard
\r\n\r\nImagine hassle-free video wall setup. Datapath’s new Display Driver Configuration Tool (DDCT) guides you step-by-step through configuring your Datapath video wall controller. With DDCT, complex configurations are quick and easy to implement. Your video wall will be ready for use in a matter of minutes.
\r\n', 'toggletype': 'showfeature', 'togglekeys': '124', 'exhid': '1198', 'addedtoplanner': '0', 'tags' : '' } ] }, mixins: [messagedisplayMixin, scrollHighlightMixin, exhdetailsemailexhibitormixin], computed: { myshowaddedtoplanner: function(){ return app.$data.addedtoplanner; } }, mounted: function() { var vObj = this; vObj.$nextTick(function() { vObj.setupVueScrollTo(); vObj.adjustSecondaryNav(); window.addEventListener("scroll", this.$refs.backtotopbutton.toggleBackToTopButton); this.$refs.backtotopbutton.$el.classList.add('dn'); // Keep button from flashing on load this.$refs.backtotopbutton.toggleBackToTopButton(); }); }, methods: { showFavoritedExhibitor: function() { this.addedtoplanner = true; }, getMyShowAddedToPlanner: function() { return app.$data.addedtoplanner; }, markAsVisited: function(exhid, index) { var requestObj = {} , vObj = this; requestObj["keys"] = exhid; // ajaxGet() defined in _global-mixin vObj.loading = true; var return_to = encodeURIComponent(vObj.getCurrentURL()); vObj.ajaxGet(vObj.path2approot + '/myshow/myshow-actions.cfm?action=markExhAsVisited&' + vObj.objectToURLValues(requestObj), function(response){ // success vObj.loading = false; if (vObj.hasvisited == true){ vObj.hasvisited = false; app.$data.hasvisited = false; vObj.showMessage("success", "Successfully marked as not visited"); } else { vObj.hasvisited = true; app.$data.hasvisited = true; vObj.showMessage("success", "Successfully marked as visited"); } }, function(response){ // error vObj.loading = false; if ("ERRORCODE" in response && response.ERRORCODE == "12345"){ location.href = vObj.path2approot + '/login/login.cfm'; } else { vObj.showMessage("error", "Error Marking as Visited"); } }); // end ajaxGet vObj.ajaxGet(vObj.path2approot + '/myshow/myshow-actions.cfm?action=AddExhibitor&keys=1198&return_to=' + return_to, // ajaxGet() defined in _global-mixin function(response) { // success vObj.addedtoplanner = true; }, function(response) { // error vObj.loading = false; if ("ERRORCODE" in response && response.ERRORCODE == "12345") { location.href = vObj.path2approot + '/login/login.cfm'; } else { vObj.showMessage("error", "Error favoriting item"); } } ); // end ajaxGet }, // markAsVisited closeAppointmentModal: function() { this.showaddappointment = false; this.date = ''; this.time = ''; this.location = ''; this.meetingdetails = ''; }, openAddAppointment: function(exhid){ vObj = this; vObj.showaddappointment = true; }, addAppointment: function(formStruct) { var formData = new FormData(); var vObj = this; formData.append("ExhID", this.exhid); formData.append("date", formStruct.date); formData.append("time", formStruct.time); formData.append("location", formStruct.location); formData.append("meetingdetails", formStruct.meetingdetails); vObj.loading = true; vObj.ajaxPost(vObj.path2approot + '/myshow/myshow-actions.cfm?action=addExhibitorMeeting', formData, // ajaxPost() defined in _global-mixin function(response){ // success vObj.loading = false; vObj.closeAppointmentModal(); vObj.reloadResults(); }, function(response){ // error vObj.loading = false; vObj.showMessage("error", "Error adding Appointment"); }); // end ajaxPost }, setupVueScrollTo: function() { // This is necessary to override the global VueScrollTo default options VueScrollTo.setDefaults({ duration: 600, offset: -110, }); }, adjustSecondaryNav: function() { priorityNav.init({ mainNavWrapper: '.js-navlinks-secondary_container', navDropdownLabel: "More", navDropdownBreakpointLabel: "Menu", offsetPixels: 20, breakPoint: 0, throttleDelay: 50, moved: function() { navDropdownButton.classList.add('animated', 'fadeIn'); }, movedBack: function() { navDropdownButton.classList.remove('animated', 'fadeIn') } }); var navDropdownButton = document.querySelector('.nav__dropdown-toggle'), navDropdownContainer = document.querySelector('.nav__dropdown'); if (navDropdownButton){ navDropdownButton.addEventListener('click', openMoreMenu); } function openMoreMenu() { navDropdownContainer.classList.add('animated'); if (this.classList.contains('is-open')) { navDropdownContainer.classList.add('fadeIn'); // Kind of hacky, fix this later: setTimeout(function() { navDropdownContainer.classList.remove('fadeIn'); },450) } } }, togglePlannerActions: function() { this.plannerActionsVisible = !this.plannerActionsVisible; }, handleAdd: function() { if (this.addedtoplanner) { this.addedtoplanner = false; this.plannerActionsVisible = false; } else { this.addedtoplanner = true; } }, logShowFeatureStats: function(event){ var featureid = event.togglekeys; this.logStats('Show Feature Viewed', "", this.exhid, featureid); } } })