Mopidy extension for radio.net
Install by running:
pip install Mopidy-RadioNet
Or, if available, install the Debian/Ubuntu package from apt.mopidy.com.
Before starting Mopidy, you must add configuration for Mopidy-RadioNet to your Mopidy configuration file:
[radionet] enabled = true language = pl # or net, de, at, fr, pt, es, dk, se, it min_bitrate = 96 api_key = valid_api_key favorite_stations = 'bbcradio1' 'bbcradio2' 'thetrip' 'nectarine'
enabled
determines whether the plugin is enabled. Disabling the plugin is a simple case of changing this to false and restarting Mopidy.language
determines the language of text information such as station descriptions. The following options are:net
- defaults to Englishat
- Austriande
- Germandk
- Danishes
- Spanishfr
- Frenchit
- Italianpl
- Polishpt
- Portuguesese
- Swedish
min_bitrate
sets the minimum desirable bitrate of streams. Typically higher bitrates mean better quality (or at least, that's the idea), but take up more bandwidth. If your stream of choice keeps halting, it might help to turn this down a little.favorite_stations
lets you define a list of your favorite stations for quick access. To add a station to the list, you need to add its slug, the part that comes after the domain name in the station's URL. As an example, BBC Radio 1 can be found atradio.net/s/bbcradio1
. Therefore, to add the station to your favourites, you would take the part after the final forward slash -bbcradio1
- and add that tofavorite_stations
- Migration to Python 3.7
- Initial release.