Home

Awesome

roundtable.audio

roundtable.audio (formerly discourse.fm) is a web app for hosting live, moderator-decentralized audio chat rooms (or "roundtables"). These can be public or private to join or listen to, and host up to 100 participants.

Sources

While it's possible to start ad-hoc roundtables about anything, part of what differentiates roundtable.audio is integrating external sources to populate discussion topics. Currently, the only sources are:

Contributing

This codebase is far from a polished product, and it would be great to have others get involved - especially on the addition of more sources and the cultivation of their adoption. If you'd like to help/hack on any aspects of this project, send an email to info@roundtable.audio or open issues/pull requests in this repo. It would be greatly appreciated!

Code Overview

This repo is organized into a number of microservices running on Docker. For ease of understanding, it's simplest to just explain what the notable ones do.

webserver

Handles the serving of client code from an nginx proxied server. All of the frontend code can be found in the client-code directory. Take a look at some of the neat visualization modules in found in the js subdirectory!

nodejs

Controls the core management of roundtables, including authenticating user credentials (for private roundtables), passing of WebRTC credentials, chat control, and more. Essentially, it's the backend that controls everything <em>except</em> for the relaying of audio data.

kraken_listen_only

This is the core audio relaying service, which is an untracked clone of a feature I built on top of the Kraken SFU. The feature branch can be found here. This SFU uses a Golang implementation of WebRTC built by the Pion community. Many thanks to these open-source projects for the extraordinary work they've done in enabling new possibilities with WebRTC.

coturn

This is a simple implementation of the open-source coturn server. A TURN server is required for WebRTC signaling. While it's not strictly necessary to self-host one, it's probably the best and most reliable way to go.

songbird

Controls the Twitter bot which continuously listens for tweets sent to it containing the right keywords, creates new roundtables, and returns the links to the user.