CINXE.COM
How to Stream from Home: Streaming gear, tips & more | The Stream
<!DOCTYPE html> <html> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://livestream.com/blog/remote-streaming-from-home","20211215190943","https://web.archive.org/","web","/_static/", "1639595383"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://web.archive.org/web/20211215190943/https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-KNG43F');</script> <!-- End Google Tag Manager --> <link rel="shortcut icon" type="image/x-icon" href="/web/20211215190943im_/https://livestream.com/assets/images/shared/favicon.ico?v=3"> <link rel="icon" type="image/ico" href="/web/20211215190943im_/https://livestream.com/assets/images/shared/favicon.ico?v=3"> <title>How to Stream from Home: Streaming gear, tips & more | The Stream</title> <script type="text/javascript"> var wpAjaxUrl = '/blog/wp-admin/admin-ajax.php'; function isValidEmailAddress(emailAddress) { var pattern = new RegExp(/^(("[\w-+\s]+")|([\w-+]+(?:\.[\w-+]+)*)|("[\w-+\s]+")([\w-+]+(?:\.[\w-+]+)*))(@((?:[\w-+]+\.)*\w[\w-+]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][\d]\.|1[\d]{2}\.|[\d]{1,2}\.))((25[0-5]|2[0-4][\d]|1[\d]{2}|[\d]{1,2})\.){2}(25[0-5]|2[0-4][\d]|1[\d]{2}|[\d]{1,2})\]?$)/i); return pattern.test(emailAddress); }; </script> <meta name="viewport" content="width=device-width"/> <script type="text/javascript" src="https://web.archive.org/web/20211215190943js_/https://livestream.com/blog/wp-content/themes/livestreamblog/static/jquery-3.5.1.min.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20211215190943js_/https://livestream.com/blog/wp-content/themes/livestreamblog/static/main.js?1976949343"></script> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20211215190943cs_/https://livestream.com/blog/wp-content/themes/livestreamblog/style.css?632503004"> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20211215190943cs_/https://livestream.com/blog/wp-content/themes/livestreamblog/static/footer.css"> <script type="text/javascript"> if (!window.jQuery) { (function() { var didInit = false; function initMunchkin() { if(didInit === false) { didInit = true; Munchkin.init('582-GOU-684', { "cookieAnon": true }); } } var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//web.archive.org/web/20211215190943/https://munchkin.marketo.net/munchkin.js'; s.onreadystatechange = function() { if (this.readyState == 'complete' || this.readyState == 'loaded') { initMunchkin(); } }; s.onload = initMunchkin; document.getElementsByTagName('head')[0].appendChild(s); })(); } else { $.ajax({ url: '//web.archive.org/web/20211215190943/https://munchkin.marketo.net/munchkin.js', dataType: 'script', cache: true, success: function() { Munchkin.init('582-GOU-684', { "cookieAnon": true }); } }); }; </script> <script> (function(w) { var vuid, parts; function _getrandmax() { return 2147483647; } function _rand(max, min) { if (arguments.length === 0) { min = 0; max = _getrandmax(); } return Math.floor(Math.random() * (max - min + 1)) + min; } function _microtime(get_as_float) { var now = new Date().getTime() / 1000, s = parseInt(now, 10); return (get_as_float) ? now : (Math.round((now - s) * 1000) / 1000) + ' ' + s; } function _round(value, precision, mode) { var m, f, isHalf, sgn; precision |= 0; m = Math.pow(10, precision); value *= m; sgn = (value > 0) | -(value < 0); isHalf = value % 1 === 0.5 * sgn; f = Math.floor(value); if (isHalf) { value = f + (sgn > 0); } return (isHalf ? value : Math.round(value)) / m; } function _ord(string) { var str = string + '', code = str.charCodeAt(0), hi, low; if (0xD800 <= code && code <= 0xDBFF) { hi = code; if (str.length === 1) { return code; } low = str.charCodeAt(1); return ((hi - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000; } if (0xDC00 <= code && code <= 0xDFFF) { return code; } return code; } function _generate32bitRandom() { return _round((_rand() / _getrandmax()) * 0x7fffffff); } function _generateHash(string_arg) { var string = string_arg.toString(), hash = 1, pos, current, leftMost7; if (typeof string !== 'undefined' && string !== '') { hash = 0; pos = string.length - 1; for (pos; pos >= 0; pos--) { current = _ord(string.charAt(pos)); hash = ((hash << 6) & 0xfffffff) + current + (current << 14); leftMost7 = hash & 0xfe00000; if (leftMost7) { hash ^= leftMost7 >> 21; } } } return hash; } function sameSiteIncompatibleBrowser() { var ua = window.navigator.userAgent; return ua.includes('iPhone OS 12_') || ua.includes('iPad; CPU OS 12_') || //iOS 12 (ua.includes('UCBrowser/') ? isOlderUcBrowser(ua) //UC Browser < 12.13.2 : (ua.includes('Chrome/5') || ua.includes('Chrome/6'))) || ua.includes('Chromium/5') || ua.includes('Chromium/6') || (ua.includes(' OS X 10_14_') && ((ua.includes('Version/') && ua.includes('Safari')) || //Safari on MacOS 10.14 ua.endsWith('(KHTML, like Gecko)'))); //Web view on MacOS 10.14 } function isOlderUcBrowser(ua) { var match = ua.match(/UCBrowser\/(\d+)\.(\d+)\.(\d+)\./); if (!match) return false; var major = parseInt(match[1]); var minor = parseInt(match[2]); var build = parseInt(match[3]); if (major != 12) return major < 12; if (minor != 13) return minor < 13; return build < 2; } function _cookie(name, value, ttl, path, domain) { var future_date, cookie; if (arguments.length > 1) { if (ttl) { future_date = new Date(); future_date.setDate(future_date.getDate() + ttl); } document.cookie = name + '=' + encodeURIComponent(value) + (future_date ? '; expires=' + future_date.toGMTString() : '') + (path ? '; path=' + path : '') + (domain ? '; domain=' + domain : '') + (sameSiteIncompatibleBrowser() ? '; secure' : '; SameSite=None; secure'); return true; } return decodeURIComponent((('; ' + document.cookie).split('; ' + name + '=')[1] || '').split(';')[0]); } vuid = { cookie: _cookie('vuid') }; if (!vuid.cookie) { vuid.cookie = 'pl' + ((_generate32bitRandom() ^ _generateHash(_microtime())) & 0x7fffffff).toString() + '.' + ((_generate32bitRandom() ^ _generateHash(w.navigator.userAgent)).toString() & 0x7fffffff); } parts = w.location.hostname.split('.'); if (parts.length > 2) { parts.shift(); } _cookie('vuid', vuid.cookie, 365 * 2, '/', '.' + parts.join('.')); // GTM data window.dataLayer ||= []; window.dataLayer.push({vuid: _cookie('vuid'), page: 'Blog Page'}); })(window); </script> <link href="https://web.archive.org/web/20211215190943cs_/https://livestream.com/blog/wp-content/themes/livestreamblog/static/lity-1.6.6/dist/lity.css" rel="stylesheet"> <script src="https://web.archive.org/web/20211215190943js_/https://livestream.com/blog/wp-content/themes/livestreamblog/static/lity-1.6.6/dist/lity.js"></script> <meta name="robots" content="max-image-preview:large"/> <!-- This site is optimized with the Yoast SEO Premium plugin v15.8 - https://yoast.com/wordpress/plugins/seo/ --> <meta name="description" content="Configuring a professional-grade remote streaming setup at home has been a challenge for many live video producers. Here's how to stream from home."/> <meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"/> <link rel="canonical" href="https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home"/> <meta property="og:locale" content="en_US"/> <meta property="og:type" content="article"/> <meta property="og:title" content="How to Stream from Home: Streaming gear, tips & more | The Stream"/> <meta property="og:description" content="Configuring a professional-grade remote streaming setup at home has been a challenge for many live video producers. Here's how to stream from home."/> <meta property="og:url" content="https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home"/> <meta property="og:site_name" content="Blog"/> <meta property="article:publisher" content="https://www.facebook.com/livestream/"/> <meta property="article:published_time" content="2020-04-16T20:58:53+00:00"/> <meta property="article:modified_time" content="2020-07-29T21:19:42+00:00"/> <meta property="og:image" content="https://web.archive.org/web/20211215190943im_/https://livestream.com/blog/wp-content/uploads/2020/04/01_Hero_B-scaled.jpg"/> <meta property="og:image:width" content="2560"/> <meta property="og:image:height" content="1186"/> <meta name="twitter:card" content="summary"/> <meta name="twitter:creator" content="@Livestream"/> <meta name="twitter:site" content="@Livestream"/> <meta name="twitter:label1" content="Written by"> <meta name="twitter:data1" content="Livestream Blog"> <meta name="twitter:label2" content="Est. reading time"> <meta name="twitter:data2" content="9 minutes"> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://web.archive.org/web/20211215190943/https://schema.org","@graph":[{"@type":"Organization","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#organization","name":"Livestream","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/","sameAs":["https://web.archive.org/web/20211215190943/https://www.facebook.com/livestream/","https://web.archive.org/web/20211215190943/https://www.instagram.com/livestream/","https://web.archive.org/web/20211215190943/https://www.linkedin.com/company/livestream_2","https://web.archive.org/web/20211215190943/https://www.youtube.com/user/Livestreamcom","https://web.archive.org/web/20211215190943/https://www.pinterest.com/livestream/","https://web.archive.org/web/20211215190943/https://twitter.com/Livestream"],"logo":{"@type":"ImageObject","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#logo","inLanguage":"en-US","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/wp-content/uploads/2018/02/logo-livestream@2x.png","width":308,"height":104,"caption":"Livestream"},"image":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#logo"}},{"@type":"WebSite","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#website","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/","name":"Blog","description":"Livestream","publisher":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#organization"},"potentialAction":[{"@type":"SearchAction","target":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#primaryimage","inLanguage":"en-US","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/wp-content/uploads/2020/04/01_Hero_B-scaled.jpg","width":2560,"height":1186},{"@type":"WebPage","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#webpage","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home","name":"How to Stream from Home: Streaming gear, tips & more | The Stream","isPartOf":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#website"},"primaryImageOfPage":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#primaryimage"},"datePublished":"2020-04-16T20:58:53+00:00","dateModified":"2020-07-29T21:19:42+00:00","description":"Configuring a professional-grade remote streaming setup at home has been a challenge for many live video producers. Here's how to stream from home.","breadcrumb":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home"]}]},{"@type":"BreadcrumbList","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"WebPage","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/","name":"Home"}},{"@type":"ListItem","position":2,"item":{"@type":"WebPage","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home","url":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home","name":"How to live stream from home: Live Streaming Gear, tips & advice"}}]},{"@type":"Article","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#article","isPartOf":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#webpage"},"author":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#/schema/person/0b33fc33557f8660eafb166b73a210e0"},"headline":"How to live stream from home: Live Streaming Gear, tips & advice","datePublished":"2020-04-16T20:58:53+00:00","dateModified":"2020-07-29T21:19:42+00:00","mainEntityOfPage":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#webpage"},"commentCount":0,"publisher":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#organization"},"image":{"@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#primaryimage"},"articleSection":"Tech","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home#respond"]}]},{"@type":"Person","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#/schema/person/0b33fc33557f8660eafb166b73a210e0","name":"Livestream Blog","image":{"@type":"ImageObject","@id":"https://web.archive.org/web/20211215190943/https://livestream.com/blog/#personlogo","inLanguage":"en-US","url":"https://web.archive.org/web/20211215190943/https://secure.gravatar.com/avatar/d077a26616fe85aad1b0a7eb4822fd09?s=96&d=mm&r=g","caption":"Livestream Blog"},"sameAs":["https://web.archive.org/web/20211215190943/http://livestreamblog.wpengine.com"]}]}</script> <!-- / Yoast SEO Premium plugin. --> <link rel="dns-prefetch" href="//web.archive.org/web/20211215190943/https://s.w.org/"/> <link rel="alternate" type="application/rss+xml" title="Blog » How to live stream from home: Live Streaming Gear, tips & advice Comments Feed" href="https://web.archive.org/web/20211215190943/https://livestream.com/blog/remote-streaming-from-home/feed"/> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/web.archive.org\/web\/20211215190943\/https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/web.archive.org\/web\/20211215190943\/https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/web.archive.org\/web\/20211215190943\/https:\/\/livestreamblog.wpengine.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8.2"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel="stylesheet" id="wp-block-library-css" href="https://web.archive.org/web/20211215190943cs_/https://livestream.com/blog/wp-includes/css/dist/block-library/style.min.css?ver=5.8.2" type="text/css" media="all"/> <link rel="https://api.w.org/" href="https://livestream.com/blog/wp-json/"/><link rel="alternate" type="application/json" href="https://web.archive.org/web/20211215190943/https://livestream.com/blog/wp-json/wp/v2/posts/2112"/><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://livestream.com/blog/xmlrpc.php?rsd"/> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://livestream.com/blog/wp-includes/wlwmanifest.xml"/> <link rel="shortlink" href="https://web.archive.org/web/20211215190943/https://livestream.com/blog/?p=2112"/> <link rel="alternate" type="application/json+oembed" href="https://web.archive.org/web/20211215190943/https://livestream.com/blog/wp-json/oembed/1.0/embed?url=https%3A%2F%2Flivestreamblog.wpengine.com%2Fremote-streaming-from-home"/> <link rel="alternate" type="text/xml+oembed" href="https://web.archive.org/web/20211215190943/https://livestream.com/blog/wp-json/oembed/1.0/embed?url=https%3A%2F%2Flivestreamblog.wpengine.com%2Fremote-streaming-from-home&format=xml"/> </head> <body class="post-template-default single single-post postid-2112 single-format-standard"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://web.archive.org/web/20211215190943if_/https://www.googletagmanager.com/ns.html?id=GTM-KNG43F" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div class="head"> <div id="desktop-searchbar" class="desktop"> <div class="bottombar"> <div class="search-icon"></div> <form action="https://web.archive.org/web/20211215190943/https://livestream.com/blog" method="get"> <input id="search-input" type="text" placeholder="Search..." name="s" tabindex="1"> </form> </div> </div> <div id="mobile-thanks" style="display: none;"> <div class="thank-container"> <div class="thank-check"></div> <div class="thank-text">Thanks for subscribing to Livestream! Get ready to master live video.</div> </div> </div> <div id="mobile-searchbar"> <div class="topbar"> <div class="left"> <a href="/web/20211215190943/https://livestream.com/blog"><div class="logo"></div></a> </div> <div class="right"> <div class="exit"></div> </div> </div> <div class="search-category-container"> <ul class="mobile-categories"> <li class="active"><a class="normalized-link" href="/web/20211215190943/https://livestream.com/blog">The Stream</a></li> <li><a class="normalized-link" href="/web/20211215190943/https://livestream.com/blog/category/marketing">Marketing</a></li> <li><a class="normalized-link" href="/web/20211215190943/https://livestream.com/blog/category/tech">Tech</a></li> <li><a class="normalized-link" href="/web/20211215190943/https://livestream.com/blog/category/product">Product</a></li> <li><a class="normalized-link" href="/web/20211215190943/https://livestream.com/blog/category/research">Research</a></li> <div class="content-divider"></div> <form id="mobile-subscribe-container" class="email-bar clearfix"> <input type="text" name="mobile-email" placeholder="Email Address"> <div class="right-container"> <div id="mobile-subscribe-submit"> <p>SUBSCRIBE</p> </div> </div> <p class="clearfix error-message">Please Enter a Valid Email Address</p> </form> </ul> </div> <div class="bottombar-container"> <div class="bottombar"> <div class="search-icon"></div> <form action="https://web.archive.org/web/20211215190943/https://livestream.com/blog" method="get"> <input type="text" placeholder="Search..." name="s"> </form> </div> </div> </div> <div id="mobile-subscribebar"> <div class="subscribebar-container"> <div class="subscribe-top clearfix"> <div class="left"> <div class="title">Subscribe</div> </div> <div class="right"> <div class="close-bar exit"></div> </div> </div> <div class="email-bar clearfix"> <input type="text"> <div class="right-container"> <div class="right-carot"></div> </div> </div> <div class="after-links clearfix"> <a id="sign-in" class="left blue-link" href="#">I've already signed up</a> <a class="left blue-link close-bar" href="#">No Thanks!</a> </div> </div> </div> <div id="desktop-header" class="desktop"> <div class="topbar"> <div class="left"> <a href="/web/20211215190943/https://livestream.com/"><div class="logo"></div></a> <ul class="categories"> <li class="active"><a class="white-link" href="/web/20211215190943/https://livestream.com/blog">The Stream</a></li> <li><a class="white-link" href="/web/20211215190943/https://livestream.com/blog/category/marketing">Marketing</a></li> <li><a class="white-link" href="/web/20211215190943/https://livestream.com/blog/category/tech">Tech</a></li> <li><a class="white-link" href="/web/20211215190943/https://livestream.com/blog/category/product">Product</a></li> <li><a class="white-link" href="/web/20211215190943/https://livestream.com/blog/category/research">Research</a></li> </ul> </div> <div class="right"> <div id="search-expander" class="search-icon" onclick="setTimeout(function() { $('#search-input')[0].focus() }, 100);"></div> <ul class="subscribe"> <li>SUBSCRIBE</li> </ul> </div> </div> <div class="searchbg-container"> <div class="topbar-search"> <div id="desktop-searchbg" class="desktop"></div> </div> </div> </div> <div class="tablet mobile-head"> <div class="topbar"> <div class="left"> <a href="/web/20211215190943/https://livestream.com/blog"><div class="logo"></div></a> </div> <div class="right"> <div class="hamburger"></div> </div> </div> </div> <div class="mobile mobile-head"> <div class="topbar"> <div class="left"> <a href="/web/20211215190943/https://livestream.com/blog"><div class="logo"></div></a> </div> <div class="right"> <div class="hamburger"></div> </div> </div> </div> </div> <!-- End Topbar --><div id="sidescroll-2112" class="sidescroll"> <div class="scroll-container"> <a class="article-share" id="sideshare-email" href="https://web.archive.org/web/20211215190943/mailto:/?subject=How to live stream from home: Live Streaming Gear, tips & advice&body=https://livestream.com/blog/remote-streaming-from-home"> <div class="email"> <div class="share-logo"></div> </div> </a> <a class="article-share" id="sideshare-twitter" target="_blank" href="https://web.archive.org/web/20211215190943/https://twitter.com/home?status=How to live stream from home: Live Streaming Gear, tips & advice https://livestream.com/blog/remote-streaming-from-home via @Livestream"> <div class="twitter"> <div class="share-logo"></div> </div> </a> <a class="article-share" id="sideshare-fb" target="_blank" href="https://web.archive.org/web/20211215190943/https://www.facebook.com/sharer/sharer.php?u=https://livestream.com/blog/remote-streaming-from-home"> <div class="facebook"> <div class="share-logo"></div> </div> </a> <a class="article-share" id="sideshare-linkedin" target="_blank" href="https://web.archive.org/web/20211215190943/https://www.linkedin.com/shareArticle?mini=true&url=https://livestream.com/blog/remote-streaming-from-home"> <div class="linkedin"> <div class="share-logo"></div> </div> </a> </div> </div> <div class="full-article-container" id="full-article-2112" data-backgroundurl="https://livestream.com/blog/wp-content/uploads/2020/04/01_Hero_B-scaled.jpg" data-articleid="2112" data-articletitle="How to live stream from home: Live Streaming Gear, tips & advice" data-articleurl="https://livestream.com/blog/remote-streaming-from-home"> <div class="featured-image" style="background-image: url(https://web.archive.org/web/20211215190943im_/https://livestream.com/blog/wp-content/uploads/2020/04/01_Hero_B-scaled.jpg); background-size:cover; background-position:center; background-repeat:no-repeat;"></div> <article class="article-container"> <div class="article-text"> <h1 class="article-title">How to live stream from home: Live Streaming Gear, tips & advice</h1> <div class="article-author-block clearfix"> <div class="author-image" style="background-image: url(https://web.archive.org/web/20211215190943im_/http://www.livestreamblog.com/blog/wp-content/uploads/users/2/profile.jpg);"></div> <div class="author-text"> <p class="name">Livestream Blog</p> <a href="/web/20211215190943/https://livestream.com/blog/category/tech"> <p class="category">Tech</p> </a> </div> </div> <div class="article-content"> <p>There’s no denying that traditional work culture has been thrown for a loop. With travel restrictions in place and local governments instituting stay-at-home orders, working from home has become a necessity rather than a privilege or perk. For many businesses, especially those that have canceled in-person events, live video has become the next best alternative. This new reality presents live streaming producers and creators to now configuring a technical remote streaming setup from home — no small task.</p> <p>Producing a polished, professional live stream is a big task in and of itself. But now, businesses are tasked with the added challenge of ensuring their team can create and configure a remote streaming studio setup at home, with possible spotty residential internet connections and little ones scampering around the house. We spoke with three very different businesses to learn how they’re adjusting their streaming workflows to remote setups.</p> <h2>ClayShare: Spinning up a virtual conference, fast</h2> <figure class="wp-block-image size-large"> <div class="breakout breakout-center"> <img width="100%" src="https://web.archive.org/web/20211215190943im_/https://livestream.com/blog/wp-content/uploads/2020/04/04_ClayShares-hardware-setup-1024x522.jpg"> </div> <figcaption><em>Kevin Phillips’s streaming setup for ClayShareCon</em></figcaption> </figure> <p>Husband-and-wife team Jessica Putnam-Phillips and Kevin Phillips are well-versed at live streaming from home, with weekly virtual ceramics lessons via their online pottery studio <a href="https://web.archive.org/web/20211215190943/https://clayshare.com/">ClayShare</a>. But when this year’s National Council on Education for Ceramic Arts (NCECA) was canceled, the couple decided on the fly to host their own five-day virtual conference, <a href="https://web.archive.org/web/20211215190943/https://tv.clayshare.com/claysharecon-spring-2020">ClayShareCon</a>, for the benefit of the ceramics community — and they did it in just 10 days flat.</p> <p>“Canceling NCECA was a huge deal for the entire ceramic world,” Kevin says, adding that NCECA serves as the biggest marketing push of the year for many of the vendors. “Jess had the idea of, ‘Let’s do an online version to connect with those people and to keep them engaged.’ Our goal was to turn it into as much of an upside as we could, for as many people as we could.” What was once an in-person event would now be both virtual and remote, streaming content NCECA attendees online instead.</p> <p>They already had the technical know-how and experience from doing their weekly live streams. But because they knew they’d have more eyes on their broadcasts and company sponsors, Kevin wanted to produce something that was more polished. He audited their current studio setup to find out what supplemental equipment they’d need.</p> <p>Their typical weekly broadcasts are filmed using a single Sony RX100 Mark VII camera. For ClayShareCon, they used a <strong>dual camera setup to eliminate the need for manual panning</strong> — one camera faced Jessica head-on and one was positioned overhead so that viewers could see her hands-on demonstrations.</p> <p>With the additional camera, Kevin also needed <strong>an extra Blackmagic box to convert the full 4K HDMI stream</strong> into something the computer could work with. He connected both cameras and a wireless mic into his MacBook Pro and encoded everything—including the graphic overlays, transitions and fades—through Vimeo’s <a href="https://web.archive.org/web/20211215190943/https://vim.io/3cjuCWI">Studio 6</a> software.</p> <p>In the end, the five-day virtual event included 17 hours of live content, including two segments featuring a remote guest. ClayShareCon was streamed using <a href="https://web.archive.org/web/20211215190943/https://vim.io/2KhJJnT">Vimeo’s live streaming tools</a>, embedded on their website, and simulcast to ClayShare’s Vimeo, Facebook, and YouTube channels.</p> <p>ClayShareCon saw so much success that Jessica and Kevin are hosting another one in the fall. “Really, in a lot of ways, this is what we do with ClayShare every day, every week,” Kevin remarks. “We just paused the regular ClayShare cycle and accelerated ClayShareCon cycle.”</p> <h2>Plum Media: Pivoting to virtual broadcasts in record time</h2> <figure class="wp-block-image size-large"> <div class="breakout breakout-center"> <img width="100%" src="https://web.archive.org/web/20211215190943im_/https://livestream.com/blog/wp-content/uploads/2020/04/03_Chad-DAcquisto-1024x522.jpg"> </div> <figcaption><em>Chad D’Acquisto’s at-home streaming setup. (Source: <a href="https://web.archive.org/web/20211215190943/https://www.linkedin.com/posts/cdacquisto_liveevents-livestreaming-livestream-activity-6648297595414335489-_RB3/" target="_blank" rel="noreferrer noopener" aria-label="LinkedIn (opens in a new tab)">LinkedIn</a>)</em></figcaption> </figure> <p>Chad D’Acquisto, a producer/director at <a href="https://web.archive.org/web/20211215190943/https://www.plummedia.com/">Plum Media</a>, never thought he’d be producing corporate live streams from his home. But that’s exactly what happened when stay-at-home orders came to his community in Milwaukee, WI.</p> <p>Plum Media is in the business of creating video and live event productions for corporate clients. Seeing how social distancing measures were being implemented elsewhere, Chad had the foresight to plan for the possibility of pivoting from in-person broadcasts to virtual broadcasts, even before the official stay-at-home order came down from the governor’s office. </p> <p>He took some equipment home and started setting up shop in his guest bedroom, which serves an additional purpose as an online learning center for his son, who is now attending online classes from home. Chad’s setup includes:</p> <ul> <li>An <strong><a href="https://web.archive.org/web/20211215190943/https://vim.io/2VvDCkO">HD550</a> </strong></li> <li><a href="https://web.archive.org/web/20211215190943/https://www.aja.com/family/digital-recorders"><strong>AJA Ki Pro Recorder</strong></a> that he uses to capture recordings locally</li> <li><strong>An extra monitor</strong> that doubles as a secondary screen for office work or to double-check a program feed</li> <li><strong>Two additional laptops</strong> — a PC and a Mac —to host PowerPoint slides locally</li> <li><strong>An external USB webcam</strong> to communicate directly with remote guests before and after the live stream</li> <li><strong>Wireless remotes</strong> to keep him from having to reach over his computers during a production</li> <li><strong>An iPod</strong> to play production music while sessions are on hold.</li> </ul> <p>Chad has supported six clients with remote streaming from his home studio, ranging from leadership updates, to town halls streamed from Mexico, and even training seminars with multiple remote presenters.</p> <p>At the end of the day, “The clients appreciate the hoops that we’ve been jumping through, and now especially appreciate that we’ve been taking all of these additional measures to still try to service their needs, stay open in business and do it at a very healthy approach,” Chad says.</p> <p>“It is important for us to get ahead of that curve to be ready,” he says. “There is no one size fits all solution. It’s just listening to your clients, determining what their needs are and then developing the solution that works best for them.”</p> <h2>Vimeo: From boots on the ground to staying put at home</h2> <figure class="wp-block-image size-large"> <div class="breakout breakout-center"> <img width="100%" src="https://web.archive.org/web/20211215190943im_/https://livestream.com/blog/wp-content/uploads/2020/04/02_Greg-Palmer-1024x522.jpg"> </div> <figcaption><em>Greg Palmer produces a live stream from his Brooklyn apartment.</em></figcaption> </figure> <p>Greg Palmer, a senior producer on Vimeo’s <a href="https://web.archive.org/web/20211215190943/https://vim.io/2yjmPcE">live production team</a>, is used to having his “boots on the ground” for clients that Vimeo works with, many of which include Fortune 500 companies that are producing big conferences, concerts and fashion shows. </p> <p>Just as the pandemic was gaining more traction in the U.S., Greg was tasked with producing an event for a major company. While the client chose not to cancel, he remembers thinking that things were going to change quickly — and that they’d soon need to make the pivot to virtual.</p> <p>In preparation, he brought home some equipment to start testing a remote streaming setup if needed. During a typical on-the-ground production, the team usually uses a six-foot table with dedicated power and internet, and then whatever feeds the team is using for that show. Now, Greg is trying to emulate that setup in his Brooklyn apartment.</p> <p>“Luckily, I moved into a new apartment right before this pandemic actually happened, so I have a little bit more space,” he says. <strong>“I don’t actually have an office space, but we have a raised bar area in our kitchen,</strong> so I’ve just been using that. <strong>I have two encoders at my apartment,</strong> one that I actually own myself, and one from the office.”</p> <p>He’s using his <strong>home fiber internet connection,</strong> and has a Mevo camera to demo when consulting with certain clients. “I’m more using the Mevo as a way of showing different workflows that they can utilize during this time if they had a Mevo camera available to them,” he says, adding that he does have <strong>a Sony A7S II DSLR</strong> if he needs it. His home setup isn’t as robust as the one he has at the office, but it’s working for Vimeo’s internal live streams and testing out workflows for customers.</p> <p>“I think some people were thinking you need to reinvent the wheel when we began to all work from home. To me, it’s more about what can we do remotely, and how can we do it?” he says. “If you’re thinking about live broadcasting — it’s meant to be one to all. You’re already doing that, whether you have boots on the ground at a live event, or are creating a live production from home.” </p> <p>A lot of people are already using the kinds of applications that have the ability to conduct virtual events, he adds. “They just need to open up the door of that software, and see, <em>‘Oh, we actually can do this with the tools we already have.’</em>”</p> <p>Still, if your company needs assistance with remote setups and doing live workflow reviews for work-from-home, the Vimeo live production team can help — whether you’re a Fortune 500 company or a mom-and-pop shop.<br/>“If you’re on Vimeo Enterprise, you have a great solutions team at Vimeo,” Greg says. “We are creators first, we are about creators’ success. <a href="https://web.archive.org/web/20211215190943/https://vim.io/2yjmPcE">So, reach out.</a>”</p> <h2>Pro live streaming tips for navigating the new normal</h2> <p>We asked what advice these producers have for readers looking to configure a remote streaming setup. Here’s what they had to say.</p> <p><strong>Kevin Phillips:</strong> “The second day [we brought in a remote guest] we ran out of bandwidth. That’s life in Vermont with two kids who are in the house and online at the same time when you’re trying to ingest a 1080 stream, pipe it through your computer, and then send it back out.” Before their next conference in the fall,<strong> he plans to add a second internet line dedicated solely to the studio.</strong></p> <p><strong>Chad D’Acquisto:</strong> “Another ISP was just in our neighborhood last year dropping fiber lines. I kind of wish that I had access to that at this point, but of course I didn’t anticipate this change of events.” That said, he did <strong>increase the bandwidth for his residential cable broadband service,</strong> is also using cellular data for backup bonded streaming. His family has been really understanding about not using the internet when he’s doing important client streams at home, too.</p> <p><strong>Greg Palmer: </strong>“I would certainly <strong>do some initial testing</strong> if they’re having issues and seeing internet drops. <strong>There are ways of working around that as well with our Studio software and Vimeo Enterprise.</strong> If your internet is not very good, you’re definitely going to have to up the capability of it.” </p> <p>Greg also advises people to take small steps to determine how much you can actually do. <strong>“Start slow and see what you can manage on your own </strong>before you get to the point of even streaming. And failing is okay — it’s a learning experience, too.”</p> <h2>Ready to produce your own virtual event?</h2> <p>Check out Vimeo’s virtual events webinar, <a href="https://web.archive.org/web/20211215190943/https://vim.io/2K7DuTf">“How to plan a virtual event: Expert insights from the Vimeo team,”</a> for more help in navigating these changes successfully under tight deadlines.</p> </div> </div> <div class="share-container"> <div class="content-divider"></div> <div class="shareblock"> <a class="article-share article-share-fb" target="_blank" href="https://web.archive.org/web/20211215190943/https://www.facebook.com/sharer/sharer.php?u=https://livestream.com/blog/remote-streaming-from-home"> <div class="facebook"> <div class="share-logo"></div> <p>FACEBOOK</p> </div> </a> <a class="article-share article-share-twitter" target="_blank" href="https://web.archive.org/web/20211215190943/https://twitter.com/home?status=How to live stream from home: Live Streaming Gear, tips & advice https://livestream.com/blog/remote-streaming-from-home via @Livestream"> <div class="twitter"> <div class="share-logo"></div> <p>TWITTER</p> </div> </a> <a class="article-share article-share-linkedin" target="_blank" href="https://web.archive.org/web/20211215190943/https://www.linkedin.com/shareArticle?mini=true&url=https://livestream.com/blog/remote-streaming-from-home"> <div class="linkedin"> <div class="share-logo"></div> <p>LINKEDIN</p> </div> </a> <a class="article-share article-share-email" href="https://web.archive.org/web/20211215190943/mailto:/?subject=How to live stream from home: Live Streaming Gear, tips & advice&body=https://livestream.com/blog/remote-streaming-from-home"> <div class="email"> <div class="share-logo"></div> <p>EMAIL</p> </div> </a> </div> </div> <div class="mobile"> <div class="mobile shareblock"> <a class="article-share-fb" target="_blank" href="https://web.archive.org/web/20211215190943/https://www.facebook.com/sharer/sharer.php?u=https://livestream.com/blog/remote-streaming-from-home"> <div class="facebook"> <div class="share-logo"></div> </div> </a> <a class="article-share-twitter" target="_blank" href="https://web.archive.org/web/20211215190943/https://twitter.com/home?status=How to live stream from home: Live Streaming Gear, tips & advice https://livestream.com/blog/remote-streaming-from-home via @Livestream"> <div class="twitter"> <div class="share-logo"></div> </div> </a> <a class="article-share-linkedin" target="_blank" href="https://web.archive.org/web/20211215190943/https://www.linkedin.com/shareArticle?mini=true&url=https://livestream.com/blog/remote-streaming-from-home"> <div class="linkedin"> <div class="share-logo"></div> </div> </a> <a class="article-share-email" href="https://web.archive.org/web/20211215190943/mailto:/?subject=How to live stream from home: Live Streaming Gear, tips & advice&body=https://livestream.com/blog/remote-streaming-from-home"> <div class="email"> <div class="share-logo"></div> </div> </a> </div> </div> </article> </div><div id="marker-2112" class="loadmore-marker"></div> <div id="dimmer-container"> <div id="dimmer" class="close-modal"></div> <div id="subscribe-box" class="modal-window"> <div class="close-modal close-subscribe"></div> <div class="subscription-container"> <h4 class="subscribe-title">Are you ready to go live?</h4> <p class="subscribe-subtitle">Sign up for news, product announcements, and best practices in Livestream's newsletter.</p> <form class="subscribe-table"> <div class="subscribe-row"> <input type="text" placeholder="First Name*" name="name"> </div> <div class="subscribe-row email-row"> <input type="text" placeholder="Email Address*" name="email"> <p class="clearfix error-message">Please Enter a Valid Email Address</p> </div> <div class="subscribe-row"> <input id="submitEmail" class="submit" type="button" value="SUBMIT"> </div> </form> </div> </div> </div> </body> </html><!-- FILE ARCHIVED ON 19:09:43 Dec 15, 2021 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 19:30:43 Dec 02, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.986 exclusion.robots: 0.042 exclusion.robots.policy: 0.025 esindex: 0.016 cdx.remote: 7.02 LoadShardBlock: 142.576 (3) PetaboxLoader3.datanode: 66.582 (4) PetaboxLoader3.resolve: 147.919 (3) load_resource: 97.687 -->