REC

Recommended: Video Production, Editing & Gear Maintenance Guide

 WTVID >> WTVID >  >> video >> Livestreaming

Expert Guide: How to Plan and Host Engaging Virtual Events

Creating an engaging virtual event with live video takes time and planning. Of course, in light of increased travel restrictions and social distancing, many folks are quickly pivoting from in-person experiences to online events — some for the very first time. We’ve been getting a lot of questions about how to produce a virtual event that hooks an audience and provides real value. To better help our community, we held a live broadcast with one of our in-house experts, Ryan Fitzpatrick, to answer your questions and make recommendations on how to get started. Most days, Ryan works in partnership with me and the live production team to help clients produce and distribute their content. He also spent a few years on the ground in video production and knows just how much effort goes into creating a great video experience. We want to make sure the awesome readers of the Vimeo blog have access to this helpful information on virtual event planning. We’ve got a recap below, and you can check out the on-demand broadcast now.

Live broadcasting vs. video conferencing

The word “live streaming” is often used as an umbrella term that can encompass anything from a Zoom meeting over wifi on your laptop to an Instagram concert streamed over your phone’s network. Ryan’s first piece of advice for people thinking about virtual events is to determine if their live stream is better suited as a video conference, a live broadcast, or a mix of the two. “This is one of the most common questions we’re fielding right now with people who are relatively new to the live streaming space,” Ryan says. “I think right now a lot of people are getting confused because ‘live streaming’ can be a bit of a catch-all when it comes to the video space.” Ryan digs into a lot in the recording, but in short, live broadcasts offer:
  • An optimized experience for a one-to-many audience
  • Improved visuals
  • Better storage, sharing, and management
  • More reliability and scalability for large audiences
Video conferencing, on the other hand:
  • Is optimized for one-to-one (or one-to-some) video interaction
  • Can be tricky to access and secure for viewers
  • Has limited quality A/V outputs
  • Is not built for long-term storing or sharing

“It’s really important that before any live event that you take a step back and think about some of these questions,” he says. “Are you trying to reach a defined audience, or is it a wider scope? Does it have to be limited to a few people in a secure way, or can it be available to everybody?”

Looking for more guiding questions to determine whether video conferencing or live broadcasting is best for your event? Jump to the “Video conferencing vs. live broadcasting” chapter of the recording above.

Remote broadcasting insights + tips

One challenge we’re all facing right now is managing our workload — including live broadcasts! — while we do the right thing and stay home. For this broadcast, our on-screen talent were based in Washington, DC and London, while I was posted up in New York. That’s almost 4,000 miles between the three of us. If you’re collaborating with a similarly distributed workforce on a live streamed event, there are some key factors to consider:
  • Connectivity: Chances are your company’s office wifi is better than what you have at home. Check your speeds and, when possible, use a wired connection.
  • Capture: How will your audience enjoy your content? Think about what cameras and mics you’ll use, and how you’ll bring in remote guests to your virtual event.
  • Encode: What software will you use to bring your event into the internet ether? We’re keen on Livestream Studio 6, but there are other options out there, too.
  • Distribute: Where will your virtual event live? Think about whether you’ll want to secure the content (like with SSO), or spread far and wide (think simulcasting).
  • Engage: A beautiful viewing experience is only part of what makes a great virtual event. Audience engagement tools like live Q&A, polls, and chat can further create a memorable event.

Your virtual event questions, answered

The broadcast wraps up with plenty of questions from creators and businesses like yours, where we lend insight to help solve the challenges many are facing with quickly pivoting to a virtual event. I won’t spoil any of the expert tips shared, but I will say that Vimeo has plenty of ways we can support lots of different live streaming setups, and Ryan agrees. “Just about every single event can be taken online,” he says. “Vimeo and many other great solutions offer a way for you to do that, and to continue to engage with your audience even while social distancing like we all are right now.” We hope this broadcast gives you a better understanding of how to build a virtual event from scratch. And of course, we’re always here to support your live streaming success. Looking for even more tips to get started with live streaming? Download The Ultimate Guide to Live Streaming Events.

Get more expert advice for planning and hosting virtual events

