https://github.com/polaris/streaming
A prototypical streaming system with focus on synchronized playback on multiple receivers.
https://github.com/polaris/streaming
Last synced: 4 months ago
JSON representation
A prototypical streaming system with focus on synchronized playback on multiple receivers.
- Host: GitHub
- URL: https://github.com/polaris/streaming
- Owner: polaris
- License: bsd-3-clause
- Created: 2017-04-13T09:55:27.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-24T19:25:11.000Z (about 8 years ago)
- Last Synced: 2025-01-13T02:12:13.357Z (6 months ago)
- Language: C++
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# streaming
A prototypical streaming system with focus on synchronized playback on multiple receivers.
Compilation of the code requires a C++ compiler that supports the C++11 standard (e. g. GCC 4.9.2 or newer). The development packages of a few libraries have to be installed to compile the code:
- alsa-lib 1.0.28 or newer
- libsamplerate 0.1.8 or newer
- Boost 1.55 or newerThe necessary libraries are usually available for installation using the packet manager of a Linux distribution. On Linux distribution based on Debian or Ubuntu the libraries can be installed using the program `apt-get` as follows:
$ sudo apt-get install libasound2-dev
$ sudo apt-get install libsamplerate0-dev
$ sudo apt-get install libboost-devThe compilation is started by calling `make` on the command line. If a specific program has to be built `make sender` respective `make sender` can be used. Calling `make clean` removes previous build artifacts.