Autizmo Movie Night https://movie-night.autizmo.xyz
Go to file
Zorchenhimer d0cd90e7af Properly implement the help popup
Move the help html to a template and populate the lists dynamically.
This also splits out the base HTML stuff (eg, the <html> and <body>
tags) to a base template file.
2019-03-16 16:15:55 -04:00
common Properly implement the help popup 2019-03-16 16:15:55 -04:00
static Properly implement the help popup 2019-03-16 16:15:55 -04:00
wasm Properly implement the help popup 2019-03-16 16:15:55 -04:00
.gitignore Converted to code to using webassembly 2019-03-11 23:15:42 -04:00
Makefile Move fmt before vet in Makefile 2019-03-16 13:42:17 -04:00
chatclient.go Fix the command response 2019-03-16 14:37:34 -04:00
chatcommands.go Properly implement the help popup 2019-03-16 16:15:55 -04:00
chatroom.go Move clients mutex lock in ChatRoom.Broadcast() 2019-03-16 14:09:58 -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
handlers.go Properly implement the help popup 2019-03-16 16:15:55 -04:00
main.go Properly implement the help popup 2019-03-16 16:15:55 -04:00
notes.txt Initial commit 2019-03-10 11:42:12 -04:00
readme.md Update readme to remove some incorrect info 2019-03-16 12:47:14 -04:00
settings.go Fix some linting errors with error messages 2019-03-14 15:19:36 -04:00
settings_example.json Update example settings file 2019-03-13 15:28:34 -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

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