Take control over your live stream video by running it yourself. Streaming + chat out of the box.
Find a file
2020-07-19 22:27:42 -07:00
.github/workflows Run the container in the background so Github actions does not get hung up 2020-07-14 18:22:07 -07:00
.vscode Add a launch.json to enable vscode debugging (#24) 2020-06-23 00:42:56 -07:00
config Remove IPFS. For #74 2020-07-19 21:15:53 -07:00
controllers Use the thumbnail for opengraph if online 2020-07-19 18:39:27 -07:00
core Remove IPFS. For #74 2020-07-19 21:15:53 -07:00
doc Remove IPFS. For #74 2020-07-19 21:15:53 -07:00
models Remove IPFS. For #74 2020-07-19 21:15:53 -07:00
router Make setting the web server port optional 2020-07-13 14:48:56 -07:00
scripts Strip debug symbols from binary. For #76 2020-07-19 19:04:49 -07:00
static Add favicon(s). Closes #75 2020-07-19 22:27:42 -07:00
test Add some simple load tests 2020-07-15 21:40:22 -07:00
utils Whoops. Missing file. Thanks automated build 2020-07-18 15:39:30 -07:00
webroot Add favicon(s). Closes #75 2020-07-19 22:27:42 -07:00
.gitignore Basic chat persistence for #26 2020-07-12 14:59:40 -07:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2020-07-08 17:08:28 -07:00
config-example.yaml Use higher quality logo in config 2020-07-15 16:24:54 -07:00
Dockerfile Update the dev dockerfile and build dockerfile to fix #60 2020-07-14 17:51:48 -07:00
go.mod Remove IPFS. For #74 2020-07-19 21:15:53 -07:00
go.sum Remove IPFS. For #74 2020-07-19 21:15:53 -07:00
LICENSE Create LICENSE 2020-07-08 17:07:09 -07:00
main.go Add support for specifying the path for chat db. Closes #61 2020-07-15 17:20:47 -07:00
README.md Remove IPFS. For #74 2020-07-19 21:15:53 -07:00


Logo

Take control over your content and stream it yourself.
Explore the docs »

View Demo · FAQ . Report Bug

Table of Contents

About The Project

In 2020 the world changed when everyone become stuck in their homes, looking for creative outlets to share their art, skills and themselves from inside their bedroom.

This created an explosion of live streaming on Facebook Live, YouTube Live, Instagram, and Twitch. These services provided everything they needed, an easy way to live stream to the world, and a chat for users to be a part of their community.

But in a world where many were previously finding ways to rely on the big internet service companies less, the 2020 COVID-19 pandemic made everyone run right back to them.

And as soon as people started streaming their DJ sets, movie watching parties, and themselves just sitting around listening to music the big companies came to mute their streams, remove their recordings or ban these users all together.

That's when I wanted a better option for people. Something you could run yourself and get all the functionality of these services, where you could live stream to an audience and and allow them to take part in the chat, just like they've been used to on all the other services. But instead of handing control over to somebody else, you run it. You won't get shut down, and you own it all, just like it should be.

I figured you can install Wordpress and self-host your blog, or install Megento and self-host your e-commerce site. You can install Icecast and have your own internet radio station. Spin up an instance of Mastodon and you have your own social media site that you control. You can even install Nextcloud and have your own personal productivity service replacing Dropbox and Google Docs. There's an open-source alternative to all the big services that you can run for almost everything, but I couldn't think of what the live video streaming equivalent was. There should be a independent, standalone Twitch in a Box.

Keep in mind that while streaming to the big social companies is always free, you pay for it with your identity and your data, as well as the identity and data of every person that tunes in. When you self-host anything you'll have to pay with your money instead. But running a self-hosted live stream server can be done for as cheap as $5/mo, and that's a much better deal than selling your soul to Facebook, Google or Amazon.


Prerequisites

  • A computer that's on the public internet to run it on. While crunching through video and serving it to viewers can be intensive from the computing side, you can get away with pretty meager resources on a simple setup. If you don't already have a server to run it on you can get a Linode instance for $5/mo that runs it fine. If you worry that you'll be maxing out the bandwidth or transfer limits allotted to you, then utilize S3 Storage very cheaply (or even free for a certain amount) to serve the files instead.

Getting Started

The goal is to have a single service that you can run and it works out of the box. Visit the Quickstart to get up and running.

Configuration

Many aspects can be adjusted and customized to your preferences. Read more about Configuration to update the web UI and video easily.

Use with your desktop software

Usage with OBS

OBS isn't required, but it's a pretty good piece of free software that will get you streaming from your own computer right away.

  1. Install OBS or Streamlabs OBS and get it working with your local setup.
  2. Open OBS Settings and go to "Stream".
  3. Select "Custom..." as the service.
  4. Enter the URL of the server running your streaming service in the format of rtmp://myserver.net/live.
  5. Enter your "Stream Key" that matches the key you put in your config.yaml file.
  6. Start the server.
  7. Press "Start Streaming" (OBS) or "Go Live" (Streamlabs) on OBS.

Usage with Restream

Read the detailed documentation for working with Restream

Video storage options

Three ways of storing and distributing the video are supported.

  1. Locally via the built-in web server.
  2. S3-compatible storage.

Local file distribution

This is the simplest and works out of the box. In this scenario video will be served to the public from the computer that is running the server. If you have a fast internet connection, enough bandwidth alotted to you, and a small audience this may be fine for many people.

S3-Compatible Storage

Enable S3 support in config.yaml and add your access credentials. Files will be distributed from a S3 bucket that you have created for this purpose. This is a good option for almost any case since S3 is cheap and you don't have to worry about your own bandwidth.

Please read the more detailed documentation about configuration of S3-Compatible Services.

Building from Source

  1. Ensure you have the gcc compiler configured.
  2. Install the Go toolchain.
  3. Clone the repo. git clone https://github.com/gabek/owncast
  4. Follow the above Getting Started instructions, making sure ffmpeg exists and your config file is set.
  5. go run main.go on the first run will download the required packages needed for the application to build.
  6. It will start running the same as in the above Usage instructions and you can point OBS to your localhost instance of it.

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Gabe Kangas - @gabek@mastodon.social - email gabek@real-ity.com

Project Link: https://github.com/gabek/owncast