Go to file
Alexandre Iooss c64506dc7c
Call pkger in docker build
2020-09-28 17:47:33 +02:00
auth 💚 Linting should not fail the CI 2020-09-27 21:31:35 +02:00
docs 🐳 Mounting folders is better than mounting files 2020-09-28 09:31:59 +02:00
internal/monitoring WebRTC session exchange working 2020-09-24 11:24:13 +02:00
stream More code for SRT handling 2020-09-28 16:32:35 +02:00
web Use pkger to pack templates 2020-09-28 17:36:40 +02:00
.gitignore Use pkger to pack templates 2020-09-28 17:36:40 +02:00
.gitlab-ci.yml 💚 Linting should not fail the CI 2020-09-27 21:31:35 +02:00
Dockerfile Call pkger in docker build 2020-09-28 17:47:33 +02:00
LICENSE License work under MIT 2020-09-25 15:26:33 +02:00
README.md Add instructions for Debian 2020-09-28 16:29:24 +02:00
go.mod Use pkger to pack templates 2020-09-28 17:36:40 +02:00
go.sum Use pkger to pack templates 2020-09-28 17:36:40 +02:00
main.go Use pkger to pack templates 2020-09-28 17:36:40 +02:00

README.md

Ghostream

License: MIT PkgGoDev Go Report Card pipeline status coverage report

Boooo! A simple streaming server with authentication and open-source technologies.

This project was developped at Cr@ns to stream events.

Features:

  • WebRTC playback with a lightweight web interface.
  • Low-latency streaming, sub-second with web player.
  • Authentification of incoming stream using LDAP server.

Installation on Debian/Ubuntu

You need at least libsrt 1.4.1. On Ubuntu 20.04 or Debian Buster, you may manually install libsrt1-openssl then libsrt-openssl-dev.

You may clone this repository, then go run main.go for debugging, or go get gitlab.crans.org/nounous/ghostream.

Installation with Docker

An example is given in docs/docker-compose.yml. It uses Traefik reverse proxy.

You can also launch the Docker image using,

docker build . -t ghostream
docker run -it --rm -p 8080:8080 -p 2112:2112 -p 9710:9710 ghostream

References