WebRTC audio/video call and conferencing server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Simon Eisenmann bfd866a11e Make sure to build pdf js separatly. 10 years ago
build Make sure to build pdf js separatly. 10 years ago
debian 0.24.0 10 years ago
doc Added server side ApiVersion returned with self to distinguish client and server API version support. 10 years ago
html Serve odf and pdf sandbox from the server to prepare CSP http header for Firefox compatibility as Firefox does not support CSP in meta tag (see https://bugzilla.mozilla.org/show_bug.cgi?id=663570). 10 years ago
m4 Use autoconf macro to compare versions. 11 years ago
src Serve odf and pdf sandbox from the server to prepare CSP http header for Firefox compatibility as Firefox does not support CSP in meta tag (see https://bugzilla.mozilla.org/show_bug.cgi?id=663570). 10 years ago
static Serve odf and pdf sandbox from the server to prepare CSP http header for Firefox compatibility as Firefox does not support CSP in meta tag (see https://bugzilla.mozilla.org/show_bug.cgi?id=663570). 10 years ago
.gitignore Don't create config.h, it's not needed for a golang only project. 11 years ago
.gitmodules Get rid of submodule and directly added sleepy milestone1. 11 years ago
.hound.yml Point hound to correct config. 10 years ago
.javascript_ignore Ignore vendor javascripts in hound validation. 11 years ago
.jshint Merge branch 'release-0.23' 11 years ago
.travis.yml Also run "styleshint" and "jshint" on Travis. 10 years ago
AUTHORS Added Evan to AUTHORS. 11 years ago
COPYING Added autoconf/automake support. 11 years ago
ChangeLog Added autoconf/automake support. 11 years ago
Dockerfile The Dockerfile now even works. 11 years ago
LICENSE Initial public release. 12 years ago
Makefile.am Move sandbox code to own file, refactor common sandboxing code to service. 10 years ago
NEWS Added autoconf/automake support. 11 years ago
README Added autoconf/automake support. 11 years ago
README.md Minimal po2json version is 0.4.1 to support updated jed. 10 years ago
autogen.sh Added autoconf/automake support. 11 years ago
configure.ac Minimal po2json version is 0.4.1 to support updated jed. 10 years ago
package.json Update jed.js to 1.1.0 10 years ago
server.conf.in Merge pull request #206 from longsleep/renegotiation 10 years ago
spreed-webrtc-server Changed name of project to Spreed WebRTC. 11 years ago

README.md

Spreed WebRTC

Spreed WebRTC implements a WebRTC audio/video call and conferencing server and web client.

The latest version of Spreed WebRTC can be found on GitHub: https://github.com/strukturag/spreed-webrtc

Build prerequisites

Runtime dependencies

Spreed WebRTC compiles directly to native code and has no external runtime dependencies. See here for details.

Building

Build Status

If you got spreed-webrtc from the git repository, you will first need to run the included autogen.sh script to generate the configure script.

Configure does try to find all the tools on your system at the standard locations. If the dependencies are somewhere else, add the corresponding parameters to the ./configure call.

$ ./configure
$ make

Build seperately

There are several make targets available. Get Go external dependencies at least once with make get, all the other targets depend on this.

$ make get
$ make assets
$ make binary

Server startup

spreed-webrtc-server [OPTIONS]

Options

-c="./server.conf": Configuration file.
-cpuprofile="": Write cpu profile to file.
-h=false: Show this usage information and exit.
-l="": Log file, defaults to stderr.
-memprofile="": Write memory profile to this file.
-v=false: Display version number and exit.

An example configuration file can be found in server.conf.in.

Usage

Connect to the server URL and port with a web browser and the web client will launch.

Development

To build styles and translations, further dependencies are required. The source tree contains already built styles and translations, so these are only required if you want to make changes.

The following Node.js modules are required, these may be installed locally by running npm install from the project root. Consult the package.json file for more details.

Styles can be found in src/styles. Translations are found in src/i18n. Each folder has its own Makefile to build the corresponding files. Check the Makefile.am templates for available make targets.

Running server for development

Copy the server.conf.in to server.conf.

Build styles, javascript and binary using make. Then run ./spreed-webrtc-server

The server runs on http://localhost:8080/ per default.

HTML changes and Go rebuilds need a server restart. Javascript and CSS reload directly.

Running for production

Spreed WebRTC should be run through a SSL frontend proxy with support for Websockets. Example configuration for Nginx can be found in doc/NGINX.txt.

In addion for real world use, one also needs a STUN/TURN server configured (with shared secret support).

See https://code.google.com/p/rfc5766-turn-server/ for a free open source TURN server implementation. Make sure to use a recent version (We recommend 3.2). Versions below 2.5 are not supported.

Contributing

  1. "Fork" develop branch.
  2. Create a feature branch.
  3. Make changes.
  4. Do your commits (run make fmt and make jshint before commit).
  5. Send "pull request" for develop branch.

License

Spreed WebRTC uses the AGPL license, see our LICENSE file.