Configuring live streaming

If you have a high number of users that need to attend a meeting that does not require two-way interaction, you can live stream the conference to YouTube, and users can access the meeting using a YouTube URL.

Before you begin

A meeting recorder must be enabled on the Sametime Meeting server. If the meeting recorder doesn't exist, live streaming isn't available.

The YouTube channel must be verified. See YouTube Studio help for the details.

The YouTube Studio tool is required to create the live stream and obtain a streaming key. The stream name/key and YouTube Live URL are needed for the Sametime meeting.

Meeting moderator must have a YouTube publishing enabled account. It can take up to 24 hours for YouTube to enable this feature on an account.

About this task

Only meeting moderators can start the live stream. Meeting moderators are indicated with a small star on their participant tile.

In the context of YouTube live streaming, the Sametime Meeting server is considered an encoder for YouTube. There is no requirement to install additional software.

Disabling live stream is a server-wide setting; there is no user-based policy available to disable the feature. The live stream is disabled if you do not have a Sametime Meeting recorder.

Note: All commands provided require running as ROOT or SUDO access. If not running as root user, preface all commands with sudo.

Configuring live streaming in a Docker environment

Procedure

  1. Open the custom.env file for editing.
    vi custom.env 
  2. Add the following line to the file.
    REACT_APP_LIVE_STREAMING_ENABLED=false 
  3. Save the custom.env file.
  4. Restart the Sametime Meeting server. Refer to Starting and stopping Meeting servers for details.

Configuring live streaming in a Kubernetes environment

Procedure

  1. Open the helm/values.yaml file for editing.
    vi helm/values.yaml 
  2. Change the value for the enableLiveStreaming to false.
    enableLiveStreaming=false  
    
    
  3. Update the deployment.
    helm upgrade deployment helm/
  4. Restart the Sametime Meeting server. Refer to Starting and stopping Meeting servers for details.