(function() { var didInit = false; function initMunchkin() { if(didInit === false) { didInit = true; Munchkin.init('582-GOU-684'); } } var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//munchkin.marketo.net/munchkin-beta.js'; s.onreadystatechange = function() { if (this.readyState == 'complete' || this.readyState == 'loaded') { initMunchkin(); } }; s.onload = initMunchkin; document.getElementsByTagName('head')[0].appendChild(s); })(); /** * @preserve @author Sanford Whiteman, TEKNKL (blog.teknkl.com / admin@wtvid.com) @version v1.1.0 @copyright Copyright 2018, 2019, 2020 FigureOne, Inc. @license MIT License: You must include this license and the above credits in all uses & reproductions of this software. */ // ==ClosureCompiler== // @output_file_name teknkl-vimeobridge-1.1.0.js // @code_url https://codepen.io/figureone/pen/368b857389b418df790aecffa6a261fe.js // @compilation_level SIMPLE_OPTIMIZATIONS // @formatting pretty_print // ==/ClosureCompiler== /** @constructor */ (function() { var config = { webPagePseudoRoot: "/vimeovideotracking", eventPaths: { play: "play", pause: "pause", ended: "finish" } }; /* --- NO NEED TO TOUCH ANYTHING BELOW THIS LINE! --- */ var arrayify = getSelection.call.bind([].slice); var vimeoStor = "IFRAME[src^='https://player.vimeo.com/video/']", vimeoDOMObjects = document.querySelectorAll(vimeoStor); function normalize(eventData) { var transformOpts = { scale: { percent: 100 }, round: { seconds: 0 }, SCALE_NO_SCALE: 1, ROUND_2_DIGITS: 2 }; normData = {}; Object.keys(eventData).forEach(function(key) { var scaleFactor = transformOpts.scale[key] !== undefined ? transformOpts.scale[key] : transformOpts.SCALE_NO_SCALE, roundFactor = transformOpts.round[key] !== undefined ? transformOpts.round[key] : transformOpts.ROUND_2_DIGITS, prePadding = Math.round( eventData[key].toFixed(roundFactor) * scaleFactor ), padFactor = prePadding < 10 ? "0" : ""; // left-pad single digits for easier Marketo matching normData[key] = padFactor + prePadding; }); return normData; } arrayify(vimeoDOMObjects) .map(function(vimeoDOMObject) { return new Vimeo.Player(vimeoDOMObject); }) .forEach(function(vimeoPlayer) { vimeoPlayer.getVideoId().then(function(videoId) { ["play", "pause", "ended"].forEach(function(eventType) { vimeoPlayer.on(eventType, function(eventData) { var statsNormalized = normalize(eventData); var eventAsPath = [ config.webPagePseudoRoot, videoId, config.eventPaths[eventType] ].join("/"); var statsAsSearch = ["seconds", "percent"] .map(function(stat) { return [stat, statsNormalized[stat]].join("="); }) .join("&"); var munchkinPayload = { url: eventAsPath, params: statsAsSearch }; Munchkin.munchkinFunction("visitWebPage", munchkinPayload); }); }); }); }); })();
  1. Virtual Open Houses: How Realtors Use Live Streaming to Showcase Properties

  2. How to Stream Live on Facebook: Complete Step-by-Step Guide

  3. Master YouTube Live Streaming: Ultimate Guide for Remote Learning & Virtual Events

  4. Ultimate Guide: How to Live Stream Conferences Seamlessly

  5. Ultimate Guide: How to Write a Winning Event Proposal

Livestreaming
  1. Step-by-Step Guide: How to Create an Effective Marketing Plan

  2. Expert Guide: How to Easily Host Guests on Your Live Stream with Skype

  3. How to Host a Successful Virtual Conference in 2020: 3 Proven Strategies

  4. How to Live Stream Global Events: Essential Guide for Success

  5. Live Streaming for Beginners: Easy Step-by-Step Guide to Get Started

  6. 31 Proven Virtual Event Ideas to Boost Attendee Engagement

  7. Proven Guide: How to Host a Superior Virtual Conference

  8. Elevate Your Live Streams: Connect External Cameras for Pro Video Quality