<!DOCTYPE html><html id="phx-wrapper" lang="en-us"><head><style type="text/css">[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {display: none !important;}
</style><script>var appCacheBuster = "v=2018-11-16-234933-363d9ab-012024";</script><script>window.Promise||document.write('<script src="/.bootscripts/polyfills/promise.min.js?' + appCacheBuster + '"></s'+'cript>');</script><script>window.fetch||document.write('<script src="/.bootscripts/polyfills/fetch.min.js?' + appCacheBuster + '"></s'+'cript>');</script><script>Object.assign||document.write('<script src="/.bootscripts/polyfills/assign.min.js?' + appCacheBuster + '"></s'+'cript>');</script><script>(typeof window.Element.prototype.closest === 'function')||document.write('<script src="/.bootscripts/polyfills/element-closest.min.js?' + appCacheBuster + '"></s'+'cript>');</script><script>(window.customElements&&window.customElements.define&&window.customElements.get&&window.customElements.whenDefined)||document.write('<script src="/.bootscripts/polyfills/webcomponents.min.js?' + appCacheBuster + '"></s'+'cript>');</script><script>(String.prototype.endsWith||String.prototype.startsWith)||document.write('<script src="/.bootscripts/polyfills/string.min.js?' + appCacheBuster + '"></s'+'cript>');</script><script>"use strict";if(typeof IntersectionObserver==="undefined"||"IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&!("isIntersecting"in window.IntersectionObserverEntry.prototype)){document.write("<script src=\"/.bootscripts/polyfills/intersectionobserver.min.js?"+appCacheBuster+"\"></s"+"cript>")}</script><script>"use strict";(function(){if(typeof window.CustomEvent==="function")return false;function CustomEvent(event,params){params=params||{bubbles:false,cancelable:false,detail:undefined};var evt=document.createEvent("CustomEvent");evt.initCustomEvent(event,params.bubbles,params.cancelable,params.detail);return evt}CustomEvent.prototype=window.Event.prototype;window.CustomEvent=CustomEvent})();</script><script>(function(siteProductionDomain) {"use strict";function _toConsumableArray(arr){return _arrayWithoutHoles(arr)||_iterableToArray(arr)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function _iterableToArray(iter){if(Symbol.iterator in Object(iter)||Object.prototype.toString.call(iter)==="[object Arguments]")return Array.from(iter)}function _arrayWithoutHoles(arr){if(Array.isArray(arr)){for(var i=0,arr2=new Array(arr.length);i<arr.length;i++){arr2[i]=arr[i]}return arr2}}function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function")}}function _defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor)}}function _createClass(Constructor,protoProps,staticProps){if(protoProps)_defineProperties(Constructor.prototype,protoProps);if(staticProps)_defineProperties(Constructor,staticProps);return Constructor}var VENDOR_CONSENT_COOKIE_NAME="euconsent";var RANGE_ENCODING=1;var CONSENT_STRING_VERSION=1;var SHARED_FIELD_MAP=[{name:"cookieVersion",type:"int",numBits:6},{name:"created",type:"date",numBits:36},{name:"lastUpdated",type:"date",numBits:36},{name:"cmpId",type:"int",numBits:12},{name:"cmpVersion",type:"int",numBits:12},{name:"consentScreen",type:"int",numBits:6},{name:"consentLanguage",type:"6bitchar",numBits:12},{name:"vendorListVersion",type:"int",numBits:12}];var VENDOR_FIELD_MAP={fields:SHARED_FIELD_MAP.concat([{name:"purposeIdBitString",type:"bits",numBits:24},{name:"maxVendorId",type:"int",numBits:16},{name:"encodingType",type:"int",numBits:1},{name:"defaultConsent",type:"bool",numBits:1},{name:"numEntries",type:"int",numBits:12},{name:"vendorRangeList",type:"list",listCount:function listCount(decodedObject){return decodedObject.numEntries},validator:function validator(decodedObject){return decodedObject.encodingType===RANGE_ENCODING},fields:[{name:"isRange",type:"bool",numBits:1},{name:"startVendorId",type:"int",numBits:16},{name:"endVendorId",type:"int",numBits:16,validator:function validator(decodedObject){return decodedObject.isRange}}]}])};var PUBLISHER_CONSENT_COOKIE_NAME="eupubconsent";var PUBLISHER_FIELD_MAP={fields:SHARED_FIELD_MAP.concat([{name:"publisherPurposeVersion",type:"int",numBits:12},{name:"standardPurposeIdBitString",type:"bits",numBits:24},{name:"numCustomPurposes",type:"int",numBits:6},{name:"customPurposeIdBitString",type:"bits",numBits:function numBits(decodedObject){return decodedObject.numCustomPurposes}}])};var SIX_BIT_ASCII_OFFSET=65;var GdprStatus=function(){_createClass(GdprStatus,[{key:"PURPOSE_IDS",get:function get(){return{storage:1,personalization:2,advertising:3,content:4,measurement:5}}}]);function GdprStatus(){var _this=this;_classCallCheck(this,GdprStatus);this.decoder=new CmpCookieDecoder;this.applicablePromise=new Promise(function(resolve,reject){var detectionTimeout=setTimeout(function(){reject("Timeout")},1000);_this.setApplicable=function(result){clearTimeout(detectionTimeout);resolve(result)}})}_createClass(GdprStatus,[{key:"isApplicable",value:function isApplicable(){if(window.location.hash&&window.location.hash==="#assumeGdprApplicable"&&window.location.hostname!==this._siteProductionDomain){return Promise.resolve(true)}return this.applicablePromise}},{key:"isConsentSet",value:function isConsentSet(){return!!this.decoder.readCookie(VENDOR_CONSENT_COOKIE_NAME)||!!this.decoder.readCookie(PUBLISHER_CONSENT_COOKIE_NAME)}},{key:"waitForConsentValue",value:function waitForConsentValue(){var _this2=this;if(!this._consentSetPromise){this._consentSetPromise=new Promise(function(resolve,reject){if(_this2.isConsentSet()){resolve(true);return}function setCallback(){if(window.phxConsentManagement){window.phxConsentManagement.setConsentUiCallback(function(){resolve(true)});return true}return false}if(!setCallback()){window.setTimeout(function(){if(!setCallback()){reject("phxConsentManagement was not resolved in time.")}},1000)}})}return this._consentSetPromise}},{key:"isConsentGivenForPurpose",value:function isConsentGivenForPurpose(purposeId){return Promise.all([this.getVendorConsentValues(),this.getPublisherConsentValues()]).then(function(values){var vendorValues=values[0];var publisherValues=values[1];return vendorValues.selectedPurposeIds.has(purposeId)||publisherValues.selectedPurposeIds.has(purposeId)||publisherValues.selectedCustomPurposeIds.has(purposeId)})}},{key:"isConsentGivenForVendor",value:function isConsentGivenForVendor(vendorId){return this.getVendorConsentValues().then(function(consentValues){return consentValues.selectedVendorIds.has(vendorId)})}},{key:"getVendorConsentValues",value:function getVendorConsentValues(){var cookie=this.decoder.readCookie(VENDOR_CONSENT_COOKIE_NAME);return Promise.resolve(cookie&&this.decoder.decodeVendorConsentData(cookie))}},{key:"getPublisherConsentValues",value:function getPublisherConsentValues(){var cookie=this.decoder.readCookie(PUBLISHER_CONSENT_COOKIE_NAME);return Promise.resolve(cookie&&this.decoder.decodePublisherConsentData(cookie))}},{key:"siteProductionDomain",set:function set(siteProductionDomain){this._siteProductionDomain=siteProductionDomain}}]);return GdprStatus}();var CmpCookieDecoder=function(){function CmpCookieDecoder(){_classCallCheck(this,CmpCookieDecoder)}_createClass(CmpCookieDecoder,[{key:"_decodeBitsToInt",value:function _decodeBitsToInt(bitString,start,length){return parseInt(bitString.substr(start,length),2)}},{key:"_decodeBitsToDate",value:function _decodeBitsToDate(bitString,start,length){return new Date(this._decodeBitsToInt(bitString,start,length)*100)}},{key:"_decodeBitsToBool",value:function _decodeBitsToBool(bitString,start){return parseInt(bitString.substr(start,1),2)===1}},{key:"_decode6BitCharacters",value:function _decode6BitCharacters(bitString,start,length){var decoded="";var decodeStart=start;while(decodeStart<start+length){decoded+=String.fromCharCode(SIX_BIT_ASCII_OFFSET+this._decodeBitsToInt(bitString,decodeStart,6));decodeStart+=6}return decoded}},{key:"_decodeField",value:function _decodeField(_ref){var _this3=this;var input=_ref.input,output=_ref.output,startPosition=_ref.startPosition,field=_ref.field;var type=field.type,numBits=field.numBits,listCount=field.listCount,validator=field.validator;if(typeof validator==="function"){if(!validator(output)){return{newPosition:startPosition}}}var bitCount=typeof numBits==="function"?numBits(output):numBits;var listEntryCount=typeof listCount==="function"?listCount(output):typeof listCount==="number"?listCount:0;switch(type){case"int":return{fieldValue:this._decodeBitsToInt(input,startPosition,bitCount)};case"bool":return{fieldValue:this._decodeBitsToBool(input,startPosition)};case"date":return{fieldValue:this._decodeBitsToDate(input,startPosition,bitCount)};case"bits":return{fieldValue:input.substr(startPosition,bitCount)};case"6bitchar":return{fieldValue:this._decode6BitCharacters(input,startPosition,bitCount)};case"list":return new Array(listEntryCount).fill().reduce(function(acc){var _this3$_decodeFields=_this3._decodeFields({input:input,fields:field.fields,startPosition:acc.newPosition}),decodedObject=_this3$_decodeFields.decodedObject,newPosition=_this3$_decodeFields.newPosition;return{fieldValue:_toConsumableArray(acc.fieldValue).concat([decodedObject]),newPosition:newPosition}},{fieldValue:[],newPosition:startPosition});default:return{};}}},{key:"_decodeFields",value:function _decodeFields(_ref2){var _this4=this;var input=_ref2.input,fields=_ref2.fields,_ref2$startPosition=_ref2.startPosition,startPosition=_ref2$startPosition===void 0?0:_ref2$startPosition;var position=startPosition;var decodedObject=fields.reduce(function(acc,field){var name=field.name,numBits=field.numBits;var _this4$_decodeField=_this4._decodeField({input:input,output:acc,startPosition:position,field:field}),fieldValue=_this4$_decodeField.fieldValue,newPosition=_this4$_decodeField.newPosition;if(fieldValue!==undefined){acc[name]=fieldValue}if(newPosition!==undefined){position=newPosition}else if(typeof numBits==="number"){position+=numBits}return acc},{});return{decodedObject:decodedObject,newPosition:position}}},{key:"_decodeCookieValue",value:function _decodeCookieValue(cookieValue,definitionMap){var unsafe=cookieValue.replace(/-/g,"+").replace(/_/g,"/")+"==".substring(0,3*cookieValue.length%4);var bytes=window.atob(unsafe);var inputBits="";for(var i=0;i<bytes.length;i++){var bitString=bytes.charCodeAt(i).toString(2);inputBits+=bitString.padStart(8,"0")}var _this$_decodeFields=this._decodeFields({input:inputBits,fields:definitionMap.fields}),decodedObject=_this$_decodeFields.decodedObject;return decodedObject}},{key:"_decodePublisherCookieValue",value:function _decodePublisherCookieValue(cookieValue){return this._decodeCookieValue(cookieValue,PUBLISHER_FIELD_MAP)}},{key:"_decodeVendorCookieValue",value:function _decodeVendorCookieValue(cookieValue){return this._decodeCookieValue(cookieValue,VENDOR_FIELD_MAP)}},{key:"_decodeBitsToIds",value:function _decodeBitsToIds(bitString){return bitString.split("").reduce(function(acc,bit,index){if(bit==="1"){acc.add(index+1)}return acc},new Set)}},{key:"decodePublisherConsentData",value:function decodePublisherConsentData(cookieValue){var _this$_decodePublishe=this._decodePublisherCookieValue(cookieValue),cookieVersion=_this$_decodePublishe.cookieVersion,cmpId=_this$_decodePublishe.cmpId,vendorListVersion=_this$_decodePublishe.vendorListVersion,publisherPurposeVersion=_this$_decodePublishe.publisherPurposeVersion,created=_this$_decodePublishe.created,lastUpdated=_this$_decodePublishe.lastUpdated,standardPurposeIdBitString=_this$_decodePublishe.standardPurposeIdBitString,customPurposeIdBitString=_this$_decodePublishe.customPurposeIdBitString;if(cookieVersion!==CONSENT_STRING_VERSION){throw new Error("Unsupported cookie version detected")}return{cookieVersion:cookieVersion,cmpId:cmpId,vendorListVersion:vendorListVersion,publisherPurposeVersion:publisherPurposeVersion,created:created,lastUpdated:lastUpdated,selectedPurposeIds:this._decodeBitsToIds(standardPurposeIdBitString),selectedCustomPurposeIds:this._decodeBitsToIds(customPurposeIdBitString)}}},{key:"decodeVendorConsentData",value:function decodeVendorConsentData(cookieValue){var _this$_decodeVendorCo=this._decodeVendorCookieValue(cookieValue),cookieVersion=_this$_decodeVendorCo.cookieVersion,cmpId=_this$_decodeVendorCo.cmpId,cmpVersion=_this$_decodeVendorCo.cmpVersion,consentScreen=_this$_decodeVendorCo.consentScreen,consentLanguage=_this$_decodeVendorCo.consentLanguage,vendorListVersion=_this$_decodeVendorCo.vendorListVersion,purposeIdBitString=_this$_decodeVendorCo.purposeIdBitString,maxVendorId=_this$_decodeVendorCo.maxVendorId,created=_this$_decodeVendorCo.created,lastUpdated=_this$_decodeVendorCo.lastUpdated,defaultConsent=_this$_decodeVendorCo.defaultConsent,encodingType=_this$_decodeVendorCo.encodingType,numEntries=_this$_decodeVendorCo.numEntries,vendorRangeList=_this$_decodeVendorCo.vendorRangeList;if(cookieVersion!==CONSENT_STRING_VERSION){throw new Error("Unsupported cookie version detected")}var cookieData={cookieVersion:cookieVersion,cmpId:cmpId,cmpVersion:cmpVersion,consentScreen:consentScreen,consentLanguage:consentLanguage,vendorListVersion:vendorListVersion,encodingType:encodingType,numEntries:numEntries,selectedPurposeIds:this._decodeBitsToIds(purposeIdBitString),maxVendorId:maxVendorId,created:created,lastUpdated:lastUpdated};if(encodingType===RANGE_ENCODING){var idMap=vendorRangeList.reduce(function(acc,_ref3){var isRange=_ref3.isRange,startVendorId=_ref3.startVendorId,endVendorId=_ref3.endVendorId;var lastVendorId=isRange?endVendorId:startVendorId;for(var i=startVendorId;i<=lastVendorId;i++){acc[i]=true}return acc},{});cookieData.selectedVendorIds=new Set;for(var i=0;i<=maxVendorId;i++){if(defaultConsent&&!idMap[i]||!defaultConsent&&idMap[i]){cookieData.selectedVendorIds.add(i)}}}else{throw new Error("Unsupported vendor encoding")}return cookieData}},{key:"readCookie",value:function readCookie(name){var value="; ".concat(document.cookie);var parts=value.split("; ".concat(name,"="));if(parts.length===2){return parts.pop().split(";").shift()}}}]);return CmpCookieDecoder}();window.GdprStatus=new GdprStatus;window.GdprStatus.siteProductionDomain = siteProductionDomain;
})('www.svconline.com');</script><script async src="/.eea.js"></script><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
</script><script>window.googleAnalyticsConfig = {"trackers":[{"name":"_tempestTracker","id":"UA-1778701-17","cookieDomain":"www.svconline.com","sendEvents":true,"customDimensionMap":{"pageType":1,"parentSectionName":2,"authorName":3,"publicationQuarter":4,"channelName":11,"subscriptionStatus":12,"sectionPath":13,"eeaStatus":14}},{"name":"_siteTracker","id":"UA-2342357-47","cookieDomain":"www.svconline.com","sendEvents":true,"customDimensionMap":{"subscriptionStatus":null,"sectionPath":null,"publicationQuarter":null,"authorName":7,"pageType":null,"channelName":null,"parentSectionName":null}}],"initialModel":{"title":"InfoComm","pageType":"Rich Term Page","path":"/the-wire/infocomm","subscriptionStatus":"Unsubscribed","channelName":"Web"},"experimentId":null} || {trackers: []};
window.GdprStatus.isApplicable().then(function(isApplicable) {
  (function (googleAnalyticsConfig) {"use strict";var experimentVariant=null;if(window.cxApi){experimentVariant=cxApi.chooseVariation(googleAnalyticsConfig.experimentid);window.phxExperimentVariant=experimentVariant}googleAnalyticsConfig.sendPageView=function(model){model.experimentVariant=experimentVariant;model.subscriptionStatus=window.TempestIdentity&&window.TempestIdentity.benefits.premiumExperience?"Premium":"Unsubscribed";for(var i=0;i<googleAnalyticsConfig.trackers.length;i++){var tracker=googleAnalyticsConfig.trackers[i];if(tracker.experimentOnly&&!experimentVariant){continue}var config={};var prefix="";if(tracker.name){config.name=tracker.name;prefix=tracker.name+"."}if(tracker.cookieDomain){config.cookieDomain=tracker.cookieDomain}if(tracker.sampleRate){config.sampleRate=tracker.sampleRate}model.eeaStatus=isApplicable?"1":"0";if(isApplicable){config.storage="none";config.storeGac=false}ga("create",tracker.id,config);if(isApplicable){ga(prefix+"set","displayFeaturesTask",null)}ga(prefix+"set","page",model.path);ga(prefix+"set","title",model.title);ga(prefix+"set","anonymizeIp",true);var cd=tracker.customDimensionMap;for(var k in cd){if(!cd[k]||!cd.hasOwnProperty(k)){continue}var val=model[k];if(val!==undefined&&val!==null){ga(prefix+"set","dimension"+cd[k],""+val)}}ga(prefix+"send","pageview",model.path)}};var model=googleAnalyticsConfig.initialModel;model.positionInSession="initial";googleAnalyticsConfig.sendPageView(model);window._gaSent=true;  })(window.googleAnalyticsConfig);
});</script><script>"use strict";(function(){var pageLoadPromises=[];window.getTimedOutPageLoadPromise=function(timeoutMs){if(document.readyState==="complete"){return Promise.resolve(true)}else{var pageLoadPromise=new Promise(function(resolve,reject){window.addEventListener("load",function(){resolve(true)});pageLoadPromises.push(setTimeout(function(){resolve(true)},timeoutMs||0))});return pageLoadPromise}};window.addEventListener("load",function(){for(var i in pageLoadPromises){window.clearTimeout(pageLoadPromises[i])}})})();</script><script>"use strict";function _typeof(obj){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"){_typeof=function _typeof(obj){return typeof obj}}else{_typeof=function _typeof(obj){return obj&&typeof Symbol==="function"&&obj.constructor===Symbol&&obj!==Symbol.prototype?"symbol":typeof obj}}return _typeof(obj)}function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function")}}function _defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor)}}function _createClass(Constructor,protoProps,staticProps){if(protoProps)_defineProperties(Constructor.prototype,protoProps);if(staticProps)_defineProperties(Constructor,staticProps);return Constructor}function _possibleConstructorReturn(self,call){if(call&&(_typeof(call)==="object"||typeof call==="function")){return call}return _assertThisInitialized(self)}function _assertThisInitialized(self){if(self===void 0){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return self}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function")}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,writable:true,configurable:true}});if(superClass)_setPrototypeOf(subClass,superClass)}function _wrapNativeSuper(Class){var _cache=typeof Map==="function"?new Map:undefined;_wrapNativeSuper=function _wrapNativeSuper(Class){if(Class===null||!_isNativeFunction(Class))return Class;if(typeof Class!=="function"){throw new TypeError("Super expression must either be null or a function")}if(typeof _cache!=="undefined"){if(_cache.has(Class))return _cache.get(Class);_cache.set(Class,Wrapper)}function Wrapper(){return _construct(Class,arguments,_getPrototypeOf(this).constructor)}Wrapper.prototype=Object.create(Class.prototype,{constructor:{value:Wrapper,enumerable:false,writable:true,configurable:true}});return _setPrototypeOf(Wrapper,Class)};return _wrapNativeSuper(Class)}function isNativeReflectConstruct(){if(typeof Reflect==="undefined"||!Reflect.construct)return false;if(Reflect.construct.sham)return false;if(typeof Proxy==="function")return true;try{Date.prototype.toString.call(Reflect.construct(Date,[],function(){}));return true}catch(e){return false}}function _construct(Parent,args,Class){if(isNativeReflectConstruct()){_construct=Reflect.construct}else{_construct=function _construct(Parent,args,Class){var a=[null];a.push.apply(a,args);var Constructor=Function.bind.apply(Parent,a);var instance=new Constructor;if(Class)_setPrototypeOf(instance,Class.prototype);return instance}}return _construct.apply(null,arguments)}function _isNativeFunction(fn){return Function.toString.call(fn).indexOf("[native code]")!==-1}function _setPrototypeOf(o,p){_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(o,p){o.__proto__=p;return o};return _setPrototypeOf(o,p)}function _getPrototypeOf(o){_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(o){return o.__proto__||Object.getPrototypeOf(o)};return _getPrototypeOf(o)}var DELAY_TIMEOUT=30000;var PhoenixScript=function(_HTMLElement){_inherits(PhoenixScript,_HTMLElement);function PhoenixScript(){_classCallCheck(this,PhoenixScript);return _possibleConstructorReturn(this,_getPrototypeOf(PhoenixScript).apply(this,arguments))}_createClass(PhoenixScript,[{key:"connectedCallback",value:function connectedCallback(){this.delayLoad=this.hasAttribute("delay-load");this.blockPremium=this.hasAttribute("block-premium");this.blockGdprApplicable=this.hasAttribute("block-on-gdpr-applicable");this.waitForApp=this.hasAttribute("wait-for-app");this.templateId=this.getAttribute("script-id");this.scriptSrc=this.getAttribute("src");if(!this.templateId&&!this.scriptSrc){throw new Error("script-id or src is required")}if(this.templateId&&this.scriptSrc){throw new Error("script-id and src are mutually exclusive")}this._handleWaitForPromises()}},{key:"_whenPageLoaded",value:function _whenPageLoaded(timeoutMs){var _this=this;if(document.readyState==="complete"){return Promise.resolve()}else{if(!this.delayLoadTimeouts){this.delayLoadTimeouts=[]}window.addEventListener("load",function(){for(var i in _this.delayLoadTimeouts){window.clearTimeout(_this.delayLoadTimeouts[i])}});return new Promise(function(resolve,reject){window.addEventListener("load",resolve);_this.delayLoadTimeouts.push(setTimeout(resolve,timeoutMs||0))})}}},{key:"_whenAppLoaded",value:function _whenAppLoaded(){if(window._angularAppLoaded===true){return Promise.resolve()}else{return new Promise(function(resolve,reject){window.addEventListener("angularAppLoaded",resolve)})}}},{key:"_handleWaitForPromises",value:function _handleWaitForPromises(){var _this2=this;var promises=[];if(this.delayLoad){promises.push(this._whenPageLoaded(DELAY_TIMEOUT))}if(this.waitForApp){promises.push(this._whenAppLoaded())}if(this.blockPremium){if(!window.phxConfigQueue){throw new Error("config object is necessary to check premium")}promises.push(new Promise(function(resolve,reject){window.phxConfigQueue.push(function(){if(this.user.hasPremium()){reject()}else{resolve()}})}))}if(this.blockGdprApplicable){if(!window.GdprStatus){throw new Error("window.GdprStatus is required")}promises.push(new Promise(function(resolve,reject){window.GdprStatus.isApplicable().then(function(isApplicable){if(!isApplicable){resolve()}else{reject()}})}))}Promise.all(promises).then(function(){_this2._inject()}).catch(function(){})}},{key:"_inject",value:function _inject(){var script=document.createElement("script");if(this.scriptSrc){script.src=this.scriptSrc}else if(this.templateId){var template=document.getElementById(this.templateId);if(!template){throw new Error("template not found for "+this.templateId)}script.innerHTML=template.innerHTML;template.parentElement.removeChild(template)}this.appendChild(script)}}]);return PhoenixScript}(_wrapNativeSuper(HTMLElement));window.customElements.define("phoenix-script",PhoenixScript);</script><script>(function(d) {
    var config = {
        kitId: "plr0hmd",
        scriptTimeout: 3000,
        async: true,
        active: function (){
            var fontLoaded = new Event('typekitFontLoaded');
            d.dispatchEvent(fontLoaded);
        }
    },
    h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,'')+' wf-inactive';},config.scriptTimeout),tk=d.createElement('script'),f=false,s=d.getElementsByTagName('script')[0],a;h.className+=' wf-loading';tk.src='https://use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!='complete'&&a!='loaded')return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
})(document);
</script><link rel="stylesheet" href="/components/filament-sticky/fixedsticky.css?v=2018-11-16-234933-363d9ab-012024"><link rel="stylesheet" href="/site/styles/main.min.css?config=published&amp;cv=0cf6b7af22031ac68c9dd66f74a6142e&amp;v=2018-11-16-234933-363d9ab-012024"><script>(function () {
    var givenQs = '&' + window.location.search.substr(1) + '&';
    var newQs = givenQs.replace(/&(bt_email|vero_id)=[^&]+&/, '&REDACTED=REDACTED&');
    if (newQs !== givenQs) {
        console.warn('We have redacted a personal information argument in the query string');
        var newUrl = window.location.pathname + '?' + newQs.substr(1, newQs.length - 2);
        window.history.replaceState({}, '', newUrl);
    }
})();
</script><script>var phxConfigQueue = window.phxConfigQueue || [];
</script><script async src="/.bootscripts/config.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script>phxConfigQueue.push(function () {
    this.features.init({"alt-demo-data":false,"quotes-revamp":true,"wide-content-well":true,"tempest-video":true,"atf-sidebar-enabled":true});
});</script><script>'use strict';
var phxBeaconQueue = window.phxBeaconQueue || [];
</script><script async src="/.bootscripts/beacon.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script>var pbjs = pbjs || {};
pbjs.que = pbjs.que || [];</script><script async src="/runtime/alpha.js?v=2018-11-16-234933-363d9ab-012024"></script><script>var phxPrebidQueue = window.phxPrebidQueue || [];
</script><script async src="/runtime/beta.js?v=2018-11-16-234933-363d9ab-012024"></script><script>(function(prebidConfig){"use strict";window.GdprStatus.isApplicable().then(function(isApplicable){prebidConfig.gdprIsApplicable=isApplicable;phxPrebidQueue.push(function(){this.startAuction(prebidConfig)})});})({"beacons":{"targetingParams":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/targetingparams","paramSeparators":{"ksg":":","terms":";"},"exclude":{"ag":true,"in":true,"pt":true,"et":true,"gd":true}},"demoUsage":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/demousage","paramSeparators":{"krux":","},"raw":{"krux":true}},"bannerShown":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/bannershown"},"prebidAuctionEnded":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/prebidauctionended"}},"siteProductionDomain":"www.svconline.com","slots":[{"sizes":[{"width":300,"height":600},{"width":300,"height":250},{"width":160,"height":600}],"screenSizes":["C"],"slotModel":{"zone":"sidebar","index":"0","isOutstream":false},"id":"ad-a50dae2b598c4b03b00bd551fd9a7dfb"},{"sizes":[{"name":"fixedBottomC"}],"screenSizes":["C"],"slotModel":{"zone":"fixed_bottom","index":0,"isOutstream":false},"id":"ad-9ee2d13729f04db4ad30fe38b756e4ad"},{"sizes":[{"name":"fixedBottomB"}],"screenSizes":["B"],"slotModel":{"zone":"fixed_bottom","index":0,"isOutstream":false},"id":"ad-cfb76296c92c4103923cdf0443495e54"},{"sizes":[{"name":"fixedBottomA"}],"screenSizes":["A"],"slotModel":{"zone":"fixed_bottom","index":0,"isOutstream":false},"id":"ad-f48056f3683c4cddb8fd343cd0bf34bd"},{"sizes":[{"width":300,"height":250},{"name":"fluid"}],"screenSizes":["A"],"slotModel":{"zone":"in_content","index":"0","isOutstream":false,"nativeCardType":"list"},"id":"ad-f8cc27f7a0d1468898bd010dff4c8f53"},{"sizes":[{"width":728,"height":90},{"name":"fluid"}],"screenSizes":["B"],"slotModel":{"zone":"in_content","index":"0","isOutstream":false,"nativeCardType":"list"},"id":"ad-e0375f7005aa47a5a3c1ebcf02319a2f"},{"sizes":[{"width":970,"height":250},{"width":970,"height":90},{"width":728,"height":90},{"name":"fluid"}],"screenSizes":["C"],"slotModel":{"zone":"in_content","index":"0","isOutstream":false,"nativeCardType":"list"},"id":"ad-7ce3bc7f5c0843d69f360d29b16ebd5d"},{"sizes":[{"width":970,"height":250},{"width":970,"height":90},{"width":728,"height":90}],"screenSizes":["C","D"],"slotModel":{"zone":"header","index":0,"isOutstream":false},"id":"ad-906b9ba91531400b9646dd8434cde09f"},{"sizes":[{"width":728,"height":90}],"screenSizes":["B"],"slotModel":{"zone":"header","index":0,"isOutstream":false},"id":"ad-1175b014c2eb4e87bbca23230d05a77a"},{"sizes":[{"width":320,"height":50},{"width":320,"height":100},{"width":300,"height":250}],"screenSizes":["A"],"slotModel":{"zone":"header","index":0,"isOutstream":false},"id":"ad-2a5726ff990344d4a83dc9e5bc4d1c9e"},{"sizes":[{"width":300,"height":600},{"width":300,"height":250},{"width":160,"height":600}],"screenSizes":["C"],"slotModel":{"zone":"sidebar","index":"1","isOutstream":false},"id":"ad-f016d25d79364c1595d39c888641ada7"},{"sizes":[{"width":728,"height":90},{"name":"fluid"}],"screenSizes":["B"],"slotModel":{"zone":"in_content","index":"1","isOutstream":false,"nativeCardType":"list"},"id":"ad-24c9ff5b1d9546b78260163805357c72"},{"sizes":[{"width":300,"height":250},{"name":"fluid"}],"screenSizes":["A"],"slotModel":{"zone":"in_content","index":"1","isOutstream":false,"nativeCardType":"list"},"id":"ad-87debe74270942d38557673308347bef"},{"sizes":[{"width":970,"height":250},{"width":970,"height":90},{"width":728,"height":90},{"name":"fluid"}],"screenSizes":["C"],"slotModel":{"zone":"in_content","index":"1","isOutstream":false,"nativeCardType":"list"},"id":"ad-bb67a1f51e624652be8f7d2edfb4c0ef"},{"sizes":[{"width":300,"height":250},{"name":"fluid"}],"screenSizes":["A"],"slotModel":{"zone":"in_content","index":"2","isOutstream":false,"nativeCardType":"list"},"id":"ad-db3ade5b5d814fe4bd5379fe3e43abac"},{"sizes":[{"width":728,"height":90},{"name":"fluid"}],"screenSizes":["B"],"slotModel":{"zone":"in_content","index":"2","isOutstream":false,"nativeCardType":"list"},"id":"ad-3571af8ba06d45a0a12f4efe302c18fb"},{"sizes":[{"width":970,"height":250},{"width":970,"height":90},{"width":728,"height":90},{"name":"fluid"}],"screenSizes":["C"],"slotModel":{"zone":"in_content","index":"2","isOutstream":false,"nativeCardType":"list"},"id":"ad-589e404ed19f49bf966a0706befd8c60"},{"sizes":[{"width":300,"height":600},{"width":300,"height":250},{"width":160,"height":600}],"screenSizes":["C"],"slotModel":{"zone":"sidebar","index":"2","isOutstream":false},"id":"ad-f3a896120ca3445295ed3ac36696ec6c"},{"sizes":[{"width":300,"height":600},{"width":300,"height":250},{"width":160,"height":600}],"screenSizes":["C"],"slotModel":{"zone":"sidebar","index":"3","isOutstream":false},"id":"ad-52d88c3fa973450da740d64e0d19910d"}],"units":{"A":[{"code":"ad-f48056f3683c4cddb8fd343cd0bf34bd","mediaTypes":{"banner":{"sizes":[[320,50]]}},"bids":[{"bidder":"ix","params":{"siteId":"188954","size":[320,50]}},{"bidder":"rhythmone","params":{"placementId":"73783"}},{"bidder":"aol","params":{"placement":"4414905","network":"9892.1"}}]},{"code":"ad-2a5726ff990344d4a83dc9e5bc4d1c9e","mediaTypes":{"banner":{"sizes":[[320,50]]}},"bids":[{"bidder":"ix","params":{"siteId":"188469","size":[320,50]}},{"bidder":"rhythmone","params":{"placementId":"73783"}},{"bidder":"aol","params":{"placement":"4126091","network":"9892.1"}}]},{"code":"ad-f8cc27f7a0d1468898bd010dff4c8f53","mediaTypes":{"banner":{"sizes":[[300,250]]}},"bids":[{"bidder":"ix","params":{"siteId":"188470","size":[300,250]}},{"bidder":"rhythmone","params":{"placementId":"73783"}},{"bidder":"aol","params":{"placement":"4126090","network":"9892.1"}}]},{"code":"ad-87debe74270942d38557673308347bef","mediaTypes":{"banner":{"sizes":[[300,250]]}},"bids":[{"bidder":"ix","params":{"siteId":"188951","size":[300,250]}},{"bidder":"rhythmone","params":{"placementId":"73783"}},{"bidder":"aol","params":{"placement":"4414906","network":"9892.1"}}]}],"B":[{"code":"ad-cfb76296c92c4103923cdf0443495e54","mediaTypes":{"banner":{"sizes":[[728,90]]}},"bids":[{"bidder":"ix","params":{"siteId":"188953","size":[728,90]}},{"bidder":"rhythmone","params":{"placementId":"73782"}},{"bidder":"aol","params":{"placement":"4414902","network":"9892.1"}}]},{"code":"ad-1175b014c2eb4e87bbca23230d05a77a","mediaTypes":{"banner":{"sizes":[[728,90]]}},"bids":[{"bidder":"ix","params":{"siteId":"188466","size":[728,90]}},{"bidder":"rhythmone","params":{"placementId":"73782"}},{"bidder":"aol","params":{"placement":"4126088","network":"9892.1"}}]}],"C":[{"code":"ad-9ee2d13729f04db4ad30fe38b756e4ad","mediaTypes":{"banner":{"sizes":[[728,90]]}},"bids":[{"bidder":"ix","params":{"siteId":"188953","size":[728,90]}},{"bidder":"rhythmone","params":{"placementId":"73782"}},{"bidder":"aol","params":{"placement":"4414902","network":"9892.1"}}]},{"code":"ad-906b9ba91531400b9646dd8434cde09f","mediaTypes":{"banner":{"sizes":[[728,90]]}},"bids":[{"bidder":"ix","params":{"siteId":"188466","size":[728,90]}},{"bidder":"rhythmone","params":{"placementId":"73782"}},{"bidder":"aol","params":{"placement":"4126088","network":"9892.1"}}]},{"code":"ad-a50dae2b598c4b03b00bd551fd9a7dfb","mediaTypes":{"banner":{"sizes":[[300,600]]}},"bids":[{"bidder":"ix","params":{"siteId":"188468","size":[300,600]}},{"bidder":"rhythmone","params":{"placementId":"73782"}},{"bidder":"aol","params":{"placement":"4126087","network":"9892.1"}}]}]},"unitVendorConfig":{},"timeout":1300});</script><script>window.phxPageTarget = {config: {"global":{"config":{"networkId":"88059007","adUnitPathTemplates":[{"type":"simple","key":"hostname"},{"type":"simple","key":"section"}],"beacons":{"targetingParams":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/targetingparams","paramSeparators":{"ksg":":","terms":";"},"exclude":{"ag":true,"in":true,"pt":true,"et":true,"gd":true}},"demoUsage":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/demousage","paramSeparators":{"krux":","},"raw":{"krux":true}},"bannerShown":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/bannershown"},"prebidAuctionEnded":{"beaconUrl":"https://beacon-streamer.saymedia.com/beacon/prebidauctionended"}},"customTargetingTemplates":{"adindex":{"type":"simple","key":"index"},"adzone":{"type":"simple","key":"zone"},"adzoneindex":{"type":"simple","key":"zoneIndex"},"hb_adid":{"type":"simple","key":"prebidAdId"},"hb_bidder":{"type":"simple","key":"prebidWinner"},"hb_pb":{"type":"simple","key":"prebidPriceBucket"},"hb_pbd":{"type":"simple","key":"prebidPriceBucketDollar"},"hb_size":{"type":"simple","key":"prebidAdSize"},"position":{"type":"simple","key":"positionTarget"},"rid":{"type":"simple","key":"rid"},"siteadzoneindex":{"type":"simple","key":"siteZoneIndex"},"sponlineitemid":{"type":"simple","key":"sponsorLineItemId"},"native_card_type":{"type":"simple","key":"nativeCardType"}},"customTargetingPageTemplates":{"ag":{"type":"simple","key":"ag"},"channel":{"type":"simple","key":"channelCode"},"env":{"type":"simple","key":"env"},"et":{"type":"simple","key":"et"},"gd":{"type":"simple","key":"gd"},"in":{"type":"simple","key":"in"},"ksg":{"type":"simple","key":"ksg"},"kuid":{"type":"simple","key":"kuid"},"lang":{"type":"simple","key":"languageCode"},"pagetype":{"type":"simple","key":"pageType"},"path":{"type":"simple","key":"path"},"pt":{"type":"simple","key":"pt"},"referrer":{"type":"simple","key":"referrer"},"terms":{"type":"simple","key":"terms"}},"specialSizes":{"0":"fluid","1":"fluid","2":"fluid","3":"fluid","4":"fluid","320x60":"fixedBottomA","320x50":"fixedBottomA","300x50":"fixedBottomA","768x66":"fixedBottomB","728x90":"fixedBottomC","900x65":"fixedBottomC","970x90":"fixedBottomC","1x2":"siteSkin","640x360":"outstream"}},"baseModel":{"hostname":"www.svconline.com","path":"/the-wire/infocomm","channelCode":"web","languageCode":"en","pageType":"section","section":["the-wire","infocomm"],"terms":[],"env":"prod"}},"sizedSlots":[{"id":"ad-906b9ba91531400b9646dd8434cde09f","config":{"sizes":[[970,250],[970,90],[728,90]]},"screenSizes":["C","D"],"model":{"zone":"header","index":0,"isOutstream":false}},{"id":"ad-1175b014c2eb4e87bbca23230d05a77a","config":{"sizes":[[728,90]]},"screenSizes":["B"],"model":{"zone":"header","index":0,"isOutstream":false}},{"id":"ad-2a5726ff990344d4a83dc9e5bc4d1c9e","config":{"sizes":[[320,50],[320,100],[300,250]]},"screenSizes":["A"],"model":{"zone":"header","index":0,"isOutstream":false}},{"id":"ad-9ee2d13729f04db4ad30fe38b756e4ad","config":{"sizes":[[900,65],[970,90],[728,90]]},"screenSizes":["C"],"model":{"zone":"fixed_bottom","index":0,"isOutstream":false}},{"id":"ad-cfb76296c92c4103923cdf0443495e54","config":{"sizes":[[768,66],[728,90]]},"screenSizes":["B"],"model":{"zone":"fixed_bottom","index":0,"isOutstream":false}},{"id":"ad-f48056f3683c4cddb8fd343cd0bf34bd","config":{"sizes":[[320,60],[320,50],[300,50]]},"screenSizes":["A"],"model":{"zone":"fixed_bottom","index":0,"isOutstream":false}},{"id":"ad-a50dae2b598c4b03b00bd551fd9a7dfb","config":{"sizes":[[300,600],[300,250],[160,600]]},"screenSizes":["C"],"model":{"zone":"sidebar","index":"0","isOutstream":false}},{"id":"ad-f016d25d79364c1595d39c888641ada7","config":{"sizes":[[300,600],[300,250],[160,600]]},"screenSizes":["C"],"model":{"zone":"sidebar","index":"1","isOutstream":false}},{"id":"ad-f3a896120ca3445295ed3ac36696ec6c","config":{"sizes":[[300,600],[300,250],[160,600]]},"screenSizes":["C"],"model":{"zone":"sidebar","index":"2","isOutstream":false}},{"id":"ad-52d88c3fa973450da740d64e0d19910d","config":{"sizes":[[300,600],[300,250],[160,600]]},"screenSizes":["C"],"model":{"zone":"sidebar","index":"3","isOutstream":false}},{"id":"ad-7ce3bc7f5c0843d69f360d29b16ebd5d","config":{"sizes":[[970,250],[970,90],[728,90],"fluid"]},"screenSizes":["C"],"model":{"zone":"in_content","index":"0","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-f8cc27f7a0d1468898bd010dff4c8f53","config":{"sizes":[[300,250],"fluid"]},"screenSizes":["A"],"model":{"zone":"in_content","index":"0","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-e0375f7005aa47a5a3c1ebcf02319a2f","config":{"sizes":[[728,90],"fluid"]},"screenSizes":["B"],"model":{"zone":"in_content","index":"0","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-24c9ff5b1d9546b78260163805357c72","config":{"sizes":[[728,90],"fluid"]},"screenSizes":["B"],"model":{"zone":"in_content","index":"1","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-87debe74270942d38557673308347bef","config":{"sizes":[[300,250],"fluid"]},"screenSizes":["A"],"model":{"zone":"in_content","index":"1","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-bb67a1f51e624652be8f7d2edfb4c0ef","config":{"sizes":[[970,250],[970,90],[728,90],"fluid"]},"screenSizes":["C"],"model":{"zone":"in_content","index":"1","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-589e404ed19f49bf966a0706befd8c60","config":{"sizes":[[970,250],[970,90],[728,90],"fluid"]},"screenSizes":["C"],"model":{"zone":"in_content","index":"2","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-3571af8ba06d45a0a12f4efe302c18fb","config":{"sizes":[[728,90],"fluid"]},"screenSizes":["B"],"model":{"zone":"in_content","index":"2","isOutstream":false,"nativeCardType":"list"}},{"id":"ad-db3ade5b5d814fe4bd5379fe3e43abac","config":{"sizes":[[300,250],"fluid"]},"screenSizes":["A"],"model":{"zone":"in_content","index":"2","isOutstream":false,"nativeCardType":"list"}}],"outOfPageSlots":[{"id":"ad-7f74f14573eb4191994e915a308d864a","config":{},"model":{"zone":"interstitial","index":0,"isOutstream":false}}]}};</script><script>var phxAdvertisingQueue = window.phxAdvertisingQueue || [];
var phxAdServerQueue = window.phxAdServerQueue || [];
var phxDemographicsQueue = window.phxDemographicsQueue || [];
</script><script async src="/runtime/gamma.js?v=2018-11-16-234933-363d9ab-012024"></script><script>var googletag = googletag || {};googletag.cmd = googletag.cmd || [];</script><script defer src="https://www.googletagservices.com/tag/js/gpt.js"></script><script defer src="/runtime/delta.js?v=2018-11-16-234933-363d9ab-012024"></script><script>phxDemographicsQueue.push(function () {
    this.init({"addressableDemographics":{"CA":{"55plus":false,"21plus":false,"45plus":false,"f":false,"21-49":false,"25-34":false,"55-64":false,"m":true,"18plus":false,"65plus":false,"18-24":false,"45-54":true,"25plus":false,"25-54":false,"25-44":false,"35plus":false,"35-54":false,"35-44":false,"18-34":false},"GB":{"55plus":false,"all":false,"45plus":false,"gbp50k":true,"18-24":false,"45-54":true,"25-44":false,"55-64":false,"25-54":false,"21plus":false,"35-44":false,"18plus":false,"65plus":false,"25plus":false,"gbp70k":true,"21-49":false,"25-34":false,"18-34":false,"35plus":false,"35-54":false,"f":false,"m":true},"US":{"55plus":false,"all":false,"45plus":false,"usd150k":true,"18-24":false,"45-54":true,"25-44":false,"55-64":false,"25-54":false,"21plus":false,"35-44":false,"18plus":false,"asia":false,"65plus":false,"hisp":false,"25plus":false,"usd75k":true,"usd100k":true,"21-49":false,"25-34":false,"18-34":false,"35plus":false,"35-54":false,"afam":false,"f":false,"m":true}}});
});
</script><script>if (window.phxPageTarget) {
    phxAdvertisingQueue.push(function () {
        this.beginPage(window.phxPageTarget.config);
    });
}</script><script>(function() {
    window._comscore = window._comscore || [];
    var comscoreTag = {
        c1: '2',
        c2: '27019031',
    };
    var campaignId = '';
    var siteUrl = '';
    if (campaignId || siteUrl) {
        comscoreTag.c3 = campaignId;
        comscoreTag.c4 = siteUrl ? encodeURIComponent(siteUrl) : '';
    }
    window._comscore.push(comscoreTag);
})();</script><script>(function() {
    var s = document.createElement("script"), el = document.getElementsByTagName("script")[0];
    s.async = true;
    s.src = "https://sb.scorecardresearch.com/beacon.js";
    el.parentNode.insertBefore(s, el);
})();</script><base href="/"><meta charset="utf-8"><meta name="referrer" content="unsafe-url"><meta http-equiv="cleartype" content="on"><meta name="HandheldFriendly" content="True"><meta name="MobileOptimized" content="320"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="black"><link rel="apple-touch-icon" href="/site/images/apple-touch-icon.png?v=2018-11-16-234933-363d9ab-012024"><link rel="apple-touch-icon" sizes="57x57" href="/site/images/apple-touch-icon-57x57-precomposed.png?v=2018-11-16-234933-363d9ab-012024"><link rel="apple-touch-icon" sizes="72x72" href="/site/images/apple-touch-icon-72x72-precomposed.png?v=2018-11-16-234933-363d9ab-012024"><link rel="apple-touch-icon" sizes="114x114" href="/site/images/apple-touch-icon-114x114-precomposed.png?v=2018-11-16-234933-363d9ab-012024"><meta name="format-detection" content="telephone=no"><meta name="format-detection" content="address=no"><meta name="google-site-verification" content="dM_ora_2MwojMh0vgRQw7KTkd6VyTx2nLSsIuRF9aKU"><meta name="generator" content="Tempest - www.saymedia.com"><link rel="shortcut icon" href="/favicon.ico"><link rel="schema.dcterms" href="http://purl.org/dc/terms/"><meta name="pinterest" content="nohover"><link rel="alternate" type="application/rss+xml" title="Sound &amp; Video Contractor - Main - RSS feed" href="https://www.svconline.com/.rss/full/"><link rel="alternate" type="application/rss+xml" title="Sound &amp; Video Contractor - InfoComm - RSS feed" href="https://www.svconline.com/.rss/full/the-wire/infocomm"><title>InfoComm - Sound &amp; Video Contractor</title><link rel="canonical" href="https://www.svconline.com/the-wire/infocomm"><meta name="description" content="InfoComm&amp;nbsp;"><meta name="keywords" content="InfoComm"><meta name="pagetype" content="rich_term"><meta name="robots" content="noodp"><meta name="item-id" content="ci021fbce200182678"><meta name="published" content="2018-01-24T23:07:12Z"><meta name="modified" content="2018-01-24T23:07:12Z"><meta name="dcterms.rightsHolder" content="Sound &amp; Video Contractor is part of Future plc, an international media group and leading digital publisher. Visit our corporate site."><meta name="dcterms.dateCopyrighted" content="2018"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:url" content="https://www.svconline.com/the-wire/infocomm"><meta name="twitter:domain" content="www.svconline.com"><meta property="og:type" content="website"><meta property="og:url" content="https://www.svconline.com/the-wire/infocomm"><meta property="og:title" content="InfoComm"><meta property="og:site_name" content="Sound &amp; Video Contractor"><meta name="pinterest-rich-pin" content="true"><meta name="apple-mobile-web-app-title" content="Sound &amp; Video Contractor"><meta name="parsely-title" content="InfoComm - Sound &amp; Video Contractor"><meta name="parsely-link" content="https://www.svconline.com/the-wire/infocomm"><meta name="parsely-post-id" content="ci021fbce200182678"><meta name="parsely-pub-date" content="2018-01-24T23:07:12Z"><meta name="parsely-tags" content="InfoComm"><meta name="phx:content-item-id" content="ci021fbce200182678"><meta name="phx:content-object-type" content="ContentRichTerm"></head><body class="mm-alt-demo-data-enabled mm-quotes-revamp-enabled mm-wide-content-well-enabled mm-tempest-video-enabled mm-atf-sidebar-enabled-enabled" phx-page-manager><phoenix-page><phoenix-style href="/site/styles/print.min.css?v=2018-11-16-234933-363d9ab-012024" media="print" delay-load></phoenix-style><div id="lyra-wrapper"><div class="m-off-canvas" phx-off-canvas-nav is-off-canvas-open="isOffCanvasOpen"></div><phx-smart-nav></phx-smart-nav><div class="m-page-wrapper"><div><div class="m-header-ad not-size-b not-size-c not-size-d" data-class-rules="[]" data-ad-group="header-0" data-max-ad-reloads="5"><div class="m-header-ad--slot is-placeholder not-size-b not-size-c not-size-d"><div id="ad-2a5726ff990344d4a83dc9e5bc4d1c9e"></div></div></div><div class="m-header-ad not-size-a not-size-c not-size-d" data-class-rules="[]" data-ad-group="header-0" data-max-ad-reloads="5"><div class="m-header-ad--slot is-placeholder not-size-a not-size-c not-size-d"><div id="ad-1175b014c2eb4e87bbca23230d05a77a"></div></div></div><div class="m-header-ad not-size-a not-size-b" data-class-rules="[]" data-ad-group="header-0" data-max-ad-reloads="5"><div class="m-header-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-906b9ba91531400b9646dd8434cde09f"></div><span class="bt-uid-tg" uid="5ae8a99794-168" style="display: none !important"></span></div></div></div><nav class="l-sticky-navbar" phx-nav-sticky><phx-off-canvas-toggler class="m-header--menu"></phx-off-canvas-toggler><ul class="m-header--main-nav"><li><a class="m-header--navbar-logo" phx-track-event phx-track-id="logo" href="/"><img src="https://www.svconline.com/.image/cs_srgb%2Cq_auto:good/MTUyNjc2NDEwMjc0NjIwOTY2/navbar.svg" alt="Logo"></a></li><li class="m-header--main-link " phx-track-id="section"><a href="/products" ng-click="clickHandler($event)" target="" phx-track-event>Products</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/markets" ng-click="clickHandler($event)" target="" phx-track-event>Markets</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/staging" ng-click="clickHandler($event)" target="" phx-track-event>Staging</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/the-wire" ng-click="clickHandler($event)" target="" phx-track-event>The Wire</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/resources" ng-click="clickHandler($event)" target="" phx-track-event>Resources</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/blog/svc-podcasts" ng-click="clickHandler($event)" target="" phx-track-event>Podcasts</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/needtoknow" ng-click="clickHandler($event)" target="" phx-track-event>Need to Know</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/svc-event" ng-click="clickHandler($event)" target="" phx-track-event>Events</a></li><li class="m-header--main-link m-navbar--menu-link-external " phx-track-id="section"><a href="https://www.b2bmediaportal.com/dynamicregister/register.aspx?fid=SVMF&amp;status=NEW&amp;key=J15WEB" ng-click="clickHandler($event)" target="" phx-track-event>Subscribe</a></li><li class="m-header--main-link m-navbar--menu-link-external mm-special-button mm-special-inverted " phx-track-id="section"><a href="http://www.av-iq.com/" ng-click="clickHandler($event)" target="_blank" phx-track-event>AV-iQ</a></li></ul><div class="m-header--search-group"><div class="m-header--search"><a class="m-icon-button" aria-label="Search" href="/search" title="Search" phx-track-event phx-track-id="search"><svg class="m-svg m-icon-button--icon"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_search" phx-svg-fallback></use></svg></a></div><div class="m-header--user" ng-cloak ng-if="user" phx-nav><a href="#" ng-click="toggleUserMenu()"><span class="m-user--subscribe" ng-if="!user.isAuthenticated">Join</span><img class="m-user--image" ng-if="user.isAuthenticated" ng-src="{{user.profile.avatar}}" alt=""></a></div></div></nav><div class="m-advertisement-off-canvas--pusher"><header class="m-header mm-header-standard  mm-header-left m-content-detail" phx-track-id="header"><section><ul class="m-header--social-nav"><li class="m-header--link m-header--social-facebook" phx-track-id="social"><a aria-label="facebook" href="https://www.facebook.com/svconline" target="_blank" phx-track-event phx-track-id="facebook-follow"><svg class="m-svg"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_facebook" phx-svg-fallback></use></svg></a></li><li class="m-header--link m-header--social-twitter" phx-track-id="social"><a aria-label="twitter" href="https://twitter.com/SVC_Online" target="_blank" phx-track-event phx-track-id="twitter-follow"><svg class="m-svg"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_twitter" phx-svg-fallback></use></svg></a></li></ul><ul class="m-header--tertiary-nav"></ul><div class="m-header--main"><a class="m-header--logo mm-has-svg" style="background-image: url(https://www.svconline.com/.image/cs_srgb%2Cq_auto:good/MTUyNjc2NDA0MTAwNjA1NDc4/small.svg)" href="/" aria-label="Sound &amp; Video Contractor" phx-track-id="logo" phx-track-event></a><phoenix-import class="m-header--coverlines-container" src="/.api/coverlines" phx-track-id="coverline"></phoenix-import></div></section><nav class="m-header--navbar mm-protected-nav"><phx-off-canvas-toggler class="m-header--menu"></phx-off-canvas-toggler><ul class="m-header--main-nav"><li><a class="m-header--navbar-logo" phx-track-event phx-track-id="logo" href="/"><img src="https://www.svconline.com/.image/cs_srgb%2Cq_auto:good/MTUyNjc2NDEwMjc0NjIwOTY2/navbar.svg" alt="Logo"></a></li><li class="m-header--main-link " phx-track-id="section"><a href="/products" ng-click="clickHandler($event)" target="" phx-track-event>Products</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/markets" ng-click="clickHandler($event)" target="" phx-track-event>Markets</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/staging" ng-click="clickHandler($event)" target="" phx-track-event>Staging</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/the-wire" ng-click="clickHandler($event)" target="" phx-track-event>The Wire</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/resources" ng-click="clickHandler($event)" target="" phx-track-event>Resources</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/blog/svc-podcasts" ng-click="clickHandler($event)" target="" phx-track-event>Podcasts</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/needtoknow" ng-click="clickHandler($event)" target="" phx-track-event>Need to Know</a></li><li class="m-header--main-link " phx-track-id="section"><a href="/svc-event" ng-click="clickHandler($event)" target="" phx-track-event>Events</a></li><li class="m-header--main-link m-navbar--menu-link-external " phx-track-id="section"><a href="https://www.b2bmediaportal.com/dynamicregister/register.aspx?fid=SVMF&amp;status=NEW&amp;key=J15WEB" ng-click="clickHandler($event)" target="" phx-track-event>Subscribe</a></li><li class="m-header--main-link m-navbar--menu-link-external mm-special-button mm-special-inverted " phx-track-id="section"><a href="http://www.av-iq.com/" ng-click="clickHandler($event)" target="_blank" phx-track-event>AV-iQ</a></li></ul><div class="m-header--search-group"><div class="m-header--search"><a class="m-icon-button" aria-label="Search" href="/search" title="Search" phx-track-event phx-track-id="search"><svg class="m-svg m-icon-button--icon"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_search" phx-svg-fallback></use></svg></a></div><div class="m-header--user" ng-cloak ng-if="user" phx-nav><a href="#" ng-click="toggleUserMenu()"><span class="m-user--subscribe" ng-if="!user.isAuthenticated">Join</span><img class="m-user--image" ng-if="user.isAuthenticated" ng-src="{{user.profile.avatar}}" alt=""></a></div></div></nav></header><section class="m-page-container trackable click"><div class="m-advertisement--skin-container"></div><div class="m-page" ng-class="pageClasses"><script type="application/json" id="pageItemData">{"id":"ci021fbce200182678","objectType":"ContentRichTerm","originalPublicationTimestamp":"2018-01-24T23:07:12Z","path":"/the-wire/infocomm","publicationTimestamp":"2018-01-24T23:07:12Z","title":"InfoComm","viewProperties":{"rss":{"collection":{"filter":{"term":"ci021fbce200182678"}}},"analyticsModel":{"title":"InfoComm","pageType":"Rich Term Page"}},"affiliatesEnabled":true,"associatedRichTerms":[],"commentsEnabled":true,"disqusId":"4f06e135-015b-11e8-8266-025642975f98","isCanvas":true,"metaTitle":"InfoComm","metaDescription":"InfoComm&nbsp;","slug":"infocomm","hasGallery":false}</script><section class="m-sub-navigation m-component-stack is-inverted mm-component-stack--is-stacked mm-component-stack--has-background" style="background-color:#ea222e;"><div class="m-sub-navigation--container"><div class="m-sub-navigation--items m-breadcrumbs mm-breadcrumbs--inverted" phx-breadcrumbs ng-class="{ 'is-collapsed': isCollapsed &amp;&amp; isCollapsingEnabled }"><button class="m-breadcrumbs--expand-button m-icon-button mm-icon-button--small-icon is-inverted" aria-label="{{isCollapsed ? 'Expand Breadcrumbs' : 'Collapse Breadcrumbs'}}" ng-class="{ 'is-collapsed': isCollapsed, 'is-collapsing-enabled': isCollapsingEnabled }" ng-show="isCollapsingEnabled" ng-click="toggleCollapsedState()" ng-cloak><svg class="m-svg m-icon-button--icon"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_angle_double_right" phx-svg-fallback></use></svg></button><div class="m-breadcrumbs--container"><ul class="m-breadcrumbs--items" phx-breadcrumb-container><li class="m-breadcrumbs--item" phx-breadcrumb-item><a class="m-breadcrumbs--link m-sub-navigation--link" phx-track-event href="/">Home</a><svg class="m-svg m-breadcrumbs--divider" aria-hidden="true"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_angle_right" phx-svg-fallback></use></svg></li><li class="m-breadcrumbs--item" phx-breadcrumb-item><a class="m-breadcrumbs--link m-sub-navigation--link" phx-track-event href="/the-wire" title="The Wire">The Wire</a><svg class="m-svg m-breadcrumbs--divider" aria-hidden="true"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_angle_right" phx-svg-fallback></use></svg></li><li class="m-breadcrumbs--item" phx-breadcrumb-item><span class="m-breadcrumbs--link is-inactive">InfoComm</span><svg class="m-svg m-breadcrumbs--divider" aria-hidden="true"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#ico_angle_right" phx-svg-fallback></use></svg></li></ul></div></div></div><ul class="m-sub-navigation--items m-sub-navigation--pushdown" ng-class="{ 'is-active': subSectionPanels['ci021fbce0a0362407']}"><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/audio" phx-track-event title="Audio">Audio</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/case-studies" phx-track-event title="Case Studies">Case Studies</a></li><li class="m-sub-navigation--pushdown-item is-selected"><a class="m-sub-navigation--link" href="/the-wire/infocomm" phx-track-event title="InfoComm">InfoComm</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/infrastructure" phx-track-event title="Infrastructure">Infrastructure</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/markets" phx-track-event title="Markets">Markets</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/new-products" phx-track-event title="New Products">New Products</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/news" phx-track-event title="News">News</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/security" phx-track-event title="Security">Security</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/tradeshows-events" phx-track-event title="Tradeshows / Events">Tradeshows / Events</a></li><li class="m-sub-navigation--pushdown-item"><a class="m-sub-navigation--link" href="/the-wire/video" phx-track-event title="Video">Video</a></li></ul></section><section class="m-component-stack mm-component-stack--is-stacked"><div class="m-hub-header mm-hub-header--small mm-hub-header--is-center-aligned"><div class="m-hub-header--item m-hub-header--title"><h1 class="m-hub-header--title-heading" role="heading"><span>InfoComm</span></h1></div><div class="m-hub-header--item m-hub-header--body"><div class="m-hub-header--body-content"></div></div></div></section><section class="m-list-hub m-component-stack mm-component-stack--is-stacked mm-component-stack--has-footer"><section class="m-card-group-container" data-group-size="6" data-first-group-size="6"><section class="m-card-group mm-card-group--has-rightrail mm-card-group--has-row-dividers"><div class="m-card-group--content l-grid lm-grid--density-single-column lm-grid--has-row-dividers lm-grid--has-rightrail"><div class="l-grid--item"><phoenix-super-link href="/the-wire/a-danley-jericho-horn-conveys-heavenly-music-in-the-new-knoxville-sacred-heart-cathedral"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/a-danley-jericho-horn-conveys-heavenly-music-in-the-new-knoxville-sacred-heart-cathedral"><h2 class="m-card--header-text" role="heading" phx-ellipsis>A Danley Jericho Horn Conveys Heavenly Music in the New Knoxville Sacred Heart Cathedral</h2></a><p class="m-card--body">KNOXVILLE, TENNESSEE: Founded in Knoxville, Tennessee in 1956, Sacred Heart Cathedral served as the cathedral for the Diocese of Knoxville from 1988 until very recently. It was superseded by the new 1,300-plus seat Cathedral of the Most Sacred Heart of Jesus, which was built on <a href="/the-wire/a-danley-jericho-horn-conveys-heavenly-music-in-the-new-knoxville-sacred-heart-cathedral"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/danley-at-the-movies-starring-danley-cinema-line-of-speakers-subs-and-featuring-novis-92-x-48-screen"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/danley-at-the-movies-starring-danley-cinema-line-of-speakers-subs-and-featuring-novis-92-x-48-screen"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Danley at the Movies: Starring Danley Cinema Line of Speakers &amp; Subs and Featuring Novi's 92' x 48' Screen</h2></a><p class="m-card--body">DETROIT, MICHIGAN: Emagine Entertainment operates innovative movie theaters throughout the Midwest, and it recently completed a five-million-dollar renovation of its Emagine Novi location in the northwest suburbs of Detroit, Michigan. A huge part of that renovation included the <a href="/the-wire/danley-at-the-movies-starring-danley-cinema-line-of-speakers-subs-and-featuring-novis-92-x-48-screen"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/video-behind-the-scenes-of-cirque-du-soleils-crystal"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/video-behind-the-scenes-of-cirque-du-soleils-crystal" title="VIDEO: Behind-the-Scenes of Cirque du Soleil's CRYSTAL"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU3NDUwNjAxNzAwMDA5NjM4/pendulant-poles-from-crystal.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Pendulant poles from Crystal"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/video-behind-the-scenes-of-cirque-du-soleils-crystal"><h2 class="m-card--header-text" role="heading" phx-ellipsis>VIDEO: Behind-the-Scenes of Cirque du Soleil's CRYSTAL</h2></a><p class="m-card--body">Cirque du Soleil Crystal is more than just an ice show. Cirque du Soleil’s CRYSTAL, explores the artistic limits of ice for the first time in the company’s history. This unique production pushes boundaries of performance by combining stunning skating and acrobatic feats that defy <a href="/the-wire/video-behind-the-scenes-of-cirque-du-soleils-crystal"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/revolution-acoustics-ubiqui-t360"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/revolution-acoustics-ubiqui-t360"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Revolution Acoustics Brings Invisible Audio to Drop Ceilings with Ubiqui-T360™</h2></a><p class="m-card--body">A new product from Revolution Acoustics has made it possible for system integrators to install completely hidden audio sources in suspended ceilings. The patent-pending Ubiqui-T360™, an innovative ceiling tile mounting system for the SSP6 Multiducer™, brings the company’s <a href="/the-wire/revolution-acoustics-ubiqui-t360"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/revolution-acoustics-introduces-pendant360"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/revolution-acoustics-introduces-pendant360"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Revolution Acoustics Introduces the Pendant360™</h2></a><p class="m-card--body">Revolution Acoustics has introduced the patent pending Pendant360™, a pendant speaker which brings Revolution’s planar wave audio technology to installations with open plenum spaces. Designed for indoor or outdoor use, the Pendant360 is an ultra-low-profile, paintable, pendant <a href="/the-wire/revolution-acoustics-introduces-pendant360"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/magewell-ultra-stream-2018-avt-award"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/magewell-ultra-stream-2018-avt-award" title="Magewell’s Ultra Stream HDMI Encoder Wins AV Technology “Best of Show” Award at InfoComm 2018"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU1MTAzMTExNjI1NTgxNjg2/magewell_ultra_stream_hdmi_front_white.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Magewell Ultra Stream HDMI"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/magewell-ultra-stream-2018-avt-award"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Magewell’s Ultra Stream HDMI Encoder Wins AV Technology “Best of Show” Award at InfoComm 2018</h2></a><p class="m-card--body">June 18, 2018 — Nanjing, China: Accolades for Magewell’s latest video hardware innovation continue to roll in, as the company’s exceptionally easy-to-use Ultra Stream HDMI standalone streaming encoder was honored with a coveted Best of Show Award from Future plc’s AV Technology <a href="/the-wire/magewell-ultra-stream-2018-avt-award"><i>...read more</i></a></p></div></article></phoenix-super-link></div></div><div class="m-card-group--rightrail-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;300x600&quot;,&quot;300x250&quot;,&quot;160x600&quot;],&quot;classes&quot;:[&quot;m-sponsor--adjacency&quot;]}]" data-ad-group="sidebar-0" data-max-ad-reloads="5"><div class="m-card-group--rightrail-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-a50dae2b598c4b03b00bd551fd9a7dfb"></div><span class="bt-uid-tg" uid="5ae8a9b37c-168" style="display: none !important"></span></div></div></section><section class="m-adaptive-ad-component m-component-stack"><aside class="m-in-content-ad-row not-size-b not-size-c not-size-d" data-ad-group="in_content-0"><div class="m-in-content-ad not-size-b not-size-c not-size-d" data-class-rules="[{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-0" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-b not-size-c not-size-d"><div id="ad-f8cc27f7a0d1468898bd010dff4c8f53"></div></div></div></aside><aside class="m-in-content-ad-row not-size-a not-size-c not-size-d" data-ad-group="in_content-0"><div class="m-in-content-ad not-size-a not-size-c not-size-d" data-class-rules="[{&quot;sizes&quot;:[&quot;728x90&quot;],&quot;classes&quot;:[&quot;is-728x90&quot;]},{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-0" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-a not-size-c not-size-d"><div id="ad-e0375f7005aa47a5a3c1ebcf02319a2f"></div></div></div></aside><aside class="m-in-content-ad-row not-size-a not-size-b" data-ad-group="in_content-0"><div class="m-in-content-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;970x250&quot;],&quot;classes&quot;:[&quot;is-970x250&quot;]},{&quot;sizes&quot;:[&quot;728x90&quot;],&quot;classes&quot;:[&quot;is-728x90&quot;]},{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-0" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-7ce3bc7f5c0843d69f360d29b16ebd5d"></div></div></div></aside></section><section class="m-card-group mm-card-group--has-rightrail mm-card-group--has-row-dividers"><div class="m-card-group--content l-grid lm-grid--density-single-column lm-grid--has-row-dividers lm-grid--has-rightrail"><div class="l-grid--item"><phoenix-super-link href="/the-wire/dvdo-tile-ups-the-bar-in-wireless-collaboration-systems-at-infocomm-2018"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/dvdo-tile-ups-the-bar-in-wireless-collaboration-systems-at-infocomm-2018"><h2 class="m-card--header-text" role="heading" phx-ellipsis>DVDO TILE Ups the Bar in Wireless Collaboration Systems at INFOCOMM 2018</h2></a><p class="m-card--body">DVDO is proud to announce the latest upgrades to its award winning TILE collaboration system at INFOCOMM. The DVDO TILE simplifies the process of connecting multiple users to an existing display system wired or wirelessly enabling a 1-of-a-kind collaboration experience by casting <a href="/the-wire/dvdo-tile-ups-the-bar-in-wireless-collaboration-systems-at-infocomm-2018"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/allen-heath-goes-large-with-sq-7"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/allen-heath-goes-large-with-sq-7" title="ALLEN &amp; HEATH GOES LARGE WITH SQ-7"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU2MTUwMzM3MTI2ODAyNzAx/allen_heathsq-7digitalmixer.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Allen_HeathSQ-7DigitalMixer"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/allen-heath-goes-large-with-sq-7"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Allen &amp; Heath SQ-7 Digital Mixer</h2></a><p class="m-card--body">Allen & Heath has unveiled SQ-7, the new 33 fader flagship console in its 96kHz SQ series. Following hot on the heels of the hit launch of SQ-5 and SQ-6, the new SQ-7 takes the same powerful XCVI 96kHz FPGA engine and adds extended control and I/O in a larger format, boasting 33 <a href="/the-wire/allen-heath-goes-large-with-sq-7"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/brightsign-mimo-infocomm"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/brightsign-mimo-infocomm"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Mimo Monitors to Demonstrate New BrightSign-enabled Mimo Vue at InfoComm 2018</h2></a><p class="m-card--body">BrightSign, LLC®, the global market leader in digital signage media players, today jointly announced with Mimo Monitors a new line of BrightSign-enabled displays. The new Mimo Vue line will be showcased in Mimo Monitors’ booth N2446 and the BrightSign booth N2846 at InfoComm 2018 <a href="/the-wire/brightsign-mimo-infocomm"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/brightsign-mvix-infocomm"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/brightsign-mvix-infocomm"><h2 class="m-card--header-text" role="heading" phx-ellipsis>BrightSign Players Now Integrate Seamlessly with Mvix Digital Signage Software</h2></a><p class="m-card--body">BrightSign, LLC®, the global market leader in digital signage media players, today announced that its media players are now fully supported by the Mvix cloud-based, content-rich digital signage software.“Many of our customers’ signage networks are powered by BrightSign players, <a href="/the-wire/brightsign-mvix-infocomm"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/brightsign-revel-infocomm"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/brightsign-revel-infocomm"><h2 class="m-card--header-text" role="heading" phx-ellipsis>BrightSign Unveils Integration with Revel Digital’s Digital Signage &amp; Media Distribution Platform</h2></a><p class="m-card--body">BrightSign, LLC®, the global market leader in digital signage media players, today announced that its LS, XD and XT media players are now fully compatible with Revel Digital’s next-generation digital signage and media distribution platform.“Our platform makes it easy to deploy <a href="/the-wire/brightsign-revel-infocomm"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/brightsign-fwi-infocomm"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/brightsign-fwi-infocomm"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Four Winds Interactive Broadens Support for BrightSign’s Media Players</h2></a><p class="m-card--body">BrightSign, LLC®, the global market leader in digital signage media players, today announced that Four Winds Interactive is expanding its support for BrightSign players.“Our collaboration with BrightSign dates back several years, and in that time we’ve streamlined <a href="/the-wire/brightsign-fwi-infocomm"><i>...read more</i></a></p></div></article></phoenix-super-link></div></div><div class="m-card-group--rightrail-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;300x600&quot;,&quot;300x250&quot;,&quot;160x600&quot;],&quot;classes&quot;:[&quot;m-sponsor--adjacency&quot;]}]" data-ad-group="sidebar-1" data-max-ad-reloads="5"><div class="m-card-group--rightrail-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-f016d25d79364c1595d39c888641ada7"></div><span class="bt-uid-tg" uid="5ae8a9b37c-168" style="display: none !important"></span></div></div></section><section class="m-adaptive-ad-component m-component-stack"><aside class="m-in-content-ad-row not-size-b not-size-c not-size-d" data-ad-group="in_content-1"><div class="m-in-content-ad not-size-b not-size-c not-size-d" data-class-rules="[{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-1" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-b not-size-c not-size-d"><div id="ad-87debe74270942d38557673308347bef"></div></div></div></aside><aside class="m-in-content-ad-row not-size-a not-size-c not-size-d" data-ad-group="in_content-1"><div class="m-in-content-ad not-size-a not-size-c not-size-d" data-class-rules="[{&quot;sizes&quot;:[&quot;728x90&quot;],&quot;classes&quot;:[&quot;is-728x90&quot;]},{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-1" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-a not-size-c not-size-d"><div id="ad-24c9ff5b1d9546b78260163805357c72"></div></div></div></aside><aside class="m-in-content-ad-row not-size-a not-size-b" data-ad-group="in_content-1"><div class="m-in-content-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;970x250&quot;],&quot;classes&quot;:[&quot;is-970x250&quot;]},{&quot;sizes&quot;:[&quot;728x90&quot;],&quot;classes&quot;:[&quot;is-728x90&quot;]},{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-1" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-bb67a1f51e624652be8f7d2edfb4c0ef"></div></div></div></aside></section><section class="m-card-group mm-card-group--has-rightrail mm-card-group--has-row-dividers"><div class="m-card-group--content l-grid lm-grid--density-single-column lm-grid--has-row-dividers lm-grid--has-rightrail"><div class="l-grid--item"><phoenix-super-link href="/the-wire/new-yamaha-vxl1-16p-speaker-swr2311p-10g-intelligent-l2-switch-make-infocomm-2018-de"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/new-yamaha-vxl1-16p-speaker-swr2311p-10g-intelligent-l2-switch-make-infocomm-2018-de" title="New Yamaha VXL1-16P Speaker, SWR2311P-10G Intelligent L2 Switch Make InfoComm 2018 Debut"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU2MTI1MDA1MTQxMjU1OTIw/vxl-p_family_01.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="VXL-P_family_01"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/new-yamaha-vxl1-16p-speaker-swr2311p-10g-intelligent-l2-switch-make-infocomm-2018-de"><h2 class="m-card--header-text" role="heading" phx-ellipsis>New Yamaha VXL1-16P Speaker, SWR2311P-10G Intelligent L2 Switch Make InfoComm 2018 Debut</h2></a><p class="m-card--body">Yamaha has introduced its new VXL1-16P Dante-enabled, Power over Ethernet (PoE) loudspeaker, designed for conference room, boardroom and other meeting space applications in the corporate installation market.PoE allows power to be supplied over a Cat5e (or higher) Ethernet cable, <a href="/the-wire/new-yamaha-vxl1-16p-speaker-swr2311p-10g-intelligent-l2-switch-make-infocomm-2018-de"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/vanco-international-debuts-spot-for-dot-voice-activated-in-wall-amplifier"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/vanco-international-debuts-spot-for-dot-voice-activated-in-wall-amplifier"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Vanco International Debuts ‘Spot for Dot’ Voice-Activated In-Wall Amplifier</h2></a><p class="m-card--body">InfoComm 2018 – Las Vegas, NV – June 6-8, 2018 – Vanco International LLC, an industry leader in AV distribution and electronic accessory products, is pleased to announce Spot for Dot, a patent-pending high-quality digital in-wall amplifier that provides installers with an <a href="/the-wire/vanco-international-debuts-spot-for-dot-voice-activated-in-wall-amplifier"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/peerless-av-infocomm-2018-showcase"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/peerless-av-infocomm-2018-showcase" title="Driving Technology Through Innovation: Peerless-AV’s InfoComm 2018 Showcase"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU2MTI0MTE0MjAzOTc3NDU2/peerless-av.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Peerless-AV"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/peerless-av-infocomm-2018-showcase"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Peerless-AV Announces InfoComm 2018 Showcase</h2></a><p class="m-card--body">LAS VEGAS – June 6, 2018 – Peerless-AV, an award-winning designer and manufacturer of innovative audio and video solutions and accessories, is pleased to announce its showcase at InfoComm 2018, June 6-8, at the Las Vegas Convention Center. Peerless-AV’s Booth (C2947) will <a href="/the-wire/peerless-av-infocomm-2018-showcase"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/hitachi-new-ultra-short-throw-laser"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/hitachi-new-ultra-short-throw-laser"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Hitachi America, Ltd. Showcases its Commitment to Innovation with a New Line of Ultra Short Throw 3LCD Projectors at InfoComm 2018</h2></a><p class="m-card--body">Hitachi America, Ltd. is showcasing one of its four new 3LCD Ultra Short Throw Projectors to begin shipping in July. The LP-AW4001, LP-AW3001 and interactive LP-TW4001 and LP-TW3001 models expand Hitachi’s growing line of solid state light source projectors. The LP-AW4001 will be <a href="/the-wire/hitachi-new-ultra-short-throw-laser"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/infocomm-2018-seamless-by-peerless-av"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/infocomm-2018-seamless-by-peerless-av" title="InfoComm 2018: Introducing SEAMLESS by Peerless-AV®"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU2MTAyNzY0NzI2ODU1MDQx/seamless-by-peerless-av-logo_black.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="SEAMLESS by Peerless-AV Logo_Black"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/infocomm-2018-seamless-by-peerless-av"><h2 class="m-card--header-text" role="heading" phx-ellipsis>InfoComm 2018: Introducing SEAMLESS by Peerless-AV®</h2></a><p class="m-card--body">LAS VEGAS – June 5, 2018 – Peerless-AV, an award-winning designer and manufacturer of the highest quality audio and video solutions and accessories, is excited to roll out SEAMLESS by Peerless-AV at InfoComm 2018, Booth C2947 from June 6-8.An industry leader with over 75 years of <a href="/the-wire/infocomm-2018-seamless-by-peerless-av"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/pro-av-leaders-reveal-new-av-network-protocol-milan-at-infocomm"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/pro-av-leaders-reveal-new-av-network-protocol-milan-at-infocomm"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Industry Leaders Join to Launch Milan Network Protocol Based on AVB for Pro AV Interoperability</h2></a><p class="m-card--body">PRESS RELEASEContact: Caster Communications, Inc. at 401.792.7080Industry Leaders Join to Launch Milan Network Protocol Based on AVB for Pro AV InteroperabilityManufacturers unite to drive an interoperable Pro AV ecosystem of networked devicesLas Vegas – InfoComm – June 5, 2018 – <a href="/the-wire/pro-av-leaders-reveal-new-av-network-protocol-milan-at-infocomm"><i>...read more</i></a></p></div></article></phoenix-super-link></div></div><div class="m-card-group--rightrail-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;300x600&quot;,&quot;300x250&quot;,&quot;160x600&quot;],&quot;classes&quot;:[&quot;m-sponsor--adjacency&quot;]}]" data-ad-group="sidebar-2" data-max-ad-reloads="5"><div class="m-card-group--rightrail-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-f3a896120ca3445295ed3ac36696ec6c"></div><span class="bt-uid-tg" uid="5ae8a9b37c-168" style="display: none !important"></span></div></div></section><section class="m-adaptive-ad-component m-component-stack"><aside class="m-in-content-ad-row not-size-b not-size-c not-size-d" data-ad-group="in_content-2"><div class="m-in-content-ad not-size-b not-size-c not-size-d" data-class-rules="[{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-2" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-b not-size-c not-size-d"><div id="ad-db3ade5b5d814fe4bd5379fe3e43abac"></div></div></div></aside><aside class="m-in-content-ad-row not-size-a not-size-c not-size-d" data-ad-group="in_content-2"><div class="m-in-content-ad not-size-a not-size-c not-size-d" data-class-rules="[{&quot;sizes&quot;:[&quot;728x90&quot;],&quot;classes&quot;:[&quot;is-728x90&quot;]},{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-2" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-a not-size-c not-size-d"><div id="ad-3571af8ba06d45a0a12f4efe302c18fb"></div></div></div></aside><aside class="m-in-content-ad-row not-size-a not-size-b" data-ad-group="in_content-2"><div class="m-in-content-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;970x250&quot;],&quot;classes&quot;:[&quot;is-970x250&quot;]},{&quot;sizes&quot;:[&quot;728x90&quot;],&quot;classes&quot;:[&quot;is-728x90&quot;]},{&quot;dimensions&quot;:[&quot;0x0&quot;],&quot;classes&quot;:[&quot;m-advertisement--fluid-card&quot;,&quot;m-advertisement--fluid-list-card&quot;]}]" data-ad-group="in_content-2" data-max-ad-reloads="5"><div class="m-in-content-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-589e404ed19f49bf966a0706befd8c60"></div></div></div></aside></section><section class="m-card-group mm-card-group--has-rightrail mm-card-group--has-row-dividers"><div class="m-card-group--content l-grid lm-grid--density-single-column lm-grid--has-row-dividers lm-grid--has-rightrail"><div class="l-grid--item"><phoenix-super-link href="/the-wire/infocomm-2018-peerless-av-xtreme-high-bright-outdoor-display"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/infocomm-2018-peerless-av-xtreme-high-bright-outdoor-display" title="Peerless-AV® Introduces New Xtreme™ High Bright Outdoor Display at InfoComm 2018"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU2MTAyMTA4OTM5MDM2NDAw/peerless-av_xhbmodels_appl.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Peerless-AV_XHBmodels_appl"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/infocomm-2018-peerless-av-xtreme-high-bright-outdoor-display"><h2 class="m-card--header-text" role="heading" phx-ellipsis>New Xtreme™ High Bright Outdoor Display by Peerless-AV®</h2></a><p class="m-card--body">LAS VEGAS – June 5, 2018 – Peerless-AV, an award-winning designer and manufacturer of the highest quality audio and video solutions and accessories, is excited to introduce its new Xtreme™ High Bright Outdoor Display. Exhibiting in Booth C2947 from June 6 through June 8, the <a href="/the-wire/infocomm-2018-peerless-av-xtreme-high-bright-outdoor-display"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/-vanco-international-announces-updates-to-popular-evo-ip-hdmi-over-ip-system-for-commercial-av-market"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/-vanco-international-announces-updates-to-popular-evo-ip-hdmi-over-ip-system-for-commercial-av-market"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Vanco International Announces Updates to Popular EVO-IP HDMI over IP System for Commercial AV Market</h2></a><p class="m-card--body">InfoComm 2018 – Las Vegas, NV – June 6 - 8, 2018 – Vanco International LLC, an industry leader in AV distribution and electronic accessory products, today announces new updates and enhanced features for the EVO-IP HDMI over IP system for distributors at InfoComm 2018 in Las <a href="/the-wire/-vanco-international-announces-updates-to-popular-evo-ip-hdmi-over-ip-system-for-commercial-av-market"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/l-acoustics-promotes-rocha"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/l-acoustics-promotes-rocha" title="L-Acoustics Promotes Jeff Rocha to Global Product Management Director"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU2MDg1MjcxNTkzNDkzODg5/la_jeff_rocha.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="LA_Jeff_Rocha"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/l-acoustics-promotes-rocha"><h2 class="m-card--header-text" role="heading" phx-ellipsis>L-Acoustics Promotes Jeff Rocha to Global Product Management Director</h2></a><p class="m-card--body">Technology that consistently offers a superior sonic signature, enhances the connection between audiences and performers, and delivers return on investment is core to the L-Acoustics business model and product philosophy. To further fuel this ongoing cycle of bringing unmatched <a href="/the-wire/l-acoustics-promotes-rocha"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/lg-unveils-transparent-color-led-film"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/lg-unveils-transparent-color-led-film"><h2 class="m-card--header-text" role="heading" phx-ellipsis>LG ELECTRONICS UNVEILS VERSATILE NEW  TRANSPARENT COLOR LED FILM DISPLAY</h2></a><p class="m-card--body">LG Electronics USA Business Solutions is unveiling a new LED display with unparalleled installation capabilities – the LG Transparent Color LED film display. Making its introduction for the first time in the United States this week at InfoComm 2018, the revolutionary display has <a href="/the-wire/lg-unveils-transparent-color-led-film"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/nureva-dual-hdl300-audio-conferencing-system"><article class="m-card mm-card--landscape-image mm-card--type-list" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/nureva-dual-hdl300-audio-conferencing-system" title="Nureva now shipping Dual HDL300 audio conferencing system"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.webp 960w" sizes="320px"><source media="(min-width: 675px)" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg 960w" sizes="320px"><source type="image/webp" media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.webp 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.webp 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.webp 960w" sizes="320px"><source media="(min-width: 0px)" data-srcset="https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg 320w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg 640w, https://www.svconline.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU1OTkwNzk0MzkyNTc3Nzc2/dynamic---dualhdl_micmist.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Dynamic - DualHDL_MicMist"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/nureva-dual-hdl300-audio-conferencing-system"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Nureva Dual HDL300 audio conferencing system</h2></a><p class="m-card--body">Calgary, Alberta --- June 4, 2018 --- Nureva Inc., an award-winning collaboration-solutions company, announces the release of its Dual HDL300 audio conferencing system, with early units shipping in June and general availability in July. The system supports large dynamic spaces up <a href="/the-wire/nureva-dual-hdl300-audio-conferencing-system"><i>...read more</i></a></p></div></article></phoenix-super-link></div><div class="l-grid--item"><phoenix-super-link href="/the-wire/televic-conference-ds-interpretation-partnership"><article class="m-card mm-card--text-only mm-card--type-list" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/televic-conference-ds-interpretation-partnership"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Televic Conference Expands USA Rental Hub with New Partner DS-Interpretation, Inc.</h2></a><p class="m-card--body">Washington D.C. (United States), June 4, 2018 – TELEVIC CONFERENCE, leading manufacturer of innovative solutions for moderated meetings, expands its rental hub service in North America by teaming up with DS-Interpretation, Inc., a leader in the U.S. conference interpreting <a href="/the-wire/televic-conference-ds-interpretation-partnership"><i>...read more</i></a></p></div></article></phoenix-super-link></div></div><div class="m-card-group--rightrail-ad not-size-a not-size-b" data-class-rules="[{&quot;sizes&quot;:[&quot;300x600&quot;,&quot;300x250&quot;,&quot;160x600&quot;],&quot;classes&quot;:[&quot;m-sponsor--adjacency&quot;]}]" data-ad-group="sidebar-3" data-max-ad-reloads="5"><div class="m-card-group--rightrail-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-52d88c3fa973450da740d64e0d19910d"></div><span class="bt-uid-tg" uid="5ae8a9b37c-168" style="display: none !important"></span></div></div></section><div class="m-component-footer--container m-component-stack--footer" stream-more-items="MjQ6MjQ6YmU0YTc5NmYyZTRiNjkzMzA4ZGU0ZGY0MjU1Y2I3NmU=" initial-slots="eyJDIjp7InMiOjQsImkiOjN9LCJBIjp7ImkiOjN9LCJCIjp7ImkiOjN9fQ=="><button class="m-component-footer--loader m-button" phx-track-event phx-track-id="load more"><div class="m-component-footer--text m-component-footer--loading">Loading…</div><div class="m-component-footer--text m-component-footer--button-text">See More</div></button></div></section></section><section class="m-collection-strip mm-collection-strip--is-stretched m-component-stack mm-component-stack--is-stacked mm-component-stack--has-header"><div class="m-collection-strip--header"><div class="m-component-header m-component-stack--header"><div class="m-component-header--container mm-component-header--size-small is-link" onclick="window.location.href='/the-wire';"><h1 class="m-component-header--image" role="heading"><img src="https://www.svconline.com/.image/cs_srgb%2Cq_auto:good/MTUyNjk4NDE4MjIzOTE2NTgy/section_header_art_small_fromthewire.svg" alt="From the Wire"></h1></div></div></div><div class="m-carousel m-collection-strip--carousel" phx-carousel><div class="m-carousel--content-wrapper"><div class="m-carousel--content" phx-carousel-content><div class="m-collection-strip--tile"><phoenix-super-link href="/the-wire/hpa-announces-2018-award-winners"><article class="m-card mm-card--landscape-image mm-card--type-standard mm-card--density-strip" role="article"><div class="m-card--media"></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/hpa-announces-2018-award-winners"><h2 class="m-card--header-text" role="heading" phx-ellipsis>HPA Announces 2018 Award Winners</h2></a><p class="m-card--body">The 13 annual Hollywood Professional Association (HPA) Awards took place tonight, honoring the accomplishments of industry luminaries, behind-the-scenes artists and outstanding engineering teams. The HPA Awards set the bar for creative and technical achievement, recognizing <a href="/the-wire/hpa-announces-2018-award-winners"><i>...read more</i></a></p><ul class="m-card--metadata" role="list"><li class="m-card--metadata-b" role="listitem"><div><span>20 hours ago</span></div></li></ul></div></article></phoenix-super-link></div><div class="m-collection-strip--tile"><phoenix-super-link href="/the-wire/production-mixer-mielle-ezra-works-with-sanken-shotguns"><article class="m-card mm-card--landscape-image mm-card--type-standard mm-card--density-strip" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/production-mixer-mielle-ezra-works-with-sanken-shotguns" title="Production Mixer Mielle Ezra Works with Sanken Shotguns"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.webp 960w" sizes="320px"><source data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU5OTEwNTMzNDgyNDIzNjcx/sanken_mielle-ezra_3.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Sanken_Mielle Ezra_3"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/production-mixer-mielle-ezra-works-with-sanken-shotguns"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Production Mixer Mielle Ezra Works with Sanken Shotguns</h2></a><p class="m-card--body">Location sound mixer and location recording engineer Mielle Ezra has purchased two Sanken CSR-2 shotgun microphones for her production sound work in feature and documentary films.

Ezra's choice began with a colleague who owned a Sanken shotgun mic. "A friend of mine let me try <a href="/the-wire/production-mixer-mielle-ezra-works-with-sanken-shotguns"><i>...read more</i></a></p><ul class="m-card--metadata" role="list"><li class="m-card--metadata-b" role="listitem"><div><span>Nov 16, 2018</span></div></li></ul></div></article></phoenix-super-link></div><div class="m-collection-strip--tile"><phoenix-super-link href="/the-wire/vitec-production-solutions-at-gv-expo-2018"><article class="m-card mm-card--landscape-image mm-card--type-standard mm-card--density-strip" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/vitec-production-solutions-at-gv-expo-2018" title="Vitec Production Solutions at GV Expo 2018"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.webp 960w" sizes="320px"><source data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU5OTA2NDE3NTYwNTI4MjQ3/thevitecgroup_autoscript_epic-ip19xl.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="TheVitecGroup_Autoscript_EPIC-IP19XL"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/vitec-production-solutions-at-gv-expo-2018"><h2 class="m-card--header-text" role="heading" phx-ellipsis>Vitec Production Solutions at GV Expo 2018</h2></a><p class="m-card--body">Vinten and Sachtler: flowtech100 Carbon-Fiber Tripodflowtech100 is the newest addition to the award-winning flowtech carbon-fiber tripod range. Compatible with all major 100mm fluid heads, flowtech100 supports a payload of up to 30 kilograms (66 pounds), making it the ideal <a href="/the-wire/vitec-production-solutions-at-gv-expo-2018"><i>...read more</i></a></p><ul class="m-card--metadata" role="list"><li class="m-card--metadata-b" role="listitem"><div><span>Nov 16, 2018</span></div></li></ul></div></article></phoenix-super-link></div><div class="m-collection-strip--tile"><phoenix-super-link href="/the-wire/presonus-unveils-atom-pad-controller"><article class="m-card mm-card--landscape-image mm-card--type-standard mm-card--density-strip" role="article"><div class="m-card--media"><a class="m-card--image-link m-background-image" phx-track-event phx-track-id="Image" href="/the-wire/presonus-unveils-atom-pad-controller" title="PreSonus Unveils Atom Pad Controller"><phoenix-picture><picture class="is-waiting-to-load"><source type="image/webp" data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.webp 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.webp 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.webp 960w" sizes="320px"><source data-srcset="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_320/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.jpg 320w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_640/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.jpg 640w, https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_960/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.jpg 960w" sizes="320px"><img class="m-card--image-element" decoding="async" nopin="true" sizes="320px" src="https://www.svconline.com/.image/ar_16:9%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cg_faces:center%2Cq_auto:good%2Cw_620/MTU5ODkzODA0ODUyMTkyODAw/prsonusatom2.jpg" srcset="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="prsonusatom2"></picture><div class="m-card--image-aspect-ratio-pusher"></div></phoenix-picture></a></div><div class="m-card--content"><a class="m-card--header" phx-track-event phx-track-id="Title" href="/the-wire/presonus-unveils-atom-pad-controller"><h2 class="m-card--header-text" role="heading" phx-ellipsis>PreSonus Unveils Atom Pad Controller</h2></a><p class="m-card--body">Baton Rouge, LA (November 15, 2018)—PreSonus has released the Atom pad controller, intended for use in both performance and production environments.The unit is intended to help users produce beats, play virtual instruments, and trigger sound effects and loops in real time. The <a href="/the-wire/presonus-unveils-atom-pad-controller"><i>...read more</i></a></p><ul class="m-card--metadata" role="list"><li class="m-card--metadata-b" role="listitem"><div><span>Nov 16, 2018</span></div></li></ul></div></article></phoenix-super-link></div></div></div></div></section><div class="m-detail--blockthrough-ads"><span class="bt-uid-tg" uid="5ae8a9c908-168" style="display: none !important"></span></div><footer class="m-footer"><div class="m-footer--container"><div class="m-footer--links-cell"><ul class="m-footer--links"><li aria-hidden="false" phx-track-id="Footer Links"><a href="https://www.futureplc.com/who-we-are/" target="blank" phx-track-event phx-track-id="Link">About Us</a></li><li aria-hidden="false" phx-track-id="Footer Links"><a href="https://www.futureplc.com/contact/" target="blank" phx-track-event phx-track-id="Link">Contact Us</a></li><li aria-hidden="false" phx-track-id="Footer Links"><a href="mailto:usadvertising@futurenet.com" target="blank" phx-track-event phx-track-id="Link">Advertise</a></li><li aria-hidden="false" phx-track-id="Footer Links"><a href="https://www.futureplc.com/privacy-policy/" target="blank" phx-track-event phx-track-id="Link">Privacy</a></li><li aria-hidden="false" phx-track-id="Footer Links"><a href="https://www.futureplc.com/terms-conditions/" target="blank" phx-track-event phx-track-id="Link">Terms of Use</a></li><li aria-hidden="false" phx-track-id="Footer Links"><a href="http://www.futureplc.com/cookies-policy/" target="blank" phx-track-event phx-track-id="Link">Ad Choices</a></li><li aria-hidden="false" phx-track-id="Footer Links"><a href="https://www.saymedia.com/privacy" target="_blank" phx-track-event phx-track-id="Link">Platform Privacy</a></li></ul><div class="m-footer--copyright">&copy; 2018 Sound & Video Contractor is part of Future plc, an international media group and leading digital publisher. Visit our corporate site.</div></div><div class="m-footer--tempest-logo-cell"><a target="_blank" href="https://www.saymedia.com/publishing"><svg class="m-svg m-footer--tempest-logo"><use xlink:href="/assets-global/icons/svg-sprite.svg?v=2018-11-16-234933-363d9ab-012024#tempest-footer" phx-svg-fallback></use></svg></a></div></div></footer></div></section></div><div><div><div><div id="ad-7f74f14573eb4191994e915a308d864a"></div></div></div></div><div class="m-fixedbottom-ad--container"><phoenix-ad class="m-fixedbottom-ad not-size-b not-size-c not-size-d" auto-reload config='{"adReloaderDelay":30,"maxAdReloads":25,"adReloaderSizeCodes":["300x50","320x50","320x60","728x90","768x66","970x90","1x1"],"moduleClass":"m-fixedbottom-ad","slotId":"ad-f48056f3683c4cddb8fd343cd0bf34bd","visClasses":["not-size-b","not-size-c","not-size-d"],"slotConfig":{"id":"ad-f48056f3683c4cddb8fd343cd0bf34bd","config":{"sizes":[[320,60],[320,50],[300,50]]},"screenSizes":["A"],"model":{"zone":"fixed_bottom","index":0,"isOutstream":false}}}' data-class-rules="[{&quot;dimensions&quot;:[&quot;300x50&quot;,&quot;301x50&quot;,&quot;320x50&quot;,&quot;321x50&quot;,&quot;728x90&quot;,&quot;729x90&quot;,&quot;970x90&quot;,&quot;971x90&quot;,&quot;1x1&quot;],&quot;classes&quot;:[&quot;m-advertisement--fixedbottom&quot;,&quot;m-advertisement--fixedbottom-contained&quot;]},{&quot;dimensions&quot;:[&quot;728x90&quot;,&quot;729x90&quot;,&quot;970x90&quot;,&quot;971x90&quot;,&quot;1x1&quot;],&quot;classes&quot;:[&quot;m-advertisement--fixedbottom-close-button&quot;]}]" fixed-visible skip-dynamic-call><div class="m-fixedbottom-ad--slot is-placeholder not-size-b not-size-c not-size-d"><div id="ad-f48056f3683c4cddb8fd343cd0bf34bd"></div></div></phoenix-ad><phoenix-ad class="m-fixedbottom-ad not-size-a not-size-c not-size-d" auto-reload close-button config='{"adReloaderDelay":30,"maxAdReloads":25,"adReloaderSizeCodes":["300x50","320x50","320x60","728x90","768x66","970x90","1x1"],"moduleClass":"m-fixedbottom-ad","slotId":"ad-cfb76296c92c4103923cdf0443495e54","visClasses":["not-size-a","not-size-c","not-size-d"],"slotConfig":{"id":"ad-cfb76296c92c4103923cdf0443495e54","config":{"sizes":[[768,66],[728,90]]},"screenSizes":["B"],"model":{"zone":"fixed_bottom","index":0,"isOutstream":false}}}' data-class-rules="[{&quot;dimensions&quot;:[&quot;300x50&quot;,&quot;301x50&quot;,&quot;320x50&quot;,&quot;321x50&quot;,&quot;728x90&quot;,&quot;729x90&quot;,&quot;970x90&quot;,&quot;971x90&quot;,&quot;1x1&quot;],&quot;classes&quot;:[&quot;m-advertisement--fixedbottom&quot;,&quot;m-advertisement--fixedbottom-contained&quot;]},{&quot;dimensions&quot;:[&quot;728x90&quot;,&quot;729x90&quot;,&quot;970x90&quot;,&quot;971x90&quot;,&quot;1x1&quot;],&quot;classes&quot;:[&quot;m-advertisement--fixedbottom-close-button&quot;]}]" fixed-visible skip-dynamic-call><div class="m-fixedbottom-ad--slot is-placeholder not-size-a not-size-c not-size-d"><div id="ad-cfb76296c92c4103923cdf0443495e54"></div></div></phoenix-ad><phoenix-ad class="m-fixedbottom-ad not-size-a not-size-b" auto-reload close-button config='{"adReloaderDelay":30,"maxAdReloads":25,"adReloaderSizeCodes":["300x50","320x50","320x60","728x90","768x66","970x90","1x1"],"moduleClass":"m-fixedbottom-ad","slotId":"ad-9ee2d13729f04db4ad30fe38b756e4ad","visClasses":["not-size-a","not-size-b"],"slotConfig":{"id":"ad-9ee2d13729f04db4ad30fe38b756e4ad","config":{"sizes":[[900,65],[970,90],[728,90]]},"screenSizes":["C"],"model":{"zone":"fixed_bottom","index":0,"isOutstream":false}}}' data-class-rules="[{&quot;dimensions&quot;:[&quot;300x50&quot;,&quot;301x50&quot;,&quot;320x50&quot;,&quot;321x50&quot;,&quot;728x90&quot;,&quot;729x90&quot;,&quot;970x90&quot;,&quot;971x90&quot;,&quot;1x1&quot;],&quot;classes&quot;:[&quot;m-advertisement--fixedbottom&quot;,&quot;m-advertisement--fixedbottom-contained&quot;]},{&quot;dimensions&quot;:[&quot;728x90&quot;,&quot;729x90&quot;,&quot;970x90&quot;,&quot;971x90&quot;,&quot;1x1&quot;],&quot;classes&quot;:[&quot;m-advertisement--fixedbottom-close-button&quot;]}]" fixed-visible skip-dynamic-call><div class="m-fixedbottom-ad--slot is-placeholder not-size-a not-size-b"><div id="ad-9ee2d13729f04db4ad30fe38b756e4ad"></div></div></phoenix-ad></div></div></div><div><phx-promotions></phx-promotions></div><script id="phx-webcomponent-ad" async src="/.bootscripts/webcomponents/ad.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script id="phx-webcomponent-import" async src="/.bootscripts/webcomponents/import.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script id="phx-webcomponent-superLink" async src="/.bootscripts/webcomponents/superLink.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script id="phx-webcomponent-picture" async src="/.bootscripts/webcomponents/picture.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script id="phx-webcomponent-page" async src="/.bootscripts/webcomponents/page.min.js?v=2018-11-16-234933-363d9ab-012024"></script><script id="phx-webcomponent-style" async src="/.bootscripts/webcomponents/style.min.js?v=2018-11-16-234933-363d9ab-012024"></script><phoenix-script delay-load src="/.bootscripts/hubRebalancer.min.js?v=2018-11-16-234933-363d9ab-012024"></phoenix-script><phoenix-script delay-load src="/.bootscripts/streamMoreItems.min.js?v=2018-11-16-234933-363d9ab-012024"></phoenix-script><script type="text/template" id="carbon-analytics">(function(scriptUrl, tagId) {"use strict";window.CustomerConnectAnalytics="cca";window.cca=window.cca||function(){(window.cca.q=window.cca.q||[]).push(arguments)};var script=document.createElement("script");script.src=scriptUrl+"?id="+window.location.hostname+"&parentId="+tagId;document.head.appendChild(script);})('https://carbon-cdn.ccgateway.net/script', 'b4b3d228');</script><phoenix-script script-id="carbon-analytics" block-on-gdpr-applicable delay-load wait-for-app></phoenix-script><phoenix-script block-premium async delay-load src="https://saymedia-com.videoplayerhub.com/videoloader.js"></phoenix-script><script>'use strict';
window._sf_startpt = (new Date()).getTime();
window._sf_async_config = {"uid":"21390","domain":"svconline.com","useCanonical":true,"sections":"N/A","authors":"N/A"};
</script><script type="text/template" id="chartbeat-init-21390">"use strict";window._sf_endpt=new Date().getTime();</script><phoenix-script script-id="chartbeat-init-21390" block-on-gdpr-applicable block-premium delay-load></phoenix-script><phoenix-script src="https://static.chartbeat.com/js/chartbeat.js" block-on-gdpr-applicable block-premium delay-load></phoenix-script><script type="application/json" id="liftigniter-metadata">{"noShow":"true"}</script><script type="text/template" id="liftigniter-init">(function(jsKey) {"use strict";if(typeof $igniter_var==="undefined"){(function(w,d,s,p,v,e,r){w.$ps=w.performance&&w.performance.now&&typeof w.performance.now=="function"?w.performance.now():undefined;w["$igniter_var"]=v;w[v]=w[v]||function(){(w[v].q=w[v].q||[]).push(arguments)};w[v].l=1*new Date;e=d.createElement(s),r=d.getElementsByTagName(s)[0];e.async=1;e.src=p+"?ts="+(+new Date/3600000|0);r.parentNode.insertBefore(e,r)})(window,document,"script","//cdn.petametrics.com/"+jsKey+".js","$p");$p("init",jsKey);$p("send","pageview")}})('999gba4qphtjrmpe');</script><phoenix-script script-id="liftigniter-init" block-on-gdpr-applicable block-premium delay-load></phoenix-script></phoenix-page><script>(function(appScripts) {"use strict";function dropExtScript(src){return new Promise(function(resolve,reject){var e=document.createElement("script");e.async=false;e.src=src;e.addEventListener("load",function(){resolve()},false);e.addEventListener("error",function(){console.error("failed to load "+src);resolve()},false);document.body.appendChild(e)})}function dropExtScripts(scripts){var promises=[];scripts.forEach(function(s){promises.push(dropExtScript(s))});return Promise.all(promises)}function loadAndStartApp(){dropExtScripts(appScripts).then(function(){var e=document.createElement("script");e.text="require(['main'], function () {"+"window._angularAppLoaded=true;"+"window.dispatchEvent(new CustomEvent('angularAppLoaded'));"+"});";document.body.appendChild(e)})}if(appScripts.length>0){window.getTimedOutPageLoadPromise(30000).then(loadAndStartApp)}})(["/.config.js?config=published&cv=0cf6b7af22031ac68c9dd66f74a6142e&v=2018-11-16-234933-363d9ab-012024","/.components.min.js?v=2018-11-16-234933-363d9ab-012024","/.app.min.js?v=2018-11-16-234933-363d9ab-012024","/components/angular-i18n/angular-locale_en-us.js?v=2018-11-16-234933-363d9ab-012024"]);</script></body></html>