Autizmo Movie Night https://movie-night.autizmo.xyz
Go to file
Zorchenhimer 1c6c23da3e Add /nick command
Using this command will change the current user's nickname in chat.
It has an alias of /name.

An admin can force a name change by supplying the current name and a new
name.  If a name has been changed by an admin, that user can no longer
change their name (similar to forced color change).

Resolves #42
2019-03-19 17:13:20 -04:00
common Add /nick command 2019-03-19 17:13:20 -04:00
static Fixed autocomplete and positioning of suggestions 2019-03-19 15:15:11 -04:00
wasm Add /nick command 2019-03-19 17:13:20 -04:00
.gitignore Add user badges 2019-03-16 18:11:27 -04:00
.travis.yml Update build scripts 2019-03-16 22:24:35 -04:00
chatclient.go Add /nick command 2019-03-19 17:13:20 -04:00
chatcommands.go Add /nick command 2019-03-19 17:13:20 -04:00
chatroom.go Add /nick command 2019-03-19 17:13:20 -04:00
connection.go Wrap connection reads and writes with a mutex 2019-03-16 13:44:18 -04:00
errors.go Add more information to error output 2019-03-15 18:57:12 -04:00
favicon.png Replace favicon with something else 2019-03-18 11:21:17 -04:00
handlers.go Replace favicon with something else 2019-03-18 11:21:17 -04:00
main.go Add user badges 2019-03-16 18:11:27 -04:00
Makefile Update build scripts 2019-03-16 22:24:35 -04:00
notes.txt
readme.md Add chat and video urls to readme 2019-03-17 02:01:13 -04:00
settings_example.json Add a limit to the title length 2019-03-16 21:06:16 -04:00
settings.go Add a limit to the title length 2019-03-16 21:06:16 -04:00

MovieNight stream server

Build status

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

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/

There is a video only version at

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

and a chat only version at

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

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")