Changes between Version 4 and Version 5 of restream


Ignore:
Timestamp:
Oct 27, 2016, 3:22:09 PM (9 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • restream

    v4 v5  
    44
    55Restream allows us to take a jitsi meeting and send the video and audio to our icecast servers, which are designed to handle hundreds of simultaneous connections.
     6
     7You can use restream to simply broadcast a jitsi meet video conference, or you can use it to setup a dedicated page on https://participate.mayfirst.org/ that incorporates both the icecast stream and the jitsi chat.
    68
    79This page documents how to use restream.
     
    1113== Setup ==
    1214
     15=== Just send to icecast ===
     16
    1317First, ensure you have joined the jitsi meeting using the browser you intend to use for your own participation. This step ensures you are granted moderator rights.
    1418
    15 Next, login to dee.mayfirst.org as root:
     19Login to dee.mayfirst.org as root:
    1620
    1721{{{
     
    1923}}}
    2024
    21 Next, launch the stream specifying the final part of the jitsi URL. In other words, if your jitsi meeting is at https://meet.mayfirst.org/mfpl, you would specify "mfpl" as the only argument, e.g.:
     25Launch the stream specifying the final part of the jitsi URL. In other words, if your jitsi meeting is at https://meet.mayfirst.org/mfpl, you would specify "mfpl" as the only argument, e.g.:
    2226
    2327{{{
     
    3337docker rm mfpl
    3438}}}
     39
     40=== The full deal ===
     41
     42If you want to create a special room for being to both watch the icecast stream and participate in the chat (and even present the agenda), you can use the `restream-setup` command.
     43
     44Specify the start time, stop time and the name like so:
     45
     46{{{
     47restream-setup now "1 hour" mymeeting
     48}}}
     49
     50Or...
     51
     52{{{
     53restream-setup "2016-02-12 09:00" "2016-02-12 11:00" checkin
     54}}}
     55
     56Then, `restream-setup` will output details about your meeting, including the URL to send people to watch (which will be `https://participate.mayfirst.org/<name>).
     57
     58A once a minute cron job takes care of starting and stopping your docker instance (that way we won't accidentally leave CPU hungry processes running).
    3559
    3660== How it works ==