Autizmo Movie Night https://movie-night.autizmo.xyz
Go to file
Zorchenhimer c0b6b3598c Update readme
Rewrote a bunch of the readme to reflect the current project instead of
the demo streaming server that the streaming code is based on.
2019-03-11 17:10:15 -04:00
static Write the /help command 2019-03-11 12:06:45 -04:00
.gitignore Add debug file to gitignore 2019-03-10 20:47:39 -04:00
Makefile Initial commit 2019-03-10 11:42:12 -04:00
chatclient.go Fix formatLinks() not working 2019-03-11 15:41:41 -04:00
chatcommands.go Write the /help command 2019-03-11 12:06:45 -04:00
chathandler.go Write the /help command 2019-03-11 12:06:45 -04:00
chatroom.go Initial commit 2019-03-10 11:42:12 -04:00
main.go Rework stream key parsing 2019-03-11 17:09:12 -04:00
notes.txt Initial commit 2019-03-10 11:42:12 -04:00
readme.md Update readme 2019-03-11 17:10:15 -04:00
settings.go Initial commit 2019-03-10 11:42:12 -04:00
settings.json Initial commit 2019-03-10 11:42:12 -04:00

readme.md

MovieNight stream server

This is a single-instance streaming server with chat. Originally written to replace Rabbit as the platform for watching movies with a group of people online.

Build requirements

  • Go 1.12 or newer
  • GNU Make

Install

To just download and run:

go get -u -v github.com/zorchenhimer/MovieNight

MovieNight  -l :8089 -k longSecurityKey

To download and compile for development:

git clone github.com/zorchenhimer/MovieNight
cd MovieNight
make
./MovieNight -l :8089 -k longSecurityKey

Usage

Now you can use OBS to push a stream to the server. Set the stream URL to

rtmp://your.domain.host/live

and enter the stream key.

Now you can view the stream at

http://your.domain.host:8089/

The default listen port is :8089. It can be changed by providing a new port at startup:

Usage of .\MovieNight.exe:
  -k string
        Stream key, to protect your stream
  -l string
        host:port of the MovieNight (default ":8089")