OpenOB 3.0 alpha2 documentation

Tutorial

«  Introduction   ::   Contents   ::   Configuring OpenOB  »

Tutorial

Getting started with OpenOB is easy - this guide will take you through setting up OpenOB on two computers next to each other on a simple network.

We assume for the purposes of this guide that the two computers are standard x86/64 desktops, and not SBCs like the Raspberry Pi etc. We also assume these machines are Debian based, though Ubuntu should work with this guide similarly.

OpenOB System Basics

OpenOB systems are made up of two or three computers. These are the transmitter, a receiver, and configuration server. Typically the configuration server is also installed on the receiver, but this is not always the case, and many OpenOB links (comprised of a transmitter and receiver pair) can share one configuration server.

Installing Prerequisites

OpenOB relies on the GStreamer media framework for the underlying audio transport elements.

Additionally, OpenOB needs some Python extensions, and on the configuration server, we must also install the Redis server used for configuration management.

On Debian you can install the prerequisites with the following command:

sudo apt-get install python-gst0.10 python-setuptools gstreamer0.10-plugins-base gstreamer0.10-plugins-bad gstreamer0.10-plugins-good gstreamer0.10-plugins-ugly gstreamer0.10-ffmpeg gstreamer0.10-tools python-gobject python-gobject-2 gstreamer0.10-alsa python-argparse

This should also work on Ubuntu. Your GStreamer implementation must be recent enough to support Opus; this is supported in Ubuntu 13.04 and Debian Wheezy or newer. In order to ensure compatibility, it is recommended that both ends of the link use the same version of GStreamer, which is most easily achieved by running the same operating system version on each end and installing the distribution’s packages as detailed above.

On one machine, which for this tutorial we’ll assume is also our receiver, we’ll install Redis:

[user@rx-host] $ sudo apt-get install redis-server

We also need to make sure Redis binds itself to be accessible to remote machines, not just localhost. You can edit /etc/redis/redis.conf yourself or run the following to instantly make this adjustment

[user@rx-host] $ sudo sed -i.bak ‘s/bind 127.*/bind 0.0.0.0/’ /etc/redis/redis.conf && sudo service redis restart

Installing OpenOB

Now we can install OpenOB itself. You can install from git for the bleeding edge, but package releases are tested and stable, and easily installed:

sudo easy_install OpenOB

Networking

Make sure you know the IP addresses of each machine and make sure there is no firewall between them. If there is a firewall in place, refer to Firewall Configuration to ensure it is configured properly.

Audio testing

You should plug in an audio source to the microphone input of your transmitter - I recommend a music player of some sort for testing - and some speakers or headphones to the output of your receiver. Make sure these work before you proceed.

Further Usage

OpenOB has many options on the command line. To find out about them, run openob -h, or openob your-config-host node-name link-name tx -h to find out about tx/rx specific options.

«  Introduction   ::   Contents   ::   Configuring OpenOB  »