Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
John Regan edited this page Aug 7, 2017 · 4 revisions

(Formerly known as Beam)

First, you'll need to register an app with Mixer and get the Client ID and Client Secret.

You can do this from the Developer Lab - click "OAuth Clients", and click the plus icon to register a new application.

In the "Hosts" field, you'll need to type in the hostname to your Multistreamer install, ie

example.com

Be sure to check the "Use secret key" box.

Once you've gotten your Client ID and Key, add them to the beam key of the networks table. You'll also want to add an ingest endpoint url with the ingest_server key - choose a server located near your server.

...
networks = {
  mixer = {
    client_id = 'client_id_goes_here',
    client_secret = 'client_secret_goes_here',
    ingest_server = 'rtmp://ingest-dal.mixer.com:1935/beam',
  },
},
...