Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khrynczenko/radiostream
Simple, fast and light-weight internet radio player for Windows and Linux
https://github.com/khrynczenko/radiostream
bass bass-library c-plus-plus c-plus-plus-11 c-plus-plus-14 c-plus-plus-17 cmake cpp cpp11 cpp14 cpp17 nana nana-library player radio stream
Last synced: 12 days ago
JSON representation
Simple, fast and light-weight internet radio player for Windows and Linux
- Host: GitHub
- URL: https://github.com/khrynczenko/radiostream
- Owner: khrynczenko
- License: mit
- Created: 2017-05-24T18:56:34.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2022-11-08T20:55:43.000Z (about 2 years ago)
- Last Synced: 2023-10-20T20:58:36.178Z (about 1 year ago)
- Topics: bass, bass-library, c-plus-plus, c-plus-plus-11, c-plus-plus-14, c-plus-plus-17, cmake, cpp, cpp11, cpp14, cpp17, nana, nana-library, player, radio, stream
- Language: C++
- Homepage:
- Size: 633 KB
- Stars: 15
- Watchers: 5
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
![logo](/resources/icon.png?raw=true)
# RadioStream
---
Branches:
**develop** [![CMake](https://github.com/khrynczenko/RadioStream/actions/workflows/cmake.yml/badge.svg?branch=develop)](https://github.com/khrynczenko/RadioStream/actions/workflows/cmake.yml)**Please note that *RadioStream* is not being actively developed. I made it as a side project during my studies while my main focus was on learning new C++ related concepts.**
---
## Simple, fast and light-weight internet radio player for *Windows* and *Linux*.
Do not consider master branch to be stable release, for now it contains
the fundamental features in their basic form.
Latest tested release goes on the master branch, while develop branch
is used for creating new content before releasing.
You should branch from develop if you want to make changes.**You can download pre-built binaries [here](https://github.com/khrynczenko/RadioStream/releases).**
## How to build
### Requirements
- CMake 3.13+
- Compiler with C++17 support ( tested with gcc-8 / Visual Studio 15 2017)### Linux (Ubuntu)
The easiest way to build is using *CMake*. Make sure that CMake uses *g++-8* (or later) as a
C++ compiler.
Just open terminal in the project directory and run:`cmake`
Followed by:
`make`
Be sure to have all system dependencies installed. To be precise you should check *dockerfile* that is used to setup CI environment. It can be found in
root project directory in file `Dockerfile`. Roughly you need to have installed following packages.`apt-get install -y libx11-dev libfreetype6 libfreetype6-dev libxft-dev libxcursor-dev libssl-dev`
### Windows
Again the easiest way is to use *CMake*. Command below is for *Visual Studio 15 2017* but you can use any version that supports *C++17*.`cmake -G "Visual Studio 15 2017 Win64"`
You also need to have OpenSSL installed (for example with [choco](https://chocolatey.org/packages/openssl)).
and set *`OPENSSL_ROOT_DIR`* environment variable to its root directory.Then you can work directly with generated Visual Studio solution.
### Info when building for the first time
First time CMake is run the dependencies are going to be downloaded.
This may take some time depending on your connection. The first time you build
the project dependencies are also going to get build so it might also take quite
a while to finish. Consecutive builds should be much quicker.If you have any problems you should post an issue.
## Dependencies
nana https://github.com/cnjinhao/nana (fork)
BASS https://www.un4seen.com/
JSON for Modern C++ https://nlohmann.github.io/json/
POCO C++ Libraries https://pocoproject.org/index.html
clip https://github.com/dacap/clip
OpenSSL https://www.openssl.org/Screens:
![search_page](/static/search_page.png?raw=true)
![play_page](/static/play_page.png?raw=true)