diff --git a/.github/ISSUE_TEMPLATE/add-webradio.yml b/.github/ISSUE_TEMPLATE/add-webradio.yml index 776d3459..de8ab6fb 100644 --- a/.github/ISSUE_TEMPLATE/add-webradio.yml +++ b/.github/ISSUE_TEMPLATE/add-webradio.yml @@ -50,10 +50,10 @@ body: validations: required: true - type: input - id: state + id: region attributes: - label: State - description: The state or region, e.g. Bayern. + label: Region + description: The region, e.g. Bayern. validations: required: false - type: input diff --git a/.github/ISSUE_TEMPLATE/modify-webradio.yml b/.github/ISSUE_TEMPLATE/modify-webradio.yml index 1d0180cd..8a0dca7a 100644 --- a/.github/ISSUE_TEMPLATE/modify-webradio.yml +++ b/.github/ISSUE_TEMPLATE/modify-webradio.yml @@ -68,10 +68,10 @@ body: validations: required: false - type: input - id: state + id: region attributes: - label: New state - description: The state or region, e.g. Bayern. + label: New region + description: The region, e.g. Bayern. validations: required: false - type: input diff --git a/README.md b/README.md index ee482a10..cc3eb3e0 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,7 @@ Webradios are saved as extended m3u files with some custom fields. A coverimage #HOMEPAGE: #COUNTRY: #STATE: +#Region: #LANGUAGE: #DESCRIPTION: #CODEC: @@ -104,7 +105,8 @@ The final files are located in the `docs/db` folder, it is rebuild daily. The fo | [bitrates.min.json](https://jcorporation.github.io/webradiodb/db/index/bitrates.min.json) | Array of bitrates | | [codecs.min.json](https://jcorporation.github.io/webradiodb/db/index/codecs.min.json) | Array of codecs | | [countries.min.json](https://jcorporation.github.io/webradiodb/db/index/countries.min.json) | Array of countries | -| [states.min.json](https://jcorporation.github.io/webradiodb/db/index/states.min.json) | Object of countries and linked states | +| [states.min.json](https://jcorporation.github.io/webradiodb/db/index/states.min.json) | Object of countries and linked states. Deprecated, use regions. | +| [regions.min.json](https://jcorporation.github.io/webradiodb/db/index/regions.min.json) | Object of countries and linked regions | | [genres.min.json](https://jcorporation.github.io/webradiodb/db/index/genres.min.json) | Array of genres | | [languages.min.json](https://jcorporation.github.io/webradiodb/db/index/languages.min.json) | Array of languages | | [status.min.json](https://jcorporation.github.io/webradiodb/db/index/status.min.json) | Array of failed stream checks | @@ -122,6 +124,7 @@ The m3u fields are mapped for better readability. | HOMEPAGE | Homepage | String | | COUNTRY | Country | String | | STATE | State | String | +| REGION | Region | String | | LANGUAGE | Language | String | | LANGUAGE | Languages | Array | | CODEC | Codec | Array | @@ -140,6 +143,7 @@ The m3u fields are mapped for better readability. "Homepage": "https://www.swr.de/swr1/", "Country": "Germany", "State": "Baden-Württemberg", + "Region": "Baden-Württemberg", "Language": "German", "Languages": [ "German" diff --git a/build.sh b/build.sh index 5f019fbf..8a58e257 100755 --- a/build.sh +++ b/build.sh @@ -22,6 +22,7 @@ STATUSFILE="${PUBLISH_DIR}/index/status.min.json" LANGFILE="${PUBLISH_DIR}/index/languages.min.json" COUNTRYFILE="${PUBLISH_DIR}/index/countries.min.json" STATEFILE="${PUBLISH_DIR}/index/states.min.json" +REGIONFILE="${PUBLISH_DIR}/index/regions.min.json" GENREFILE="${PUBLISH_DIR}/index/genres.min.json" CODECFILE="${PUBLISH_DIR}/index/codecs.min.json" BITRATEFILE="${PUBLISH_DIR}/index/bitrates.min.json" @@ -153,7 +154,7 @@ resize_image() { return 0 } -# Normalizes GENRE, CODEC, COUNTRY, STATE, LANGUAGE in all m3u's in specified folder +# Normalizes GENRE, CODEC, COUNTRY, REGION, LANGUAGE in all m3u's in specified folder normalize_fields() { local DIR=$1 local F @@ -217,6 +218,17 @@ normalize_fields() { echo "$F: $STATE -> $STATE_UPPER" sed -i -e "s/^#STATE:.*/#STATE:$STATE_UPPER/" "$F" fi + # region + local REGION="" + REGION=$(get_m3u_field "$F" "REGION") + local REGION_UPPER + REGION_UPPER=$(ucwords "$REGION") + REGION_UPPER=$(trim "$REGION_UPPER") + if [ "$REGION" != "$REGION_UPPER" ] + then + echo "$F: $REGION -> $REGION_UPPER" + sed -i -e "s/^#REGION:.*/#REGION:$REGION_UPPER/" "$F" + fi # language local LANGUAGE_LINE="" LANGUAGE_LINE=$(get_m3u_field "$F" "LANGUAGE") @@ -323,6 +335,7 @@ sync_moode() { #HOMEPAGE:$HOMEPAGE #COUNTRY:$COUNTRY #STATE: +#REGION: #LANGUAGE:$LANGUAGE #DESCRIPTION: #CODEC:$CODEC @@ -365,6 +378,7 @@ add_radio() { #HOMEPAGE: #COUNTRY: #STATE: +#REGION: #LANGUAGE: #DESCRIPTION: #CODEC: @@ -394,8 +408,8 @@ add_radio_from_json() { HOMEPAGE=$(jq -r ".homepage" < "$INPUT" | head -1 | tr -d '\n') local COUNTRY COUNTRY=$(jq -r ".country" < "$INPUT" | head -1 | tr -d '\n') - local STATE - STATE=$(jq -r ".state" < "$INPUT" | head -1 | tr -d '\n') + local REGION + REGION=$(jq -r ".region" < "$INPUT" | head -1 | tr -d '\n') local LANGUAGE LANGUAGE=$(jq -r ".language" < "$INPUT" | head -1 | tr -d '\n') local DESCRIPTION @@ -440,7 +454,8 @@ add_radio_from_json() { #EXTIMG:$IMAGE #HOMEPAGE:$HOMEPAGE #COUNTRY:$COUNTRY -#STATE:$STATE +#STATE:$REGION +#REGION:$REGION #LANGUAGE:$LANGUAGE #DESCRIPTION:$DESCRIPTION #CODEC:$CODEC @@ -486,8 +501,8 @@ modify_radio_from_json() { NEW_HOMEPAGE=$(jq -r ".homepage" < "$INPUT" | head -1 | tr -d '\n') local NEW_COUNTRY NEW_COUNTRY=$(jq -r ".country" < "$INPUT" | head -1 | tr -d '\n') - local NEW_STATE - NEW_STATE=$(jq -r ".state" < "$INPUT" | head -1 | tr -d '\n') + local NEW_REGION + NEW_REGION=$(jq -r ".region" < "$INPUT" | head -1 | tr -d '\n') local NEW_LANGUAGE NEW_LANGUAGE=$(jq -r ".language" < "$INPUT" | head -1 | tr -d '\n') local NEW_DESCRIPTION @@ -514,8 +529,8 @@ modify_radio_from_json() { OLD_HOMEPAGE=$(get_m3u_field "${MYMPD_PLS_DIR}/${MODIFY_PLIST}.m3u" "HOMEPAGE") local OLD_COUNTRY OLD_COUNTRY=$(get_m3u_field "${MYMPD_PLS_DIR}/${MODIFY_PLIST}.m3u" "COUNTRY") - local OLD_STATE - OLD_STATE=$(get_m3u_field "${MYMPD_PLS_DIR}/${MODIFY_PLIST}.m3u" "STATE") + local OLD_REGION + OLD_REGION=$(get_m3u_field "${MYMPD_PLS_DIR}/${MODIFY_PLIST}.m3u" "REGION") local OLD_LANGUAGE OLD_LANGUAGE=$(get_m3u_field "${MYMPD_PLS_DIR}/${MODIFY_PLIST}.m3u" "LANGUAGE") local OLD_DESCRIPTION @@ -572,7 +587,7 @@ modify_radio_from_json() { [ -z "$NEW_GENRE" ] && NEW_GENRE="$OLD_GENRE" [ -z "$NEW_HOMEPAGE" ] && NEW_HOMEPAGE="$OLD_HOMEPAGE" [ -z "$NEW_COUNTRY" ] && NEW_COUNTRY="$OLD_COUNTRY" - [ -z "$NEW_STATE" ] && NEW_STATE="$OLD_STATE" + [ -z "$NEW_REGION" ] && NEW_REGION="$OLD_REGION" [ -z "$NEW_LANGUAGE" ] && NEW_LANGUAGE="$OLD_LANGUAGE" [ -z "$NEW_DESCRIPTION" ] && NEW_DESCRIPTION="$OLD_DESCRIPTION" [ -z "$NEW_CODEC" ] && NEW_CODEC="$OLD_CODEC" @@ -586,7 +601,8 @@ modify_radio_from_json() { #EXTIMG:$NEW_IMAGE #HOMEPAGE:$NEW_HOMEPAGE #COUNTRY:$NEW_COUNTRY -#STATE:$NEW_STATE +#STATE:$NEW_REGION +#REGION:$NEW_REGION #LANGUAGE:$NEW_LANGUAGE #DESCRIPTION:$NEW_DESCRIPTION #CODEC:$NEW_CODEC @@ -892,7 +908,7 @@ create_index() { COUNTRIES_COUNT=$(jq -r '.[]' "$COUNTRYFILE.tmp" | wc -l) echo "${COUNTRIES_COUNT} countries in index" - # states + # regions local COUNTRY local I=0 { @@ -900,18 +916,19 @@ create_index() { while read -r COUNTRY do [ "$I" -eq 0 ] || printf ',' - local STATES="" - STATES=$(jq -r ".[] | select(.Country == \"$COUNTRY\") | select(.State != \"\") | .State" "${INDEXFILE}.tmp" | \ + local REGIONS="" + REGIONS=$(jq -r ".[] | select(.Country == \"$COUNTRY\") | select(.Region != \"\") | .Region" "${INDEXFILE}.tmp" | \ sort -u | jq -R -s -c 'split("\n") | .[0:-1]' | tr -d '\n') - [ -z "$STATES" ] && STATES="[]" - printf '"%s":%s' "$COUNTRY" "$STATES" + [ -z "$REGIONS" ] && REGIONS="[]" + printf '"%s":%s' "$COUNTRY" "$REGIONS" I=$((I+1)) done < <(jq -r '.[].Country' "${INDEXFILE}.tmp" | sort -u) printf "}" - } > "$STATEFILE.tmp" - local STATES_COUNT - STATES_COUNT=$(jq -r '.[] | select(.State != "") | .State' "$INDEXFILE.tmp" | wc -l) - echo "${STATES_COUNT} states in index" + } > "$REGIONFILE.tmp" + cp "$REGIONFILE.tmp" "$STATEFILE.tmp" + local REGIONS_COUNT + REGIONS_COUNT=$(jq -r '.[] | select(.Region != "") | .Region' "$INDEXFILE.tmp" | wc -l) + echo "${REGIONS_COUNT} regions in index" # genres jq -r '.[] | .Genre | .[]' "${INDEXFILE}.tmp" | sort -u | \ @@ -949,7 +966,11 @@ create_index() { printf "\"webradioStates\":" >> "${INDEXFILE_COMBINED}.tmp" tr -d '\n' < "${STATEFILE}.tmp" >> "${INDEXFILE_COMBINED}.tmp" - printf ",\"totalwebradioStates\":%s," "$STATES_COUNT" >> "${INDEXFILE_COMBINED}.tmp" + printf ",\"totalwebradioStates\":%s," "$REGIONS_COUNT" >> "${INDEXFILE_COMBINED}.tmp" + + printf "\"webradioRegions\":" >> "${INDEXFILE_COMBINED}.tmp" + tr -d '\n' < "${REGIONFILE}.tmp" >> "${INDEXFILE_COMBINED}.tmp" + printf ",\"totalwebradioRegions\":%s," "$REGIONS_COUNT" >> "${INDEXFILE_COMBINED}.tmp" printf "\"webradioCodecs\":" >> "${INDEXFILE_COMBINED}.tmp" tr -d '\n' < "${CODECFILE}.tmp" >> "${INDEXFILE_COMBINED}.tmp" @@ -977,6 +998,7 @@ create_index() { move_compress_changed "$LANGFILE" && CHANGED=1 move_compress_changed "$COUNTRYFILE" && CHANGED=1 move_compress_changed "$STATEFILE" && CHANGED=1 + move_compress_changed "$REGIONFILE" && CHANGED=1 move_compress_changed "$GENREFILE" && CHANGED=1 move_compress_changed "$CODECFILE" && CHANGED=1 move_compress_changed "$BITRATEFILE" && CHANGED=1 diff --git a/docs/assets/js/radiodb.js b/docs/assets/js/radiodb.js index bb00f042..ed024e1e 100644 --- a/docs/assets/js/radiodb.js +++ b/docs/assets/js/radiodb.js @@ -13,7 +13,7 @@ const issueDeleteAlternate = '?labels=DeleteAlternateStream&template=delete-alte const searchInput = document.getElementById('searchStr'); const genreSelect = document.getElementById('genres'); const countrySelect = document.getElementById('countries'); -const stateSelect = document.getElementById('states'); +const regionSelect = document.getElementById('regions'); const languageSelect = document.getElementById('languages'); const codecSelect = document.getElementById('codecs'); const bitrateSelect = document.getElementById('bitrates'); @@ -54,12 +54,12 @@ function populateSelect(el, options) { } } -function populateStates() { - stateSelect.options.length = 0; - appendOpt(stateSelect, '', 'State'); +function populateRegions() { + regionSelect.options.length = 0; + appendOpt(regionSelect, '', 'Region'); const country = getSelectValue(countrySelect); if (country !== '') { - populateSelect(stateSelect, webradiodb.webradioStates[country]); + populateSelect(regionSelect, webradiodb.webradioRegions[country]); } } @@ -82,7 +82,7 @@ searchInput.addEventListener('keyup', function(event) { }, false); countrySelect.addEventListener('change', function() { - populateStates(); + populateRegions(); }, false); document.getElementById('searchBtn').addEventListener('click', function() { @@ -105,7 +105,7 @@ function returnStreamError(m3u) { return p; } -function search(name, genre, country, state, language, codec, bitrate, sort, offset, limit, error) { +function search(name, genre, country, region, language, codec, bitrate, sort, offset, limit, error) { name = name.toLowerCase(); const obj = { "result": { @@ -119,7 +119,7 @@ function search(name, genre, country, state, language, codec, bitrate, sort, off if (webradiodb.webradios[key].Name.toLowerCase().indexOf(name) > -1 && (genre === '' || webradiodb.webradios[key].Genre.includes(genre)) && (country === '' || country === webradiodb.webradios[key].Country) && - (state === '' || state === webradiodb.webradios[key].State) && + (region === '' || region === webradiodb.webradios[key].Region) && (language === '' || webradiodb.webradios[key].Languages.includes(language)) && (codec === '' || webradiodb.webradios[key].allCodecs.includes(codec)) && (bitrate === 0 || bitrate <= webradiodb.webradios[key].highestBitrate) @@ -186,7 +186,7 @@ function showSearchResult(offset, limit, error) { searchInput.value = ''; genreSelect.selectedIndex = 0; countrySelect.selectedIndex = 0; - stateSelect.selectedIndex = 0; + regionSelect.selectedIndex = 0; languageSelect.selectedIndex = 0; codecSelect.selectedIndex = 0; bitrateSelect.selectedIndex = 0; @@ -196,7 +196,7 @@ function showSearchResult(offset, limit, error) { const searchstr = searchInput.value.toLowerCase(); const genreFilter = getSelectValue(genreSelect); const countryFilter = getSelectValue(countrySelect); - const stateFilter = getSelectValue(stateSelect); + const regionFilter = getSelectValue(regionSelect); const languageFilter = getSelectValue(languageSelect); const codecFilter = getSelectValue(codecSelect); const bitrateFilter = getSelectValue(bitrateSelect); @@ -206,7 +206,7 @@ function showSearchResult(offset, limit, error) { resultEl.textContent = ''; } - const obj = search(searchstr, genreFilter, countryFilter, stateFilter, languageFilter, codecFilter, bitrateFilter, sort, offset, limit, error); + const obj = search(searchstr, genreFilter, countryFilter, regionFilter, languageFilter, codecFilter, bitrateFilter, sort, offset, limit, error); document.getElementById('resultCount').textContent = obj.result.totalEntities; for (const key in obj.result.data) { const div = document.createElement('div'); @@ -243,9 +243,9 @@ function showSearchResult(offset, limit, error) { div.getElementsByTagName('img')[0].src = pic; div.getElementsByClassName('genre')[0].textContent = obj.result.data[key].Genre.join(', '); div.getElementsByClassName('country')[0].textContent = obj.result.data[key].Country + - (obj.result.data[key].State === '' + (obj.result.data[key].Region === '' ? '' - : ' / ' + obj.result.data[key].State); + : ' / ' + obj.result.data[key].Region); div.getElementsByClassName('language')[0].textContent = obj.result.data[key].Languages.join(', '); let format = obj.result.data[key].Codec; if (format !== '' && obj.result.data[key].Bitrate !== '') { @@ -304,6 +304,7 @@ function showSearchResult(offset, limit, error) { '&homepage=' + encodeURIComponent(obj.result.data[key].Homepage) + '&image=' + encodeURIComponent(obj.result.data[key].Image) + '&country=' + encodeURIComponent(obj.result.data[key].Country) + + '®ion=' + encodeURIComponent(obj.result.data[key].Region) + '&language=' + encodeURIComponent(obj.result.data[key].Language) + '&codec=' + encodeURIComponent(obj.result.data[key].Codec) + '&bitrate=' + encodeURIComponent(obj.result.data[key].Bitrate) + diff --git a/docs/db/index/countries.min.json b/docs/db/index/countries.min.json index dc29098f..1ce3f981 100644 --- a/docs/db/index/countries.min.json +++ b/docs/db/index/countries.min.json @@ -1 +1 @@ -["Argentina","Australia","Austria","Bahamas","Belgium","Bermuda","Bolivia","Brazil","Canada","Chile","China","Colombia","Costa Rica","Cuba","Czech Republic","Denmark","Estonia","France","Germany","Ghana","Greece","Hungary","India","Israel","Italy","Japan","Korea, Democratic People's Republic Of","Kyrgyzstan","Lithuania","Luxembourg","Malaysia","Netherlands","New Zealand","Nigeria","Poland","Portugal","Republica Dominicana","Russia","Spain","Sweden","Switzerland","Syria","The Netherlands","USA","Ukraine","United Kingdom","United States","Vietnam","Wales"] +["Argentina","Australia","Austria","Bahamas","Belgium","Bermuda","Bolivia","Brazil","Canada","Chile","China","Colombia","Costa Rica","Cuba","Czech Republic","Denmark","Estonia","France","Germany","Ghana","Greece","Hungary","India","Israel","Italy","Japan","Korea, Democratic People's Republic Of","Kyrgyzstan","Lithuania","Luxembourg","Malaysia","Netherlands","New Zealand","Nigeria","Poland","Portugal","Republica Dominicana","Russia","Spain","Sweden","Switzerland","Syria","The Netherlands","Ukraine","United Kingdom","United States","USA","Vietnam","Wales"] diff --git a/docs/db/index/countries.min.json.gz b/docs/db/index/countries.min.json.gz index 1dd0e244..a6b98215 100644 Binary files a/docs/db/index/countries.min.json.gz and b/docs/db/index/countries.min.json.gz differ diff --git a/docs/db/index/genres.min.json b/docs/db/index/genres.min.json index c7811853..a039589e 100644 --- a/docs/db/index/genres.min.json +++ b/docs/db/index/genres.min.json @@ -1 +1 @@ -["2000's","60's","70's","80's","90's","Acoustic","Adult","Adult Contemporary","AfroHouse","AfroJazz","Afrobeat","Ambient","Americana Roots Music","Anime","Anime Groove","Archive","Atmospheric","Atmospheric Texture","Avantgarde","Bachelor Pad","Baladas","Baroque","Bass","Bebop","Bhangra","Big Band","Black Metal","Blues","Bollywood","Bop","Bossanova","Brazilian Music","Breakbeat","Britpop","Cajun","Canada","Carnatic","Catholic","Celtic","Charts","Children","Chill Out","City Pop","Classic Hits","Classic Rock","Classical","Classical Music","Club","College Radio","Combos","Commercial","Community","Community Radio","Contemporary","Contemporary Jazz","Cool Jazz","Corse","Country","Cover Songs","Culture","Cumbia","Current Affairs","DJ Mixes","Dance","Dancehall","Debate","Deep","Deep Ambient","Deep Bass","Deep House","Deep Tech","Deportes","Desi-Influenced Asian","Digitally Affected Analog Rock","Disco","Discussion","Down-Tempo","Drum'n'Bass","Dub","Dubstep","Easy Listening","Easy-Tempo","Eclectic","Education","Educational","Eighties","Electro-Acoustic","Electro-Pop","Electronic","Entertainment","Entretenimiento","Entrevistas","Ethnic","Evergreens","Exotica","Experimental","Fado","Fight","Flashback","Flim","Folk","Folklore","Football","Free Jazz","Freeform","Funk","Fusion","Future Funk","Future Soul","Game","Garage","Garage Rock","General","German Rap","Golden Oldies","Gospel","Gothic","Grime","Groove","Hard Bop","Hard Drums","Hard Rock","Hard Trance","Hardcore","Heavy Metal","Hebrew Pop","Hip-Hop","House","IDM","Independent","Independent Music","Indian Classical","Indian Instrumental","Indie","Indie Folk","Indie Pop","Indie Rock","Indigenous","Industrial","Information","Instrumental","Instrumental Hiphop","International","Interviews","J-pop","J-rock","Jazz","Jeebanmukhi","Journalism","Juke","Jungle","Jungle Trap","Kids","Laidback","Latin","Latin Hits","Latino","Liquid Trap","Lithuanian","Live","Lo-Fi","Local News","Lokageeti","Lounge","Lullabies","MPB","Mainstream","Mainstream Jazz","Mashup","Math Rock","Mediaeval","Mediaset","Meditation","Mellow Rock","Mellow Vocals Mostly Female","Merengue","Metal","Metalcore","Mid-Tempo","Mild Pop","Minimal","Minimal Beats","Modern","Modern Big Band","Modern Rock","Montreal","Mp3","Musica Cristiana","Música Latina","Neo-Soul","New Age","New Country","New Jazz","New Wave","News","News Talk","News. MPB","Non-commercial","Non-profit","Noticias","Noticiero","Notícias","Nu Disco","Nu Grooves","Nu Metal","OST","Oldies","Oldschool","Opera","Pagode","Paranormal","Party","Past Time Favorites","Past Time Favs","Patriotic","Political Talk","Politics","Pop","Pop Rock","Pop-Rock","Post Punk","Post-Metal","Post-Punk","Post-Rock","Post-bop","Progressive","Progressive House","Progressive Rock","Progressive Trance","Psy","Psych Rock","Psytrance","Public Radio","Punk","R'n'B","Rabindrasangeet","Radio Universitaria","Rap","Rave","Reggae","Regional","Releases","Renaissance","Requests","Rock","Rockabilly","Rocksteady Classic","Romantique","Romántico","Roots Music","Roots Reggae","Salsa","Samba","Schlager Music","Scifi","Sertanejo","Shoegaze","Ska","Smooth Jazz","Smooth Lounge","Soccer","Soft Rock","Soul","Soundscape","Soundtrack","Southern Rock","Space Music","Special Events","Spiritual","Spoken Word","Sport","Straight-ahead","Student Radio","Synth-Pop","Talk","Tamil Movie Songs","Tamil Radio","Tech Trance","Techno","Tiki","Top 40","Top Hits","Trance","Trancestep","Trip-Hop","Tropical/Urbana","Tv News","Uk Funky","Underground","University","University Radio","Uplifting Trance","Urbain","Urbana","Vaporwave","Variedades","Variety","Various","Vintage Music","Vocal","Vocal Trance","Walm","Weather","World Music","World News","Yoga","Youth"] +["2000's","60's","70's","80's","90's","Acoustic","Adult","Adult Contemporary","Afrobeat","AfroHouse","AfroJazz","Ambient","Americana Roots Music","Anime","Anime Groove","Archive","Atmospheric","Atmospheric Texture","Avantgarde","Bachelor Pad","Baladas","Baroque","Bass","Bebop","Bhangra","Big Band","Black Metal","Blues","Bollywood","Bop","Bossanova","Brazilian Music","Breakbeat","Britpop","Cajun","Canada","Carnatic","Catholic","Celtic","Charts","Children","Chill Out","City Pop","Classical","Classical Music","Classic Hits","Classic Rock","Club","College Radio","Combos","Commercial","Community","Community Radio","Contemporary","Contemporary Jazz","Cool Jazz","Corse","Country","Cover Songs","Culture","Cumbia","Current Affairs","Dance","Dancehall","Debate","Deep","Deep Ambient","Deep Bass","Deep House","Deep Tech","Deportes","Desi-Influenced Asian","Digitally Affected Analog Rock","Disco","Discussion","DJ Mixes","Down-Tempo","Drum'n'Bass","Dub","Dubstep","Easy Listening","Easy-Tempo","Eclectic","Education","Educational","Eighties","Electro-Acoustic","Electronic","Electro-Pop","Entertainment","Entretenimiento","Entrevistas","Ethnic","Evergreens","Exotica","Experimental","Fado","Fight","Flashback","Flim","Folk","Folklore","Football","Freeform","Free Jazz","Funk","Fusion","Future Funk","Future Soul","Game","Garage","Garage Rock","General","German Rap","Golden Oldies","Gospel","Gothic","Grime","Groove","Hard Bop","Hardcore","Hard Drums","Hard Rock","Hard Trance","Heavy Metal","Hebrew Pop","Hip-Hop","House","IDM","Independent","Independent Music","Indian Classical","Indian Instrumental","Indie","Indie Folk","Indie Pop","Indie Rock","Indigenous","Industrial","Information","Instrumental","Instrumental Hiphop","International","Interviews","Jazz","Jeebanmukhi","Journalism","J-pop","J-rock","Juke","Jungle","Jungle Trap","Kids","Laidback","Latin","Latin Hits","Latino","Liquid Trap","Lithuanian","Live","Local News","Lo-Fi","Lokageeti","Lounge","Lullabies","Mainstream","Mainstream Jazz","Mashup","Math Rock","Mediaeval","Mediaset","Meditation","Mellow Rock","Mellow Vocals Mostly Female","Merengue","Metal","Metalcore","Mid-Tempo","Mild Pop","Minimal","Minimal Beats","Modern","Modern Big Band","Modern Rock","Montreal","Mp3","MPB","Musica Cristiana","Música Latina","Neo-Soul","New Age","New Country","New Jazz","News","News. MPB","News Talk","New Wave","Non-commercial","Non-profit","Noticias","Notícias","Noticiero","Nu Disco","Nu Grooves","Nu Metal","Oldies","Oldschool","Opera","OST","Pagode","Paranormal","Party","Past Time Favorites","Past Time Favs","Patriotic","Political Talk","Politics","Pop","Pop Rock","Pop-Rock","Post-bop","Post-Metal","Post Punk","Post-Punk","Post-Rock","Progressive","Progressive House","Progressive Rock","Progressive Trance","Psy","Psych Rock","Psytrance","Public Radio","Punk","Rabindrasangeet","Radio Universitaria","Rap","Rave","Reggae","Regional","Releases","Renaissance","Requests","R'n'B","Rock","Rockabilly","Rocksteady Classic","Romántico","Romantique","Roots Music","Roots Reggae","Salsa","Samba","Schlager Music","Scifi","Sertanejo","Shoegaze","Ska","Smooth Jazz","Smooth Lounge","Soccer","Soft Rock","Soul","Soundscape","Soundtrack","Southern Rock","Space Music","Special Events","Spiritual","Spoken Word","Sport","Straight-ahead","Student Radio","Synth-Pop","Talk","Tamil Movie Songs","Tamil Radio","Techno","Tech Trance","Tiki","Top 40","Top Hits","Trance","Trancestep","Trip-Hop","Tropical/Urbana","Tv News","Uk Funky","Underground","University","University Radio","Uplifting Trance","Urbain","Urbana","Vaporwave","Variedades","Variety","Various","Vintage Music","Vocal","Vocal Trance","Walm","Weather","World Music","World News","Yoga","Youth"] diff --git a/docs/db/index/genres.min.json.gz b/docs/db/index/genres.min.json.gz index cf2296cb..ed8eb7ef 100644 Binary files a/docs/db/index/genres.min.json.gz and b/docs/db/index/genres.min.json.gz differ diff --git a/docs/db/index/regions.min.json b/docs/db/index/regions.min.json new file mode 100644 index 00000000..51b3afbb --- /dev/null +++ b/docs/db/index/regions.min.json @@ -0,0 +1 @@ +{"Argentina":[],"Australia":["null"],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":["null"],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","null","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":["null"],"Denmark":["null"],"Estonia":["Tallinn"],"France":["Corse","null"],"Germany":["Baden-Württemberg","Bayern","Hesse","null"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":["null"],"New Zealand":["Dunedin","null"],"Nigeria":[],"Poland":["null"],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":["null"],"Syria":[],"The Netherlands":[],"Ukraine":[],"United Kingdom":["null"],"United States":["North Carolina","null","Ohio"],"USA":["Michigan"],"Vietnam":["Ho Chi Minh City"],"Wales":[]} \ No newline at end of file diff --git a/docs/db/index/regions.min.json.gz b/docs/db/index/regions.min.json.gz new file mode 100644 index 00000000..d4b551c9 Binary files /dev/null and b/docs/db/index/regions.min.json.gz differ diff --git a/docs/db/index/states.min.json b/docs/db/index/states.min.json index e059d053..51b3afbb 100644 --- a/docs/db/index/states.min.json +++ b/docs/db/index/states.min.json @@ -1 +1 @@ -{"Argentina":[],"Australia":[],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":[],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":[],"Denmark":[],"Estonia":["Tallinn"],"France":["Corse"],"Germany":["Baden-Württemberg","Bayern","Hesse"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":[],"New Zealand":["Dunedin"],"Nigeria":[],"Poland":[],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":[],"Syria":[],"The Netherlands":[],"USA":["Michigan"],"Ukraine":[],"United Kingdom":[],"United States":["North Carolina","Ohio"],"Vietnam":["Ho Chi Minh City"],"Wales":[]} \ No newline at end of file +{"Argentina":[],"Australia":["null"],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":["null"],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","null","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":["null"],"Denmark":["null"],"Estonia":["Tallinn"],"France":["Corse","null"],"Germany":["Baden-Württemberg","Bayern","Hesse","null"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":["null"],"New Zealand":["Dunedin","null"],"Nigeria":[],"Poland":["null"],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":["null"],"Syria":[],"The Netherlands":[],"Ukraine":[],"United Kingdom":["null"],"United States":["North Carolina","null","Ohio"],"USA":["Michigan"],"Vietnam":["Ho Chi Minh City"],"Wales":[]} \ No newline at end of file diff --git a/docs/db/index/states.min.json.gz b/docs/db/index/states.min.json.gz index ac776df3..1d2c2f77 100644 Binary files a/docs/db/index/states.min.json.gz and b/docs/db/index/states.min.json.gz differ diff --git a/docs/db/index/webradiodb-combined.min.js b/docs/db/index/webradiodb-combined.min.js index 2973ca93..6baabdd0 100644 --- a/docs/db/index/webradiodb-combined.min.js +++ b/docs/db/index/webradiodb-combined.min.js @@ -1 +1 @@ -const webradiodb={"timestamp":1720239940,"webradios":{"http___158_69_74_203_80_.m3u":{"Genre":["Jazz","Funk","Soul","World Music","Latin","Lounge","Nu Grooves"],"Name":"SwissGroove","Image":"http___158_69_74_203_80_.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://158.69.74.203:80/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u":{"Genre":["Rock","Lokageeti","Rabindrasangeet","Jeebanmukhi"],"Name":"Radio Bangla Net","Image":"http___18163_live_streamtheworld_com_SP_R3563475_SC.webp","Homepage":"https://radiobanglanet.com/","Country":"India","State":"","Languages":["Bengali"],"Language":"Bengali","Description":"A Radio Station for all Bengalis","Codec":"AAC","Bitrate":64,"StreamUri":"http://18163.live.streamtheworld.com/SP_R3563475_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___200_128_65_57_8000_live.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UESC","Image":"http___200_128_65_57_8000_live.webp","Homepage":"http://radio.uesc.br/3.html","Country":"Brazil","State":"Bahia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Inovação, conhecimento e música de qualidade!","Codec":"MPEG","Bitrate":128,"StreamUri":"http://200.128.65.57:8000/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___200_129_35_230_8081_aovivo_ogg_m3u.m3u":{"Genre":["MPB","News","Educational"],"Name":"Universitária FM","Image":"http___200_129_35_230_8081_aovivo_ogg_m3u.webp","Homepage":"http://www.radiouniversitariafm.com.br/","Country":"Brazil","State":"Ceará","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://200.129.35.230:8081/aovivo.ogg.m3u","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___200_136_219_172_8000_radioufscar96_mp3.m3u":{"Genre":["News","Various"],"Name":"Rádio UFSCar 95.3 FM","Image":"http___200_136_219_172_8000_radioufscar96_mp3.webp","Homepage":"http://radio.ufscar.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFSCar - Escute Diferente","Codec":"MP3","Bitrate":128,"StreamUri":"http://200.136.219.172:8000/radioufscar96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___206_189_117_157_8000_stream.m3u":{"Genre":["Electronic","Grime","Hip-Hop","House"],"Name":"Rinse FM","Image":"http___206_189_117_157_8000_stream.webp","Homepage":"https://rinse.fm/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC+","Bitrate":128,"StreamUri":"http://206.189.117.157:8000/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[128],"highestBitrate":128},"http___217_20_116_68_32032_stream.m3u":{"Genre":["International"],"Name":"Sohos FM 88.7","Image":"http___217_20_116_68_32032_stream.webp","Homepage":"http://sohosfm.gr/","Country":"Greece","State":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://217.20.116.68:32032/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___54_173_171_80_8000_6forty.m3u":{"Genre":["Indie","Post-Rock","Post-Metal","Modern","Experimental"],"Name":"6forty Radio","Image":"http___54_173_171_80_8000_6forty.webp","Homepage":"http://www.6fortyradio.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"a home for interesting music","Codec":"MP3","Bitrate":192,"StreamUri":"http://54.173.171.80:8000/6forty","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___5_135_183_124_8073_stream.m3u":{"Genre":["Dance","Pop","Latino","Rock","House","Techno"],"Name":"Onda Torrente Radio","Image":"http___5_135_183_124_8073_stream.webp","Homepage":"https://www.ondatorrenteradio.com","Country":"Spain","State":"Valencia","Languages":["Spanish"],"Language":"Spanish","Description":"Somos la radio de todo el mundo","Codec":"MP3","Bitrate":128,"StreamUri":"http://5.135.183.124:8073/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___7878_go2stream_fr_8000_stream.m3u":{"Genre":["Corse"],"Name":"Radio Balagne","Image":"http___7878_go2stream_fr_8000_stream.webp","Homepage":"http://www.radiobalagne.com/","Country":"France","State":"Corse","Languages":["Corse","Francais"],"Language":"Corse, Francais","Description":"A voce insulana","Codec":"MPEG","Bitrate":128,"StreamUri":"http://7878.go2stream.fr:8000/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___79_120_39_202_8002_mathrock.m3u":{"Genre":["Math Rock"],"Name":"Caprice Radio Math Rock","Image":"http___79_120_39_202_8002_mathrock.webp","Homepage":"http://radcap.ru/mathrock.html","Country":"Russia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"http://79.120.39.202:8002/mathrock","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___81_92_238_33_80.m3u":{"Genre":["Pop","Charts"],"Name":"Eldoradio","Image":"http___81_92_238_33_80.webp","Homepage":"","Country":"Luxembourg","State":"","Languages":["Luxembourgish"],"Language":"Luxembourgish","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://81.92.238.33:80","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___82_135_234_195_8000_goldfm_mp3.m3u":{"Genre":["Adult Contemporary","Rock"],"Name":"Gold FM","Image":"http___82_135_234_195_8000_goldfm_mp3.webp","Homepage":"https://goldfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/goldfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Kaunas)","Image":"http___82_135_234_195_8000_kelyje_kaunas_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_kaunas.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Klaipėda, Vilnius)","Image":"http___82_135_234_195_8000_kelyje_klaipeda_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_klaipeda.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u":{"Genre":["Community","Indie","Experimental","Pop","Rock","Techno"],"Name":"L'Eko des Garrigues","Image":"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.webp","Homepage":"http://www.ekodesgarrigues.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"OGG","Bitrate":320,"StreamUri":"http://91.121.159.124:8000/eko-des-garrigues-256k.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[320],"highestBitrate":320},"http___91_218_212_67_8000_stream.m3u":{"Genre":["Spoken Word"],"Name":"Hromadske Radio","Image":"http___91_218_212_67_8000_stream.webp","Homepage":"https://hromadske.radio/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine Talk","Codec":"MP3","Bitrate":160,"StreamUri":"http://91.218.212.67:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u":{"Genre":["Various"],"Name":"BBC World Service","Image":"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_world_service","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___antena1_newradio_it_stream_ext__mp3.m3u":{"Genre":["Adult Contemporary","Jazz","Pop","Smooth Jazz"],"Name":"Antena 1 São Paulo, SP (ZYD823 94,7 MHz FM)","Image":"http___antena1_newradio_it_stream_ext__mp3.webp","Homepage":"http://antena1.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"ANTENA1 - 94 7 FM","Codec":"AAC+","Bitrate":64,"StreamUri":"http://antena1.newradio.it/stream?ext=.mp3","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Hip-Hop","R'n'B","Soul","Gospel","Electronic"],"Name":"BBC Radio 1Xtra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/1xtra","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Indie","Rock","Funk"],"Name":"BBC Radio 6 Music","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_6music/bbc_6music.isml/bbc_6music-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Contemporary","Bollywood","Bhangra","Pop","Urbain"],"Name":"BBC Asian Network","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_asian_network/bbc_asian_network.isml/bbc_asian_network-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio Cymru","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru","Country":"Wales","State":"","Languages":["Welsh"],"Language":"Welsh","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_cymru/bbc_radio_cymru.isml/bbc_radio_cymru-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u":{"Genre":["News","Discussion","Sport","Interviews"],"Name":"BBC Radio 5 Live","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/programmes/b0070hx6","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"The latest sport with coverage and debate, featuring commentaries on the big games and sporting events.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_five_live/bbc_radio_five_live.isml/bbc_radio_five_live-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Archive"],"Name":"BBC Radio 4 Extra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4extra","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_four_extra/bbc_radio_four_extra.isml/bbc_radio_four_extra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourfm/bbc_radio_fourfm.isml/bbc_radio_fourfm-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4 LW","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"Longwave broadcast of BBC Radio 4.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourlw/bbc_radio_fourlw.isml/bbc_radio_fourlw-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Charts"],"Name":"BBC Radio 1","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Dance"],"Name":"BBC Radio 1 Dance","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1dance","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"A mix of classic, current and future dance music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Meditation"],"Name":"BBC Radio 1 Relax","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1relax","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"A mix of relaxing and meditating music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Classical","Jazz","World Music"],"Name":"BBC Radio 3","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio 2","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_two/bbc_radio_two.isml/bbc_radio_two-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___audio1_ideastream_org_wclv_mp3.m3u":{"Genre":["Classical"],"Name":"WCLV Cleveland 104.9 - Classical","Image":"http___audio1_ideastream_org_wclv_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://audio1.ideastream.org/wclv.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___centova_rockhost_com_8001_stream.m3u":{"Genre":["Ethnic","Eclectic"],"Name":"Hollow Earth Radio","Image":"http___centova_rockhost_com_8001_stream.webp","Homepage":"https://www.hollowearthradio.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Non-commercial DIY radio station for underrepresented music, sounds and perspectives","Codec":"MP3","Bitrate":128,"StreamUri":"http://centova.rockhost.com:8001/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u":{"Genre":["Indie Rock"],"Name":"WEQX 102.7 Manchester, VT","Image":"http___crystalout_surfernetwork_com_8001_WEQX_MP3.webp","Homepage":"http://www.weqx.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The real alternative","Codec":"MP3","Bitrate":128,"StreamUri":"http://crystalout.surfernetwork.com:8001/WEQX_MP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___current_stream_publicradio_org_kcmp_mp3.m3u":{"Genre":["Indie"],"Name":"KCMP 89.3 FM - The Current","Image":"http___current_stream_publicradio_org_kcmp_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://current.stream.publicradio.org/kcmp.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___dancewave_online_dance_mp3.m3u":{"Genre":["Dance","House","Trance"],"Name":"Dance Wave!","Image":"http___dancewave_online_dance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Languages":["English"],"Language":"English","Description":"All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet!","Codec":"MP3","Bitrate":128,"StreamUri":"http://dancewave.online/dance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_fipradio_fr_live_fip-midfi_mp3.m3u":{"Genre":["Classical","Jazz","Rock","World Music"],"Name":"France Inter Paris (FIP)","Image":"http___direct_fipradio_fr_live_fip-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.fipradio.fr/live/fip-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_franceculture_fr_live_franceculture-midfi_mp3.m3u":{"Genre":["Spoken Word","Current Affairs"],"Name":"France Culture Live","Image":"http___direct_franceculture_fr_live_franceculture-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.franceculture.fr/live/franceculture-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusique-midfi_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"France Musique Live","Image":"http___direct_francemusique_fr_live_francemusique-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusique-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.m3u":{"Genre":["Classical"],"Name":"France Musique Classique Plus","Image":"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiqueclassiqueplus-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.m3u":{"Genre":["Contemporary"],"Name":"France Musique La Contemporaine","Image":"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelacontemporaine-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.m3u":{"Genre":["Jazz"],"Name":"France Musique La Jazz","Image":"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelajazz-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___eagle_streemlion_com_4040_stream_icy_http.m3u":{"Genre":["Progressive Rock"],"Name":"Prog Frog","Image":"http___eagle_streemlion_com_4040_stream_icy_http.webp","Homepage":"https://prog-frog.com/","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"Progressive Rock Radio Worldwide","Codec":"MP3","Bitrate":128,"StreamUri":"http://eagle.streemlion.com:4040/stream?icy=http","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u":{"Genre":["Jazz","Blues","Soul"],"Name":"Jazz FM","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.webp","Homepage":"https://planetradio.co.uk/jazz-fm/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"Listen in Colour","Codec":"AAC","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/jazzhigh.aac?aw_0_1st.skey=1650998937","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.m3u":{"Genre":["Classical","News","Classical","Requests"],"Name":"Scala Radio","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/scalahigh.aac?aw_0_1st.skey=1650896299","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u":{"Genre":["Metal"],"Name":"La Grosse Radio Métal","Image":"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/metal/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u":{"Genre":["Reggae"],"Name":"La Grosse Radio Reggae","Image":"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/reggae/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-reggae-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u":{"Genre":["Rock"],"Name":"La Grosse Radio Rock","Image":"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/rock/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced!","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_stream_frequence3_net_frequence3_flac.m3u":{"Genre":["Pop","Charts"],"Name":"frequence3","Image":"http___hd_stream_frequence3_net_frequence3_flac.webp","Homepage":"https://www.frequence3.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"FLAC","Bitrate":0,"StreamUri":"http://hd.stream.frequence3.net/frequence3.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[0],"highestBitrate":0},"http___hirschmilch_de_7000_electronic_mp3.m3u":{"Genre":["Electronic"],"Name":"Hirschmilch Electronic","Image":"http___hirschmilch_de_7000_electronic_mp3.webp","Homepage":"https://hirschmilch.de/","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7.","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/electronic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_prog-house_mp3.m3u":{"Genre":["Progressive House"],"Name":"Hirschmilch Prog-House","Image":"http___hirschmilch_de_7000_prog-house_mp3.webp","Homepage":"https://hirschmilch.de/prog-house","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Progressive House on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/prog-house.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_psytrance_mp3.m3u":{"Genre":["Psytrance"],"Name":"Hirschmilch Psytrance","Image":"http___hirschmilch_de_7000_psytrance_mp3.webp","Homepage":"https://hirschmilch.de/psytrance","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Psytrance on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/psytrance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_techno_mp3.m3u":{"Genre":["Techno"],"Name":"Hirschmilch Techno","Image":"http___hirschmilch_de_7000_techno_mp3.webp","Homepage":"https://hirschmilch.de/techno","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Techno on https://hirschmilch.de","Codec":"MP3","Bitrate":123,"StreamUri":"http://hirschmilch.de:7000/techno.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[123],"highestBitrate":123},"http___ice-1_streamhoster_com_lv_wqed--893.m3u":{"Genre":["Classical"],"Name":"WQED Pittsburgh 89.3 - Classical","Image":"http___ice-1_streamhoster_com_lv_wqed--893.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice-1.streamhoster.com/lv_wqed--893","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_7soul-128-aac.m3u":{"Genre":["Soul","Vintage Music"],"Name":"Soma FM - Seven Inch Soul","Image":"http___ice1_somafm_com_7soul-128-aac.webp","Homepage":"https://somafm.com/7soul/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Vintage soul tracks from the original 45 RPM vinyl.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/7soul-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_beatblender-128-aac.m3u":{"Genre":["Electronic","Deep House","Down-Tempo"],"Name":"Soma FM - Beat Blender","Image":"http___ice1_somafm_com_beatblender-128-aac.webp","Homepage":"https://somafm.com/beatblender/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A late night blend of deep-house and downtempo chill.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/beatblender-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_bootliquor-128-aac.m3u":{"Genre":["Country","Americana Roots Music"],"Name":"Soma FM - Boot Liquor","Image":"http___ice1_somafm_com_bootliquor-128-aac.webp","Homepage":"https://somafm.com/bootliquor/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Americana Roots music for Cowhands, Cowpokes and Cowtippers.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/bootliquor-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_brfm-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - Black Rock FM","Image":"http___ice1_somafm_com_brfm-128-aac.webp","Homepage":"https://somafm.com/brfm/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"From the Playa to the world, for the annual Burning Man festival.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/brfm-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-128-aac.m3u":{"Genre":["Electronic","IDM"],"Name":"Soma FM - cliqhop idm","Image":"http___ice1_somafm_com_cliqhop-128-aac.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/cliqhop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-256-mp3.m3u":{"Genre":["IDM"],"Name":"cliqhop idm - SomaFM","Image":"http___ice1_somafm_com_cliqhop-256-mp3.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"MP3","Bitrate":256,"StreamUri":"http://ice1.somafm.com/cliqhop-256-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ice1_somafm_com_covers-128-mp3.m3u":{"Genre":["Pop","Cover Songs"],"Name":"Soma FM - Covers","Image":"http___ice1_somafm_com_covers-128-mp3.webp","Homepage":"https://somafm.com/covers/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Just covers. Songs you know by artists you don't. We've got you covered.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice1.somafm.com/covers-128-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_deepspaceone-128-aac.m3u":{"Genre":["Electronic","Ambient","Experimental","Space Music"],"Name":"Soma FM - Deep Space One","Image":"http___ice1_somafm_com_deepspaceone-128-aac.webp","Homepage":"https://somafm.com/deepspaceone/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Deep ambient electronic, experimental and space music. For inner and outer space exploration.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/deepspaceone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_defcon-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - DEF CON Radio","Image":"http___ice1_somafm_com_defcon-128-aac.webp","Homepage":"https://somafm.com/defcon/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Music for Hacking. The DEF CON Year-Round Channel.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/defcon-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_digitalis-128-aac.m3u":{"Genre":["Rock","Digitally Affected Analog Rock"],"Name":"Soma FM - Digitalis","Image":"http___ice1_somafm_com_digitalis-128-aac.webp","Homepage":"https://somafm.com/digitalis/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Digitally affected analog rock to calm the agitated heart.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/digitalis-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dronezone-128-aac.m3u":{"Genre":["Electronic","Ambient","Atmospheric Texture","Minimal Beats"],"Name":"Soma FM - Drone Zone","Image":"http___ice1_somafm_com_dronezone-128-aac.webp","Homepage":"https://somafm.com/dronezone/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Served best chilled, safe with most medications. Atmospheric textures with minimal beats.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dronezone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dubstep-128-aac.m3u":{"Genre":["Dub","Dubstep","Deep Bass"],"Name":"Soma FM - Dub Step Beyond","Image":"http___ice1_somafm_com_dubstep-128-aac.webp","Homepage":"https://somafm.com/dubstep/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Dubstep, Dub and Deep Bass. May damage speakers at high volume.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dubstep-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_fluid-128-aac.m3u":{"Genre":["Electronic","Instrumental Hiphop","Future Soul","Liquid Trap"],"Name":"Soma FM - Fluid","Image":"http___ice1_somafm_com_fluid-128-aac.webp","Homepage":"https://somafm.com/fluid/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Drown in the electronic sound of instrumental hiphop, future soul and liquid trap.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/fluid-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_folkfwd-128-aac.m3u":{"Genre":["Folk","Indie Folk"],"Name":"Soma FM - Folk Forward","Image":"http___ice1_somafm_com_folkfwd-128-aac.webp","Homepage":"https://somafm.com/folkfwd/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Indie Folk, Alt-folk and the occasional folk classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/folkfwd-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_groovesalad-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo"],"Name":"Soma FM - Groove Salad","Image":"http___ice1_somafm_com_groovesalad-128-aac.webp","Homepage":"https://somafm.com/groovesalad/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A nicely chilled plate of ambient/downtempo beats and grooves.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/groovesalad-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_illstreet-128-aac.m3u":{"Genre":["Lounge","Bachelor Pad","Exotica","Vintage Music"],"Name":"Soma FM - Illinois Street Lounge","Image":"http___ice1_somafm_com_illstreet-128-aac.webp","Homepage":"https://somafm.com/illstreet/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Classic bachelor pad, playful exotica and vintage music of tomorrow.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/illstreet-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_indiepop-128-aac.m3u":{"Genre":["Pop","Indie Pop"],"Name":"Soma FM - Indie Pop Rocks!","Image":"http___ice1_somafm_com_indiepop-128-aac.webp","Homepage":"https://somafm.com/indiepop/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"New and classic favorite indie pop tracks.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/indiepop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_live-128-aac.m3u":{"Genre":["Electronic","Live","Special Events"],"Name":"Soma FM - Live","Image":"http___ice1_somafm_com_live-128-aac.webp","Homepage":"https://somafm.com/live/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Special Live Events and rebroadcasts of past live events.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/live-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_lush-128-aac.m3u":{"Genre":["Electronic","Mellow Vocals Mostly Female"],"Name":"Soma FM - Lush","Image":"http___ice1_somafm_com_lush-128-aac.webp","Homepage":"https://somafm.com/lush/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Sensuous and mellow female vocals, many with an electronic influence.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/lush-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_metal-128-aac.m3u":{"Genre":["Metal"],"Name":"Soma FM - Metal Detector","Image":"http___ice1_somafm_com_metal-128-aac.webp","Homepage":"https://somafm.com/metal/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/metal-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_missioncontrol-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - Mission Control","Image":"http___ice1_somafm_com_missioncontrol-128-aac.webp","Homepage":"https://somafm.com/missioncontrol/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Celebrating NASA and Space Explorers everywhere.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/missioncontrol-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_poptron-128-aac.m3u":{"Genre":["Pop","Electro-Pop","Indie Rock"],"Name":"Soma FM - PopTron","Image":"http___ice1_somafm_com_poptron-128-aac.webp","Homepage":"https://somafm.com/poptron/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Electropop and indie dance rock with sparkle and pop.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/poptron-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_secretagent-128-aac.m3u":{"Genre":["Pop","Easy-Tempo","60's"],"Name":"Soma FM - Secret Agent","Image":"http___ice1_somafm_com_secretagent-128-aac.webp","Homepage":"https://somafm.com/secretagent/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/secretagent-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_seventies-128-aac.m3u":{"Genre":["Rock","70's","Mellow Rock"],"Name":"Soma FM - Left Coast 70s","Image":"http___ice1_somafm_com_seventies-128-aac.webp","Homepage":"https://somafm.com/seventies/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Mellow album rock from the Seventies. Yacht not required.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/seventies-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sf1033-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - SF 10-33","Image":"http___ice1_somafm_com_sf1033-128-aac.webp","Homepage":"https://somafm.com/sf1033/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Ambient music mixed with the sounds of San Francisco public safety radio traffic.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sf1033-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sonicuniverse-128-aac.m3u":{"Genre":["Jazz","Avantgarde"],"Name":"Soma FM - Sonic Universe","Image":"http___ice1_somafm_com_sonicuniverse-128-aac.webp","Homepage":"https://somafm.com/sonicuniverse/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Transcending the world of jazz with eclectic, avant-garde takes on tradition.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sonicuniverse-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_spacestation-128-aac.m3u":{"Genre":["Electronic","Mid-Tempo"],"Name":"Soma FM - Space Station Soma","Image":"http___ice1_somafm_com_spacestation-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/spacestation-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_suburbsofgoa-128-aac.m3u":{"Genre":["World Music","Desi-Influenced Asian","World Music"],"Name":"Soma FM - Suburbs of Goa","Image":"http___ice1_somafm_com_suburbsofgoa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/suburbsofgoa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thetrip-128-aac.m3u":{"Genre":["Pop","Progressive House","Trance"],"Name":"Soma FM - The Trip","Image":"http___ice1_somafm_com_thetrip-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thetrip-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thistle-128-aac.m3u":{"Genre":["Folk","Celtic","Roots Music"],"Name":"Soma FM - ThistleRadio","Image":"http___ice1_somafm_com_thistle-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thistle-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_u80s-128-aac.m3u":{"Genre":["Pop","80's","Synth-Pop","New Wave"],"Name":"Soma FM - Underground 80s","Image":"http___ice1_somafm_com_u80s-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/u80s-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice2_somafm_com_gsclassic-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo","2000's"],"Name":"Soma FM - Groove Salad Classic","Image":"http___ice2_somafm_com_gsclassic-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice2.somafm.com/gsclassic-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice4_somafm_com_reggae-128-aac.m3u":{"Genre":["Reggae","Ska","Rocksteady Classic","Deep"],"Name":"Soma FM - Heavyweight Reggae","Image":"http___ice4_somafm_com_reggae-128-aac.webp","Homepage":"https://somafm.com/reggae/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice4.somafm.com/reggae-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice5_securenetsystems_net_KCSM.m3u":{"Genre":["Jazz"],"Name":"KCSM","Image":"http___ice5_securenetsystems_net_KCSM.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://ice5.securenetsystems.net/KCSM","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___ice_bassdrive_net_80_stream.m3u":{"Genre":["Drum'n'Bass"],"Name":"Bassdrive Radio","Image":"http___ice_bassdrive_net_80_stream.webp","Homepage":"https://www.bassdrive.com/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice.bassdrive.net:80/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u":{"Genre":["Rock"],"Name":"SuperStereo 1","Image":"http___icecast_centaury_cl_7570_SuperStereoHiRes1.webp","Homepage":"https://www.hiresaudio.online/superstereo-1/","Country":"Chile","State":"","Languages":["English"],"Language":"English","Description":"YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’","Codec":"OGG","Bitrate":48,"StreamUri":"http://icecast.centaury.cl:7570/SuperStereoHiRes1","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[48],"highestBitrate":48},"http___icecast_err_ee_80_raadio4korge_mp3.m3u":{"Genre":["News","Pop","Jazz","Classical"],"Name":"Raadio 4","Image":"http___icecast_err_ee_80_raadio4korge_mp3.webp","Homepage":"https://r4.err.ee/","Country":"Estonia","State":"Tallinn","Languages":["Russian"],"Language":"Russian","Description":"Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia","Codec":"MP3","Bitrate":320,"StreamUri":"http://icecast.err.ee:80/raadio4korge.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___icecast_omroep_nl_radio1-bb-aac.m3u":{"Genre":["News"],"Name":"NPO Radio 1","Image":"http___icecast_omroep_nl_radio1-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio1-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio2-bb-aac.m3u":{"Genre":["Pop","Dance","Oldies","Rock"],"Name":"NPO Radio 2","Image":"http___icecast_omroep_nl_radio2-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio2-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio4-bb-aac.m3u":{"Genre":["Classical"],"Name":"NPO Radio 4","Image":"http___icecast_omroep_nl_radio4-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio4-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_unitedradio_it_Virgin_mp3.m3u":{"Genre":["Mediaset","Pop Rock"],"Name":"Virgin Radio Italia","Image":"http___icecast_unitedradio_it_Virgin_mp3.webp","Homepage":"http://www.virginradio.it/","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.unitedradio.it/Virgin.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klara-high_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"VRT - Klara","Image":"http___icecast_vrtcdn_be_klara-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klara-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u":{"Genre":["Classical"],"Name":"VRT - Klara Continuo","Image":"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klaracontinuo-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm-high_mp3.m3u":{"Genre":["Pop"],"Name":"VRT - MNM","Image":"http___icecast_vrtcdn_be_mnm-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"VRT - MNM Hits","Image":"http___icecast_vrtcdn_be_mnm_hits-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm_hits-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u":{"Genre":["Eclectic"],"Name":"VRT - Radio 2","Image":"http___icecast_vrtcdn_be_ra2vlb-high_mp3.webp","Homepage":"https://radio2.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/ra2vlb-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio1-high_mp3.m3u":{"Genre":["Pop","Contemporary","Rock","News"],"Name":"VRT - Radio 1","Image":"http___icecast_vrtcdn_be_radio1-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio1-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Unwind","Image":"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-unwind","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio2_unwind-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru-high_mp3.m3u":{"Genre":["Indie"],"Name":"VRT - StuBru - Studio Brussels","Image":"http___icecast_vrtcdn_be_stubru-high_mp3.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u":{"Genre":["Pop","Rock"],"Name":"VRT Studio Brussel De Tijdloze","Image":"http___icecast_vrtcdn_be_stubru_tijdloze_aac.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru_tijdloze.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginHardRock_mp3.m3u":{"Genre":["Hard Rock","Mediaset"],"Name":"Virgin Radio Hard Rock","Image":"http___icy_unitedradio_it_VirginHardRock_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginHardRock.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginRockClassics_mp3.m3u":{"Genre":["Classic Rock","Mediaset"],"Name":"Virgin Radio Classic Rock","Image":"http___icy_unitedradio_it_VirginRockClassics_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginRockClassics.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___kdhx-ice_streamguys1_com_80_live.m3u":{"Genre":["Indie"],"Name":"KDHX 88.1 FM St. Louis","Image":"http___kdhx-ice_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://kdhx-ice.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___kuvo-ice_streamguys_org_kuvo-aac-128.m3u":{"Genre":["Jazz"],"Name":"KUVO 89.3 FM Denver","Image":"http___kuvo-ice_streamguys_org_kuvo-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvo-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.m3u":{"Genre":["Pop","R'n'B","Hip-Hop"],"Name":"KUVO HD2","Image":"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvohd2-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u":{"Genre":["Indie","Rock","Pop","New Age","Punk","Post-Punk","Electronic","Contemporary"],"Name":"KZradio הקצה","Image":"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.webp","Homepage":"https://kzradio.net/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Independent Internet-radio based in Tel Aviv","Codec":"HE-AAC","Bitrate":128,"StreamUri":"http://kzradio.mediacast.co.il/kzradio_live/kzradio/icecast.audio","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[128],"highestBitrate":128},"http___listen-nme_sharp-stream_com_nme1high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 1 - Classic & New Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme1high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme1high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen-nme_sharp-stream_com_nme2high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 2 - New & Upfront Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme2high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme2high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen_jazz88_org_ksds_mp3.m3u":{"Genre":["Jazz"],"Name":"San Diego Jazz 88.3","Image":"http___listen_jazz88_org_ksds_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://listen.jazz88.org/ksds.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live-aacplus-64_kexp_org_kexp64_aac.m3u":{"Genre":["Indie"],"Name":"KEXP 90.3 FM Seattle","Image":"http___live-aacplus-64_kexp_org_kexp64_aac.webp","Homepage":"https://www.kexp.org/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://live-aacplus-64.kexp.org/kexp64.aac","alternativeStreams":{"http___live-mp3-128_kexp_org_":{"StreamUri":"http://live-mp3-128.kexp.org/","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[128,64],"highestBitrate":128},"http___live-icy_dr_dk_A_A03H_mp3.m3u":{"Genre":["News","Talk"],"Name":"DR P1","Image":"http___live-icy_dr_dk_A_A03H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A03H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A04H_mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"DR P2","Image":"http___live-icy_dr_dk_A_A04H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A04H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A05H_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"DR P3","Image":"http___live-icy_dr_dk_A_A05H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A05H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A08H_mp3.m3u":{"Genre":["Pop","News"],"Name":"DR P4","Image":"http___live-icy_dr_dk_A_A08H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A08H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A29H_mp3.m3u":{"Genre":["Indie","Indie Rock","Rock"],"Name":"DR P6 Beat","Image":"http___live-icy_dr_dk_A_A29H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A29H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J","Image":"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/2TJW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.m3u":{"Genre":["Country"],"Name":"ABC Country","Image":"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/CTRW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.m3u":{"Genre":["Jazz"],"Name":"ABC Jazz","Image":"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/JAZW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J Unearthed","Image":"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.webp","Homepage":"https://www.abc.net.au/triplejunearthed/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/UNEW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live_radioec_com_ua_8000_kiev.m3u":{"Genre":["Pop","Rock","Techno"],"Name":"KrainaFM","Image":"http___live_radioec_com_ua_8000_kiev.webp","Homepage":"http://krainafm.com.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine's first all-Ukrainian-language radio","Codec":"MP3","Bitrate":128,"StreamUri":"http://live.radioec.com.ua:8000/kiev","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live_radioton_de_rt-live-bw.m3u":{"Genre":["80's"],"Name":"Radioton","Image":"http___live_radioton_de_rt-live-bw.webp","Homepage":"https://www.radioton.de/","Country":"Germany","State":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"Lang leben die 80er.","Codec":"MP3","Bitrate":192,"StreamUri":"http://live.radioton.de/rt-live-bw","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mainstream_amazingradios_com_8000_blues128.m3u":{"Genre":["Blues"],"Name":"Amazing Blues","Image":"http___mainstream_amazingradios_com_8000_blues128.webp","Homepage":"https://amazingradios.com/","Country":"USA","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://mainstream.amazingradios.com:8000/blues128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.m3u":{"Genre":["Classical"],"Name":"MDR Klassik","Image":"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://mdr-284350-0.cast.mdr.de/mdr/284350/0/aac/high/stream.aac","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___media-ice_musicradio_com_ClassicFMMP3.m3u":{"Genre":["Classical"],"Name":"Classic FM","Image":"http___media-ice_musicradio_com_ClassicFMMP3.webp","Homepage":"https://www.classicfm.com/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://media-ice.musicradio.com/ClassicFMMP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___media_radio-libertaire_org_8080_radiolib_mp3.m3u":{"Genre":["Various","Talk"],"Name":"Radio Libertaire (France)","Image":"http___media_radio-libertaire_org_8080_radiolib_mp3.webp","Homepage":"https://www.radio-libertaire.net/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://media.radio-libertaire.org:8080/radiolib.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mediaserv21_live-streams_nl_8000_live.m3u":{"Genre":["Contemporary"],"Name":"Hi On Line - France","Image":"http___mediaserv21_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv21.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8000_live.m3u":{"Genre":["Pop","Golden Oldies"],"Name":"Hi On Line - Gold","Image":"http___mediaserv30_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8086_live.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop (320K)","Image":"http___mediaserv30_live-streams_nl_8086_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8086/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8088_live.m3u":{"Genre":["Classical"],"Name":"Hi On Line - Classical","Image":"http___mediaserv30_live-streams_nl_8088_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8088/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8034_live.m3u":{"Genre":["Latin"],"Name":"Hi On Line - Latin","Image":"http___mediaserv33_live-streams_nl_8034_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8034/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8036_live.m3u":{"Genre":["Lounge"],"Name":"Hi On Line - Lounge","Image":"http___mediaserv33_live-streams_nl_8036_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8036/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8006_live.m3u":{"Genre":["Jazz"],"Name":"Hi On Line - Jazz","Image":"http___mediaserv38_live-streams_nl_8006_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8006/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8027_live.m3u":{"Genre":["World Music"],"Name":"Hi On Line - World","Image":"http___mediaserv38_live-streams_nl_8027_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8027/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u":{"Genre":["Classical"],"Name":"Mother Earth Klassik","Image":"http___motherearth_streamserver24_com_18910_motherearth_klassik.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"http://motherearth.streamserver24.com:18910/motherearth.klassik","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u":{"Genre":["80's"],"Name":"harmony.fm","Image":"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.webp","Homepage":"https://www.harmonyfm.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Alles 80er!","Codec":"AAC","Bitrate":48,"StreamUri":"http://mp3.harmonyfm.de/harmonyfm/livestream.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u":{"Genre":["Pop","Dance","House","Hip-Hop","R'n'B"],"Name":"planet radio","Image":"http___mp3_planetradio_de_planetradio_hqlivestream_aac.webp","Homepage":"https://www.planetradio.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.aac","alternativeStreams":{"http___mp3_planetradio_de_planetradio_livestream_aac":{"StreamUri":"http://mp3.planetradio.de/planetradio/livestream.aac","Codec":"AAC","Bitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_mp3":{"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[48,128],"highestBitrate":128},"http___mscp2_live-streams_nl_8100_flac_flac.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop","Image":"http___mscp2_live-streams_nl_8100_flac_flac.webp","Homepage":"http://www.hionline.eu","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"FLAC","Bitrate":128,"StreamUri":"http://mscp2.live-streams.nl:8100/flac.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[128],"highestBitrate":128},"http___mscp3_live-streams_nl_8250_class-high_aac.m3u":{"Genre":["Classical"],"Name":"Naim Classical","Image":"http___mscp3_live-streams_nl_8250_class-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8250/class-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8340_jazz-high_aac.m3u":{"Genre":["Jazz"],"Name":"Naim Jazz","Image":"http___mscp3_live-streams_nl_8340_jazz-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8340/jazz-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8360_high_aac.m3u":{"Genre":["Eclectic"],"Name":"Naim Radio","Image":"http___mscp3_live-streams_nl_8360_high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8360/high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___msmn7_co_8018_stream.m3u":{"Genre":["Indie"],"Name":"CDNX","Image":"http___msmn7_co_8018_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://msmn7.co:8018/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ninarfm_grtvstream_com_8896__.m3u":{"Genre":["Various","News"],"Name":"Ninar FM نينار اف ام","Image":"http___ninarfm_grtvstream_com_8896__.webp","Homepage":"http://ninarfm.com/","Country":"Syria","State":"","Languages":["Arabic"],"Language":"Arabic","Description":"Ninar FM نينار اف ام","Codec":"MP3","Bitrate":96,"StreamUri":"http://ninarfm.grtvstream.com:8896/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___npr-ice_streamguys1_com_live_mp3.m3u":{"Genre":["News","News Talk","Political Talk","Politics","Public Radio","Talk"],"Name":"NPR - 24 Hour Program Stream","Image":"http___npr-ice_streamguys1_com_live_mp3.webp","Homepage":"https://www.npr.org/about-npr/472557877/npr-program-stream","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"NPR Program Stream","Codec":"MP3","Bitrate":96,"StreamUri":"http://npr-ice.streamguys1.com/live.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___okradio_rtvhd_net_8130__.m3u":{"Genre":["Pop","Música Latina"],"Name":"Vox Radio - 105.5 FM","Image":"http___okradio_rtvhd_net_8130__.webp","Homepage":"http://www.voxradio.fm/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música.","Codec":"AAC","Bitrate":56,"StreamUri":"http://okradio.rtvhd.net:8130/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[56],"highestBitrate":56},"http___play_organlive_com_8002_320.m3u":{"Genre":["Classical"],"Name":"OrganLive.com","Image":"http___play_organlive_com_8002_320.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320oe.m3u":{"Genre":["Classical"],"Name":"Organ Experience","Image":"http___play_organlive_com_8002_320oe.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320oe","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320pb.m3u":{"Genre":["Classical","Baroque"],"Name":"Positivly Baroque","Image":"http___play_organlive_com_8002_320pb.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320pb","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u":{"Genre":["Brazilian Music","Contemporary","Pop","Rock"],"Name":"Rádio Cidade","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.webp","Homepage":"https://radiocidade.fm/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Cidade - Rio de Janeiro","Codec":"AAC+","Bitrate":48,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[48],"highestBitrate":48},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.m3u":{"Genre":["Classical"],"Name":"WRTI Philadelphia 90.1 - Classical","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_CLASSICAL.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.m3u":{"Genre":["Jazz"],"Name":"WRTI Philadelphia 90.1 - Jazz","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_JAZZ.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u":{"Genre":["News"],"Name":"VRT - NWS","Image":"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.webp","Homepage":"https://www.vrt.be/vrtnws/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://progressive-audio.lwc.vrtcdn.be/content/fixed/11_11niws-snip_hi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___q2stream_wqxr_org_q2.m3u":{"Genre":["Classical"],"Name":"WQXR Q2 - Living Music, Living Composers","Image":"http___q2stream_wqxr_org_q2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://q2stream.wqxr.org/q2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio80k_out_airtime_pro_8000_radio80k_a.m3u":{"Genre":["Community Radio","Freeform","Variety"],"Name":"Radio 80000 Munich, Germany","Image":"http___radio80k_out_airtime_pro_8000_radio80k_a.webp","Homepage":"http://www.radio80k.de/","Country":"Germany","State":"","Languages":["English","German"],"Language":"English, German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio80k.out.airtime.pro:8000/radio80k_a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radio_comunica_ufrn_br_8000_live_aac.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária Natal 88.9 FM (UFRN)","Image":"http___radio_comunica_ufrn_br_8000_live_aac.webp","Homepage":"https://www.instagram.com/radiouniversitarianatal/","Country":"Brazil","State":"Rio Grande Do Norte","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Transforma Natal, transforma você!","Codec":"AAC","Bitrate":128,"StreamUri":"http://radio.comunica.ufrn.br:8000/live.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___radio_linn_co_uk_8000_autodj.m3u":{"Genre":["Jazz"],"Name":"Linn Jazz","Image":"http___radio_linn_co_uk_8000_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8000/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8003_autodj.m3u":{"Genre":["Eclectic"],"Name":"Linn Radio","Image":"http___radio_linn_co_uk_8003_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8003/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8004_autodj.m3u":{"Genre":["Classical"],"Name":"Linn Classical","Image":"http___radio_linn_co_uk_8004_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8004/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_m-1_fm_lietus_mp3.m3u":{"Genre":["Lithuanian","Various"],"Name":"Lietus","Image":"http___radio_m-1_fm_lietus_mp3.webp","Homepage":"https://www.lietus.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio.m-1.fm/lietus/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radio_plaza_one_mp3.m3u":{"Genre":["Vaporwave","Future Funk","Chill Out"],"Name":"Nightwave Plaza","Image":"http___radio_plaza_one_mp3.webp","Homepage":"https://plaza.one/","Country":"Japan","State":"","Languages":["English"],"Language":"English","Description":"Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity.","Codec":"MP3","Bitrate":128,"StreamUri":"http://radio.plaza.one/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio_stereoscenic_com_ama-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"A.M. Ambient","Image":"http___radio_stereoscenic_com_ama-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/ama-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radio_stereoscenic_com_asp-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"Ambient Sleeping Pill","Image":"http___radio_stereoscenic_com_asp-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/asp-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radioaovivo_senado_gov_br_canal2_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado Canal 2","Image":"http___radioaovivo_senado_gov_br_canal2_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado Canal 2","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.gov.br/canal2.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_senado_leg_br_fm_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado","Image":"http___radioaovivo_senado_leg_br_fm_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado 91.7 FM","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.leg.br/fm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u":{"Genre":["Classical","MPB"],"Name":"Rádio da Universidade 1080 AM (UFRGS)","Image":"http___radioaovivo_ufrgs_br_8000_stream_mp3.webp","Homepage":"https://www.ufrgs.br/radio/","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio da Universidade 1080 AM (UFRGS)","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.ufrgs.br:8000/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radionz-ice_streamguys_com_80_concert_mp3.m3u":{"Genre":["Classical"],"Name":"Radio New Zealand - Concert","Image":"http___radionz-ice_streamguys_com_80_concert_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/concert.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radionz-ice_streamguys_com_80_national_mp3.m3u":{"Genre":["Eclectic","Various","Current Affairs"],"Name":"Radio New Zealand - National","Image":"http___radionz-ice_streamguys_com_80_national_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/national.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___retro_dancewave_online_retrodance_mp3.m3u":{"Genre":["90's","Dance"],"Name":"Dance Wave Retro!","Image":"http___retro_dancewave_online_retrodance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Languages":["English"],"Language":"English","Description":"All about Dance before 2000!","Codec":"MP3","Bitrate":128,"StreamUri":"http://retro.dancewave.online/retrodance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___rootslegacy_fr_8080__listen_mp3.m3u":{"Genre":["Dub","Roots Reggae"],"Name":"Roots Legacy Radio - Dub UK & Roots Reggae","Image":"http___rootslegacy_fr_8080__listen_mp3.webp","Homepage":"https://www.rootslegacy.fr/","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":224,"StreamUri":"http://rootslegacy.fr:8080/;listen.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[224],"highestBitrate":224},"http___rtvhd_net_9942__.m3u":{"Genre":["Rock","Baladas"],"Name":"IQ Radio - 93.9 FM","Image":"http___rtvhd_net_9942__.webp","Homepage":"http://www.iqmedios.com/","Country":"Costa Rica","State":"","Languages":["English"],"Language":"English","Description":"IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más.","Codec":"AAC","Bitrate":64,"StreamUri":"http://rtvhd.net:9942/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___s1_slotex_pl_7430_stream.m3u":{"Genre":["Indie","Pop","Rock"],"Name":"Mittendrin ALT!NEU Radio der deutschen Minderheit","Image":"http___s1_slotex_pl_7430_stream.webp","Homepage":"https://mittendrin.pl/de/radio-altneu.html","Country":"Poland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://s1.slotex.pl:7430/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___sc3_radiocaroline_net_8030.m3u":{"Genre":["Rock","Classic Rock"],"Name":"Radio Caroline","Image":"http___sc3_radiocaroline_net_8030.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://sc3.radiocaroline.net:8030","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___shoutcastunlimited_com_8512.m3u":{"Genre":["Progressive Rock","Metal"],"Name":"PRM - Prog Rock & Metal","Image":"http___shoutcastunlimited_com_8512.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://shoutcastunlimited.com:8512","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___sk_cri_cn_915_m3u8.m3u":{"Genre":["World Music"],"Name":"CRI Radio EZFM 91.5 FM","Image":"http___sk_cri_cn_915_m3u8.webp","Homepage":"http://ezfm.cri.cn/live","Country":"China","State":"","Languages":["English"],"Language":"English","Description":"CRI Radio EZFM 91.5 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"http://sk.cri.cn/915.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"http___stream-33_zeno_fm_nkdugu37twzuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Raja Radio HD","Image":"http___stream-33_zeno_fm_nkdugu37twzuv.webp","Homepage":"https://tamilradios.net/raja-radio-hd/","Country":"India","State":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-33.zeno.fm/nkdugu37twzuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-icy_bauermedia_pt_m80_mp3.m3u":{"Genre":["70's","80's","90's","2000's"],"Name":"M80 Rádio","Image":"http___stream-icy_bauermedia_pt_m80_mp3.webp","Homepage":"https://m80.pt/","Country":"Portugal","State":"Lisbon","Languages":["Portuguese"],"Language":"Portuguese","Description":"Se a sua vida tem uma música, ela passa na M80","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-icy.bauermedia.pt/m80.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-relay-geo_ntslive_net_stream.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live London - Don't Assume","Image":"http___stream-relay-geo_ntslive_net_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream-relay-geo_ntslive_net_stream2.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live International","Image":"http___stream-relay-geo_ntslive_net_stream2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream0_wfmu_org_freeform-best-available.m3u":{"Genre":["Classical"],"Name":"WFMU 91.1 FM","Image":"http___stream0_wfmu_org_freeform-best-available.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream0.wfmu.org/freeform-best-available","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream1_opb_org_kmhd_mp3.m3u":{"Genre":["Jazz"],"Name":"KMHD Portland FM 89.1 - Jazz","Image":"http___stream1_opb_org_kmhd_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream1.opb.org/kmhd.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream2_radioquantica_com_8000_stream.m3u":{"Genre":["Underground","Urbain"],"Name":"Rádio Quântica","Image":"http___stream2_radioquantica_com_8000_stream.webp","Homepage":"https://www.radioquantica.com/","Country":"Portugal","State":"","Languages":["English","Portuguese"],"Language":"English, Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream2.radioquantica.com:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_dandelionradio_com_9414.m3u":{"Genre":["Indie"],"Name":"Dandelion Radio","Image":"http___stream_dandelionradio_com_9414.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.dandelionradio.com:9414","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_fr_morow_com_8080_morow_hi_aacp.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Morow - Retro Progressive Rock","Image":"http___stream_fr_morow_com_8080_morow_hi_aacp.webp","Homepage":"","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://stream.fr.morow.com:8080/morow_hi.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___stream_klassikradio_de_chor_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Chor","Image":"http___stream_klassikradio_de_chor_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/chor/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_dreams_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Dreams","Image":"http___stream_klassikradio_de_dreams_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/dreams/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_relax_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Relax","Image":"http___stream_klassikradio_de_relax_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/relax/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_laut_fm_alternativeworld.m3u":{"Genre":["Indie","Punk","New Wave","Britpop"],"Name":"Alternativeworld","Image":"http___stream_laut_fm_alternativeworld.webp","Homepage":"https://laut.fm/alternativeworld","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/alternativeworld","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_anderswelt.m3u":{"Genre":["New Wave","Gothic","Minimal","80's"],"Name":"Anderswelt","Image":"http___stream_laut_fm_anderswelt.webp","Homepage":"https://laut.fm/anderswelt","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Stuttgarter Wave-Klänge wie zu den guten alten Zeiten...","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/anderswelt","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_deutschrap.m3u":{"Genre":["Hip-Hop","Rap","German Rap","Urbain"],"Name":"Deutschrap","Image":"http___stream_laut_fm_deutschrap.webp","Homepage":"www.laut.fm/deutschrap","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Schluss mit Deutschrap Einheitsbrei!","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/deutschrap","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_kakerlakenradio.m3u":{"Genre":["Rock","Pop","Indie","New Wave","Punk","Britpop","Garage"],"Name":"Kakerlaken Radio","Image":"http___stream_laut_fm_kakerlakenradio.webp","Homepage":"http://indie-rock-radio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/kakerlakenradio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nightshift_alternative.m3u":{"Genre":["Gothic","Mediaeval","Nu Metal","80's","90's","Industrial","Metal","Metalcore"],"Name":"Nightshift Alternativ","Image":"http___stream_laut_fm_nightshift_alternative.webp","Homepage":"https://nightshift-alternativ.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nightshift_alternative","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nonpop.m3u":{"Genre":["Ambient","Avantgarde","Black Metal","Folk","Industrial","Lo-Fi","Minimal","Indie"],"Name":"NONPOP","Image":"http___stream_laut_fm_nonpop.webp","Homepage":"https://laut.fm/nonpop","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der Name ist Programm. Alles außer Massenware.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nonpop","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_scifi.m3u":{"Genre":["Vocal","Pop","Scifi"],"Name":"SciFi Radio","Image":"http___stream_laut_fm_scifi.webp","Homepage":"https://laut.fm/scifi","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Ein Online Radio für den Bereich Science Fiction.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/scifi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_resonance_fm_resonance.m3u":{"Genre":["Eclectic"],"Name":"Resonance Radio 104.4 FM","Image":"http___stream_resonance_fm_resonance.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.resonance.fm/resonance","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_srg-ssr_ch_m_couleur3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"RTS - Couleur 3","Image":"http___stream_srg-ssr_ch_m_couleur3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/couleur3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_espace-2_mp3_128.m3u":{"Genre":["Classical"],"Name":"RTS - Espace 2","Image":"http___stream_srg-ssr_ch_m_espace-2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/espace-2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTS - La Premiere","Image":"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/la-1ere/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u":{"Genre":["Indie"],"Name":"RTS - option musique","Image":"http___stream_srg-ssr_ch_m_option-musique_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/option-musique/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retedue_mp3_128.m3u":{"Genre":["Classical","Various","Culture"],"Name":"RSI - Rete Due","Image":"http___stream_srg-ssr_ch_m_retedue_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retedue/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retetre_mp3_128.m3u":{"Genre":["Indie","Pop"],"Name":"RSI - Rete Tre","Image":"http___stream_srg-ssr_ch_m_retetre_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retetre/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_reteuno_mp3_128.m3u":{"Genre":["News","Entertainment","News"],"Name":"RSI - Rete Uno","Image":"http___stream_srg-ssr_ch_m_reteuno_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/reteuno/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rr_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTR Radio","Image":"http___stream_srg-ssr_ch_m_rr_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Romansh"],"Language":"Romansh","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/rr/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.m3u":{"Genre":["Classical"],"Name":"Radio Swiss Classic","Image":"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsc_de/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsj_aacp_96.m3u":{"Genre":["Jazz"],"Name":"Radio Swiss Jazz","Image":"http___stream_srg-ssr_ch_m_rsj_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsj/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsp_aacp_96.m3u":{"Genre":["Pop"],"Name":"Radio Swiss Pop","Image":"http___stream_srg-ssr_ch_m_rsp_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsp/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_wfmt_com_main.m3u":{"Genre":["Classical"],"Name":"WFMT Chicago 98.7 - Classical","Image":"http___stream_wfmt_com_main.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wfmt.com/main","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_wqxr_org_wqxr.m3u":{"Genre":["Classical"],"Name":"WQXR New York - Classical Music","Image":"http___stream_wqxr_org_wqxr.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wqxr.org/wqxr","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u":{"Genre":["Dub","Reggae"],"Name":"Dr. Dick’s Dub Shack","Image":"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.webp","Homepage":"http://drdicksdubshack.com/","Country":"Bermuda","State":"","Languages":["English"],"Language":"English","Description":"Bermuda-based online radio station playing all species of dub, downtempo and bass music","Codec":"MP3","Bitrate":192,"StreamUri":"http://streamer.radio.co/s0635c8b0d/listen?fbclid=IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u":{"Genre":["Jazz","Classical","Soul"],"Name":"Apollo Radio","Image":"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.webp","Homepage":"https://www.apolloradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Bleiben sie entspannt","Codec":"MP3","Bitrate":192,"StreamUri":"http://streaming.apolloradio.de/apolloradio_simulcast_192k_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u":{"Genre":["Indie","Indie Rock","Canada","Commercial","Montreal","Mp3","Pop Rock"],"Name":"WKND 91,9","Image":"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.webp","Homepage":"http://quebec.wknd.fm/","Country":"Canada","State":"Québec","Languages":["Français"],"Language":"Français","Description":"WKND FM 91,9","Codec":"MP3","Bitrate":96,"StreamUri":"http://streaming.cjec.leclerccommunication.ca:8000/cjec.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___streaming_livespanel_com_20000_live.m3u":{"Genre":["Samba","Pagode","Pop"],"Name":"Rádio FM O DIA","Image":"http___streaming_livespanel_com_20000_live.webp","Homepage":"http://www.fmodia.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"FM O Dia","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.livespanel.com:20000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u":{"Genre":["News","Entertainment"],"Name":"Radio SRF 1","Image":"http___streaming_swisstxt_ch_m_drs1_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs1/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs2_mp3_128.m3u":{"Genre":["Classical","Jazz"],"Name":"Radio SRF 2 Kultur","Image":"http___streaming_swisstxt_ch_m_drs2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"Radio SRF 3","Image":"http___streaming_swisstxt_ch_m_drs3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs4news_mp3_128.m3u":{"Genre":["News"],"Name":"Radio SRF 4 News","Image":"http___streaming_swisstxt_ch_m_drs4news_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs4news/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsmw_mp3_128.m3u":{"Genre":["Pop","Schlager Music"],"Name":"Radio SRF Musikwelle","Image":"http___streaming_swisstxt_ch_m_drsmw_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsmw/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.m3u":{"Genre":["Indie"],"Name":"Radio SRF Virus","Image":"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsvirus/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u":{"Genre":["Eighties"],"Name":"80s80s","Image":"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.webp","Homepage":"https://www.80s80s.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.80s80s.de/web/mp3-192/streams.80s80s.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_egofm_de_egoCHILLOUT-hq.m3u":{"Genre":["Indie"],"Name":"egoFM CHILLOUT","Image":"http___streams_egofm_de_egoCHILLOUT-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die beruhigende Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoCHILLOUT-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFLASH-hq.m3u":{"Genre":["Indie","Electronic"],"Name":"egoFM FLASH","Image":"http___streams_egofm_de_egoFLASH-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die elektronische Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFLASH-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFM-hq.m3u":{"Genre":["Indie"],"Name":"egoFM live","Image":"http___streams_egofm_de_egoFM-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFM-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMBW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Baden-Württemberg","Image":"http___streams_egofm_de_egoFMBW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMBW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMHallOfFame-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM HallOfFame","Image":"http___streams_egofm_de_egoFMHallOfFame-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die legendäre Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMHallOfFame-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMKavka-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Kavka","Image":"http___streams_egofm_de_egoFMKavka-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die kavkaeske Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMKavka-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMNRW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM NRW","Image":"http___streams_egofm_de_egoFMNRW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMNRW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMRNB-hq.m3u":{"Genre":["R'n'B"],"Name":"egoFM R&B","Image":"http___streams_egofm_de_egoFMRNB-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die smoothe Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMRNB-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSEEWALD-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SEEWALD","Image":"http___streams_egofm_de_egoFMSEEWALD-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die Vermessung der Musik.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSEEWALD-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSoundtrack-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM Soundtrack","Image":"http___streams_egofm_de_egoFMSoundtrack-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die cineastische Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSoundtrack-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoJAZZ-hq.m3u":{"Genre":["Jazz"],"Name":"egoFM JAZZ","Image":"http___streams_egofm_de_egoJAZZ-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die jazzige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoJAZZ-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoPURE-hq.m3u":{"Genre":["Indie"],"Name":"egoFM PURE","Image":"http___streams_egofm_de_egoPURE-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Ohne Punkt und Komma.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoPURE-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRAP-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RAP","Image":"http___streams_egofm_de_egoRAP-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die lässige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRAP-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRIFF-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RIFF","Image":"http___streams_egofm_de_egoRIFF-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die rockige Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRIFF-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSNOW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SNOW","Image":"http___streams_egofm_de_egoSNOW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die winterliche Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSNOW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSOUL-hq.m3u":{"Genre":["Indie","Soul"],"Name":"egoFM SOUL","Image":"http___streams_egofm_de_egoSOUL-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die gefühlvolle Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSOUL-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSUN-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SUN","Image":"http___streams_egofm_de_egoSUN-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die sommerliche Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSUN-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_fluxfm_de_70er_mp3-320_audio_.m3u":{"Genre":["70's"],"Name":"FluxFM - 70s","Image":"http___streams_fluxfm_de_70er_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/70er/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["80's"],"Name":"FluxFM - 80s","Image":"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/80er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Berlin Beach House Radio","Image":"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/bbeachhouse/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfm_mp3-320_audio_.m3u":{"Genre":["Hip-Hop"],"Name":"FluxFM - BoomFM","Image":"http___streams_fluxfm_de_boomfm_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfm/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.m3u":{"Genre":["Hip-Hop","Oldschool"],"Name":"FluxFM - BoomFM Classics","Image":"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfmclassics/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Dub","Reggae"],"Name":"FluxFM - Dub Radio","Image":"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/dubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Funk"],"Name":"FluxFM - B-Funk","Image":"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/event01/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000's Naughty","Image":"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/flx_2000/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_forward_mp3-320_audio_.m3u":{"Genre":["Various","Releases"],"Name":"FluxFM - FluxForward","Image":"http___streams_fluxfm_de_forward_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/flux-forward/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward.","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/forward/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Rock","Hard Rock"],"Name":"FluxFM - Hard Rock FM","Image":"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/hardrock/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Metal"],"Name":"FluxFM - MetalFM","Image":"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/metalfm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Classical","Contemporary"],"Name":"FluxFM - neoFM","Image":"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/neofm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_passport_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - Passport Approved","Image":"http___streams_fluxfm_de_passport_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/passport/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie"],"Name":"FluxFM - Radio Alternative","Image":"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/radioalt/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Reggae"],"Name":"FluxFM - Rasta Radio","Image":"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/rastaradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_studio56_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - JaegerMusic Radio","Image":"http___streams_fluxfm_de_studio56_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/studio56/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - XJAZZ","Image":"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/xjazz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Ambient","Yoga"],"Name":"FluxFM - Yoga Sounds","Image":"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/yogasounds/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_norbert_de_8000_zappa_aac.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Zappa Stream Radio","Image":"http___streams_norbert_de_8000_zappa_aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"http://streams.norbert.de:8000/zappa.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 2000s Rock","Image":"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/2000er/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 80s Rock","Image":"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-80srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio Bob! 90s Rock","Image":"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-90srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u":{"Genre":["Indie Rock"],"Name":"Radio BOB! Alternative","Image":"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-alternative/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Christmas Rock","Image":"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-christmas/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u":{"Genre":["Classic Rock"],"Name":"Radio BOB! Classic Rock","Image":"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-classicrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u":{"Genre":["Hard Rock"],"Name":"Radio BOB! Hardrock","Image":"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Wenn Rock, dann BOB! Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-hardrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Kuschelrock","Image":"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-kuschelrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u":{"Genre":["Metal"],"Name":"Radio BOB! Metal","Image":"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-metal/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB!","Image":"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-national/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u":{"Genre":["Punk"],"Name":"Radio BOB! Punk","Image":"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-punk/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u":{"Genre":["Rockabilly"],"Name":"Radio BOB! Rockabilly","Image":"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockabilly/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Hits","Image":"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockhits/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u":{"Genre":["Country"],"Name":"Radio BOB! Country","Image":"http___streams_radiobob_de_country_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/country/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_country_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/country/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_roadtrip_mp3-192_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Roadtrip","Image":"http___streams_radiobob_de_roadtrip_mp3-192_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"BOBs Road Trip-Stream","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/roadtrip/mp3-192/","alternativeStreams":{"https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rockparty","Image":"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/rockparty/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u":{"Genre":["Southern Rock"],"Name":"Radio BOB! Southern Rock","Image":"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/southernrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___strm112_1_fm_blues_mobile_mp3.m3u":{"Genre":["Blues"],"Name":"1.FM - Blues Radio","Image":"http___strm112_1_fm_blues_mobile_mp3.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://strm112.1.fm/blues_mobile_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___subfm_radioca_st_Sub_FM.m3u":{"Genre":["Dub","Dubstep","Garage","Grime","Deep House","Techno","Juke","Jungle Trap"],"Name":"SUB.FM - Where Bass Matters","Image":"http___subfm_radioca_st_Sub_FM.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://subfm.radioca.st/Sub.FM","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___wdcb-ice_streamguys_org_80_wdcb128.m3u":{"Genre":["Blues","Jazz"],"Name":"WDCB Chicago FM 90.9 - Jazz & Blues","Image":"http___wdcb-ice_streamguys_org_80_wdcb128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdcb-ice.streamguys.org:80/wdcb128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.m3u":{"Genre":["Pop"],"Name":"WDR 1LIVE","Image":"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u":{"Genre":["Spoken Word"],"Name":"WDR 5","Image":"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr5/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-wdr5-live.icecast.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___west-aac-64_streamthejazzgroove_com_stream.m3u":{"Genre":["Jazz"],"Name":"The Jazz Groove","Image":"http___west-aac-64_streamthejazzgroove_com_stream.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://west-aac-64.streamthejazzgroove.com/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___wkcr_streamguys1_com_80_live.m3u":{"Genre":["Jazz","Classical"],"Name":"WKCR 89.9 FM","Image":"http___wkcr_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://wkcr.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___yumicoradio_net_8000_stream.m3u":{"Genre":["Future Funk","City Pop","Anime Groove","Vaporwave","Nu Disco","Electronic"],"Name":"Yumi Co. Radio","Image":"http___yumicoradio_net_8000_stream.webp","Homepage":"http://yumicoradio.net","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived.","Codec":"MP3","Bitrate":256,"StreamUri":"http://yumicoradio.net:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u":{"Genre":["Classical","Classical Music"],"Name":"Rádio MEC FM","Image":"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecfmrio","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio MEC FM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://122722d.ha.azioncdn.net/ebc/radiomecfm/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u":{"Genre":["MPB"],"Name":"Rádio MEC AM","Image":"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecamrio","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio MEC AM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://132722d.ha.azioncdn.net/ebc/radiomec/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"Genre":["Soccer","News"],"Name":"Rádio Transamérica 100.1 FM (São Paulo)","Image":"https___18003_live_streamtheworld_com_RT_SPAAC_aac.webp","Homepage":"https://radiotransamerica.com.br","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio onde você estiver!","Codec":"AAC","Bitrate":32,"StreamUri":"https://18003.live.streamtheworld.com/RT_SPAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u":{"Genre":["Community"],"Name":"2nurfm","Image":"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.webp","Homepage":"https://2nurfm.com.au","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"Good times and great music","Codec":"MP3","Bitrate":96,"StreamUri":"https://21413.live.streamtheworld.com:443/2NURFMAAC_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"Genre":["Lounge"],"Name":"Zen FM","Image":"https___22653_live_streamtheworld_com_TOPZEN_mp3.webp","Homepage":"","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://22653.live.streamtheworld.com/TOPZEN.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u":{"Genre":["Gospel","Various"],"Name":"Rádio Melodia 97.5 FM","Image":"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.webp","Homepage":"https://melodia.com.br/player/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A voz que fala ao coração!","Codec":"AAC","Bitrate":32,"StreamUri":"https://24483.live.streamtheworld.com/MELODIAFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u":{"Genre":["Classic Hits","Indie"],"Name":"KINK 80's","Image":"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.webp","Homepage":"https://kink.nl","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"Alive and Kicking","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_DNA_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25293_live_streamtheworld_com_443_KINK_SC.m3u":{"Genre":["Modern Rock"],"Name":"KINK","Image":"https___25293_live_streamtheworld_com_443_KINK_SC.webp","Homepage":"https://www.kink.nl","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"No alternative","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u":{"Genre":["Hard Rock"],"Name":"KINK Distortion","Image":"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.webp","Homepage":"https://www.kink.nl/distortion","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"non-stop de beste metal, hardrock en metalcore","Codec":"MP3","Bitrate":192,"StreamUri":"https://25323.live.streamtheworld.com:443/KINK_DISTORTION_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u":{"Genre":["Pop","Flim"],"Name":"Radio Daijiworld","Image":"https___26453_live_streamtheworld_com_SAM08AAC013_SC.webp","Homepage":"http://www.radiodaijiworld.com/","Country":"India","State":"Mangalore","Languages":["Konkani"],"Language":"Konkani","Description":"Online RADIO station for konkani & Tulu music","Codec":"AAC","Bitrate":64,"StreamUri":"https://26453.live.streamtheworld.com/SAM08AAC013_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u":{"Genre":["Community Radio","Independent"],"Name":"PBS 106.7FM (Progressive Broadcasting Service)","Image":"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.webp","Homepage":"https://www.pbsfm.org.au","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"PBS 106.7FM (Progressive Broadcasting Service)","Codec":"AAC","Bitrate":128,"StreamUri":"https://27253.live.streamtheworld.com/3PBS_FMAAC128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u":{"Genre":["Journalism","Soccer","Football","News"],"Name":"Rádio CBN Rio 92.5 FM","Image":"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.webp","Homepage":"https://cbn.globoradio.globo.com","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que toca notícia!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27403.live.streamtheworld.com/CBN_RJAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u":{"Genre":["Pop-Rock","Sertanejo","Youth"],"Name":"Rádio Disney 91.3 FM","Image":"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.webp","Homepage":"https://radiodisney.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que te ouve","Codec":"AAC","Bitrate":320,"StreamUri":"https://27403.live.streamtheworld.com/DISNEY_BRA_SP_ADP/HLS/playlist.m3u8?dist=web-radiodisney","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u":{"Genre":["MPB","Pop","Flashback"],"Name":"Rádio JB 99.9 FM","Image":"https___27433_live_streamtheworld_com_JBFMAAC_aac.webp","Homepage":"https://jb.fm","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e Informação!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27433.live.streamtheworld.com/JBFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u":{"Genre":["Community","Catholic"],"Name":"Rádio Serra Verde 98.7 FM","Image":"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.webp","Homepage":"https://www.serraverde.fm.br/","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Aqui é o seu lugar!","Codec":"MP3","Bitrate":128,"StreamUri":"https://5a2b083e9f360.streamlock.net/serraverdefm/serraverdefm.stream/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___8016_brasilstream_com_br_stream.m3u":{"Genre":["Soccer","Various"],"Name":"Rádio Difusora 96.9 FM","Image":"https___8016_brasilstream_com_br_stream.webp","Homepage":"https://difusora24h.com","Country":"Brazil","State":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"O amor do Amazonas esta no ar!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://8016.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u":{"Genre":["News","MPB","Sport"],"Name":"Rádio Nacional do Rio de Janeiro","Image":"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalrioam","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional 87.1 FM 1130 AM","Codec":"HLS","Bitrate":99,"StreamUri":"https://82722d.ha.azioncdn.net/ebc/radionacionalriodejaneiro/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[99],"highestBitrate":99},"https___8923_brasilstream_com_br_stream.m3u":{"Genre":["Local News","News","Talk","Variety"],"Name":"Super Rádio Tupi 96.5 (Tupi FM)","Image":"https___8923_brasilstream_com_br_stream.webp","Homepage":"https://tupi.fm/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder","Codec":"AAC+","Bitrate":32,"StreamUri":"https://8923.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___99_mediacast_co_il_99fm_aac__m4a.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"eco99fm אקו99","Image":"https___99_mediacast_co_il_99fm_aac__m4a.webp","Homepage":"https://eco99fm.maariv.co.il","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HE-AAC","Bitrate":64,"StreamUri":"https://99.mediacast.co.il/99fm_aac?.m4a","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[64],"highestBitrate":64},"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u":{"Genre":["Jazz"],"Name":"DR P8 Jazz","Image":"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.webp","Homepage":"https://www.dr.dk/lyd/p8jazz","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://DRliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8","alternativeStreams":{"http___live-icy_gss_dr_dk_8000_A_A22H_mp3":{"StreamUri":"http://live-icy.gss.dr.dk:8000/A/A22H.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[320,128],"highestBitrate":320},"https___a2_asurahosting_com_8800_radio_mp3.m3u":{"Genre":["Political Talk","Patriotic"],"Name":"Multicanal Radio","Image":"https___a2_asurahosting_com_8800_radio_mp3.webp","Homepage":"https://multicanalradio.com","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://a2.asurahosting.com:8800/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u":{"Genre":["Pop","Releases","Oldies","Rock","Pop"],"Name":"Absolut music XL","Image":"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://absolut-musicxl.live-sm.absolutradio.de/absolut-musicxl/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u":{"Genre":["Electronic"],"Name":"Deep Space Radio","Image":"https___ais-edge102-live365-dal02_cdnstream_com_a71161.webp","Homepage":"https://deepspaceradio.com/","Country":"USA","State":"Michigan","Languages":["English"],"Language":"English","Description":"Artists and DJs who are working to promote Detroit’s Electronic Music and Art.","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-edge102-live365-dal02.cdnstream.com/a71161","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u":{"Genre":["Indie","Rock","Post-Punk","Garage Rock","Psych Rock","New Wave","Gothic"],"Name":"BAGeL Radio","Image":"https___ais-sa3_cdnstream1_com_2606_128_mp3.webp","Homepage":"https://www.bagelradio.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Radio as it should be: commercial-free listener-supported live-hosted","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-sa3.cdnstream1.com/2606_128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"Genre":["Indian Classical","Carnatic"],"Name":"Raagam","Image":"https___akashvani_gov_in_radio_live_php_channel_5.webp","Homepage":"https://prasarbharati.gov.in/channel-raagam/","Country":"India","State":"Karnataka","Languages":["Multilingual","Kannada"],"Language":"Multilingual, Kannada","Description":"Raagam Radio is an online station from Bangalore (India), open since 26 January 2016.","Codec":"MP3","Bitrate":50,"StreamUri":"https://akashvani.gov.in/radio/live.php?channel=5","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[50],"highestBitrate":50},"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Mejor FM - 99.1 FM","Image":"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.lamejor.co.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-lamejor-lamejor.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Noticiero"],"Name":"Monumental - 93.5 FM","Image":"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.monumental.co.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-monumental-monumental.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u":{"Genre":["Schlager Music"],"Name":"Antenne Schlager","Image":"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.webp","Homepage":"https://www.antenne-schlager.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"German Schlager music station from Hannover, Lower Saxony, Germany","Codec":"MP3","Bitrate":192,"StreamUri":"https://antnds.streamabc.net/ands-antenneschlager-mp3-192-8742257","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u":{"Genre":["Commercial","Pop","Rock","Top Hits"],"Name":"RDL Radio Diffusione Libera","Image":"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.webp","Homepage":"https://www.radiodiffusionelibera.com","Country":"Italy","State":"Salerno","Languages":["Italian"],"Language":"Italian","Description":"RDL Radio Diffusione Libera powered by RPIGroup","Codec":"MP3","Bitrate":192,"StreamUri":"https://asvradiostream.asvstudios.it/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___audio-mp3_ibiblio_org_wxyc_mp3.m3u":{"Genre":["College Radio","Various"],"Name":"WXYC Chapel Hill 89.3FM","Image":"https___audio-mp3_ibiblio_org_wxyc_mp3.webp","Homepage":"https://wxyc.org/","Country":"United States","State":"North Carolina","Languages":["English"],"Language":"English","Description":"UNC-Chapel Hill's student-run, freeform radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://audio-mp3.ibiblio.org/wxyc.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___audio_tv_unesp_br_unespfm.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária UNESP 105.7 FM","Image":"https___audio_tv_unesp_br_unespfm.webp","Homepage":"https://www.radio.unesp.br","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UNESP 105.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://audio.tv.unesp.br/unespfm","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Bel RTL","Image":"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.webp","Homepage":"https://www.rtl.be/belrtl/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Bel RTL est une station de radio généraliste privée du groupe RTL.","Codec":"MP3","Bitrate":192,"StreamUri":"https://belrtl.ice.infomaniak.ch/belrtl-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___bytefm_cast_addradio_de_bytefm_main_high_stream.m3u":{"Genre":["Eclectic"],"Name":"ByteFM","Image":"https___bytefm_cast_addradio_de_bytefm_main_high_stream.webp","Homepage":"https://www.byte.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://bytefm.cast.addradio.de/bytefm/main/high/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___c7_radioboss_fm_18205_stream.m3u":{"Genre":["Mashup"],"Name":"Bootie Mashup","Image":"https___c7_radioboss_fm_18205_stream.webp","Homepage":"https://bootiemashup.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The best bootleg mashups in the world ever.","Codec":"MP3","Bitrate":320,"StreamUri":"https://c7.radioboss.fm:18205/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___carajas2_jmvstream_com_live.m3u":{"Genre":["News","Sport","Football","Soccer"],"Name":"Rádio Clube do Pará 104.7 FM 690 AM","Image":"https___carajas2_jmvstream_com_live.webp","Homepage":"https://radioclube.dol.com.br/","Country":"Brazil","State":"Pará","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Equipe Bola de Ouro","Codec":"AAC","Bitrate":128,"StreamUri":"https://carajas2.jmvstream.com/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cast4_asurahosting_com_proxy_miles_stream.m3u":{"Genre":["Talk","Paranormal","Spiritual","70's","80's","90's"],"Name":"NYE Underground","Image":"https___cast4_asurahosting_com_proxy_miles_stream.webp","Homepage":"https://www.nyeug.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Streaming Art Bell classics and his favorite bumper music - ad free.","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.asurahosting.com/proxy/miles/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cast4_audiostream_com_br_2655_mp3.m3u":{"Genre":["Various","News"],"Name":"Rádio Liberdade","Image":"https___cast4_audiostream_com_br_2655_mp3.webp","Homepage":"https://www.redepampa.com.br/radios/radio-liberdade/","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"No campo e na cidade, Rádio Liberdade!","Codec":"MP3","Bitrate":32,"StreamUri":"https://cast4.audiostream.com.br:2655/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u":{"Genre":["News"],"Name":"Radio 98.4","Image":"https___cast4_my-control-panel_com_proxy_anastas2_stream.webp","Homepage":"https://www.radio984.gr/","Country":"Greece","State":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.my-control-panel.com/proxy/anastas2/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cdn4_onstream_audio_9267_stream.m3u":{"Genre":["News"],"Name":"Radio Prensa Latina","Image":"https___cdn4_onstream_audio_9267_stream.webp","Homepage":"https://radio.prensa-latina.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://cdn4.onstream.audio:9267/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u":{"Genre":["News","Talk","Pop"],"Name":"103FM","Image":"https___cdn_cybercdn_live_103FM_Live_icecast_audio.webp","Homepage":"https://103fm.maariv.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://cdn.cybercdn.live/103FM/Live/icecast.audio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u":{"Genre":["Rock","Hard Rock","Heavy Metal"],"Name":"UnDinamo","Image":"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.webp","Homepage":"https://undinamo.com/","Country":"Argentina","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"https://cdn.instream.audio/:9339/stream?in_device_id=WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u":{"Genre":["News"],"Name":"Kan Bet כאן ב","Image":"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=3","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":256,"StreamUri":"https://cdnapisec.kaltura.com/p/2717431/sp/271743100/playManifest/entryId/1_eu4h60uh/format/applehttp/protocol/https/uiConfId/46986963/a.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[256],"highestBitrate":256},"https___centova_svdns_com_br_20110_stream.m3u":{"Genre":["Pop"],"Name":"morena fm easy","Image":"https___centova_svdns_com_br_20110_stream.webp","Homepage":"https://www.morenafm.com.br","Country":"Brazil","State":"Mato Grosso","Languages":["Portugues"],"Language":"Portugues","Description":"boa mussica , boa programaçion","Codec":"AAC","Bitrate":128,"StreamUri":"https://centova.svdns.com.br:20110/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8010_live.m3u":{"Genre":["Tropical/Urbana"],"Name":"Ritmo Hits","Image":"https___chokostream_com_8010_live.webp","Homepage":"https://ritmohits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Donde El Ritmo No Tiene Fin!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8010/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8050_live.m3u":{"Genre":["Urbana"],"Name":"La Vaina Hits","Image":"https___chokostream_com_8050_live.webp","Homepage":"https://lavainahits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Detonando Hits!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8050/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8070_live.m3u":{"Genre":["Musica Cristiana"],"Name":"ExaltacionFM","Image":"https___chokostream_com_8070_live.webp","Homepage":"https://exaltacionfm.com/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Ondas De Avivamiento!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8070/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cloud_cdnseguro_com_2611_stream.m3u":{"Genre":["Ethnic","Indigenous"],"Name":"Rádio Yandê","Image":"https___cloud_cdnseguro_com_2611_stream.webp","Homepage":"https://radioyande.com","Country":"Brazil","State":"Rio De Janeiro","Languages":["Indigenous Languages","Brazilian Portuguese"],"Language":"Indigenous Languages, Brazilian Portuguese","Description":"Radio Yandê - Etnomidia Indígena","Codec":"MP3","Bitrate":128,"StreamUri":"https://cloud.cdnseguro.com:2611/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact 2000","Image":"https___contact2_ice_infomaniak_ch_contact2-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contact2.ice.infomaniak.ch/contact2-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u":{"Genre":["Children","Kids"],"Name":"Radio Contact Kids","Image":"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactkids.ice.infomaniak.ch/contactkids-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Mix","Image":"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactmix.ice.infomaniak.ch/contactmix-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Fresh","Image":"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactplus.ice.infomaniak.ch/contactplus-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Urban","Image":"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contacturban.ice.infomaniak.ch/contacturban-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u":{"Genre":["Pop"],"Name":"Omroep Zeeland","Image":"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.webp","Homepage":"https://www.omroepzeeland.nl/radio-zeeland","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://d3isaxd2t6q8zm.cloudfront.net/icecast/omroepzeeland/omroepzeeland_radio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u":{"Genre":["80's","70's","60's","90's","Oldies","Classic Hits"],"Name":"KVKVI - Classic Hits","Image":"https___dc1_serverse_com_proxy_gjlrjfhp_stream.webp","Homepage":"https://www.kvkvi.com","Country":"United States","State":"Ohio","Languages":["English"],"Language":"English","Description":"The Greatest Hits and The Songs You Missed","Codec":"MP3","Bitrate":160,"StreamUri":"https://dc1.serverse.com/proxy/gjlrjfhp/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u":{"Genre":["Adult Contemporary","News","Sport"],"Name":"Bayern 1","Image":"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern1/index.html","Country":"Germany","State":"Bayern","Languages":["German"],"Language":"German","Description":"The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting.","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u":{"Genre":["Eclectic"],"Name":"Bayern 2","Image":"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern2/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br2/live/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u":{"Genre":["Classical"],"Name":"BR-Klassik","Image":"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.webp","Homepage":"https://www.br-klassik.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u":{"Genre":["Pop","80's","90's"],"Name":"Absolut Relax","Image":"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://edge56.live-sm.absolutradio.de/absolut-relax/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u":{"Genre":["Pop","Charts","Electronic","Hip-Hop"],"Name":"Absolut Hot","Image":"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://edge68.live-sm.absolutradio.de/absolut-hot/stream/aacp?aggregator=smk-m3u-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"Genre":["Pop","Rock","Latin"],"Name":"Radio Ciudad del Granito","Image":"https___emisoras_dip-badajoz_es_58062_stream.webp","Homepage":"https://quintanadelaserena.org/","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Quintana de la Serena (Badajoz, Spain) local radio","Codec":"OPUS","Bitrate":0,"StreamUri":"https://emisoras.dip-badajoz.es:58062/stream","alternativeStreams":{},"allCodecs":["OPUS"],"allBitrates":[0],"highestBitrate":0},"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u":{"Genre":["Indie","Rock","Pop","New Age","Disco","Electronic","Contemporary"],"Name":"EOL Essence of Life רדיו מהות החיים","Image":"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.webp","Homepage":"https://radio.eol.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"AAC","Bitrate":32,"StreamUri":"https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___everest_radionanet_com_8990_stream_1698969239317.m3u":{"Genre":["MPB","University Radio","News"],"Name":"Universitária FM 104.7 (UFES)","Image":"https___everest_radionanet_com_8990_stream_1698969239317.webp","Homepage":"https://universitariafm.ufes.br/","Country":"Brazil","State":"Espirito Santo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da UFES (Universitária FM 104.7)","Codec":"MPEG","Bitrate":32,"StreamUri":"https://everest.radionanet.com:8990/stream?1698969239317","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u":{"Genre":["MPB","News","University Radio"],"Name":"Rádio USP - São Paulo","Image":"https___flow_emm_usp_br_8008_radiousp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da USP (Universidade de São Paulo)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u":{"Genre":["Adult Contemporary","University Radio"],"Name":"Rádio USP - Ribeirão Preto","Image":"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da USP (USP Ribeirão Preto)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-rp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000er","Image":"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/2000er/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u":{"Genre":["90's"],"Name":"FluxFM - 90s","Image":"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben.","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/90s/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.m3u":{"Genre":["News","Various"],"Name":"FluxFM","Image":"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/FluxFM/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.m3u":{"Genre":["Electronic","Soundscape","Atmospheric"],"Name":"FluxFM - Hippie Trippy Garden Pretty","Image":"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/htgp/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.m3u":{"Genre":["Various"],"Name":"FluxFM - Mini Flux","Image":"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/mini-flux/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u":{"Genre":["Dance","Groove","R'n'B","Soul"],"Name":"Fun Radio Belgique","Image":"https___funradiobe_ice_infomaniak_ch_funradiobe-high.webp","Homepage":"https://www.funradio.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française.","Codec":"MP3","Bitrate":128,"StreamUri":"https://funradiobe.ice.infomaniak.ch/funradiobe-high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___gartenheimradio_sp_radio_fm_stream.m3u":{"Genre":["Various"],"Name":"Gartenheim-Radio","Image":"https___gartenheimradio_sp_radio_fm_stream.webp","Homepage":"https://gartenheim-radio.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"70er, 80er, 90er Schlager-Pop und die Hits von Heute","Codec":"MP3","Bitrate":192,"StreamUri":"https://gartenheimradio.sp.radio.fm/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u":{"Genre":["Pop","Top Hits","Past Time Favorites"],"Name":"Galgalatz גלגלצ","Image":"https___glzwizzlv_bynetcdn_com_glglz_mp3.webp","Homepage":"https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glglz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___glzwizzlv_bynetcdn_com_glz_mp3.m3u":{"Genre":["News","Talk","Current Affairs"],"Name":"Galei Zahal GLZ גלי צהל גלצ","Image":"https___glzwizzlv_bynetcdn_com_glz_mp3.webp","Homepage":"https://glz.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"IDF Radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___grenal_audiostream_com_br_20000_aac.m3u":{"Genre":["Sport"],"Name":"Rádio Grenal","Image":"https___grenal_audiostream_com_br_20000_aac.webp","Homepage":"https://www.radiogrenal.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Grenal","Codec":"AAC+","Bitrate":32,"StreamUri":"https://grenal.audiostream.com.br:20000/aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___happyrave-rex_radioca_st_stream.m3u":{"Genre":["Rave","Breakbeat","Hardcore","Jungle","Oldschool"],"Name":"Happy Rave Radio","Image":"https___happyrave-rex_radioca_st_stream.webp","Homepage":"happyraveradio.com","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"Classic happy hardcore, rave, and breakbeat hardcore.","Codec":"MP3","Bitrate":320,"StreamUri":"https://happyrave-rex.radioca.st/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___hts03_kshost_com_br_13392_live.m3u":{"Genre":["News","Various"],"Name":"Rádio Força Aérea 91.1 FM","Image":"https___hts03_kshost_com_br_13392_live.webp","Homepage":"https://www.fab.mil.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Força Aérea 91.1 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://hts03.kshost.com.br:13392/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___http-live_sr_se_p2musik-aac-320.m3u":{"Genre":["Classical","Jazz"],"Name":"SR P2","Image":"https___http-live_sr_se_p2musik-aac-320.webp","Homepage":"https://sverigesradio.se/p2","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://http-live.sr.se/p2musik-aac-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___ic_streann_com_disneycostarica.m3u":{"Genre":["Pop"],"Name":"Radio Disney - 101.1 FM","Image":"https___ic_streann_com_disneycostarica.webp","Homepage":"https://cr.radiodisney.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica.","Codec":"MP3","Bitrate":192,"StreamUri":"https://ic.streann.com/disneycostarica","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice1_somafm_com_vaporwaves-128-aac.m3u":{"Genre":["Electronic","Electro-Acoustic","IDM","Shoegaze","Post-Rock"],"Name":"Soma FM - Vaporwaves","Image":"https___ice1_somafm_com_vaporwaves-128-aac.webp","Homepage":"https://somafm.com/vaporwaves/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"All Vaporwave. All the time.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice1.somafm.com/vaporwaves-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_bossa-128-aac.m3u":{"Genre":["Bossanova","World Music"],"Name":"Soma FM - Bossa Beyond","Image":"https___ice5_somafm_com_bossa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/bossa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_insound-128-aac.m3u":{"Genre":["Pop","Oldies"],"Name":"Soma FM - The In-Sound","Image":"https___ice5_somafm_com_insound-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/insound-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice64_securenetsystems_net_WBJC.m3u":{"Genre":["Classical"],"Name":"WBJC Baltimore 91.5 - Classical","Image":"https___ice64_securenetsystems_net_WBJC.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ice64.securenetsystems.net/WBJC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_darkzone-128-aac.m3u":{"Genre":["Electronic","Ambient","Deep Ambient"],"Name":"Soma FM - The Dark Zone","Image":"https___ice6_somafm_com_darkzone-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/darkzone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_n5md-128-aac.m3u":{"Genre":["Ambient","Post-Rock","Experimental","Electronic"],"Name":"Soma FM - n5MD Radio","Image":"https___ice6_somafm_com_n5md-128-aac.webp","Homepage":"https://somafm.com/n5md/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/n5md-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_synphaera-128-aac.m3u":{"Genre":["Electronic","Synth-Pop"],"Name":"Soma FM - Synphaera","Image":"https___ice6_somafm_com_synphaera-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/synphaera-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_tikitime-128-aac.m3u":{"Genre":["Tiki","World Music"],"Name":"Soma FM - Tiki Time","Image":"https___ice6_somafm_com_tikitime-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/tikitime-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice_coldstar_online_high_ogg.m3u":{"Genre":["Trance","Progressive","Psy","House","Deep House","Deep Tech"],"Name":"Coldstar Radio","Image":"https___ice_coldstar_online_high_ogg.webp","Homepage":"https://coldstar.online/","Country":"Kyrgyzstan","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"OGG","Bitrate":256,"StreamUri":"https://ice.coldstar.online/high.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[256],"highestBitrate":256},"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.m3u":{"Genre":["Classical"],"Name":"RCO Live","Image":"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice_fabricahost_com_br_radiomarinha.m3u":{"Genre":["News","Various"],"Name":"Rádio Marinha","Image":"https___ice_fabricahost_com_br_radiomarinha.webp","Homepage":"https://www.marinha.mil.br/radio-marinha","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Marinha FM: Navegando nas Ondas do Rádio","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice.fabricahost.com.br/radiomarinha","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___icecast_live_proxy_zerock_zerock.m3u":{"Genre":["Rock","Metal","Post Punk","Punk","Indie"],"Name":"Ze Rock Radio","Image":"https___icecast_live_proxy_zerock_zerock.webp","Homepage":"https://zerockradio.com/","Country":"Israel","State":"","Languages":["Hebrew","English"],"Language":"Hebrew, English","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://icecast.live/proxy/zerock/zerock","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___icecast_lyl_live_live.m3u":{"Genre":["Ambient","Contemporary","Electronic","Electronic","Experimental","Independent"],"Name":"LYL Radio","Image":"https___icecast_lyl_live_live.webp","Homepage":"http://lyl.live/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://icecast.lyl.live/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u":{"Genre":["Various","Variety"],"Name":"France Inter","Image":"https___icecast_radiofrance_fr_franceinter-midfi_mp3.webp","Homepage":"https://www.franceinter.fr/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"France Inter est une station de radio généraliste nationale publique française du groupe Radio France.","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.radiofrance.fr/franceinter-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_teveo_cu_3MCwWg3V.m3u":{"Genre":["Latin Hits","Reggae"],"Name":"Radio Taíno 93.3 FM","Image":"https___icecast_teveo_cu_3MCwWg3V.webp","Homepage":"www.radiotaino.icrt.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Taíno, la FM de Cuba","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/3MCwWg3V","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_McW3fLhs.m3u":{"Genre":["News","Various"],"Name":"Radio Habana Cuba","Image":"https___icecast_teveo_cu_McW3fLhs.webp","Homepage":"www.radiohc.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Una voz de amistad que recorre el mundo","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/McW3fLhs","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_NqWrgw7j.m3u":{"Genre":["Variety"],"Name":"Radio Sancti Spíritus 1210 AM 106.3 FM","Image":"https___icecast_teveo_cu_NqWrgw7j.webp","Homepage":"https://www.radiosanctispiritus.cu/es/","Country":"Cuba","State":"Sancti Spíritus","Languages":["Spanish"],"Language":"Spanish","Description":"Contemporánea en su tradición","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/NqWrgw7j","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_X9XNRkW4.m3u":{"Genre":["Various","News"],"Name":"Radio Minas 104.9 FM","Image":"https___icecast_teveo_cu_X9XNRkW4.webp","Homepage":"https://www.radiominas.icrt.cu","Country":"Cuba","State":"Minas De Matahambre","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Minas 104.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/X9XNRkW4","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_b3jbfThq.m3u":{"Genre":["News"],"Name":"Radio Reloj","Image":"https___icecast_teveo_cu_b3jbfThq.webp","Homepage":"https://www.radioreloj.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Canal de Informacíon Continua","Codec":"MP3","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/b3jbfThq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_kHKL7tWd.m3u":{"Genre":["Sport","News"],"Name":"Radio Rebelde AM","Image":"https___icecast_teveo_cu_kHKL7tWd.webp","Homepage":"https://www.radiorebelde.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"La emisora de la Revolución","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/kHKL7tWd","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 1 Classics","Image":"https___icecast_vrtcdn_be_radio1_classics-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio1_classics-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Bene Bene","Image":"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-bene-bene","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio2_benebene-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_walmradio_com_8443_jazz.m3u":{"Genre":["Avantgarde","Bebop","Big Band","Bop","Combos","Contemporary","Contemporary Jazz","Cool Jazz","Free Jazz","Fusion","Hard Bop","Mainstream","Mainstream Jazz","Modern Big Band","Post-bop","Straight-ahead","Walm"],"Name":"Adroit Jazz Underground","Image":"https___icecast_walmradio_com_8443_jazz.webp","Homepage":"https://walmradio.com/jazz","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Real Jazz in HD","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecast.walmradio.com:8443/jazz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___icecasthd_net_proxy_abejorral_live.m3u":{"Genre":["Public Radio"],"Name":"Abejorral Stereo","Image":"https___icecasthd_net_proxy_abejorral_live.webp","Homepage":"https://www.asenred.com/abejorral/","Country":"Colombia","State":"Antioquia","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecasthd.net/proxy/abejorral/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___iheart_4zzz_org_au_4zzz.m3u":{"Genre":["Indie"],"Name":"4ZZZ FM 102.1 - Alternative","Image":"https___iheart_4zzz_org_au_4zzz.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://iheart.4zzz.org.au/4zzz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u":{"Genre":["Adult Contemporary","Past Time Favs","Soft Rock","Mild Pop","Easy Listening"],"Name":"Kan 88 כאן","Image":"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=4","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kan88.media.kan.org.il/hls/live/2024812/2024812/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u":{"Genre":["Indie"],"Name":"Kanal K","Image":"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.webp","Homepage":"https://www.kanalk.ch/","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream.","Codec":"MP3","Bitrate":160,"StreamUri":"https://kanalk.streamabc.net/91-kanalk-mp3-192-5146873","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u":{"Genre":["Hebrew Pop","Top Hits","Past Time Favorites"],"Name":"Kan Gimel רשת גימל","Image":"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/content/kan/kan-gimel/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":384,"StreamUri":"https://kangimmel.media.kan.org.il/hls/live/2024813/2024813/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[384],"highestBitrate":384},"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"Kol Hamusica קול המוסיקה","Image":"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=7","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kanliveicy.media.kan.org.il/icy/kankolhamusica_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Bent 24","Image":"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.webp","Homepage":"https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com//kcrw_192k_mp3_bent24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Eclectic 24","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.webp","Homepage":"https://www.kcrw.com/music/shows/eclectic24/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_e24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u":{"Genre":["Eclectic","News"],"Name":"KCRW Live 89.9FM","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.webp","Homepage":"https://www.kcrw.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_on_air","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u":{"Genre":["DJ Mixes","Electronic","Independent"],"Name":"Kiosk Radio","Image":"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.webp","Homepage":"https://kioskradio.com/","Country":"Belgium","State":"","Languages":["English","French"],"Language":"English, French","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Reggae","Classical","Eclectic"],"Name":"DjamRadio","Image":"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.webp","Homepage":"https://www.djamradio.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"The Eclectic French Radio","Codec":"MP3","Bitrate":128,"StreamUri":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___legacy_scahw_com_au_2buddha_32.m3u":{"Genre":["Chill Out"],"Name":"Buddha Radio","Image":"https___legacy_scahw_com_au_2buddha_32.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":32,"StreamUri":"https://legacy.scahw.com.au/2buddha_32","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u":{"Genre":["IDM"],"Name":"Limbik Frequencies","Image":"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.webp","Homepage":"https://limbikfreq.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A tasty mix of downtempo electronica","Codec":"MP3","Bitrate":128,"StreamUri":"https://limbikfreq.com/listen/limbik_frequencies/128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___listen7_myradio24_com_69366.m3u":{"Genre":["Various"],"Name":"Pyongyang FM","Image":"https___listen7_myradio24_com_69366.webp","Homepage":"https://korea-dpr.com","Country":"Korea, Democratic People's Republic Of","State":"Pyongyang","Languages":["Korean"],"Language":"Korean","Description":"Pyongyang FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://listen7.myradio24.com/69366","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u":{"Genre":["Jazz"],"Name":"Jazz24","Image":"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.webp","Homepage":"https://www.jazz24.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"https://live.amperwave.net/direct/ppm-jazz24aac256-ibc1","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"https___live_streams_klassikradio_de_klassikradio-deutschland.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Live","Image":"https___live_streams_klassikradio_de_klassikradio-deutschland.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-deutschland","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_streams_klassikradio_de_klassikradio-movie.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Movie","Image":"https___live_streams_klassikradio_de_klassikradio-movie.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-movie","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u":{"Genre":["Romántico"],"Name":"Musical - 97.5 FM","Image":"https___live_turadio_stream_7005_stream_type_http_nocache_596.webp","Homepage":"https://radiomusical.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Musical es uno de los principales medios de comunicación de Costa Rica.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7005/stream?type=http&nocache=596","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___live_turadio_stream_7006__.m3u":{"Genre":["Romántico"],"Name":"Sinfonola - 90.3 FM","Image":"https___live_turadio_stream_7006__.webp","Homepage":"https://radiosinfonola.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7006/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u":{"Genre":["Pop","Hip-Hop","Electronic"],"Name":"DASDING","Image":"https___liveradio_swr_de_sw282p3_dasding_play_mp3.webp","Homepage":"https://www.dasding.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Jugendradioprogramm des Südwestrundfunks","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/dasding/play.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 BW","Image":"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"SWR1 Baden-Württemberg","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 RP","Image":"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR1 Rheinland-Pfalz","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"SWR2","Image":"https___liveradio_swr_de_sw282p3_swr2_play_mp3.webp","Homepage":"https://www.swr.de/swr2/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Kultur neu entdecken","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr2/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr2_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr2/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr2_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr2/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR3","Image":"https___liveradio_swr_de_sw282p3_swr3_play_mp3.webp","Homepage":"https://www.swr3.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der beste Musikmix. Einfach SWR3","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr3/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr3_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr3/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr3_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr3/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 BW","Image":"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 RP","Image":"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR Aktuell","Image":"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.webp","Homepage":"https://www.swr.de/swraktuell/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swraktuell/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swraktuell/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swraktuell/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___livex_radiopopolare_it_radiopop_FLID_3.m3u":{"Genre":["Information","News","Culture","Talk"],"Name":"Radio Popolare","Image":"https___livex_radiopopolare_it_radiopop_FLID_3.webp","Homepage":"https://livex.radiopopolare.it","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"The radio who gives a voice to those who have not.","Codec":"MP3","Bitrate":64,"StreamUri":"https://livex.radiopopolare.it/radiopop?FLID=3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u":{"Genre":["Rock","Eclectic"],"Name":"Mad Music Asylum","Image":"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://madmusicasylum.radioca.st/stream?type=http&nocache=36907","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___maggie_torontocast_com_8076_aac.m3u":{"Genre":["Indie","Rock","Eclectic"],"Name":"JB Radio2 (320K)","Image":"https___maggie_torontocast_com_8076_aac.webp","Homepage":"https://jb-radio.net/","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"JB Radio is an alternative,non-commercial,web radio station.","Codec":"AAC","Bitrate":320,"StreamUri":"https://maggie.torontocast.com:8076/aac","alternativeStreams":{"https___maggie_torontocast_com_8076_flac":{"StreamUri":"https://maggie.torontocast.com:8076/flac","Codec":"FLAC","Bitrate":0}},"allCodecs":["AAC","FLAC"],"allBitrates":[0,320],"highestBitrate":320},"https___maximum_hostingradio_ru_maximum96_aacp.m3u":{"Genre":["Pop","Rock","Hard Rock"],"Name":"Radio Maximum","Image":"https___maximum_hostingradio_ru_maximum96_aacp.webp","Homepage":"https://maximum.ru/","Country":"Russia","State":"","Languages":["Russian"],"Language":"Russian","Description":"Radio Maximum provides twenty four hour mix of several genres and styles of music.","Codec":"AAC","Bitrate":96,"StreamUri":"https://maximum.hostingradio.ru/maximum96.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"https___mediaserv73_live-streams_nl_18058_stream.m3u":{"Genre":["Classical","Mediaeval","Renaissance"],"Name":"Ancient FM - Mediaeval and Renaissance Music","Image":"https___mediaserv73_live-streams_nl_18058_stream.webp","Homepage":"","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://mediaserv73.live-streams.nl:18058/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u":{"Genre":["Rock"],"Name":"Radio Mega 98.3 Puro Rock Nacional","Image":"https___mega983_stweb_tv_mega983_live_playlist_m3u8.webp","Homepage":"https://radiomega.fm/","Country":"Argentina","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"HLS","Bitrate":66,"StreamUri":"https://mega983.stweb.tv/mega983/live/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[66],"highestBitrate":66},"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Mint (RTL)","Image":"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.webp","Homepage":"https://mint.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007.","Codec":"MP3","Bitrate":192,"StreamUri":"https://mint.ice.infomaniak.ch/mint-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u":{"Genre":["Jazz"],"Name":"Mother Earth Jazz","Image":"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u":{"Genre":["Various"],"Name":"Mother Earth Radio","Image":"https___motherearth_streamserver24_com_listen_motherearth_motherearth.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth/motherearth","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___myradio24_org_radiometal.m3u":{"Genre":["Metal"],"Name":"Radio Metal","Image":"https___myradio24_org_radiometal.webp","Homepage":"https://www.radio-metal.in.ua","Country":"Ukraine","State":"","Languages":["English"],"Language":"English","Description":"First Metal Radio in Ukraine!","Codec":"MP3","Bitrate":128,"StreamUri":"https://myradio24.org/radiometal","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u":{"Genre":["Classical"],"Name":"malaysia","Image":"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.webp","Homepage":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","Country":"Malaysia","State":"Kuala Lumpur","Languages":["Chinese"],"Language":"Chinese","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u":{"Genre":["Indie"],"Name":"Ultra","Image":"https___nashe1_hostingradio_ru_80_ultra-128_mp3.webp","Homepage":"https://radioultra.ru/","Country":"Russia","State":"","Languages":["Russian"],"Language":"Russian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://nashe1.hostingradio.ru:80/ultra-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___netradio_ziniur_lt_ziniur_64_mp3.m3u":{"Genre":["Talk","News"],"Name":"Žinių Radijas","Image":"https___netradio_ziniur_lt_ziniur_64_mp3.webp","Homepage":"https://www.ziniuradijas.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://netradio.ziniur.lt/ziniur_64.mp3","alternativeStreams":{"https___netradio_ziniuradijas_lt_ziniur_64_mp3":{"StreamUri":"https://netradio.ziniuradijas.lt/ziniur_64.mp3","Codec":"MP3","Bitrate":64}},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___online_extrafm_lt_8443_extrafm_mp3.m3u":{"Genre":["Pop","Talk","Folklore"],"Name":"Extra FM","Image":"https___online_extrafm_lt_8443_extrafm_mp3.webp","Homepage":"https://extrafm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://online.extrafm.lt:8443/extrafm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u":{"Genre":["Fight","Patriotic"],"Name":"Radio Bayraktar","Image":"https___online_radiobayraktar_ua_RadioBayraktar_HD.webp","Homepage":"https://www.radiobayraktar.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Radio Bayraktar is a radio station of unprecedented Ukrainian resistance","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radiobayraktar.ua/RadioBayraktar_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___online_radioroks_ua_RadioROKS_HD.m3u":{"Genre":["Rock","Hard Rock","Pop"],"Name":"Radio Roks Ukraine","Image":"https___online_radioroks_ua_RadioROKS_HD.webp","Homepage":"https://www.radioroks.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Рок. Тільки рок! (Rock, only rock !)","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radioroks.ua/RadioROKS_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___orelha_radiolivre_org_radiopaulofreire.m3u":{"Genre":["University Radio","MPB"],"Name":"Rádio Paulo Freire - UFPE","Image":"https___orelha_radiolivre_org_radiopaulofreire.webp","Homepage":"https://sites.ufpe.br/rpf/","Country":"Brazil","State":"Pernambuco","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Paulo Freire - Rádio Universitária da UFPE","Codec":"MP3","Bitrate":64,"StreamUri":"https://orelha.radiolivre.org/radiopaulofreire","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___orf-live_ors-shoutcast_at_fm4-q2a.m3u":{"Genre":["Indie Rock","Electronic"],"Name":"Radio FM4","Image":"https___orf-live_ors-shoutcast_at_fm4-q2a.webp","Homepage":"https://fm4.orf.at/","Country":"Austria","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/fm4-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___orf-live_ors-shoutcast_at_oe1-q2a.m3u":{"Genre":["Classical","Information","Culture"],"Name":"Ö1","Image":"https___orf-live_ors-shoutcast_at_oe1-q2a.webp","Homepage":"https://oe1.orf.at/","Country":"Austria","State":"Vienna","Languages":["German"],"Language":"German","Description":"Österreichischer Rundfunk, Stiftung öffentlichen Rechts","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/oe1-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u":{"Genre":["Acoustic","Rock"],"Name":"OUI FM ACOUSTIC","Image":"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.webp","Homepage":"https://www.ouifm.fr/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ouifmacoustic.ice.infomaniak.ch/ouifmacoustic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___paineldj5_com_br_20073_stream_1705993267781.m3u":{"Genre":["College Radio","Various"],"Name":"Universitária FM 100.7 (UFV)","Image":"https___paineldj5_com_br_20073_stream_1705993267781.webp","Homepage":"https://fratevi.org.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Para quem gosta de música e conteúdo!","Codec":"MP3","Bitrate":128,"StreamUri":"https://paineldj5.com.br:20073/stream?1705993267781","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___play_r1_co_nz_live.m3u":{"Genre":["Indie","Student Radio"],"Name":"Radio One 91FM","Image":"https___play_r1_co_nz_live.webp","Homepage":"https://r1.co.nz","Country":"New Zealand","State":"Dunedin","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://play.r1.co.nz/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u":{"Genre":["Indie"],"Name":"2BOB Radio 104.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.webp","Homepage":"http://www.2bobradio.org.au/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/2BOB.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u":{"Genre":["Romántico"],"Name":"Bésame - 89.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.webp","Homepage":"https://www.besame.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado.","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/BESAME_CR_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u":{"Genre":["Pop"],"Name":"Noventa y Cuatro Siete - 94.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.webp","Homepage":"https://www.crc.cr/crc947/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español.","Codec":"AAC","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/CRC_947AAC.aac?_=819140","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u":{"Genre":["Various"],"Name":"Q Music","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.webp","Homepage":"https://qmusic.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QMUSIC.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Caliente - 90.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.webp","Homepage":"https://www.lacaliente.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"La Caliente ofrece a sus oyentes una programación muy diversa.","Codec":"AAC","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QTEJA_CRAAC_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u":{"Genre":["News"],"Name":"Rádio Bandeirantes São Paulo 90.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (São Paulo)","Codec":"AAC+","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.m3u":{"Genre":["Jazz"],"Name":"WEMU Ypsilanti FM 89.1 - Jazz","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/WEMUFM.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___proic1_evspt_com_oxigenio_aac.m3u":{"Genre":["House","Hip-Hop","Jazz","Funk","Soul"],"Name":"OXIGÉNIO 102.6 FM","Image":"https___proic1_evspt_com_oxigenio_aac.webp","Homepage":"https://www.oxigenio.fm/","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Música para respirar","Codec":"AAC","Bitrate":192,"StreamUri":"https://proic1.evspt.com/oxigenio_aac","alternativeStreams":{"https___proic1_evspt_com_oxigenio_mp3":{"StreamUri":"https://proic1.evspt.com/oxigenio_mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["AAC","MP3"],"allBitrates":[192],"highestBitrate":192},"https___r1_comcities_com_proxy_emogddug_stream.m3u":{"Genre":["60's","70's","Oldies"],"Name":"Groovy Radio - 60's and 70's Oldies","Image":"https___r1_comcities_com_proxy_emogddug_stream.webp","Homepage":"https://www.groovyradio.us","Country":"United States","State":"Ohio","Languages":["English"],"Language":"English","Description":"Non-Stop 60's and 70's All Hit Oldies","Codec":"MP3","Bitrate":160,"StreamUri":"https://r1.comcities.com/proxy/emogddug/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio10_pro-fhi_net_radio_9041_stream.m3u":{"Genre":["Afrobeat","Ambient","Bass","Breakbeat","Dancehall","Dub","Electronic","Experimental","Funk","Hard Drums","House","IDM","Jazz","Latin","R'n'B","Rap","Techno","Trance","Uk Funky"],"Name":"Rinse France","Image":"https___radio10_pro-fhi_net_radio_9041_stream.webp","Homepage":"https://rinse.fm/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio10.pro-fhi.net/radio/9041/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_M-1H.m3u":{"Genre":["Pop","Charts"],"Name":"M-1","Image":"https___radio_m-1_fm_M-1H.webp","Homepage":"https://www.m-1.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/M-1H","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_laluna_mp3.m3u":{"Genre":["Pop","Regional"],"Name":"Laluna","Image":"https___radio_m-1_fm_laluna_mp3.webp","Homepage":"https://www.laluna.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://radio.m-1.fm/laluna/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio_m-1_fm_m-1dance_aac.m3u":{"Genre":["Dance"],"Name":"M-1 Dance","Image":"https___radio_m-1_fm_m-1dance_aac.webp","Homepage":"https://m-1dance.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radio.m-1.fm/m-1dance/aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radio_m-1_fm_m1plius_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Contemporary"],"Name":"M-1 Plius","Image":"https___radio_m-1_fm_m1plius_mp3.webp","Homepage":"https://www.pliusas.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/m1plius/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_promodj_com_fullmoon-192.m3u":{"Genre":["Hard Trance","Tech Trance","Progressive Trance","Uplifting Trance","Trance","Trancestep","Vocal Trance"],"Name":"Full Moon","Image":"https___radio_promodj_com_fullmoon-192.webp","Homepage":"https://promodj.com/radio#fullmoon","Country":"Russia","State":"","Languages":["English","Russian"],"Language":"English, Russian","Description":"Trance always. Trance everywhere. Trance 24/7.","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.promodj.com/fullmoon-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_sec_unicamp_br_aovivo_1698904239205.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UNICAMP","Image":"https___radio_sec_unicamp_br_aovivo_1698904239205.webp","Homepage":"https://www.sec.unicamp.br/web-radio-2/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e informação de qualidade!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://radio.sec.unicamp.br/aovivo?1698904239205","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___radio_sk8ter_org_8443_stream.m3u":{"Genre":["Electronic","Drum'n'Bass","Techno","House","Dance"],"Name":"Mémé dans les OrtiEs","Image":"https___radio_sk8ter_org_8443_stream.webp","Homepage":"https://memeradio.org","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Web radio électro","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.sk8ter.org:8443/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radio_streamgates_net_stream_oranim.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"Radion Oranim 103.6FM רדיו אורנים","Image":"https___radio_streamgates_net_stream_oranim.webp","Homepage":"https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.streamgates.net/stream/oranim","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact \"Feel Good\"","Image":"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiocontact.ice.infomaniak.ch/radiocontact-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u":{"Genre":["Variety"],"Name":"Rai Radio 2 91.7 FM","Image":"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio2","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 2 91.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiodue-live.akamaized.net/hls/live/2032592/radiodue/radiodue/radio2_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiofunandmore_spcast_eu_dj03.m3u":{"Genre":["Various"],"Name":"RadioFunAndMore","Image":"https___radiofunandmore_spcast_eu_dj03.webp","Homepage":"https://radiofunandmore.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Dein Sender Deine Hits","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiofunandmore.spcast.eu/dj03","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u":{"Genre":["News","Football","Soccer","MPB"],"Name":"Rádio Nacional do Alto Solimões","Image":"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalaltosolimoes","Country":"Brazil","State":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional do Alto Solimões - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://radionacionalaltosolimoes-stream.ebc.com.br/ebc/radionacionalaltosolimoes/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radios_rtbf_be_classic21-128_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"RTBF - Classic 21","Image":"https___radios_rtbf_be_classic21-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/classic21-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_jam-128_mp3.m3u":{"Genre":["Urbain","Pop","Electronic","Rock","Folk","New Jazz","World Music"],"Name":"RTBF - Jam","Image":"https___radios_rtbf_be_jam-128_mp3.webp","Homepage":"https://www.rtbf.be/jam","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/jam-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_laprem1ere-128_mp3.m3u":{"Genre":["Various","Variety","News"],"Name":"RTBF - La Première","Image":"https___radios_rtbf_be_laprem1ere-128_mp3.webp","Homepage":"https://www.rtbf.be/lapremiere/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/laprem1ere-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_musiq3-128_aac.m3u":{"Genre":["Classical"],"Name":"RTBF - Musiq 3","Image":"https___radios_rtbf_be_musiq3-128_aac.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radios.rtbf.be/musiq3-128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_pure-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - Tipik / PureFM","Image":"https___radios_rtbf_be_pure-128_mp3.webp","Homepage":"https://www.rtbf.be/tipik/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"null","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/pure-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_rtbfmix-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - RTBF Mix","Image":"https___radios_rtbf_be_rtbfmix-128_mp3.webp","Homepage":"https://www.rtbf.be/rtbfmix","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/rtbfmix-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_tarmac-128_mp3.m3u":{"Genre":["Pop","Variety"],"Name":"RTBF - Tarmac","Image":"https___radios_rtbf_be_tarmac-128_mp3.webp","Homepage":"https://www.rtbf.be/Tarmac","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/tarmac-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaliege-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - VivaCité Liège","Image":"https___radios_rtbf_be_vivaliege-128_mp3.webp","Homepage":"https://www.rtbf.be/vivacite/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaliege-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaplus-128_mp3.m3u":{"Genre":["60's","70's"],"Name":"RTBF - Viva+","Image":"https___radios_rtbf_be_vivaplus-128_mp3.webp","Homepage":"https://www.rtbf.be/vivaplus","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaplus-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_wr-c21-60-128_mp3.m3u":{"Genre":["60's","Rock","Pop"],"Name":"RTBF - Classic 21 60's","Image":"https___radios_rtbf_be_wr-c21-60-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Le meilleur Rock'n'Pop des années 60","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-60-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-70-128_mp3.m3u":{"Genre":["70's","Classic Rock","Rock"],"Name":"RTBF - Classic 21 70's","Image":"https___radios_rtbf_be_wr-c21-70-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-70-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-80-128_mp3.m3u":{"Genre":["80's","Rock","Pop"],"Name":"RTBF - Classic 21 80's","Image":"https___radios_rtbf_be_wr-c21-80-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Rock'n'Pop of the 80's","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-80-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-90-128_mp3.m3u":{"Genre":["90's"],"Name":"RTBF - Classic 21 90's","Image":"https___radios_rtbf_be_wr-c21-90-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-90-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u":{"Genre":["Country"],"Name":"RTBF - Classic 21 Route 66","Image":"https___radios_rtbf_be_wr-c21-route66-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-route66-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u":{"Genre":["Renaissance","Baroque"],"Name":"RTBF - Musiq 3 Baroque","Image":"https___radios_rtbf_be_wr-m3-baroque-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Un voyage dans l'Europe musicale, de la Renaissance jusque 1750","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-baroque-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u":{"Genre":["Jazz"],"Name":"RTBF - Musiq 3 Jazz","Image":"https___radios_rtbf_be_wr-m3-jazz-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Du jazz belge et international pour tous, des années 20 à nos jours","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-jazz-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u":{"Genre":["Romantique"],"Name":"RTBF - Musiq 3 Romantique","Image":"https___radios_rtbf_be_wr-m3-romantique-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Les plus grandes pages de la musique romantique","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-romantique-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radioshamfm_grtvstream_com_8400__.m3u":{"Genre":["Various","News"],"Name":"Sham FM","Image":"https___radioshamfm_grtvstream_com_8400__.webp","Homepage":"https://sham.fm/ar/index.html","Country":"Syria","State":"","Languages":["Arabic"],"Language":"Arabic","Description":"Sham FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://radioshamfm.grtvstream.com:8400/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u":{"Genre":["News","Sport"],"Name":"Guardian Radio 96.9 FM","Image":"https___radiostreams_streamcomedia_com_8000_969guardianradio.webp","Homepage":"https://guardiantalkradio.com","Country":"Bahamas","State":"Nassau","Languages":["English"],"Language":"English","Description":"Guardian Radio 96.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://radiostreams.streamcomedia.com:8000/969guardianradio","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u":{"Genre":["Opera"],"Name":"Rai Radio 3 93.7 FM","Image":"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio3","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 3 93.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiotre-live.akamaized.net/hls/live/2032594/radiotre/radiotre/radio3_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u":{"Genre":["News","Sport"],"Name":"Rai Radio 1 89.7 FM","Image":"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio1","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 1 89.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiounoest-live.akamaized.net/hls/live/2032586/radiounoest/radiounoest/radio1est_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u":{"Genre":["Tamil Radio"],"Name":"IBC Tamil","Image":"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.webp","Homepage":"https://radio.ibctamil.com/","Country":"India","State":"","Languages":["Tamil"],"Language":"Tamil","Description":"IBC Tamil offers an excellent line-up of regular and one-off shows","Codec":"MP3","Bitrate":128,"StreamUri":"https://rbx2.hnux.com/http://10454.cloudrad.io:6176/;stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u":{"Genre":["News"],"Name":"Ici Radio-Canada Premiere Montreal","Image":"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.webp","Homepage":"https://ici.radio-canada.ca/","Country":"Canada","State":"Montreal","Languages":["French"],"Language":"French","Description":"","Codec":"HLS","Bitrate":465,"StreamUri":"https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[465],"highestBitrate":465},"https___relay2_bide-et-musique_com_9300_bm_mp3.m3u":{"Genre":["70's","80's"],"Name":"Bide et Musique - La radio de l'improbable et de l'inouï","Image":"https___relay2_bide-et-musique_com_9300_bm_mp3.webp","Homepage":"https://www.bide-et-musique.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et…","Codec":"MP3","Bitrate":128,"StreamUri":"https://relay2.bide-et-musique.com:9300/bm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rozhlas_stream_ddur_mp3_256_mp3.m3u":{"Genre":["Classical"],"Name":"Czech Radio Classical","Image":"https___rozhlas_stream_ddur_mp3_256_mp3.webp","Homepage":"","Country":"Czech Republic","State":"","Languages":["Czech"],"Language":"Czech","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"https://rozhlas.stream/ddur_mp3_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s02_brascast_com_7386_live.m3u":{"Genre":["Entrevistas","Interviews","News","News Talk","Notícias"],"Name":"Rádio Foco Livre","Image":"https___s02_brascast_com_7386_live.webp","Homepage":"https://www.focolivre.com.br/","Country":"Brazil","State":"Santa Catarina","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s02.brascast.com:7386/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s09_hstbr_net_8238_live_1514038524061.m3u":{"Genre":["News","Various"],"Name":"Brasil de Fato","Image":"https___s09_hstbr_net_8238_live_1514038524061.webp","Homepage":"https://www.brasildefato.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Brasil de Fato - Uma visão popular do Brasil e do mundo","Codec":"MP3","Bitrate":128,"StreamUri":"https://s09.hstbr.net:8238/live?1514038524061","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s1_knixx_fm_dein_webradio_256_mp3.m3u":{"Genre":["Variety","Adult Contemporary","New Country","Non-commercial","Non-profit","Oldies","Pop","Rock"],"Name":"knixx.fm","Image":"https___s1_knixx_fm_dein_webradio_256_mp3.webp","Homepage":"https://knixx.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Musik von den 60ern bis heute.","Codec":"MP3","Bitrate":256,"StreamUri":"https://s1.knixx.fm/dein_webradio_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio P.Y.G.","Image":"https___s2_ssl-stream_com_radio_8160_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"All the Best from Pink Floyd, Yes and Genesis","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8160/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio Progressive Rock","Image":"https___s2_ssl-stream_com_radio_8180_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8180/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u":{"Genre":["MPB","College Radio","University","Independent Music","Pop"],"Name":"Rádio Pop Goiaba UFF","Image":"https___s37_maxcast_com_br_8450_live_id_1698623926568.webp","Homepage":"https://radiopopgoiaba.uff.br/pop-goiaba-uff/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Pop Goiaba UFF","Codec":"MPEG","Bitrate":32,"StreamUri":"https://s37.maxcast.com.br:8450/live?id=1698623926568","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___s5_radio_co_s23b8ada46_listen.m3u":{"Genre":["Community Radio","Indie","Underground","Indie","AfroHouse","AfroJazz","Hip-Hop","Jazz"],"Name":"Oroko Radio","Image":"https___s5_radio_co_s23b8ada46_listen.webp","Homepage":"https://oroko.live/","Country":"Ghana","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/s23b8ada46/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s5_radio_co_sd515b7b34_listen.m3u":{"Genre":["Rock","Baladas"],"Name":"Radio 2 - 99.5 FM","Image":"https___s5_radio_co_sd515b7b34_listen.webp","Homepage":"https://radiodos.com/","Country":"Costa Rica","State":"","Languages":["English"],"Language":"English","Description":"Éxitos que fueron de UNO y ahora son de DOS 99.5 FM.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/sd515b7b34/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s61_radiolize_com_radio_8000_radio_mp3.m3u":{"Genre":["2000's","Dance","Rock","Pop","Hip-Hop"],"Name":"Smart Zeros","Image":"https___s61_radiolize_com_radio_8000_radio_mp3.webp","Homepage":"https://smart2000s.com/cool-songs-for-2000-theme-party/","Country":"Ukraine","State":"","Languages":["English"],"Language":"English","Description":"Cool Songs For 2000 Theme Party","Codec":"MP3","Bitrate":128,"StreamUri":"https://s61.radiolize.com/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___server1_fex_red_8366_stream.m3u":{"Genre":["Entretenimiento","Deportes","Noticias","Variedades"],"Name":"Radio Gente","Image":"https___server1_fex_red_8366_stream.webp","Homepage":"https://radiogentebol.com/","Country":"Bolivia","State":"","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://server1.fex.red:8366/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___servidor21_brlogic_com_7712_live.m3u":{"Genre":["MPB","Radio Universitaria","University Radio"],"Name":"Rádio UFRJ","Image":"https___servidor21_brlogic_com_7712_live.webp","Homepage":"https://radio.ufrj.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da Universidade Federal do Rio de Janeiro","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor21.brlogic.com:7712/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor22-3_brlogic_com_7404_live.m3u":{"Genre":["MPB","News"],"Name":"Rádio UERJ","Image":"https___servidor22-3_brlogic_com_7404_live.webp","Homepage":"https://www.radiouerj.com/app/index.html","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Conectando você ao conhecimento!","Codec":"MP3","Bitrate":32,"StreamUri":"https://servidor22-3.brlogic.com:7404/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___servidor35-1_brlogic_com_8062_live.m3u":{"Genre":["Eclectic","Football"],"Name":"Rádio FERJ","Image":"https___servidor35-1_brlogic_com_8062_live.webp","Homepage":"https://www.fferj.com.br/radio","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio FERJ","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor35-1.brlogic.com:8062/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor38-2_brlogic_com_8134_live.m3u":{"Genre":["Various"],"Name":"Rádio UPF 99.9 FM","Image":"https___servidor38-2_brlogic_com_8134_live.webp","Homepage":"https://radioupf.minhawebradio.net/app/index.html","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UPF 99.9 FM","Codec":"MPEG","Bitrate":196,"StreamUri":"https://servidor38-2.brlogic.com:8134/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[196],"highestBitrate":196},"https___servidor39-3_brlogic_com_8180_live.m3u":{"Genre":["Various"],"Name":"Rádio Uniso","Image":"https___servidor39-3_brlogic_com_8180_live.webp","Homepage":"https://radiouniso.com","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano.","Codec":"MPEG","Bitrate":128,"StreamUri":"https://servidor39-3.brlogic.com:8180/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_am846_m3u8.m3u":{"Genre":["News","Education"],"Name":"China Plus (China Radio International) - English","Image":"https___sk_cri_cn_am846_m3u8.webp","Homepage":"https://chinaplus.cri.cn","Country":"China","State":"","Languages":["English"],"Language":"English","Description":"China Plus (China Radio International) - English","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/am846.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___sk_cri_cn_frenchafrica_m3u8.m3u":{"Genre":["News","Debate"],"Name":"CGTN Radio Français","Image":"https___sk_cri_cn_frenchafrica_m3u8.webp","Homepage":"https://radio.cgtn.com/","Country":"China","State":"","Languages":["French"],"Language":"French","Description":"CGTN Radio Français","Codec":"ADTS","Bitrate":128,"StreamUri":"https://sk.cri.cn/frenchafrica.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_nhzs_m3u8.m3u":{"Genre":["Various"],"Name":"CRI Voice of the South China Sea 89.1 FM","Image":"https___sk_cri_cn_nhzs_m3u8.webp","Homepage":"https://vscs.cri.cn","Country":"China","State":"","Languages":["Chinese"],"Language":"Chinese","Description":"CRI Voice of the South China Sea 89.1 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/nhzs.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___smoothjazz_cdnstream1_com_2585_320_mp3.m3u":{"Genre":["Jazz","Smooth Jazz"],"Name":"SmoothJazz Global","Image":"https___smoothjazz_cdnstream1_com_2585_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2585_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___smoothjazz_cdnstream1_com_2586_320_mp3.m3u":{"Genre":["Lounge","Smooth Lounge"],"Name":"SmoothLounge Global","Image":"https___smoothjazz_cdnstream1_com_2586_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2586_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"Soho Radio London","Image":"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://sohoradiomusic.doughunt.co.uk:8010/320mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência AM 880","Image":"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Uma Rádio Para Todos e Todas!","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia2?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência 100.9 FM","Image":"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Inconfidência 100.9 FM","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u":{"Genre":["Electronic","Culture","House"],"Name":"La Urban Radio","Image":"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.webp","Homepage":"https://www.urbanrevolution.es","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Nuevos talentos y grandes artistas se dan la mano en La Urban Radio.","Codec":"MP3","Bitrate":160,"StreamUri":"https://st1.urbanrevolution.es:8443/laurbanfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___stm23_xcast_com_br_11284_stream_1705992834372.m3u":{"Genre":["News","Football"],"Name":"Rádio Bandeirantes Campinas 1170 AM","Image":"https___stm23_xcast_com_br_11284_stream_1705992834372.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/campinas","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (Campinas)","Codec":"MP3","Bitrate":128,"StreamUri":"https://stm23.xcast.com.br:11284/stream?1705992834372","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str1_castradios_com_br_10998_stream.m3u":{"Genre":["Flashback","Adult","Sport"],"Name":"Rádio 365","Image":"https___str1_castradios_com_br_10998_stream.webp","Homepage":"https://radio365.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio de todos os dias!","Codec":"MP3","Bitrate":128,"StreamUri":"https://str1.castradios.com.br:10998/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str_topradio_be_topradio_mp3.m3u":{"Genre":["Various"],"Name":"Top Radio","Image":"https___str_topradio_be_topradio_mp3.webp","Homepage":"https://www.topradio.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://str.topradio.be/topradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-156_zeno_fm_22db1xmde2zuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Arumbu FM","Image":"https___stream-156_zeno_fm_22db1xmde2zuv.webp","Homepage":"https://tamilradios.net/arumbu-fm/","Country":"India","State":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream-156.zeno.fm/22db1xmde2zuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Classical","Talk","Culture"],"Name":"LRT Klasika","Image":"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/klasika/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Modern","Contemporary","Indie"],"Name":"LRT Opus","Image":"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/opus/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Various","News","Talk"],"Name":"LRT Radijas","Image":"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/radijas/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream128_kngi_org.m3u":{"Genre":["Game","Various"],"Name":"KNGI Network","Image":"https___stream128_kngi_org.webp","Homepage":"https://kngi.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream128.kngi.org","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream1_svrdedicado_org_8028_stream.m3u":{"Genre":["Blues","Rock","Instrumental"],"Name":"Rádio Lam","Image":"https___stream1_svrdedicado_org_8028_stream.webp","Homepage":"https://radiolam.wixsite.com/24horas","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rock & Blues 24 horas!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream1.svrdedicado.org/8028/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_relaxfm_lt_relaxfm128_mp3.m3u":{"Genre":["Pop"],"Name":"Relax FM","Image":"https___stream2_relaxfm_lt_relaxfm128_mp3.webp","Homepage":"https://relaxfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.relaxfm.lt/relaxfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_rockfm_lt_crf128_mp3.m3u":{"Genre":["Rock"],"Name":"Rock FM","Image":"https___stream2_rockfm_lt_crf128_mp3.webp","Homepage":"https://rockfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.rockfm.lt/crf128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u":{"Genre":["MPB","News"],"Name":"Rádio Câmara 96.9 FM","Image":"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.webp","Homepage":"https://www.camara.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Câmara 96.9 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://stream3.camara.gov.br/radiocamara1t64/manifest.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___stream_animeradio_de_animeradio_mp3.m3u":{"Genre":["Anime","J-pop","J-rock","OST","Party","Rock"],"Name":"AnimeRadio.de","Image":"https___stream_animeradio_de_animeradio_mp3.webp","Homepage":"https://www.animeradio.de/","Country":"Germany","State":"","Languages":["German","Japanese"],"Language":"German, Japanese","Description":"Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen.","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.animeradio.de/animeradio.mp3","alternativeStreams":{"https___stream_animeradio_de_animeradio_aac":{"StreamUri":"https://stream.animeradio.de/animeradio.aac","Codec":"AAC","Bitrate":32}},"allCodecs":["AAC","MP3"],"allBitrates":[32,192],"highestBitrate":192},"https___stream_artsound_fm_mp3.m3u":{"Genre":["Classical","Jazz","Folk","World Music"],"Name":"ArtSound FM 92.7","Image":"https___stream_artsound_fm_mp3.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.artsound.fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_ceit_be_sudradio-hainaut.m3u":{"Genre":["Various"],"Name":"Sud Radio Hainaut","Image":"https___stream_ceit_be_sudradio-hainaut.webp","Homepage":"https://sudradio.net","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://stream.ceit.be/sudradio-hainaut","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___stream_ehr_lt_8443_ehr.m3u":{"Genre":["Charts","Pop"],"Name":"European Hit Radio","Image":"https___stream_ehr_lt_8443_ehr.webp","Homepage":"https://www.europeanhitradio.lt","Country":"Lithuania","State":"","Languages":["Lithuanian","English"],"Language":"Lithuanian, English","Description":"","Codec":"HE-AAC","Bitrate":96,"StreamUri":"https://stream.ehr.lt:8443/ehr","alternativeStreams":{"https___82_135_234_195_8443_ehr_mp3":{"StreamUri":"https://82.135.234.195:8443/ehr.mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["HE-AAC","MP3"],"allBitrates":[96,192],"highestBitrate":192},"https___stream_nowyswiat_online_mp3.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio Nowy Swiat","Image":"https___stream_nowyswiat_online_mp3.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.nowyswiat.online/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_radiomustathens_com_must-hero.m3u":{"Genre":["Adult Contemporary","Top 40"],"Name":"Hero","Image":"https___stream_radiomustathens_com_must-hero.webp","Homepage":"https://app.radiomustathens.com/#/must-hero","Country":"Greece","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.radiomustathens.com/must-hero","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___stream_radioparadise_com_aac-320.m3u":{"Genre":["Eclectic"],"Name":"Radio Paradise - Main Mix","Image":"https___stream_radioparadise_com_aac-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/aac-320","alternativeStreams":{"https___stream_radioparadise_com_flacm":{"StreamUri":"https://stream.radioparadise.com/flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_mellow-320.m3u":{"Genre":["Rock","Mellow Rock"],"Name":"Radio Paradise - Mellow","Image":"https___stream_radioparadise_com_mellow-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/mellow-320","alternativeStreams":{"https___stream_radioparadise_com_mellow-flacm":{"StreamUri":"https://stream.radioparadise.com/mellow-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_rock-320.m3u":{"Genre":["Rock"],"Name":"Radio Paradise - Rock","Image":"https___stream_radioparadise_com_rock-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/rock-320","alternativeStreams":{"https___stream_radioparadise_com_rock-flacm":{"StreamUri":"https://stream.radioparadise.com/rock-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_world-etc-320.m3u":{"Genre":["World Music"],"Name":"Radio Paradise - World","Image":"https___stream_radioparadise_com_world-etc-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/world-etc-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___stream_rcs_revma_com_an1ugyygzk8uv.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio 357","Image":"https___stream_rcs_revma_com_an1ugyygzk8uv.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/an1ugyygzk8uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_anew1ctrgzzuv.m3u":{"Genre":["Pop","Rock"],"Name":"DH Radio / Twizz","Image":"https___stream_rcs_revma_com_anew1ctrgzzuv.webp","Homepage":"https://www.dhnet.be/medias/dh-radio","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing.","Codec":"AAC","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/anew1ctrgzzuv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u":{"Genre":["Pop","Rock"],"Name":"Must FM","Image":"https___stream_rcs_revma_com_cm96zpmrmm0uv.webp","Homepage":"https://mustfm.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/cm96zpmrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_f31w7e0fveuvv.m3u":{"Genre":["Pop","Charts"],"Name":"Power Hit Radio","Image":"https___stream_rcs_revma_com_f31w7e0fveuvv.webp","Homepage":"https://powerhitradio.tv3.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":89,"StreamUri":"https://stream.rcs.revma.com/f31w7e0fveuvv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[89],"highestBitrate":89},"https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u":{"Genre":["Pop","Rock","Dance","Club"],"Name":"Maximum FM","Image":"https___stream_rcs_revma_com_vnmbzemrmm0uv.webp","Homepage":"https://www.maximumfm.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/vnmbzemrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_xh00fwuptg0uv.m3u":{"Genre":["Various"],"Name":"NRJ Belgique","Image":"https___stream_rcs_revma_com_xh00fwuptg0uv.webp","Homepage":"https://www.nrj.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/xh00fwuptg0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rockantenne_de_rockantenne_stream_mp3.m3u":{"Genre":["Rock"],"Name":"Rock Antenne","Image":"https___stream_rockantenne_de_rockantenne_stream_mp3.webp","Homepage":"https://www.rockantenne.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rockantenne.de/rockantenne/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_skylab-radio_com_live.m3u":{"Genre":["Ambient","Eclectic","Experimental","Hip-Hop","House","Rock","Techno"],"Name":"Skylab Radio","Image":"https___stream_skylab-radio_com_live.webp","Homepage":"http://skylab-radio.com/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.skylab-radio.com/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_zeno_fm_lf9upjop1gyuv.m3u":{"Genre":["General","News","Various"],"Name":"Kadicou FM","Image":"https___stream_zeno_fm_lf9upjop1gyuv.webp","Homepage":"https://zeno.fm/radio/kadicou-fm/","Country":"Nigeria","State":"","Languages":["English"],"Language":"English","Description":"Kadicou FM is dedicated to giving you quality broadcast and entertaining programs!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.zeno.fm/lf9upjop1gyuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Public Radio"],"Name":"Rádio Antena 1 99.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.webp","Homepage":"https://antena1.rtp.pt","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 99.4 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena180a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u":{"Genre":["News","Politics","Sport","Fado"],"Name":"Rádio Antena 1 Madeira 104.6 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.webp","Homepage":"http://www.rtp.pt/madeira","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 Madeira 104.6 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena1madeira80a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u":{"Genre":["Classical","Opera"],"Name":"Rádio Antena 2 94.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.webp","Homepage":"https://antena2.rtp.pt","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Arte que Toca","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena280a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Dance"],"Name":"Rádio Antena 3 105.2 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.webp","Homepage":"https://media.rtp.pt/antena3/","Country":"Portugal","State":"Lisboa","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Alternativa Pop","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena380a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.m3u":{"Genre":["Classical"],"Name":"Davide of MIMIC","Image":"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streaming04.liveboxstream.uk/proxy/davideof?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streaming_antipode_be_antipode_mp3.m3u":{"Genre":["Various"],"Name":"Antipode - La Radio du Brabant Wallon","Image":"https___streaming_antipode_be_antipode_mp3.webp","Homepage":"https://www.antipode.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streaming.antipode.be/antipode.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming_inweb_com_br_energia.m3u":{"Genre":["Pop-Rock","Dance","Trance","Pop"],"Name":"Rádio Energia 97 FM","Image":"https___streaming_inweb_com_br_energia.webp","Homepage":"https://www.97fm.com.br","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Energia que te move!","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming.inweb.com.br/energia","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming_radio_co_s3699c5e49_listen.m3u":{"Genre":["Ambient","Electronic","Experimental","Hip-Hop","House","Jazz","Pop"],"Name":"Refuge Worldwide","Image":"https___streaming_radio_co_s3699c5e49_listen.webp","Homepage":"https://refugeworldwide.com/","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Alternative community radio from Berlin","Codec":"MP3","Bitrate":192,"StreamUri":"https://streaming.radio.co/s3699c5e49/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___streaming_ufg_br_8443_radiouniversitaria.m3u":{"Genre":["MPB","News"],"Name":"Rádio Universitária UFG","Image":"https___streaming_ufg_br_8443_radiouniversitaria.webp","Homepage":"https://radio.ufg.br/p/aovivo","Country":"Brazil","State":"Goiás","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UFG","Codec":"MPEG","Bitrate":128,"StreamUri":"https://streaming.ufg.br:8443/radiouniversitaria","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["60's"],"Name":"FluxFM - 60s","Image":"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/60er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - ChillHop","Image":"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Chillhop/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Eclectic"],"Name":"FluxFM - Melides Art Radio","Image":"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Melides/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - Chillout Radio","Image":"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/chillout/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Clubsandwich","Image":"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/clubsandwich/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Pop"],"Name":"FluxFM - ElectroFlux","Image":"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/elektro/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.m3u":{"Genre":["Pop","Culture"],"Name":"FluxFM - Hamburg","Image":"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/flux-hamburg/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - FluxKompensator","Image":"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/fluxkompensator/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Disco","Dance"],"Name":"FluxFM - Indie Disco","Image":"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/indiedisco/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - Jazzradio Schwarzenstein","Image":"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/jazzschwarz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - John Reed Radio","Image":"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/john-reed/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Klubradio","Image":"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/klubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Lounge","Neo-Soul","Trip-Hop","Jazz"],"Name":"FluxFM - FluxLounge","Image":"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/lounge/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","House"],"Name":"FluxFM - Sound Of Berlin","Image":"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/soundofberlin/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Techno"],"Name":"FluxFM - Techno Underground","Image":"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/technoug/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_radio7_de_dab_mp3-192_web_.m3u":{"Genre":["Pop"],"Name":"Radio 7","Image":"https___streams_radio7_de_dab_mp3-192_web_.webp","Homepage":"https://www.radio7.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio7.de/dab/mp3-192/web/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u":{"Genre":["60's","70's"],"Name":"Joe 60's & 70's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_60s_70s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u":{"Genre":["80's","90's"],"Name":"Joe 80's & 90's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_80s_90s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u":{"Genre":["Various"],"Name":"Joe Easy","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u":{"Genre":["Various","70's","80's","90's"],"Name":"Joe FM","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u":{"Genre":["2000's"],"Name":"Joe Top 2000","Image":"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","70's"],"Name":"Radio BOB! 70s Rock","Image":"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/70errock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","Blues"],"Name":"Radio BOB! Blues","Image":"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"RADIO BOB!s neuer Blues Stream","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/blues/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Best of Rock","Image":"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/bob-bestofrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Newcomer","Image":"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Listen to the hottest new rockbands – nonstop.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/newcomer/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Oldies","Image":"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/rockoldies/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Summer Rock Hits","Image":"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/summerrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 610 AM","Image":"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-am-610-am610khz.html","Country":"Vietnam","State":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 610 AM","Codec":"AAC","Bitrate":320,"StreamUri":"https://strm.voh.com.vn/radio/channel2/chunklist_w2105781582.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 99.9 FM","Image":"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html","Country":"Vietnam","State":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 99.9 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://strm.voh.com.vn/radio/channel3/chunklist_w1232938254.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u":{"Genre":["News","Talk","Culture"],"Name":"SR P1","Image":"https___sverigesradio_se_topsy_direkt_132-hi-aac.webp","Homepage":"https://sverigesradio.se/p1","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/132-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u":{"Genre":["Pop","Culture"],"Name":"SR P3","Image":"https___sverigesradio_se_topsy_direkt_164-hi-aac.webp","Homepage":"https://sverigesradio.se/p3","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/164-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u":{"Genre":["News","Weather","Sport","Culture"],"Name":"SR P4 Jämtland","Image":"https___sverigesradio_se_topsy_direkt_200-hi-aac.webp","Homepage":"https://sverigesradio.se/jamtland","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"News, weather, sport, and culture from Jämtland","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/200-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___transliacija_rc_lt_rc128_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"Radijo Centras","Image":"https___transliacija_rc_lt_rc128_mp3.webp","Homepage":"https://rc.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.rc.lt/rc128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___transliacija_zipfm_lt_zipfm128_mp3.m3u":{"Genre":["Youth","Pop"],"Name":"ZIP FM","Image":"https___transliacija_zipfm_lt_zipfm128_mp3.webp","Homepage":"https://zipfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.zipfm.lt/zipfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u":{"Genre":["Jazz"],"Name":"TSF Jazz","Image":"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.webp","Homepage":"https://www.tsfjazz.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ».","Codec":"MP3","Bitrate":128,"StreamUri":"https://tsfjazz.ice.infomaniak.ch/tsfjazz-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tunein_cdnstream1_com_3519_96_mp3.m3u":{"Genre":["News","Tv News","World News"],"Name":"CNN International","Image":"https___tunein_cdnstream1_com_3519_96_mp3.webp","Homepage":"https://www.cnn.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"TV Audio for CNN International","Codec":"MP3","Bitrate":96,"StreamUri":"https://tunein.cdnstream1.com/3519_96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u":{"Genre":["News. MPB"],"Name":"Rádio UFMG Educativa 104.5 FM","Image":"https___ufmg_br_streamingradioaovivo_aovivo_mp3.webp","Homepage":"https://ufmg.br/comunicacao/radio-ufmg-educativa","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFMG Educativa 104.5 FM","Codec":"MP3","Bitrate":32,"StreamUri":"https://ufmg.br/streamingradioaovivo/aovivo.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___uk2_streamingpulse_com_ssl_vcr1.m3u":{"Genre":["Classical"],"Name":"Venice Classic Radio","Image":"https___uk2_streamingpulse_com_ssl_vcr1.webp","Homepage":"https://www.veniceclassicradio.eu/","Country":"Italy","State":"","Languages":["English"],"Language":"English","Description":"Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers.","Codec":"MP3","Bitrate":128,"StreamUri":"https://uk2.streamingpulse.com/ssl/vcr1","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___virtualtronics_net_proxy_zetafm_mp__stream.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"Zeta FM - 95.1 FM","Image":"https___virtualtronics_net_proxy_zetafm_mp__stream.webp","Homepage":"https://www.zetafmcr.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina.","Codec":"MP3","Bitrate":128,"StreamUri":"https://virtualtronics.net/proxy/zetafm?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"WDR 3","Image":"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr3/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Kulturradio","Codec":"MP3","Bitrate":256,"StreamUri":"https://wdr-wdr3-live.icecastssl.wdr.de/wdr/wdr3/live/mp3/256/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___wgbh-live_streamguys1_com_classical-hi.m3u":{"Genre":["Classical"],"Name":"WCRB Boston 99.5 - Classical","Image":"https___wgbh-live_streamguys1_com_classical-hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://wgbh-live.streamguys1.com/classical-hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___www_radioking_com_play_radio-doudou.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Doudou","Image":"https___www_radioking_com_play_radio-doudou.webp","Homepage":"https://www.radiodoudou.com","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radioking.com/play/radio-doudou","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_radiopommedapi_com_radio_mp3.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Pomme d'Api - La Radio des Petits","Image":"https___www_radiopommedapi_com_radio_mp3.webp","Homepage":"https://www.radiopommedapi.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radiopommedapi.com/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_ragya_com_prahar.m3u":{"Genre":["Indian Classical","Indian Instrumental"],"Name":"Ragya","Image":"https___www_ragya_com_prahar.webp","Homepage":"https://www.ragya.com/prahar","Country":"India","State":"Maharashtra","Languages":["Hindi","Urdu","Sanskrit"],"Language":"Hindi, Urdu, Sanskrit","Description":"Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition.","Codec":"MP3","Bitrate":32,"StreamUri":"https://www.ragya.com/prahar","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___www_wwoz_org_listen_hi.m3u":{"Genre":["Jazz","Blues","Latin","Cajun","Funk"],"Name":"WWOZ New Orleans FM 90.7 - Various Artists","Image":"https___www_wwoz_org_listen_hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.wwoz.org/listen/hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wz7_servidoresbrasil_com_8162_stream.m3u":{"Genre":["MPB","Flashback"],"Name":"Rádio Hits 98.9 FM (Campos/São João da Barra)","Image":"https___wz7_servidoresbrasil_com_8162_stream.webp","Homepage":"https://redehits.fm","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Dá gosto de ouvir!","Codec":"MP3","Bitrate":32,"StreamUri":"https://wz7.servidoresbrasil.com:8162/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"Radio Zet","Image":"https___zt03_cdn_eurozet_pl_zet-tun_mp3.webp","Homepage":"https://www.radiozet.pl","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://zt03.cdn.eurozet.pl/zet-tun.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128}},"totalWebradios":591,"webradioLanguages":["Arabic","Bengali","Brazilian Portuguese","Chinese","Corse","Czech","Danish","Dutch","English","Español","Francais","Français","French","German","Greek","Hebrew","Hindi","Indigenous Languages","Italian","Japanese","Kannada","Konkani","Korean","Lithuanian","Luxembourgish","Multilingual","Polish","Portugues","Portuguese","Romansh","Russian","Sanskrit","Spanish","Swedish","Tamil","Ukrainian","Urdu","Vietnamese/tiếng Việt","Welsh"],"totalWebradioLanguages":39,"webradioCountries":["Argentina","Australia","Austria","Bahamas","Belgium","Bermuda","Bolivia","Brazil","Canada","Chile","China","Colombia","Costa Rica","Cuba","Czech Republic","Denmark","Estonia","France","Germany","Ghana","Greece","Hungary","India","Israel","Italy","Japan","Korea, Democratic People's Republic Of","Kyrgyzstan","Lithuania","Luxembourg","Malaysia","Netherlands","New Zealand","Nigeria","Poland","Portugal","Republica Dominicana","Russia","Spain","Sweden","Switzerland","Syria","The Netherlands","USA","Ukraine","United Kingdom","United States","Vietnam","Wales"],"totalwebradioCountries":49,"webradioStates":{"Argentina":[],"Australia":[],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":[],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":[],"Denmark":[],"Estonia":["Tallinn"],"France":["Corse"],"Germany":["Baden-Württemberg","Bayern","Hesse"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":[],"New Zealand":["Dunedin"],"Nigeria":[],"Poland":[],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":[],"Syria":[],"The Netherlands":[],"USA":["Michigan"],"Ukraine":[],"United Kingdom":[],"United States":["North Carolina","Ohio"],"Vietnam":["Ho Chi Minh City"],"Wales":[]},"totalwebradioStates":90,"webradioCodecs":["AAC","AAC+","ADTS","FLAC","HE-AAC","HLS","MP3","MPEG","OGG","OPUS"],"totalwebradioCodecs":10,"webradioBitrates":["32","48","50","56","64","66","89","96","99","123","128","160","192","196","224","256","320","384","465"],"totalwebradioBitrates":19,"webradioGenres":["2000's","60's","70's","80's","90's","Acoustic","Adult","Adult Contemporary","AfroHouse","AfroJazz","Afrobeat","Ambient","Americana Roots Music","Anime","Anime Groove","Archive","Atmospheric","Atmospheric Texture","Avantgarde","Bachelor Pad","Baladas","Baroque","Bass","Bebop","Bhangra","Big Band","Black Metal","Blues","Bollywood","Bop","Bossanova","Brazilian Music","Breakbeat","Britpop","Cajun","Canada","Carnatic","Catholic","Celtic","Charts","Children","Chill Out","City Pop","Classic Hits","Classic Rock","Classical","Classical Music","Club","College Radio","Combos","Commercial","Community","Community Radio","Contemporary","Contemporary Jazz","Cool Jazz","Corse","Country","Cover Songs","Culture","Cumbia","Current Affairs","DJ Mixes","Dance","Dancehall","Debate","Deep","Deep Ambient","Deep Bass","Deep House","Deep Tech","Deportes","Desi-Influenced Asian","Digitally Affected Analog Rock","Disco","Discussion","Down-Tempo","Drum'n'Bass","Dub","Dubstep","Easy Listening","Easy-Tempo","Eclectic","Education","Educational","Eighties","Electro-Acoustic","Electro-Pop","Electronic","Entertainment","Entretenimiento","Entrevistas","Ethnic","Evergreens","Exotica","Experimental","Fado","Fight","Flashback","Flim","Folk","Folklore","Football","Free Jazz","Freeform","Funk","Fusion","Future Funk","Future Soul","Game","Garage","Garage Rock","General","German Rap","Golden Oldies","Gospel","Gothic","Grime","Groove","Hard Bop","Hard Drums","Hard Rock","Hard Trance","Hardcore","Heavy Metal","Hebrew Pop","Hip-Hop","House","IDM","Independent","Independent Music","Indian Classical","Indian Instrumental","Indie","Indie Folk","Indie Pop","Indie Rock","Indigenous","Industrial","Information","Instrumental","Instrumental Hiphop","International","Interviews","J-pop","J-rock","Jazz","Jeebanmukhi","Journalism","Juke","Jungle","Jungle Trap","Kids","Laidback","Latin","Latin Hits","Latino","Liquid Trap","Lithuanian","Live","Lo-Fi","Local News","Lokageeti","Lounge","Lullabies","MPB","Mainstream","Mainstream Jazz","Mashup","Math Rock","Mediaeval","Mediaset","Meditation","Mellow Rock","Mellow Vocals Mostly Female","Merengue","Metal","Metalcore","Mid-Tempo","Mild Pop","Minimal","Minimal Beats","Modern","Modern Big Band","Modern Rock","Montreal","Mp3","Musica Cristiana","Música Latina","Neo-Soul","New Age","New Country","New Jazz","New Wave","News","News Talk","News. MPB","Non-commercial","Non-profit","Noticias","Noticiero","Notícias","Nu Disco","Nu Grooves","Nu Metal","OST","Oldies","Oldschool","Opera","Pagode","Paranormal","Party","Past Time Favorites","Past Time Favs","Patriotic","Political Talk","Politics","Pop","Pop Rock","Pop-Rock","Post Punk","Post-Metal","Post-Punk","Post-Rock","Post-bop","Progressive","Progressive House","Progressive Rock","Progressive Trance","Psy","Psych Rock","Psytrance","Public Radio","Punk","R'n'B","Rabindrasangeet","Radio Universitaria","Rap","Rave","Reggae","Regional","Releases","Renaissance","Requests","Rock","Rockabilly","Rocksteady Classic","Romantique","Romántico","Roots Music","Roots Reggae","Salsa","Samba","Schlager Music","Scifi","Sertanejo","Shoegaze","Ska","Smooth Jazz","Smooth Lounge","Soccer","Soft Rock","Soul","Soundscape","Soundtrack","Southern Rock","Space Music","Special Events","Spiritual","Spoken Word","Sport","Straight-ahead","Student Radio","Synth-Pop","Talk","Tamil Movie Songs","Tamil Radio","Tech Trance","Techno","Tiki","Top 40","Top Hits","Trance","Trancestep","Trip-Hop","Tropical/Urbana","Tv News","Uk Funky","Underground","University","University Radio","Uplifting Trance","Urbain","Urbana","Vaporwave","Variedades","Variety","Various","Vintage Music","Vocal","Vocal Trance","Walm","Weather","World Music","World News","Yoga","Youth"],"totalWebradioGenres":307,"webradioStatus":{"http___200_128_65_57_8000_live.m3u":{"date":"2024-07-03","count":1,"error":"http://200.128.65.57:8000/live: Server returned 404 Not Found"},"http___livestreams_radioton_de_http_rt-live-bw_m3u.m3u.AAC.64":{"date":"2024-07-03","count":16,"error":"http://livestreams.radioton.de/http/rt-live-mobile-bw.m3u: Invalid data found when processing input"},"http___yumicoradio_net_8000_stream.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x55abeda30b80] Connection to tcp://yumicoradio.net:8000 failed: Connection timed out\nhttp://yumicoradio.net:8000/stream: Connection timed out"},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"date":"2024-07-03","count":5,"error":"https://18003.live.streamtheworld.com/RT_SPAAC.aac: Server returned 403 Forbidden (access denied)"},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://22653.live.streamtheworld.com/TOPZEN.mp3: Server returned 403 Forbidden (access denied)"},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"date":"2024-07-03","count":4,"error":"https://akashvani.gov.in/radio/live.php?channel=5: Invalid data found when processing input"},"https___chokostream_com_8010_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x56222dcf0200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8010/live: Input/output error"},"https___chokostream_com_8050_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x561584cc1200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8050/live: Input/output error"},"https___chokostream_com_8070_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x559b88d98200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8070/live: Input/output error"},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"date":"2024-07-03","count":6,"error":"[tls @ 0x55acbb6bfbc0] A TLS fatal alert has been received.\nhttps://emisoras.dip-badajoz.es:58062/stream: Input/output error"},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3: Server returned 5XX Server Error reply"},"https___myradio24_org_radiometal.m3u":{"date":"2024-07-03","count":7,"error":"https://myradio24.org/radiometal: Server returned 404 Not Found"},"https___www_ragya_com_prahar.m3u":{"date":"2024-07-03","count":4,"error":"https://www.ragya.com/prahar: Invalid data found when processing input"}}}; +const webradiodb={"timestamp":1720306059,"webradios":{"http___158_69_74_203_80_.m3u":{"Genre":["Jazz","Funk","Soul","World Music","Latin","Lounge","Nu Grooves"],"Name":"SwissGroove","Image":"http___158_69_74_203_80_.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://158.69.74.203:80/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u":{"Genre":["Rock","Lokageeti","Rabindrasangeet","Jeebanmukhi"],"Name":"Radio Bangla Net","Image":"http___18163_live_streamtheworld_com_SP_R3563475_SC.webp","Homepage":"https://radiobanglanet.com/","Country":"India","State":"","Region":"","Languages":["Bengali"],"Language":"Bengali","Description":"A Radio Station for all Bengalis","Codec":"AAC","Bitrate":64,"StreamUri":"http://18163.live.streamtheworld.com/SP_R3563475_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___200_128_65_57_8000_live.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UESC","Image":"http___200_128_65_57_8000_live.webp","Homepage":"http://radio.uesc.br/3.html","Country":"Brazil","State":"Bahia","Region":"Bahia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Inovação, conhecimento e música de qualidade!","Codec":"MPEG","Bitrate":128,"StreamUri":"http://200.128.65.57:8000/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___200_129_35_230_8081_aovivo_ogg_m3u.m3u":{"Genre":["MPB","News","Educational"],"Name":"Universitária FM","Image":"http___200_129_35_230_8081_aovivo_ogg_m3u.webp","Homepage":"http://www.radiouniversitariafm.com.br/","Country":"Brazil","State":"Ceará","Region":"Ceará","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://200.129.35.230:8081/aovivo.ogg.m3u","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___200_136_219_172_8000_radioufscar96_mp3.m3u":{"Genre":["News","Various"],"Name":"Rádio UFSCar 95.3 FM","Image":"http___200_136_219_172_8000_radioufscar96_mp3.webp","Homepage":"http://radio.ufscar.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFSCar - Escute Diferente","Codec":"MP3","Bitrate":128,"StreamUri":"http://200.136.219.172:8000/radioufscar96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___206_189_117_157_8000_stream.m3u":{"Genre":["Electronic","Grime","Hip-Hop","House"],"Name":"Rinse FM","Image":"http___206_189_117_157_8000_stream.webp","Homepage":"https://rinse.fm/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC+","Bitrate":128,"StreamUri":"http://206.189.117.157:8000/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[128],"highestBitrate":128},"http___217_20_116_68_32032_stream.m3u":{"Genre":["International"],"Name":"Sohos FM 88.7","Image":"http___217_20_116_68_32032_stream.webp","Homepage":"http://sohosfm.gr/","Country":"Greece","State":"","Region":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://217.20.116.68:32032/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___5_135_183_124_8073_stream.m3u":{"Genre":["Dance","Pop","Latino","Rock","House","Techno"],"Name":"Onda Torrente Radio","Image":"http___5_135_183_124_8073_stream.webp","Homepage":"https://www.ondatorrenteradio.com","Country":"Spain","State":"Valencia","Region":"Valencia","Languages":["Spanish"],"Language":"Spanish","Description":"Somos la radio de todo el mundo","Codec":"MP3","Bitrate":128,"StreamUri":"http://5.135.183.124:8073/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___54_173_171_80_8000_6forty.m3u":{"Genre":["Indie","Post-Rock","Post-Metal","Modern","Experimental"],"Name":"6forty Radio","Image":"http___54_173_171_80_8000_6forty.webp","Homepage":"http://www.6fortyradio.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"a home for interesting music","Codec":"MP3","Bitrate":192,"StreamUri":"http://54.173.171.80:8000/6forty","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___7878_go2stream_fr_8000_stream.m3u":{"Genre":["Corse"],"Name":"Radio Balagne","Image":"http___7878_go2stream_fr_8000_stream.webp","Homepage":"http://www.radiobalagne.com/","Country":"France","State":"Corse","Region":"Corse","Languages":["Corse","Francais"],"Language":"Corse, Francais","Description":"A voce insulana","Codec":"MPEG","Bitrate":128,"StreamUri":"http://7878.go2stream.fr:8000/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___79_120_39_202_8002_mathrock.m3u":{"Genre":["Math Rock"],"Name":"Caprice Radio Math Rock","Image":"http___79_120_39_202_8002_mathrock.webp","Homepage":"http://radcap.ru/mathrock.html","Country":"Russia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"http://79.120.39.202:8002/mathrock","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___81_92_238_33_80.m3u":{"Genre":["Pop","Charts"],"Name":"Eldoradio","Image":"http___81_92_238_33_80.webp","Homepage":"","Country":"Luxembourg","State":"","Region":"","Languages":["Luxembourgish"],"Language":"Luxembourgish","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://81.92.238.33:80","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___82_135_234_195_8000_goldfm_mp3.m3u":{"Genre":["Adult Contemporary","Rock"],"Name":"Gold FM","Image":"http___82_135_234_195_8000_goldfm_mp3.webp","Homepage":"https://goldfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/goldfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Kaunas)","Image":"http___82_135_234_195_8000_kelyje_kaunas_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_kaunas.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Klaipėda, Vilnius)","Image":"http___82_135_234_195_8000_kelyje_klaipeda_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_klaipeda.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u":{"Genre":["Community","Indie","Experimental","Pop","Rock","Techno"],"Name":"L'Eko des Garrigues","Image":"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.webp","Homepage":"http://www.ekodesgarrigues.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"OGG","Bitrate":320,"StreamUri":"http://91.121.159.124:8000/eko-des-garrigues-256k.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[320],"highestBitrate":320},"http___91_218_212_67_8000_stream.m3u":{"Genre":["Spoken Word"],"Name":"Hromadske Radio","Image":"http___91_218_212_67_8000_stream.webp","Homepage":"https://hromadske.radio/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine Talk","Codec":"MP3","Bitrate":160,"StreamUri":"http://91.218.212.67:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u":{"Genre":["Various"],"Name":"BBC World Service","Image":"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_world_service","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___antena1_newradio_it_stream_ext__mp3.m3u":{"Genre":["Adult Contemporary","Jazz","Pop","Smooth Jazz"],"Name":"Antena 1 São Paulo, SP (ZYD823 94,7 MHz FM)","Image":"http___antena1_newradio_it_stream_ext__mp3.webp","Homepage":"http://antena1.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"ANTENA1 - 94 7 FM","Codec":"AAC+","Bitrate":64,"StreamUri":"http://antena1.newradio.it/stream?ext=.mp3","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Hip-Hop","R'n'B","Soul","Gospel","Electronic"],"Name":"BBC Radio 1Xtra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/1xtra","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Indie","Rock","Funk"],"Name":"BBC Radio 6 Music","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_6music/bbc_6music.isml/bbc_6music-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Contemporary","Bollywood","Bhangra","Pop","Urbain"],"Name":"BBC Asian Network","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.webp","Homepage":"","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_asian_network/bbc_asian_network.isml/bbc_asian_network-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio Cymru","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru","Country":"Wales","State":"","Region":"","Languages":["Welsh"],"Language":"Welsh","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_cymru/bbc_radio_cymru.isml/bbc_radio_cymru-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u":{"Genre":["News","Discussion","Sport","Interviews"],"Name":"BBC Radio 5 Live","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/programmes/b0070hx6","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The latest sport with coverage and debate, featuring commentaries on the big games and sporting events.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_five_live/bbc_radio_five_live.isml/bbc_radio_five_live-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Archive"],"Name":"BBC Radio 4 Extra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4extra","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_four_extra/bbc_radio_four_extra.isml/bbc_radio_four_extra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourfm/bbc_radio_fourfm.isml/bbc_radio_fourfm-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4 LW","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Longwave broadcast of BBC Radio 4.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourlw/bbc_radio_fourlw.isml/bbc_radio_fourlw-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Charts"],"Name":"BBC Radio 1","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Dance"],"Name":"BBC Radio 1 Dance","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1dance","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A mix of classic, current and future dance music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Meditation"],"Name":"BBC Radio 1 Relax","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1relax","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A mix of relaxing and meditating music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Classical","Jazz","World Music"],"Name":"BBC Radio 3","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio 2","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_two/bbc_radio_two.isml/bbc_radio_two-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___audio1_ideastream_org_wclv_mp3.m3u":{"Genre":["Classical"],"Name":"WCLV Cleveland 104.9 - Classical","Image":"http___audio1_ideastream_org_wclv_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://audio1.ideastream.org/wclv.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___centova_rockhost_com_8001_stream.m3u":{"Genre":["Ethnic","Eclectic"],"Name":"Hollow Earth Radio","Image":"http___centova_rockhost_com_8001_stream.webp","Homepage":"https://www.hollowearthradio.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Non-commercial DIY radio station for underrepresented music, sounds and perspectives","Codec":"MP3","Bitrate":128,"StreamUri":"http://centova.rockhost.com:8001/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u":{"Genre":["Indie Rock"],"Name":"WEQX 102.7 Manchester, VT","Image":"http___crystalout_surfernetwork_com_8001_WEQX_MP3.webp","Homepage":"http://www.weqx.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The real alternative","Codec":"MP3","Bitrate":128,"StreamUri":"http://crystalout.surfernetwork.com:8001/WEQX_MP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___current_stream_publicradio_org_kcmp_mp3.m3u":{"Genre":["Indie"],"Name":"KCMP 89.3 FM - The Current","Image":"http___current_stream_publicradio_org_kcmp_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://current.stream.publicradio.org/kcmp.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___dancewave_online_dance_mp3.m3u":{"Genre":["Dance","House","Trance"],"Name":"Dance Wave!","Image":"http___dancewave_online_dance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet!","Codec":"MP3","Bitrate":128,"StreamUri":"http://dancewave.online/dance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_fipradio_fr_live_fip-midfi_mp3.m3u":{"Genre":["Classical","Jazz","Rock","World Music"],"Name":"France Inter Paris (FIP)","Image":"http___direct_fipradio_fr_live_fip-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.fipradio.fr/live/fip-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_franceculture_fr_live_franceculture-midfi_mp3.m3u":{"Genre":["Spoken Word","Current Affairs"],"Name":"France Culture Live","Image":"http___direct_franceculture_fr_live_franceculture-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.franceculture.fr/live/franceculture-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.m3u":{"Genre":["Classical"],"Name":"France Musique Classique Plus","Image":"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiqueclassiqueplus-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.m3u":{"Genre":["Contemporary"],"Name":"France Musique La Contemporaine","Image":"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelacontemporaine-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.m3u":{"Genre":["Jazz"],"Name":"France Musique La Jazz","Image":"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelajazz-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusique-midfi_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"France Musique Live","Image":"http___direct_francemusique_fr_live_francemusique-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusique-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___eagle_streemlion_com_4040_stream_icy_http.m3u":{"Genre":["Progressive Rock"],"Name":"Prog Frog","Image":"http___eagle_streemlion_com_4040_stream_icy_http.webp","Homepage":"https://prog-frog.com/","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Progressive Rock Radio Worldwide","Codec":"MP3","Bitrate":128,"StreamUri":"http://eagle.streemlion.com:4040/stream?icy=http","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u":{"Genre":["Jazz","Blues","Soul"],"Name":"Jazz FM","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.webp","Homepage":"https://planetradio.co.uk/jazz-fm/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Listen in Colour","Codec":"AAC","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/jazzhigh.aac?aw_0_1st.skey=1650998937","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.m3u":{"Genre":["Classical","News","Classical","Requests"],"Name":"Scala Radio","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/scalahigh.aac?aw_0_1st.skey=1650896299","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u":{"Genre":["Metal"],"Name":"La Grosse Radio Métal","Image":"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/metal/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u":{"Genre":["Reggae"],"Name":"La Grosse Radio Reggae","Image":"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/reggae/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-reggae-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u":{"Genre":["Rock"],"Name":"La Grosse Radio Rock","Image":"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/rock/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced!","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_stream_frequence3_net_frequence3_flac.m3u":{"Genre":["Pop","Charts"],"Name":"frequence3","Image":"http___hd_stream_frequence3_net_frequence3_flac.webp","Homepage":"https://www.frequence3.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"FLAC","Bitrate":0,"StreamUri":"http://hd.stream.frequence3.net/frequence3.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[0],"highestBitrate":0},"http___hirschmilch_de_7000_electronic_mp3.m3u":{"Genre":["Electronic"],"Name":"Hirschmilch Electronic","Image":"http___hirschmilch_de_7000_electronic_mp3.webp","Homepage":"https://hirschmilch.de/","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7.","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/electronic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_prog-house_mp3.m3u":{"Genre":["Progressive House"],"Name":"Hirschmilch Prog-House","Image":"http___hirschmilch_de_7000_prog-house_mp3.webp","Homepage":"https://hirschmilch.de/prog-house","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Progressive House on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/prog-house.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_psytrance_mp3.m3u":{"Genre":["Psytrance"],"Name":"Hirschmilch Psytrance","Image":"http___hirschmilch_de_7000_psytrance_mp3.webp","Homepage":"https://hirschmilch.de/psytrance","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Psytrance on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/psytrance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_techno_mp3.m3u":{"Genre":["Techno"],"Name":"Hirschmilch Techno","Image":"http___hirschmilch_de_7000_techno_mp3.webp","Homepage":"https://hirschmilch.de/techno","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Techno on https://hirschmilch.de","Codec":"MP3","Bitrate":123,"StreamUri":"http://hirschmilch.de:7000/techno.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[123],"highestBitrate":123},"http___ice1_somafm_com_7soul-128-aac.m3u":{"Genre":["Soul","Vintage Music"],"Name":"Soma FM - Seven Inch Soul","Image":"http___ice1_somafm_com_7soul-128-aac.webp","Homepage":"https://somafm.com/7soul/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Vintage soul tracks from the original 45 RPM vinyl.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/7soul-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_beatblender-128-aac.m3u":{"Genre":["Electronic","Deep House","Down-Tempo"],"Name":"Soma FM - Beat Blender","Image":"http___ice1_somafm_com_beatblender-128-aac.webp","Homepage":"https://somafm.com/beatblender/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A late night blend of deep-house and downtempo chill.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/beatblender-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_bootliquor-128-aac.m3u":{"Genre":["Country","Americana Roots Music"],"Name":"Soma FM - Boot Liquor","Image":"http___ice1_somafm_com_bootliquor-128-aac.webp","Homepage":"https://somafm.com/bootliquor/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Americana Roots music for Cowhands, Cowpokes and Cowtippers.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/bootliquor-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_brfm-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - Black Rock FM","Image":"http___ice1_somafm_com_brfm-128-aac.webp","Homepage":"https://somafm.com/brfm/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"From the Playa to the world, for the annual Burning Man festival.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/brfm-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-128-aac.m3u":{"Genre":["Electronic","IDM"],"Name":"Soma FM - cliqhop idm","Image":"http___ice1_somafm_com_cliqhop-128-aac.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/cliqhop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-256-mp3.m3u":{"Genre":["IDM"],"Name":"cliqhop idm - SomaFM","Image":"http___ice1_somafm_com_cliqhop-256-mp3.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"MP3","Bitrate":256,"StreamUri":"http://ice1.somafm.com/cliqhop-256-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ice1_somafm_com_covers-128-mp3.m3u":{"Genre":["Pop","Cover Songs"],"Name":"Soma FM - Covers","Image":"http___ice1_somafm_com_covers-128-mp3.webp","Homepage":"https://somafm.com/covers/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Just covers. Songs you know by artists you don't. We've got you covered.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice1.somafm.com/covers-128-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_deepspaceone-128-aac.m3u":{"Genre":["Electronic","Ambient","Experimental","Space Music"],"Name":"Soma FM - Deep Space One","Image":"http___ice1_somafm_com_deepspaceone-128-aac.webp","Homepage":"https://somafm.com/deepspaceone/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Deep ambient electronic, experimental and space music. For inner and outer space exploration.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/deepspaceone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_defcon-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - DEF CON Radio","Image":"http___ice1_somafm_com_defcon-128-aac.webp","Homepage":"https://somafm.com/defcon/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Music for Hacking. The DEF CON Year-Round Channel.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/defcon-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_digitalis-128-aac.m3u":{"Genre":["Rock","Digitally Affected Analog Rock"],"Name":"Soma FM - Digitalis","Image":"http___ice1_somafm_com_digitalis-128-aac.webp","Homepage":"https://somafm.com/digitalis/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Digitally affected analog rock to calm the agitated heart.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/digitalis-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dronezone-128-aac.m3u":{"Genre":["Electronic","Ambient","Atmospheric Texture","Minimal Beats"],"Name":"Soma FM - Drone Zone","Image":"http___ice1_somafm_com_dronezone-128-aac.webp","Homepage":"https://somafm.com/dronezone/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Served best chilled, safe with most medications. Atmospheric textures with minimal beats.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dronezone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dubstep-128-aac.m3u":{"Genre":["Dub","Dubstep","Deep Bass"],"Name":"Soma FM - Dub Step Beyond","Image":"http___ice1_somafm_com_dubstep-128-aac.webp","Homepage":"https://somafm.com/dubstep/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Dubstep, Dub and Deep Bass. May damage speakers at high volume.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dubstep-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_fluid-128-aac.m3u":{"Genre":["Electronic","Instrumental Hiphop","Future Soul","Liquid Trap"],"Name":"Soma FM - Fluid","Image":"http___ice1_somafm_com_fluid-128-aac.webp","Homepage":"https://somafm.com/fluid/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Drown in the electronic sound of instrumental hiphop, future soul and liquid trap.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/fluid-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_folkfwd-128-aac.m3u":{"Genre":["Folk","Indie Folk"],"Name":"Soma FM - Folk Forward","Image":"http___ice1_somafm_com_folkfwd-128-aac.webp","Homepage":"https://somafm.com/folkfwd/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Indie Folk, Alt-folk and the occasional folk classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/folkfwd-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_groovesalad-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo"],"Name":"Soma FM - Groove Salad","Image":"http___ice1_somafm_com_groovesalad-128-aac.webp","Homepage":"https://somafm.com/groovesalad/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A nicely chilled plate of ambient/downtempo beats and grooves.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/groovesalad-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_illstreet-128-aac.m3u":{"Genre":["Lounge","Bachelor Pad","Exotica","Vintage Music"],"Name":"Soma FM - Illinois Street Lounge","Image":"http___ice1_somafm_com_illstreet-128-aac.webp","Homepage":"https://somafm.com/illstreet/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Classic bachelor pad, playful exotica and vintage music of tomorrow.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/illstreet-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_indiepop-128-aac.m3u":{"Genre":["Pop","Indie Pop"],"Name":"Soma FM - Indie Pop Rocks!","Image":"http___ice1_somafm_com_indiepop-128-aac.webp","Homepage":"https://somafm.com/indiepop/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"New and classic favorite indie pop tracks.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/indiepop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_live-128-aac.m3u":{"Genre":["Electronic","Live","Special Events"],"Name":"Soma FM - Live","Image":"http___ice1_somafm_com_live-128-aac.webp","Homepage":"https://somafm.com/live/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Special Live Events and rebroadcasts of past live events.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/live-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_lush-128-aac.m3u":{"Genre":["Electronic","Mellow Vocals Mostly Female"],"Name":"Soma FM - Lush","Image":"http___ice1_somafm_com_lush-128-aac.webp","Homepage":"https://somafm.com/lush/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Sensuous and mellow female vocals, many with an electronic influence.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/lush-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_metal-128-aac.m3u":{"Genre":["Metal"],"Name":"Soma FM - Metal Detector","Image":"http___ice1_somafm_com_metal-128-aac.webp","Homepage":"https://somafm.com/metal/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/metal-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_missioncontrol-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - Mission Control","Image":"http___ice1_somafm_com_missioncontrol-128-aac.webp","Homepage":"https://somafm.com/missioncontrol/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Celebrating NASA and Space Explorers everywhere.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/missioncontrol-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_poptron-128-aac.m3u":{"Genre":["Pop","Electro-Pop","Indie Rock"],"Name":"Soma FM - PopTron","Image":"http___ice1_somafm_com_poptron-128-aac.webp","Homepage":"https://somafm.com/poptron/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Electropop and indie dance rock with sparkle and pop.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/poptron-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_secretagent-128-aac.m3u":{"Genre":["Pop","Easy-Tempo","60's"],"Name":"Soma FM - Secret Agent","Image":"http___ice1_somafm_com_secretagent-128-aac.webp","Homepage":"https://somafm.com/secretagent/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/secretagent-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_seventies-128-aac.m3u":{"Genre":["Rock","70's","Mellow Rock"],"Name":"Soma FM - Left Coast 70s","Image":"http___ice1_somafm_com_seventies-128-aac.webp","Homepage":"https://somafm.com/seventies/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Mellow album rock from the Seventies. Yacht not required.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/seventies-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sf1033-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - SF 10-33","Image":"http___ice1_somafm_com_sf1033-128-aac.webp","Homepage":"https://somafm.com/sf1033/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Ambient music mixed with the sounds of San Francisco public safety radio traffic.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sf1033-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sonicuniverse-128-aac.m3u":{"Genre":["Jazz","Avantgarde"],"Name":"Soma FM - Sonic Universe","Image":"http___ice1_somafm_com_sonicuniverse-128-aac.webp","Homepage":"https://somafm.com/sonicuniverse/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Transcending the world of jazz with eclectic, avant-garde takes on tradition.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sonicuniverse-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_spacestation-128-aac.m3u":{"Genre":["Electronic","Mid-Tempo"],"Name":"Soma FM - Space Station Soma","Image":"http___ice1_somafm_com_spacestation-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/spacestation-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_suburbsofgoa-128-aac.m3u":{"Genre":["World Music","Desi-Influenced Asian","World Music"],"Name":"Soma FM - Suburbs of Goa","Image":"http___ice1_somafm_com_suburbsofgoa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/suburbsofgoa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thetrip-128-aac.m3u":{"Genre":["Pop","Progressive House","Trance"],"Name":"Soma FM - The Trip","Image":"http___ice1_somafm_com_thetrip-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thetrip-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thistle-128-aac.m3u":{"Genre":["Folk","Celtic","Roots Music"],"Name":"Soma FM - ThistleRadio","Image":"http___ice1_somafm_com_thistle-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thistle-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_u80s-128-aac.m3u":{"Genre":["Pop","80's","Synth-Pop","New Wave"],"Name":"Soma FM - Underground 80s","Image":"http___ice1_somafm_com_u80s-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/u80s-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice-1_streamhoster_com_lv_wqed--893.m3u":{"Genre":["Classical"],"Name":"WQED Pittsburgh 89.3 - Classical","Image":"http___ice-1_streamhoster_com_lv_wqed--893.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice-1.streamhoster.com/lv_wqed--893","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice2_somafm_com_gsclassic-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo","2000's"],"Name":"Soma FM - Groove Salad Classic","Image":"http___ice2_somafm_com_gsclassic-128-aac.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice2.somafm.com/gsclassic-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice4_somafm_com_reggae-128-aac.m3u":{"Genre":["Reggae","Ska","Rocksteady Classic","Deep"],"Name":"Soma FM - Heavyweight Reggae","Image":"http___ice4_somafm_com_reggae-128-aac.webp","Homepage":"https://somafm.com/reggae/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice4.somafm.com/reggae-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice5_securenetsystems_net_KCSM.m3u":{"Genre":["Jazz"],"Name":"KCSM","Image":"http___ice5_securenetsystems_net_KCSM.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://ice5.securenetsystems.net/KCSM","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___ice_bassdrive_net_80_stream.m3u":{"Genre":["Drum'n'Bass"],"Name":"Bassdrive Radio","Image":"http___ice_bassdrive_net_80_stream.webp","Homepage":"https://www.bassdrive.com/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice.bassdrive.net:80/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u":{"Genre":["Rock"],"Name":"SuperStereo 1","Image":"http___icecast_centaury_cl_7570_SuperStereoHiRes1.webp","Homepage":"https://www.hiresaudio.online/superstereo-1/","Country":"Chile","State":"","Region":"","Languages":["English"],"Language":"English","Description":"YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’","Codec":"OGG","Bitrate":48,"StreamUri":"http://icecast.centaury.cl:7570/SuperStereoHiRes1","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[48],"highestBitrate":48},"http___icecast_err_ee_80_raadio4korge_mp3.m3u":{"Genre":["News","Pop","Jazz","Classical"],"Name":"Raadio 4","Image":"http___icecast_err_ee_80_raadio4korge_mp3.webp","Homepage":"https://r4.err.ee/","Country":"Estonia","State":"Tallinn","Region":"Tallinn","Languages":["Russian"],"Language":"Russian","Description":"Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia","Codec":"MP3","Bitrate":320,"StreamUri":"http://icecast.err.ee:80/raadio4korge.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___icecast_omroep_nl_radio1-bb-aac.m3u":{"Genre":["News"],"Name":"NPO Radio 1","Image":"http___icecast_omroep_nl_radio1-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio1-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio2-bb-aac.m3u":{"Genre":["Pop","Dance","Oldies","Rock"],"Name":"NPO Radio 2","Image":"http___icecast_omroep_nl_radio2-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio2-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio4-bb-aac.m3u":{"Genre":["Classical"],"Name":"NPO Radio 4","Image":"http___icecast_omroep_nl_radio4-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio4-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_unitedradio_it_Virgin_mp3.m3u":{"Genre":["Mediaset","Pop Rock"],"Name":"Virgin Radio Italia","Image":"http___icecast_unitedradio_it_Virgin_mp3.webp","Homepage":"http://www.virginradio.it/","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.unitedradio.it/Virgin.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u":{"Genre":["Classical"],"Name":"VRT - Klara Continuo","Image":"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klaracontinuo-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klara-high_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"VRT - Klara","Image":"http___icecast_vrtcdn_be_klara-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klara-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm-high_mp3.m3u":{"Genre":["Pop"],"Name":"VRT - MNM","Image":"http___icecast_vrtcdn_be_mnm-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"VRT - MNM Hits","Image":"http___icecast_vrtcdn_be_mnm_hits-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm_hits-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u":{"Genre":["Eclectic"],"Name":"VRT - Radio 2","Image":"http___icecast_vrtcdn_be_ra2vlb-high_mp3.webp","Homepage":"https://radio2.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/ra2vlb-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio1-high_mp3.m3u":{"Genre":["Pop","Contemporary","Rock","News"],"Name":"VRT - Radio 1","Image":"http___icecast_vrtcdn_be_radio1-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio1-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Unwind","Image":"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-unwind","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio2_unwind-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru-high_mp3.m3u":{"Genre":["Indie"],"Name":"VRT - StuBru - Studio Brussels","Image":"http___icecast_vrtcdn_be_stubru-high_mp3.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u":{"Genre":["Pop","Rock"],"Name":"VRT Studio Brussel De Tijdloze","Image":"http___icecast_vrtcdn_be_stubru_tijdloze_aac.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru_tijdloze.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginHardRock_mp3.m3u":{"Genre":["Hard Rock","Mediaset"],"Name":"Virgin Radio Hard Rock","Image":"http___icy_unitedradio_it_VirginHardRock_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginHardRock.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginRockClassics_mp3.m3u":{"Genre":["Classic Rock","Mediaset"],"Name":"Virgin Radio Classic Rock","Image":"http___icy_unitedradio_it_VirginRockClassics_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginRockClassics.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___kdhx-ice_streamguys1_com_80_live.m3u":{"Genre":["Indie"],"Name":"KDHX 88.1 FM St. Louis","Image":"http___kdhx-ice_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://kdhx-ice.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___kuvo-ice_streamguys_org_kuvo-aac-128.m3u":{"Genre":["Jazz"],"Name":"KUVO 89.3 FM Denver","Image":"http___kuvo-ice_streamguys_org_kuvo-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvo-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.m3u":{"Genre":["Pop","R'n'B","Hip-Hop"],"Name":"KUVO HD2","Image":"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvohd2-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u":{"Genre":["Indie","Rock","Pop","New Age","Punk","Post-Punk","Electronic","Contemporary"],"Name":"KZradio הקצה","Image":"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.webp","Homepage":"https://kzradio.net/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Independent Internet-radio based in Tel Aviv","Codec":"HE-AAC","Bitrate":128,"StreamUri":"http://kzradio.mediacast.co.il/kzradio_live/kzradio/icecast.audio","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[128],"highestBitrate":128},"http___listen_jazz88_org_ksds_mp3.m3u":{"Genre":["Jazz"],"Name":"San Diego Jazz 88.3","Image":"http___listen_jazz88_org_ksds_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://listen.jazz88.org/ksds.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___listen-nme_sharp-stream_com_nme1high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 1 - Classic & New Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme1high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme1high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen-nme_sharp-stream_com_nme2high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 2 - New & Upfront Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme2high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme2high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___live-aacplus-64_kexp_org_kexp64_aac.m3u":{"Genre":["Indie"],"Name":"KEXP 90.3 FM Seattle","Image":"http___live-aacplus-64_kexp_org_kexp64_aac.webp","Homepage":"https://www.kexp.org/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://live-aacplus-64.kexp.org/kexp64.aac","alternativeStreams":{"http___live-mp3-128_kexp_org_":{"StreamUri":"http://live-mp3-128.kexp.org/","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[128,64],"highestBitrate":128},"http___live-icy_dr_dk_A_A03H_mp3.m3u":{"Genre":["News","Talk"],"Name":"DR P1","Image":"http___live-icy_dr_dk_A_A03H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A03H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A04H_mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"DR P2","Image":"http___live-icy_dr_dk_A_A04H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A04H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A05H_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"DR P3","Image":"http___live-icy_dr_dk_A_A05H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A05H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A08H_mp3.m3u":{"Genre":["Pop","News"],"Name":"DR P4","Image":"http___live-icy_dr_dk_A_A08H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A08H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A29H_mp3.m3u":{"Genre":["Indie","Indie Rock","Rock"],"Name":"DR P6 Beat","Image":"http___live-icy_dr_dk_A_A29H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A29H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J","Image":"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/2TJW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.m3u":{"Genre":["Country"],"Name":"ABC Country","Image":"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/CTRW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.m3u":{"Genre":["Jazz"],"Name":"ABC Jazz","Image":"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/JAZW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J Unearthed","Image":"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.webp","Homepage":"https://www.abc.net.au/triplejunearthed/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/UNEW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live_radioec_com_ua_8000_kiev.m3u":{"Genre":["Pop","Rock","Techno"],"Name":"KrainaFM","Image":"http___live_radioec_com_ua_8000_kiev.webp","Homepage":"http://krainafm.com.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine's first all-Ukrainian-language radio","Codec":"MP3","Bitrate":128,"StreamUri":"http://live.radioec.com.ua:8000/kiev","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live_radioton_de_rt-live-bw.m3u":{"Genre":["80's"],"Name":"Radioton","Image":"http___live_radioton_de_rt-live-bw.webp","Homepage":"https://www.radioton.de/","Country":"Germany","State":"Baden-Württemberg","Region":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"Lang leben die 80er.","Codec":"MP3","Bitrate":192,"StreamUri":"http://live.radioton.de/rt-live-bw","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mainstream_amazingradios_com_8000_blues128.m3u":{"Genre":["Blues"],"Name":"Amazing Blues","Image":"http___mainstream_amazingradios_com_8000_blues128.webp","Homepage":"https://amazingradios.com/","Country":"USA","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://mainstream.amazingradios.com:8000/blues128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.m3u":{"Genre":["Classical"],"Name":"MDR Klassik","Image":"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://mdr-284350-0.cast.mdr.de/mdr/284350/0/aac/high/stream.aac","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___media-ice_musicradio_com_ClassicFMMP3.m3u":{"Genre":["Classical"],"Name":"Classic FM","Image":"http___media-ice_musicradio_com_ClassicFMMP3.webp","Homepage":"https://www.classicfm.com/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://media-ice.musicradio.com/ClassicFMMP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___media_radio-libertaire_org_8080_radiolib_mp3.m3u":{"Genre":["Various","Talk"],"Name":"Radio Libertaire (France)","Image":"http___media_radio-libertaire_org_8080_radiolib_mp3.webp","Homepage":"https://www.radio-libertaire.net/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://media.radio-libertaire.org:8080/radiolib.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mediaserv21_live-streams_nl_8000_live.m3u":{"Genre":["Contemporary"],"Name":"Hi On Line - France","Image":"http___mediaserv21_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv21.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8000_live.m3u":{"Genre":["Pop","Golden Oldies"],"Name":"Hi On Line - Gold","Image":"http___mediaserv30_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8086_live.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop (320K)","Image":"http___mediaserv30_live-streams_nl_8086_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8086/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8088_live.m3u":{"Genre":["Classical"],"Name":"Hi On Line - Classical","Image":"http___mediaserv30_live-streams_nl_8088_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8088/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8034_live.m3u":{"Genre":["Latin"],"Name":"Hi On Line - Latin","Image":"http___mediaserv33_live-streams_nl_8034_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8034/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8036_live.m3u":{"Genre":["Lounge"],"Name":"Hi On Line - Lounge","Image":"http___mediaserv33_live-streams_nl_8036_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8036/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8006_live.m3u":{"Genre":["Jazz"],"Name":"Hi On Line - Jazz","Image":"http___mediaserv38_live-streams_nl_8006_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8006/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8027_live.m3u":{"Genre":["World Music"],"Name":"Hi On Line - World","Image":"http___mediaserv38_live-streams_nl_8027_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8027/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u":{"Genre":["Classical"],"Name":"Mother Earth Klassik","Image":"http___motherearth_streamserver24_com_18910_motherearth_klassik.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"http://motherearth.streamserver24.com:18910/motherearth.klassik","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u":{"Genre":["80's"],"Name":"harmony.fm","Image":"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.webp","Homepage":"https://www.harmonyfm.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Alles 80er!","Codec":"AAC","Bitrate":48,"StreamUri":"http://mp3.harmonyfm.de/harmonyfm/livestream.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u":{"Genre":["Pop","Dance","House","Hip-Hop","R'n'B"],"Name":"planet radio","Image":"http___mp3_planetradio_de_planetradio_hqlivestream_aac.webp","Homepage":"https://www.planetradio.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.aac","alternativeStreams":{"http___mp3_planetradio_de_planetradio_livestream_aac":{"StreamUri":"http://mp3.planetradio.de/planetradio/livestream.aac","Codec":"AAC","Bitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_mp3":{"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[48,128],"highestBitrate":128},"http___mscp2_live-streams_nl_8100_flac_flac.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop","Image":"http___mscp2_live-streams_nl_8100_flac_flac.webp","Homepage":"http://www.hionline.eu","Country":"Netherlands","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"FLAC","Bitrate":128,"StreamUri":"http://mscp2.live-streams.nl:8100/flac.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[128],"highestBitrate":128},"http___mscp3_live-streams_nl_8250_class-high_aac.m3u":{"Genre":["Classical"],"Name":"Naim Classical","Image":"http___mscp3_live-streams_nl_8250_class-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8250/class-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8340_jazz-high_aac.m3u":{"Genre":["Jazz"],"Name":"Naim Jazz","Image":"http___mscp3_live-streams_nl_8340_jazz-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8340/jazz-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8360_high_aac.m3u":{"Genre":["Eclectic"],"Name":"Naim Radio","Image":"http___mscp3_live-streams_nl_8360_high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8360/high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___msmn7_co_8018_stream.m3u":{"Genre":["Indie"],"Name":"CDNX","Image":"http___msmn7_co_8018_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://msmn7.co:8018/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ninarfm_grtvstream_com_8896__.m3u":{"Genre":["Various","News"],"Name":"Ninar FM نينار اف ام","Image":"http___ninarfm_grtvstream_com_8896__.webp","Homepage":"http://ninarfm.com/","Country":"Syria","State":"","Region":"","Languages":["Arabic"],"Language":"Arabic","Description":"Ninar FM نينار اف ام","Codec":"MP3","Bitrate":96,"StreamUri":"http://ninarfm.grtvstream.com:8896/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___npr-ice_streamguys1_com_live_mp3.m3u":{"Genre":["News","News Talk","Political Talk","Politics","Public Radio","Talk"],"Name":"NPR - 24 Hour Program Stream","Image":"http___npr-ice_streamguys1_com_live_mp3.webp","Homepage":"https://www.npr.org/about-npr/472557877/npr-program-stream","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"NPR Program Stream","Codec":"MP3","Bitrate":96,"StreamUri":"http://npr-ice.streamguys1.com/live.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___okradio_rtvhd_net_8130__.m3u":{"Genre":["Pop","Música Latina"],"Name":"Vox Radio - 105.5 FM","Image":"http___okradio_rtvhd_net_8130__.webp","Homepage":"http://www.voxradio.fm/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música.","Codec":"AAC","Bitrate":56,"StreamUri":"http://okradio.rtvhd.net:8130/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[56],"highestBitrate":56},"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u":{"Genre":["Brazilian Music","Contemporary","Pop","Rock"],"Name":"Rádio Cidade","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.webp","Homepage":"https://radiocidade.fm/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Cidade - Rio de Janeiro","Codec":"AAC+","Bitrate":48,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[48],"highestBitrate":48},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.m3u":{"Genre":["Classical"],"Name":"WRTI Philadelphia 90.1 - Classical","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_CLASSICAL.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.m3u":{"Genre":["Jazz"],"Name":"WRTI Philadelphia 90.1 - Jazz","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_JAZZ.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___play_organlive_com_8002_320.m3u":{"Genre":["Classical"],"Name":"OrganLive.com","Image":"http___play_organlive_com_8002_320.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320oe.m3u":{"Genre":["Classical"],"Name":"Organ Experience","Image":"http___play_organlive_com_8002_320oe.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320oe","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320pb.m3u":{"Genre":["Classical","Baroque"],"Name":"Positivly Baroque","Image":"http___play_organlive_com_8002_320pb.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320pb","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u":{"Genre":["News"],"Name":"VRT - NWS","Image":"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.webp","Homepage":"https://www.vrt.be/vrtnws/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://progressive-audio.lwc.vrtcdn.be/content/fixed/11_11niws-snip_hi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___q2stream_wqxr_org_q2.m3u":{"Genre":["Classical"],"Name":"WQXR Q2 - Living Music, Living Composers","Image":"http___q2stream_wqxr_org_q2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://q2stream.wqxr.org/q2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio80k_out_airtime_pro_8000_radio80k_a.m3u":{"Genre":["Community Radio","Freeform","Variety"],"Name":"Radio 80000 Munich, Germany","Image":"http___radio80k_out_airtime_pro_8000_radio80k_a.webp","Homepage":"http://www.radio80k.de/","Country":"Germany","State":"","Region":"","Languages":["English","German"],"Language":"English, German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio80k.out.airtime.pro:8000/radio80k_a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radioaovivo_senado_gov_br_canal2_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado Canal 2","Image":"http___radioaovivo_senado_gov_br_canal2_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado Canal 2","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.gov.br/canal2.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_senado_leg_br_fm_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado","Image":"http___radioaovivo_senado_leg_br_fm_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado 91.7 FM","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.leg.br/fm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u":{"Genre":["Classical","MPB"],"Name":"Rádio da Universidade 1080 AM (UFRGS)","Image":"http___radioaovivo_ufrgs_br_8000_stream_mp3.webp","Homepage":"https://www.ufrgs.br/radio/","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio da Universidade 1080 AM (UFRGS)","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.ufrgs.br:8000/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radio_comunica_ufrn_br_8000_live_aac.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária Natal 88.9 FM (UFRN)","Image":"http___radio_comunica_ufrn_br_8000_live_aac.webp","Homepage":"https://www.instagram.com/radiouniversitarianatal/","Country":"Brazil","State":"Rio Grande Do Norte","Region":"Rio Grande Do Norte","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Transforma Natal, transforma você!","Codec":"AAC","Bitrate":128,"StreamUri":"http://radio.comunica.ufrn.br:8000/live.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___radio_linn_co_uk_8000_autodj.m3u":{"Genre":["Jazz"],"Name":"Linn Jazz","Image":"http___radio_linn_co_uk_8000_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8000/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8003_autodj.m3u":{"Genre":["Eclectic"],"Name":"Linn Radio","Image":"http___radio_linn_co_uk_8003_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8003/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8004_autodj.m3u":{"Genre":["Classical"],"Name":"Linn Classical","Image":"http___radio_linn_co_uk_8004_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8004/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_m-1_fm_lietus_mp3.m3u":{"Genre":["Lithuanian","Various"],"Name":"Lietus","Image":"http___radio_m-1_fm_lietus_mp3.webp","Homepage":"https://www.lietus.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio.m-1.fm/lietus/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radionz-ice_streamguys_com_80_concert_mp3.m3u":{"Genre":["Classical"],"Name":"Radio New Zealand - Concert","Image":"http___radionz-ice_streamguys_com_80_concert_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/concert.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radionz-ice_streamguys_com_80_national_mp3.m3u":{"Genre":["Eclectic","Various","Current Affairs"],"Name":"Radio New Zealand - National","Image":"http___radionz-ice_streamguys_com_80_national_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/national.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radio_plaza_one_mp3.m3u":{"Genre":["Vaporwave","Future Funk","Chill Out"],"Name":"Nightwave Plaza","Image":"http___radio_plaza_one_mp3.webp","Homepage":"https://plaza.one/","Country":"Japan","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity.","Codec":"MP3","Bitrate":128,"StreamUri":"http://radio.plaza.one/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio_stereoscenic_com_ama-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"A.M. Ambient","Image":"http___radio_stereoscenic_com_ama-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/ama-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radio_stereoscenic_com_asp-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"Ambient Sleeping Pill","Image":"http___radio_stereoscenic_com_asp-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/asp-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___retro_dancewave_online_retrodance_mp3.m3u":{"Genre":["90's","Dance"],"Name":"Dance Wave Retro!","Image":"http___retro_dancewave_online_retrodance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All about Dance before 2000!","Codec":"MP3","Bitrate":128,"StreamUri":"http://retro.dancewave.online/retrodance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___rootslegacy_fr_8080__listen_mp3.m3u":{"Genre":["Dub","Roots Reggae"],"Name":"Roots Legacy Radio - Dub UK & Roots Reggae","Image":"http___rootslegacy_fr_8080__listen_mp3.webp","Homepage":"https://www.rootslegacy.fr/","Country":"France","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":224,"StreamUri":"http://rootslegacy.fr:8080/;listen.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[224],"highestBitrate":224},"http___rtvhd_net_9942__.m3u":{"Genre":["Rock","Baladas"],"Name":"IQ Radio - 93.9 FM","Image":"http___rtvhd_net_9942__.webp","Homepage":"http://www.iqmedios.com/","Country":"Costa Rica","State":"","Region":"","Languages":["English"],"Language":"English","Description":"IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más.","Codec":"AAC","Bitrate":64,"StreamUri":"http://rtvhd.net:9942/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u":{"Genre":["Classical","Classical Music"],"Name":"Rádio MEC FM","Image":"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecfmrio","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio MEC FM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://122722d.ha.azioncdn.net/ebc/radiomecfm/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u":{"Genre":["MPB"],"Name":"Rádio MEC AM","Image":"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecamrio","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio MEC AM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://132722d.ha.azioncdn.net/ebc/radiomec/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"Genre":["Soccer","News"],"Name":"Rádio Transamérica 100.1 FM (São Paulo)","Image":"https___18003_live_streamtheworld_com_RT_SPAAC_aac.webp","Homepage":"https://radiotransamerica.com.br","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio onde você estiver!","Codec":"AAC","Bitrate":32,"StreamUri":"https://18003.live.streamtheworld.com/RT_SPAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"http___s1_slotex_pl_7430_stream.m3u":{"Genre":["Indie","Pop","Rock"],"Name":"Mittendrin ALT!NEU Radio der deutschen Minderheit","Image":"http___s1_slotex_pl_7430_stream.webp","Homepage":"https://mittendrin.pl/de/radio-altneu.html","Country":"Poland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://s1.slotex.pl:7430/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u":{"Genre":["Community"],"Name":"2nurfm","Image":"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.webp","Homepage":"https://2nurfm.com.au","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Good times and great music","Codec":"MP3","Bitrate":96,"StreamUri":"https://21413.live.streamtheworld.com:443/2NURFMAAC_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"Genre":["Lounge"],"Name":"Zen FM","Image":"https___22653_live_streamtheworld_com_TOPZEN_mp3.webp","Homepage":"","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://22653.live.streamtheworld.com/TOPZEN.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u":{"Genre":["Gospel","Various"],"Name":"Rádio Melodia 97.5 FM","Image":"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.webp","Homepage":"https://melodia.com.br/player/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A voz que fala ao coração!","Codec":"AAC","Bitrate":32,"StreamUri":"https://24483.live.streamtheworld.com/MELODIAFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u":{"Genre":["Classic Hits","Indie"],"Name":"KINK 80's","Image":"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.webp","Homepage":"https://kink.nl","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"Alive and Kicking","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_DNA_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25293_live_streamtheworld_com_443_KINK_SC.m3u":{"Genre":["Modern Rock"],"Name":"KINK","Image":"https___25293_live_streamtheworld_com_443_KINK_SC.webp","Homepage":"https://www.kink.nl","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"No alternative","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u":{"Genre":["Hard Rock"],"Name":"KINK Distortion","Image":"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.webp","Homepage":"https://www.kink.nl/distortion","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"non-stop de beste metal, hardrock en metalcore","Codec":"MP3","Bitrate":192,"StreamUri":"https://25323.live.streamtheworld.com:443/KINK_DISTORTION_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u":{"Genre":["Pop","Flim"],"Name":"Radio Daijiworld","Image":"https___26453_live_streamtheworld_com_SAM08AAC013_SC.webp","Homepage":"http://www.radiodaijiworld.com/","Country":"India","State":"Mangalore","Region":"Mangalore","Languages":["Konkani"],"Language":"Konkani","Description":"Online RADIO station for konkani & Tulu music","Codec":"AAC","Bitrate":64,"StreamUri":"https://26453.live.streamtheworld.com/SAM08AAC013_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u":{"Genre":["Community Radio","Independent"],"Name":"PBS 106.7FM (Progressive Broadcasting Service)","Image":"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.webp","Homepage":"https://www.pbsfm.org.au","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"PBS 106.7FM (Progressive Broadcasting Service)","Codec":"AAC","Bitrate":128,"StreamUri":"https://27253.live.streamtheworld.com/3PBS_FMAAC128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u":{"Genre":["Journalism","Soccer","Football","News"],"Name":"Rádio CBN Rio 92.5 FM","Image":"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.webp","Homepage":"https://cbn.globoradio.globo.com","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que toca notícia!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27403.live.streamtheworld.com/CBN_RJAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u":{"Genre":["Pop-Rock","Sertanejo","Youth"],"Name":"Rádio Disney 91.3 FM","Image":"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.webp","Homepage":"https://radiodisney.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que te ouve","Codec":"AAC","Bitrate":320,"StreamUri":"https://27403.live.streamtheworld.com/DISNEY_BRA_SP_ADP/HLS/playlist.m3u8?dist=web-radiodisney","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u":{"Genre":["MPB","Pop","Flashback"],"Name":"Rádio JB 99.9 FM","Image":"https___27433_live_streamtheworld_com_JBFMAAC_aac.webp","Homepage":"https://jb.fm","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e Informação!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27433.live.streamtheworld.com/JBFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u":{"Genre":["Community","Catholic"],"Name":"Rádio Serra Verde 98.7 FM","Image":"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.webp","Homepage":"https://www.serraverde.fm.br/","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Aqui é o seu lugar!","Codec":"MP3","Bitrate":128,"StreamUri":"https://5a2b083e9f360.streamlock.net/serraverdefm/serraverdefm.stream/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___8016_brasilstream_com_br_stream.m3u":{"Genre":["Soccer","Various"],"Name":"Rádio Difusora 96.9 FM","Image":"https___8016_brasilstream_com_br_stream.webp","Homepage":"https://difusora24h.com","Country":"Brazil","State":"Amazonas","Region":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"O amor do Amazonas esta no ar!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://8016.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u":{"Genre":["News","MPB","Sport"],"Name":"Rádio Nacional do Rio de Janeiro","Image":"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalrioam","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional 87.1 FM 1130 AM","Codec":"HLS","Bitrate":99,"StreamUri":"https://82722d.ha.azioncdn.net/ebc/radionacionalriodejaneiro/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[99],"highestBitrate":99},"https___8923_brasilstream_com_br_stream.m3u":{"Genre":["Local News","News","Talk","Variety"],"Name":"Super Rádio Tupi 96.5 (Tupi FM)","Image":"https___8923_brasilstream_com_br_stream.webp","Homepage":"https://tupi.fm/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder","Codec":"AAC+","Bitrate":32,"StreamUri":"https://8923.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___99_mediacast_co_il_99fm_aac__m4a.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"eco99fm אקו99","Image":"https___99_mediacast_co_il_99fm_aac__m4a.webp","Homepage":"https://eco99fm.maariv.co.il","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HE-AAC","Bitrate":64,"StreamUri":"https://99.mediacast.co.il/99fm_aac?.m4a","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[64],"highestBitrate":64},"https___a2_asurahosting_com_8800_radio_mp3.m3u":{"Genre":["Political Talk","Patriotic"],"Name":"Multicanal Radio","Image":"https___a2_asurahosting_com_8800_radio_mp3.webp","Homepage":"https://multicanalradio.com","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://a2.asurahosting.com:8800/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u":{"Genre":["Pop","Releases","Oldies","Rock","Pop"],"Name":"Absolut music XL","Image":"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://absolut-musicxl.live-sm.absolutradio.de/absolut-musicxl/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u":{"Genre":["Electronic"],"Name":"Deep Space Radio","Image":"https___ais-edge102-live365-dal02_cdnstream_com_a71161.webp","Homepage":"https://deepspaceradio.com/","Country":"USA","State":"Michigan","Region":"Michigan","Languages":["English"],"Language":"English","Description":"Artists and DJs who are working to promote Detroit’s Electronic Music and Art.","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-edge102-live365-dal02.cdnstream.com/a71161","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u":{"Genre":["Indie","Rock","Post-Punk","Garage Rock","Psych Rock","New Wave","Gothic"],"Name":"BAGeL Radio","Image":"https___ais-sa3_cdnstream1_com_2606_128_mp3.webp","Homepage":"https://www.bagelradio.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Radio as it should be: commercial-free listener-supported live-hosted","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-sa3.cdnstream1.com/2606_128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"Genre":["Indian Classical","Carnatic"],"Name":"Raagam","Image":"https___akashvani_gov_in_radio_live_php_channel_5.webp","Homepage":"https://prasarbharati.gov.in/channel-raagam/","Country":"India","State":"Karnataka","Region":"Karnataka","Languages":["Multilingual","Kannada"],"Language":"Multilingual, Kannada","Description":"Raagam Radio is an online station from Bangalore (India), open since 26 January 2016.","Codec":"MP3","Bitrate":50,"StreamUri":"https://akashvani.gov.in/radio/live.php?channel=5","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[50],"highestBitrate":50},"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Mejor FM - 99.1 FM","Image":"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.lamejor.co.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-lamejor-lamejor.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Noticiero"],"Name":"Monumental - 93.5 FM","Image":"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.monumental.co.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-monumental-monumental.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u":{"Genre":["Schlager Music"],"Name":"Antenne Schlager","Image":"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.webp","Homepage":"https://www.antenne-schlager.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"German Schlager music station from Hannover, Lower Saxony, Germany","Codec":"MP3","Bitrate":192,"StreamUri":"https://antnds.streamabc.net/ands-antenneschlager-mp3-192-8742257","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u":{"Genre":["Commercial","Pop","Rock","Top Hits"],"Name":"RDL Radio Diffusione Libera","Image":"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.webp","Homepage":"https://www.radiodiffusionelibera.com","Country":"Italy","State":"Salerno","Region":"Salerno","Languages":["Italian"],"Language":"Italian","Description":"RDL Radio Diffusione Libera powered by RPIGroup","Codec":"MP3","Bitrate":192,"StreamUri":"https://asvradiostream.asvstudios.it/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___audio-mp3_ibiblio_org_wxyc_mp3.m3u":{"Genre":["College Radio","Various"],"Name":"WXYC Chapel Hill 89.3FM","Image":"https___audio-mp3_ibiblio_org_wxyc_mp3.webp","Homepage":"https://wxyc.org/","Country":"United States","State":"North Carolina","Region":"North Carolina","Languages":["English"],"Language":"English","Description":"UNC-Chapel Hill's student-run, freeform radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://audio-mp3.ibiblio.org/wxyc.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___audio_tv_unesp_br_unespfm.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária UNESP 105.7 FM","Image":"https___audio_tv_unesp_br_unespfm.webp","Homepage":"https://www.radio.unesp.br","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UNESP 105.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://audio.tv.unesp.br/unespfm","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Bel RTL","Image":"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.webp","Homepage":"https://www.rtl.be/belrtl/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Bel RTL est une station de radio généraliste privée du groupe RTL.","Codec":"MP3","Bitrate":192,"StreamUri":"https://belrtl.ice.infomaniak.ch/belrtl-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___bytefm_cast_addradio_de_bytefm_main_high_stream.m3u":{"Genre":["Eclectic"],"Name":"ByteFM","Image":"https___bytefm_cast_addradio_de_bytefm_main_high_stream.webp","Homepage":"https://www.byte.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://bytefm.cast.addradio.de/bytefm/main/high/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___sc3_radiocaroline_net_8030.m3u":{"Genre":["Rock","Classic Rock"],"Name":"Radio Caroline","Image":"http___sc3_radiocaroline_net_8030.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://sc3.radiocaroline.net:8030","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___c7_radioboss_fm_18205_stream.m3u":{"Genre":["Mashup"],"Name":"Bootie Mashup","Image":"https___c7_radioboss_fm_18205_stream.webp","Homepage":"https://bootiemashup.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The best bootleg mashups in the world ever.","Codec":"MP3","Bitrate":320,"StreamUri":"https://c7.radioboss.fm:18205/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___carajas2_jmvstream_com_live.m3u":{"Genre":["News","Sport","Football","Soccer"],"Name":"Rádio Clube do Pará 104.7 FM 690 AM","Image":"https___carajas2_jmvstream_com_live.webp","Homepage":"https://radioclube.dol.com.br/","Country":"Brazil","State":"Pará","Region":"Pará","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Equipe Bola de Ouro","Codec":"AAC","Bitrate":128,"StreamUri":"https://carajas2.jmvstream.com/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cast4_asurahosting_com_proxy_miles_stream.m3u":{"Genre":["Talk","Paranormal","Spiritual","70's","80's","90's"],"Name":"NYE Underground","Image":"https___cast4_asurahosting_com_proxy_miles_stream.webp","Homepage":"https://www.nyeug.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Streaming Art Bell classics and his favorite bumper music - ad free.","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.asurahosting.com/proxy/miles/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cast4_audiostream_com_br_2655_mp3.m3u":{"Genre":["Various","News"],"Name":"Rádio Liberdade","Image":"https___cast4_audiostream_com_br_2655_mp3.webp","Homepage":"https://www.redepampa.com.br/radios/radio-liberdade/","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"No campo e na cidade, Rádio Liberdade!","Codec":"MP3","Bitrate":32,"StreamUri":"https://cast4.audiostream.com.br:2655/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u":{"Genre":["News"],"Name":"Radio 98.4","Image":"https___cast4_my-control-panel_com_proxy_anastas2_stream.webp","Homepage":"https://www.radio984.gr/","Country":"Greece","State":"","Region":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.my-control-panel.com/proxy/anastas2/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cdn4_onstream_audio_9267_stream.m3u":{"Genre":["News"],"Name":"Radio Prensa Latina","Image":"https___cdn4_onstream_audio_9267_stream.webp","Homepage":"https://radio.prensa-latina.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://cdn4.onstream.audio:9267/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u":{"Genre":["News"],"Name":"Kan Bet כאן ב","Image":"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=3","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":256,"StreamUri":"https://cdnapisec.kaltura.com/p/2717431/sp/271743100/playManifest/entryId/1_eu4h60uh/format/applehttp/protocol/https/uiConfId/46986963/a.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[256],"highestBitrate":256},"https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u":{"Genre":["News","Talk","Pop"],"Name":"103FM","Image":"https___cdn_cybercdn_live_103FM_Live_icecast_audio.webp","Homepage":"https://103fm.maariv.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://cdn.cybercdn.live/103FM/Live/icecast.audio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u":{"Genre":["Rock","Hard Rock","Heavy Metal"],"Name":"UnDinamo","Image":"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.webp","Homepage":"https://undinamo.com/","Country":"Argentina","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"https://cdn.instream.audio/:9339/stream?in_device_id=WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"https___centova_svdns_com_br_20110_stream.m3u":{"Genre":["Pop"],"Name":"morena fm easy","Image":"https___centova_svdns_com_br_20110_stream.webp","Homepage":"https://www.morenafm.com.br","Country":"Brazil","State":"Mato Grosso","Region":"Mato Grosso","Languages":["Portugues"],"Language":"Portugues","Description":"boa mussica , boa programaçion","Codec":"AAC","Bitrate":128,"StreamUri":"https://centova.svdns.com.br:20110/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8010_live.m3u":{"Genre":["Tropical/Urbana"],"Name":"Ritmo Hits","Image":"https___chokostream_com_8010_live.webp","Homepage":"https://ritmohits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Donde El Ritmo No Tiene Fin!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8010/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8050_live.m3u":{"Genre":["Urbana"],"Name":"La Vaina Hits","Image":"https___chokostream_com_8050_live.webp","Homepage":"https://lavainahits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Detonando Hits!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8050/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8070_live.m3u":{"Genre":["Musica Cristiana"],"Name":"ExaltacionFM","Image":"https___chokostream_com_8070_live.webp","Homepage":"https://exaltacionfm.com/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Ondas De Avivamiento!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8070/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cloud_cdnseguro_com_2611_stream.m3u":{"Genre":["Ethnic","Indigenous"],"Name":"Rádio Yandê","Image":"https___cloud_cdnseguro_com_2611_stream.webp","Homepage":"https://radioyande.com","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Indigenous Languages","Brazilian Portuguese"],"Language":"Indigenous Languages, Brazilian Portuguese","Description":"Radio Yandê - Etnomidia Indígena","Codec":"MP3","Bitrate":128,"StreamUri":"https://cloud.cdnseguro.com:2611/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact 2000","Image":"https___contact2_ice_infomaniak_ch_contact2-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contact2.ice.infomaniak.ch/contact2-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u":{"Genre":["Children","Kids"],"Name":"Radio Contact Kids","Image":"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactkids.ice.infomaniak.ch/contactkids-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Mix","Image":"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactmix.ice.infomaniak.ch/contactmix-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Fresh","Image":"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactplus.ice.infomaniak.ch/contactplus-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Urban","Image":"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contacturban.ice.infomaniak.ch/contacturban-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u":{"Genre":["Pop"],"Name":"Omroep Zeeland","Image":"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.webp","Homepage":"https://www.omroepzeeland.nl/radio-zeeland","Country":"Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://d3isaxd2t6q8zm.cloudfront.net/icecast/omroepzeeland/omroepzeeland_radio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u":{"Genre":["80's","70's","60's","90's","Oldies","Classic Hits"],"Name":"KVKVI - Classic Hits","Image":"https___dc1_serverse_com_proxy_gjlrjfhp_stream.webp","Homepage":"https://www.kvkvi.com","Country":"United States","State":"Ohio","Region":"Ohio","Languages":["English"],"Language":"English","Description":"The Greatest Hits and The Songs You Missed","Codec":"MP3","Bitrate":160,"StreamUri":"https://dc1.serverse.com/proxy/gjlrjfhp/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u":{"Genre":["Adult Contemporary","News","Sport"],"Name":"Bayern 1","Image":"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern1/index.html","Country":"Germany","State":"Bayern","Region":"Bayern","Languages":["German"],"Language":"German","Description":"The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting.","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u":{"Genre":["Eclectic"],"Name":"Bayern 2","Image":"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern2/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br2/live/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u":{"Genre":["Classical"],"Name":"BR-Klassik","Image":"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.webp","Homepage":"https://www.br-klassik.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u":{"Genre":["Jazz"],"Name":"DR P8 Jazz","Image":"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.webp","Homepage":"https://www.dr.dk/lyd/p8jazz","Country":"Denmark","State":"","Region":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://DRliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8","alternativeStreams":{"http___live-icy_gss_dr_dk_8000_A_A22H_mp3":{"StreamUri":"http://live-icy.gss.dr.dk:8000/A/A22H.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[320,128],"highestBitrate":320},"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u":{"Genre":["Pop","80's","90's"],"Name":"Absolut Relax","Image":"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://edge56.live-sm.absolutradio.de/absolut-relax/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u":{"Genre":["Pop","Charts","Electronic","Hip-Hop"],"Name":"Absolut Hot","Image":"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://edge68.live-sm.absolutradio.de/absolut-hot/stream/aacp?aggregator=smk-m3u-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"Genre":["Pop","Rock","Latin"],"Name":"Radio Ciudad del Granito","Image":"https___emisoras_dip-badajoz_es_58062_stream.webp","Homepage":"https://quintanadelaserena.org/","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Quintana de la Serena (Badajoz, Spain) local radio","Codec":"OPUS","Bitrate":0,"StreamUri":"https://emisoras.dip-badajoz.es:58062/stream","alternativeStreams":{},"allCodecs":["OPUS"],"allBitrates":[0],"highestBitrate":0},"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u":{"Genre":["Indie","Rock","Pop","New Age","Disco","Electronic","Contemporary"],"Name":"EOL Essence of Life רדיו מהות החיים","Image":"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.webp","Homepage":"https://radio.eol.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"AAC","Bitrate":32,"StreamUri":"https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___everest_radionanet_com_8990_stream_1698969239317.m3u":{"Genre":["MPB","University Radio","News"],"Name":"Universitária FM 104.7 (UFES)","Image":"https___everest_radionanet_com_8990_stream_1698969239317.webp","Homepage":"https://universitariafm.ufes.br/","Country":"Brazil","State":"Espirito Santo","Region":"Espirito Santo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da UFES (Universitária FM 104.7)","Codec":"MPEG","Bitrate":32,"StreamUri":"https://everest.radionanet.com:8990/stream?1698969239317","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u":{"Genre":["MPB","News","University Radio"],"Name":"Rádio USP - São Paulo","Image":"https___flow_emm_usp_br_8008_radiousp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da USP (Universidade de São Paulo)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u":{"Genre":["Adult Contemporary","University Radio"],"Name":"Rádio USP - Ribeirão Preto","Image":"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da USP (USP Ribeirão Preto)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-rp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000er","Image":"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/2000er/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u":{"Genre":["90's"],"Name":"FluxFM - 90s","Image":"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben.","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/90s/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.m3u":{"Genre":["News","Various"],"Name":"FluxFM","Image":"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/FluxFM/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.m3u":{"Genre":["Electronic","Soundscape","Atmospheric"],"Name":"FluxFM - Hippie Trippy Garden Pretty","Image":"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/htgp/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.m3u":{"Genre":["Various"],"Name":"FluxFM - Mini Flux","Image":"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/mini-flux/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u":{"Genre":["Dance","Groove","R'n'B","Soul"],"Name":"Fun Radio Belgique","Image":"https___funradiobe_ice_infomaniak_ch_funradiobe-high.webp","Homepage":"https://www.funradio.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française.","Codec":"MP3","Bitrate":128,"StreamUri":"https://funradiobe.ice.infomaniak.ch/funradiobe-high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___gartenheimradio_sp_radio_fm_stream.m3u":{"Genre":["Various"],"Name":"Gartenheim-Radio","Image":"https___gartenheimradio_sp_radio_fm_stream.webp","Homepage":"https://gartenheim-radio.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"70er, 80er, 90er Schlager-Pop und die Hits von Heute","Codec":"MP3","Bitrate":192,"StreamUri":"https://gartenheimradio.sp.radio.fm/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u":{"Genre":["Pop","Top Hits","Past Time Favorites"],"Name":"Galgalatz גלגלצ","Image":"https___glzwizzlv_bynetcdn_com_glglz_mp3.webp","Homepage":"https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glglz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___glzwizzlv_bynetcdn_com_glz_mp3.m3u":{"Genre":["News","Talk","Current Affairs"],"Name":"Galei Zahal GLZ גלי צהל גלצ","Image":"https___glzwizzlv_bynetcdn_com_glz_mp3.webp","Homepage":"https://glz.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"IDF Radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___grenal_audiostream_com_br_20000_aac.m3u":{"Genre":["Sport"],"Name":"Rádio Grenal","Image":"https___grenal_audiostream_com_br_20000_aac.webp","Homepage":"https://www.radiogrenal.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Grenal","Codec":"AAC+","Bitrate":32,"StreamUri":"https://grenal.audiostream.com.br:20000/aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___happyrave-rex_radioca_st_stream.m3u":{"Genre":["Rave","Breakbeat","Hardcore","Jungle","Oldschool"],"Name":"Happy Rave Radio","Image":"https___happyrave-rex_radioca_st_stream.webp","Homepage":"happyraveradio.com","Country":"Netherlands","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Classic happy hardcore, rave, and breakbeat hardcore.","Codec":"MP3","Bitrate":320,"StreamUri":"https://happyrave-rex.radioca.st/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___shoutcastunlimited_com_8512.m3u":{"Genre":["Progressive Rock","Metal"],"Name":"PRM - Prog Rock & Metal","Image":"http___shoutcastunlimited_com_8512.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://shoutcastunlimited.com:8512","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___hts03_kshost_com_br_13392_live.m3u":{"Genre":["News","Various"],"Name":"Rádio Força Aérea 91.1 FM","Image":"https___hts03_kshost_com_br_13392_live.webp","Homepage":"https://www.fab.mil.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Força Aérea 91.1 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://hts03.kshost.com.br:13392/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___http-live_sr_se_p2musik-aac-320.m3u":{"Genre":["Classical","Jazz"],"Name":"SR P2","Image":"https___http-live_sr_se_p2musik-aac-320.webp","Homepage":"https://sverigesradio.se/p2","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://http-live.sr.se/p2musik-aac-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___ice1_somafm_com_vaporwaves-128-aac.m3u":{"Genre":["Electronic","Electro-Acoustic","IDM","Shoegaze","Post-Rock"],"Name":"Soma FM - Vaporwaves","Image":"https___ice1_somafm_com_vaporwaves-128-aac.webp","Homepage":"https://somafm.com/vaporwaves/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All Vaporwave. All the time.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice1.somafm.com/vaporwaves-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_bossa-128-aac.m3u":{"Genre":["Bossanova","World Music"],"Name":"Soma FM - Bossa Beyond","Image":"https___ice5_somafm_com_bossa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/bossa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_insound-128-aac.m3u":{"Genre":["Pop","Oldies"],"Name":"Soma FM - The In-Sound","Image":"https___ice5_somafm_com_insound-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/insound-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice64_securenetsystems_net_WBJC.m3u":{"Genre":["Classical"],"Name":"WBJC Baltimore 91.5 - Classical","Image":"https___ice64_securenetsystems_net_WBJC.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ice64.securenetsystems.net/WBJC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_darkzone-128-aac.m3u":{"Genre":["Electronic","Ambient","Deep Ambient"],"Name":"Soma FM - The Dark Zone","Image":"https___ice6_somafm_com_darkzone-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/darkzone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_n5md-128-aac.m3u":{"Genre":["Ambient","Post-Rock","Experimental","Electronic"],"Name":"Soma FM - n5MD Radio","Image":"https___ice6_somafm_com_n5md-128-aac.webp","Homepage":"https://somafm.com/n5md/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/n5md-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_synphaera-128-aac.m3u":{"Genre":["Electronic","Synth-Pop"],"Name":"Soma FM - Synphaera","Image":"https___ice6_somafm_com_synphaera-128-aac.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/synphaera-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_tikitime-128-aac.m3u":{"Genre":["Tiki","World Music"],"Name":"Soma FM - Tiki Time","Image":"https___ice6_somafm_com_tikitime-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/tikitime-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___icecasthd_net_proxy_abejorral_live.m3u":{"Genre":["Public Radio"],"Name":"Abejorral Stereo","Image":"https___icecasthd_net_proxy_abejorral_live.webp","Homepage":"https://www.asenred.com/abejorral/","Country":"Colombia","State":"Antioquia","Region":"Antioquia","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecasthd.net/proxy/abejorral/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___icecast_live_proxy_zerock_zerock.m3u":{"Genre":["Rock","Metal","Post Punk","Punk","Indie"],"Name":"Ze Rock Radio","Image":"https___icecast_live_proxy_zerock_zerock.webp","Homepage":"https://zerockradio.com/","Country":"Israel","State":"","Region":"","Languages":["Hebrew","English"],"Language":"Hebrew, English","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://icecast.live/proxy/zerock/zerock","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___icecast_lyl_live_live.m3u":{"Genre":["Ambient","Contemporary","Electronic","Electronic","Experimental","Independent"],"Name":"LYL Radio","Image":"https___icecast_lyl_live_live.webp","Homepage":"http://lyl.live/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://icecast.lyl.live/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u":{"Genre":["Various","Variety"],"Name":"France Inter","Image":"https___icecast_radiofrance_fr_franceinter-midfi_mp3.webp","Homepage":"https://www.franceinter.fr/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"France Inter est une station de radio généraliste nationale publique française du groupe Radio France.","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.radiofrance.fr/franceinter-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_teveo_cu_3MCwWg3V.m3u":{"Genre":["Latin Hits","Reggae"],"Name":"Radio Taíno 93.3 FM","Image":"https___icecast_teveo_cu_3MCwWg3V.webp","Homepage":"www.radiotaino.icrt.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Taíno, la FM de Cuba","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/3MCwWg3V","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_b3jbfThq.m3u":{"Genre":["News"],"Name":"Radio Reloj","Image":"https___icecast_teveo_cu_b3jbfThq.webp","Homepage":"https://www.radioreloj.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Canal de Informacíon Continua","Codec":"MP3","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/b3jbfThq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_kHKL7tWd.m3u":{"Genre":["Sport","News"],"Name":"Radio Rebelde AM","Image":"https___icecast_teveo_cu_kHKL7tWd.webp","Homepage":"https://www.radiorebelde.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"La emisora de la Revolución","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/kHKL7tWd","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_McW3fLhs.m3u":{"Genre":["News","Various"],"Name":"Radio Habana Cuba","Image":"https___icecast_teveo_cu_McW3fLhs.webp","Homepage":"www.radiohc.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Una voz de amistad que recorre el mundo","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/McW3fLhs","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_NqWrgw7j.m3u":{"Genre":["Variety"],"Name":"Radio Sancti Spíritus 1210 AM 106.3 FM","Image":"https___icecast_teveo_cu_NqWrgw7j.webp","Homepage":"https://www.radiosanctispiritus.cu/es/","Country":"Cuba","State":"Sancti Spíritus","Region":"Sancti Spíritus","Languages":["Spanish"],"Language":"Spanish","Description":"Contemporánea en su tradición","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/NqWrgw7j","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_X9XNRkW4.m3u":{"Genre":["Various","News"],"Name":"Radio Minas 104.9 FM","Image":"https___icecast_teveo_cu_X9XNRkW4.webp","Homepage":"https://www.radiominas.icrt.cu","Country":"Cuba","State":"Minas De Matahambre","Region":"Minas De Matahambre","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Minas 104.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/X9XNRkW4","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 1 Classics","Image":"https___icecast_vrtcdn_be_radio1_classics-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio1_classics-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Bene Bene","Image":"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-bene-bene","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio2_benebene-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_walmradio_com_8443_jazz.m3u":{"Genre":["Avantgarde","Bebop","Big Band","Bop","Combos","Contemporary","Contemporary Jazz","Cool Jazz","Free Jazz","Fusion","Hard Bop","Mainstream","Mainstream Jazz","Modern Big Band","Post-bop","Straight-ahead","Walm"],"Name":"Adroit Jazz Underground","Image":"https___icecast_walmradio_com_8443_jazz.webp","Homepage":"https://walmradio.com/jazz","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Real Jazz in HD","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecast.walmradio.com:8443/jazz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ice_coldstar_online_high_ogg.m3u":{"Genre":["Trance","Progressive","Psy","House","Deep House","Deep Tech"],"Name":"Coldstar Radio","Image":"https___ice_coldstar_online_high_ogg.webp","Homepage":"https://coldstar.online/","Country":"Kyrgyzstan","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"OGG","Bitrate":256,"StreamUri":"https://ice.coldstar.online/high.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[256],"highestBitrate":256},"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.m3u":{"Genre":["Classical"],"Name":"RCO Live","Image":"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice_fabricahost_com_br_radiomarinha.m3u":{"Genre":["News","Various"],"Name":"Rádio Marinha","Image":"https___ice_fabricahost_com_br_radiomarinha.webp","Homepage":"https://www.marinha.mil.br/radio-marinha","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Marinha FM: Navegando nas Ondas do Rádio","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice.fabricahost.com.br/radiomarinha","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ic_streann_com_disneycostarica.m3u":{"Genre":["Pop"],"Name":"Radio Disney - 101.1 FM","Image":"https___ic_streann_com_disneycostarica.webp","Homepage":"https://cr.radiodisney.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica.","Codec":"MP3","Bitrate":192,"StreamUri":"https://ic.streann.com/disneycostarica","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___iheart_4zzz_org_au_4zzz.m3u":{"Genre":["Indie"],"Name":"4ZZZ FM 102.1 - Alternative","Image":"https___iheart_4zzz_org_au_4zzz.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://iheart.4zzz.org.au/4zzz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u":{"Genre":["Adult Contemporary","Past Time Favs","Soft Rock","Mild Pop","Easy Listening"],"Name":"Kan 88 כאן","Image":"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=4","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kan88.media.kan.org.il/hls/live/2024812/2024812/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u":{"Genre":["Indie"],"Name":"Kanal K","Image":"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.webp","Homepage":"https://www.kanalk.ch/","Country":"Switzerland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream.","Codec":"MP3","Bitrate":160,"StreamUri":"https://kanalk.streamabc.net/91-kanalk-mp3-192-5146873","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u":{"Genre":["Hebrew Pop","Top Hits","Past Time Favorites"],"Name":"Kan Gimel רשת גימל","Image":"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/content/kan/kan-gimel/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":384,"StreamUri":"https://kangimmel.media.kan.org.il/hls/live/2024813/2024813/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[384],"highestBitrate":384},"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"Kol Hamusica קול המוסיקה","Image":"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=7","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kanliveicy.media.kan.org.il/icy/kankolhamusica_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___sk_cri_cn_915_m3u8.m3u":{"Genre":["World Music"],"Name":"CRI Radio EZFM 91.5 FM","Image":"http___sk_cri_cn_915_m3u8.webp","Homepage":"http://ezfm.cri.cn/live","Country":"China","State":"","Region":"","Languages":["English"],"Language":"English","Description":"CRI Radio EZFM 91.5 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"http://sk.cri.cn/915.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Bent 24","Image":"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.webp","Homepage":"https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com//kcrw_192k_mp3_bent24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Eclectic 24","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.webp","Homepage":"https://www.kcrw.com/music/shows/eclectic24/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_e24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u":{"Genre":["Eclectic","News"],"Name":"KCRW Live 89.9FM","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.webp","Homepage":"https://www.kcrw.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_on_air","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u":{"Genre":["DJ Mixes","Electronic","Independent"],"Name":"Kiosk Radio","Image":"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.webp","Homepage":"https://kioskradio.com/","Country":"Belgium","State":"","Region":"","Languages":["English","French"],"Language":"English, French","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Reggae","Classical","Eclectic"],"Name":"DjamRadio","Image":"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.webp","Homepage":"https://www.djamradio.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"The Eclectic French Radio","Codec":"MP3","Bitrate":128,"StreamUri":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___legacy_scahw_com_au_2buddha_32.m3u":{"Genre":["Chill Out"],"Name":"Buddha Radio","Image":"https___legacy_scahw_com_au_2buddha_32.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":32,"StreamUri":"https://legacy.scahw.com.au/2buddha_32","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u":{"Genre":["IDM"],"Name":"Limbik Frequencies","Image":"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.webp","Homepage":"https://limbikfreq.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A tasty mix of downtempo electronica","Codec":"MP3","Bitrate":128,"StreamUri":"https://limbikfreq.com/listen/limbik_frequencies/128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___listen7_myradio24_com_69366.m3u":{"Genre":["Various"],"Name":"Pyongyang FM","Image":"https___listen7_myradio24_com_69366.webp","Homepage":"https://korea-dpr.com","Country":"Korea, Democratic People's Republic Of","State":"Pyongyang","Region":"Pyongyang","Languages":["Korean"],"Language":"Korean","Description":"Pyongyang FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://listen7.myradio24.com/69366","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u":{"Genre":["Jazz"],"Name":"Jazz24","Image":"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.webp","Homepage":"https://www.jazz24.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"https://live.amperwave.net/direct/ppm-jazz24aac256-ibc1","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u":{"Genre":["Pop","Hip-Hop","Electronic"],"Name":"DASDING","Image":"https___liveradio_swr_de_sw282p3_dasding_play_mp3.webp","Homepage":"https://www.dasding.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Jugendradioprogramm des Südwestrundfunks","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/dasding/play.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 BW","Image":"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"Baden-Württemberg","Region":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"SWR1 Baden-Württemberg","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 RP","Image":"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR1 Rheinland-Pfalz","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"SWR2","Image":"https___liveradio_swr_de_sw282p3_swr2_play_mp3.webp","Homepage":"https://www.swr.de/swr2/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Kultur neu entdecken","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr2/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr2_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr2/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr2_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr2/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR3","Image":"https___liveradio_swr_de_sw282p3_swr3_play_mp3.webp","Homepage":"https://www.swr3.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der beste Musikmix. Einfach SWR3","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr3/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr3_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr3/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr3_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr3/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 BW","Image":"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 RP","Image":"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR Aktuell","Image":"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.webp","Homepage":"https://www.swr.de/swraktuell/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swraktuell/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swraktuell/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swraktuell/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___live_streams_klassikradio_de_klassikradio-deutschland.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Live","Image":"https___live_streams_klassikradio_de_klassikradio-deutschland.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-deutschland","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_streams_klassikradio_de_klassikradio-movie.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Movie","Image":"https___live_streams_klassikradio_de_klassikradio-movie.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-movie","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u":{"Genre":["Romántico"],"Name":"Musical - 97.5 FM","Image":"https___live_turadio_stream_7005_stream_type_http_nocache_596.webp","Homepage":"https://radiomusical.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Musical es uno de los principales medios de comunicación de Costa Rica.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7005/stream?type=http&nocache=596","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___live_turadio_stream_7006__.m3u":{"Genre":["Romántico"],"Name":"Sinfonola - 90.3 FM","Image":"https___live_turadio_stream_7006__.webp","Homepage":"https://radiosinfonola.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7006/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___livex_radiopopolare_it_radiopop_FLID_3.m3u":{"Genre":["Information","News","Culture","Talk"],"Name":"Radio Popolare","Image":"https___livex_radiopopolare_it_radiopop_FLID_3.webp","Homepage":"https://livex.radiopopolare.it","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"The radio who gives a voice to those who have not.","Codec":"MP3","Bitrate":64,"StreamUri":"https://livex.radiopopolare.it/radiopop?FLID=3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u":{"Genre":["Rock","Eclectic"],"Name":"Mad Music Asylum","Image":"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://madmusicasylum.radioca.st/stream?type=http&nocache=36907","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___maggie_torontocast_com_8076_aac.m3u":{"Genre":["Indie","Rock","Eclectic"],"Name":"JB Radio2 (320K)","Image":"https___maggie_torontocast_com_8076_aac.webp","Homepage":"https://jb-radio.net/","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"JB Radio is an alternative,non-commercial,web radio station.","Codec":"AAC","Bitrate":320,"StreamUri":"https://maggie.torontocast.com:8076/aac","alternativeStreams":{"https___maggie_torontocast_com_8076_flac":{"StreamUri":"https://maggie.torontocast.com:8076/flac","Codec":"FLAC","Bitrate":0}},"allCodecs":["AAC","FLAC"],"allBitrates":[0,320],"highestBitrate":320},"https___maximum_hostingradio_ru_maximum96_aacp.m3u":{"Genre":["Pop","Rock","Hard Rock"],"Name":"Radio Maximum","Image":"https___maximum_hostingradio_ru_maximum96_aacp.webp","Homepage":"https://maximum.ru/","Country":"Russia","State":"","Region":"","Languages":["Russian"],"Language":"Russian","Description":"Radio Maximum provides twenty four hour mix of several genres and styles of music.","Codec":"AAC","Bitrate":96,"StreamUri":"https://maximum.hostingradio.ru/maximum96.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"https___mediaserv73_live-streams_nl_18058_stream.m3u":{"Genre":["Classical","Mediaeval","Renaissance"],"Name":"Ancient FM - Mediaeval and Renaissance Music","Image":"https___mediaserv73_live-streams_nl_18058_stream.webp","Homepage":"","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://mediaserv73.live-streams.nl:18058/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u":{"Genre":["Rock"],"Name":"Radio Mega 98.3 Puro Rock Nacional","Image":"https___mega983_stweb_tv_mega983_live_playlist_m3u8.webp","Homepage":"https://radiomega.fm/","Country":"Argentina","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"HLS","Bitrate":66,"StreamUri":"https://mega983.stweb.tv/mega983/live/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[66],"highestBitrate":66},"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Mint (RTL)","Image":"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.webp","Homepage":"https://mint.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007.","Codec":"MP3","Bitrate":192,"StreamUri":"https://mint.ice.infomaniak.ch/mint-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u":{"Genre":["Jazz"],"Name":"Mother Earth Jazz","Image":"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u":{"Genre":["Various"],"Name":"Mother Earth Radio","Image":"https___motherearth_streamserver24_com_listen_motherearth_motherearth.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth/motherearth","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___myradio24_org_radiometal.m3u":{"Genre":["Metal"],"Name":"Radio Metal","Image":"https___myradio24_org_radiometal.webp","Homepage":"https://www.radio-metal.in.ua","Country":"Ukraine","State":"","Region":"","Languages":["English"],"Language":"English","Description":"First Metal Radio in Ukraine!","Codec":"MP3","Bitrate":128,"StreamUri":"https://myradio24.org/radiometal","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u":{"Genre":["Classical"],"Name":"malaysia","Image":"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.webp","Homepage":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","Country":"Malaysia","State":"Kuala Lumpur","Region":"Kuala Lumpur","Languages":["Chinese"],"Language":"Chinese","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u":{"Genre":["Indie"],"Name":"Ultra","Image":"https___nashe1_hostingradio_ru_80_ultra-128_mp3.webp","Homepage":"https://radioultra.ru/","Country":"Russia","State":"","Region":"","Languages":["Russian"],"Language":"Russian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://nashe1.hostingradio.ru:80/ultra-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___netradio_ziniur_lt_ziniur_64_mp3.m3u":{"Genre":["Talk","News"],"Name":"Žinių Radijas","Image":"https___netradio_ziniur_lt_ziniur_64_mp3.webp","Homepage":"https://www.ziniuradijas.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://netradio.ziniur.lt/ziniur_64.mp3","alternativeStreams":{"https___netradio_ziniuradijas_lt_ziniur_64_mp3":{"StreamUri":"https://netradio.ziniuradijas.lt/ziniur_64.mp3","Codec":"MP3","Bitrate":64}},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___online_extrafm_lt_8443_extrafm_mp3.m3u":{"Genre":["Pop","Talk","Folklore"],"Name":"Extra FM","Image":"https___online_extrafm_lt_8443_extrafm_mp3.webp","Homepage":"https://extrafm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://online.extrafm.lt:8443/extrafm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u":{"Genre":["Fight","Patriotic"],"Name":"Radio Bayraktar","Image":"https___online_radiobayraktar_ua_RadioBayraktar_HD.webp","Homepage":"https://www.radiobayraktar.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Radio Bayraktar is a radio station of unprecedented Ukrainian resistance","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radiobayraktar.ua/RadioBayraktar_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___online_radioroks_ua_RadioROKS_HD.m3u":{"Genre":["Rock","Hard Rock","Pop"],"Name":"Radio Roks Ukraine","Image":"https___online_radioroks_ua_RadioROKS_HD.webp","Homepage":"https://www.radioroks.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Рок. Тільки рок! (Rock, only rock !)","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radioroks.ua/RadioROKS_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___orelha_radiolivre_org_radiopaulofreire.m3u":{"Genre":["University Radio","MPB"],"Name":"Rádio Paulo Freire - UFPE","Image":"https___orelha_radiolivre_org_radiopaulofreire.webp","Homepage":"https://sites.ufpe.br/rpf/","Country":"Brazil","State":"Pernambuco","Region":"Pernambuco","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Paulo Freire - Rádio Universitária da UFPE","Codec":"MP3","Bitrate":64,"StreamUri":"https://orelha.radiolivre.org/radiopaulofreire","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___orf-live_ors-shoutcast_at_fm4-q2a.m3u":{"Genre":["Indie Rock","Electronic"],"Name":"Radio FM4","Image":"https___orf-live_ors-shoutcast_at_fm4-q2a.webp","Homepage":"https://fm4.orf.at/","Country":"Austria","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/fm4-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___orf-live_ors-shoutcast_at_oe1-q2a.m3u":{"Genre":["Classical","Information","Culture"],"Name":"Ö1","Image":"https___orf-live_ors-shoutcast_at_oe1-q2a.webp","Homepage":"https://oe1.orf.at/","Country":"Austria","State":"Vienna","Region":"Vienna","Languages":["German"],"Language":"German","Description":"Österreichischer Rundfunk, Stiftung öffentlichen Rechts","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/oe1-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u":{"Genre":["Acoustic","Rock"],"Name":"OUI FM ACOUSTIC","Image":"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.webp","Homepage":"https://www.ouifm.fr/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ouifmacoustic.ice.infomaniak.ch/ouifmacoustic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___paineldj5_com_br_20073_stream_1705993267781.m3u":{"Genre":["College Radio","Various"],"Name":"Universitária FM 100.7 (UFV)","Image":"https___paineldj5_com_br_20073_stream_1705993267781.webp","Homepage":"https://fratevi.org.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Para quem gosta de música e conteúdo!","Codec":"MP3","Bitrate":128,"StreamUri":"https://paineldj5.com.br:20073/stream?1705993267781","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u":{"Genre":["Indie"],"Name":"2BOB Radio 104.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.webp","Homepage":"http://www.2bobradio.org.au/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/2BOB.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u":{"Genre":["Romántico"],"Name":"Bésame - 89.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.webp","Homepage":"https://www.besame.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado.","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/BESAME_CR_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u":{"Genre":["Pop"],"Name":"Noventa y Cuatro Siete - 94.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.webp","Homepage":"https://www.crc.cr/crc947/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español.","Codec":"AAC","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/CRC_947AAC.aac?_=819140","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u":{"Genre":["Various"],"Name":"Q Music","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.webp","Homepage":"https://qmusic.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QMUSIC.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Caliente - 90.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.webp","Homepage":"https://www.lacaliente.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"La Caliente ofrece a sus oyentes una programación muy diversa.","Codec":"AAC","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QTEJA_CRAAC_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u":{"Genre":["News"],"Name":"Rádio Bandeirantes São Paulo 90.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (São Paulo)","Codec":"AAC+","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.m3u":{"Genre":["Jazz"],"Name":"WEMU Ypsilanti FM 89.1 - Jazz","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/WEMUFM.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___play_r1_co_nz_live.m3u":{"Genre":["Indie","Student Radio"],"Name":"Radio One 91FM","Image":"https___play_r1_co_nz_live.webp","Homepage":"https://r1.co.nz","Country":"New Zealand","State":"Dunedin","Region":"Dunedin","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://play.r1.co.nz/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___proic1_evspt_com_oxigenio_aac.m3u":{"Genre":["House","Hip-Hop","Jazz","Funk","Soul"],"Name":"OXIGÉNIO 102.6 FM","Image":"https___proic1_evspt_com_oxigenio_aac.webp","Homepage":"https://www.oxigenio.fm/","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Música para respirar","Codec":"AAC","Bitrate":192,"StreamUri":"https://proic1.evspt.com/oxigenio_aac","alternativeStreams":{"https___proic1_evspt_com_oxigenio_mp3":{"StreamUri":"https://proic1.evspt.com/oxigenio_mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["AAC","MP3"],"allBitrates":[192],"highestBitrate":192},"https___r1_comcities_com_proxy_emogddug_stream.m3u":{"Genre":["60's","70's","Oldies"],"Name":"Groovy Radio - 60's and 70's Oldies","Image":"https___r1_comcities_com_proxy_emogddug_stream.webp","Homepage":"https://www.groovyradio.us","Country":"United States","State":"Ohio","Region":"Ohio","Languages":["English"],"Language":"English","Description":"Non-Stop 60's and 70's All Hit Oldies","Codec":"MP3","Bitrate":160,"StreamUri":"https://r1.comcities.com/proxy/emogddug/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio10_pro-fhi_net_radio_9041_stream.m3u":{"Genre":["Afrobeat","Ambient","Bass","Breakbeat","Dancehall","Dub","Electronic","Experimental","Funk","Hard Drums","House","IDM","Jazz","Latin","R'n'B","Rap","Techno","Trance","Uk Funky"],"Name":"Rinse France","Image":"https___radio10_pro-fhi_net_radio_9041_stream.webp","Homepage":"https://rinse.fm/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio10.pro-fhi.net/radio/9041/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact \"Feel Good\"","Image":"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiocontact.ice.infomaniak.ch/radiocontact-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u":{"Genre":["Variety"],"Name":"Rai Radio 2 91.7 FM","Image":"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio2","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 2 91.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiodue-live.akamaized.net/hls/live/2032592/radiodue/radiodue/radio2_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiofunandmore_spcast_eu_dj03.m3u":{"Genre":["Various"],"Name":"RadioFunAndMore","Image":"https___radiofunandmore_spcast_eu_dj03.webp","Homepage":"https://radiofunandmore.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Dein Sender Deine Hits","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiofunandmore.spcast.eu/dj03","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_laluna_mp3.m3u":{"Genre":["Pop","Regional"],"Name":"Laluna","Image":"https___radio_m-1_fm_laluna_mp3.webp","Homepage":"https://www.laluna.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://radio.m-1.fm/laluna/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio_m-1_fm_m-1dance_aac.m3u":{"Genre":["Dance"],"Name":"M-1 Dance","Image":"https___radio_m-1_fm_m-1dance_aac.webp","Homepage":"https://m-1dance.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radio.m-1.fm/m-1dance/aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radio_m-1_fm_M-1H.m3u":{"Genre":["Pop","Charts"],"Name":"M-1","Image":"https___radio_m-1_fm_M-1H.webp","Homepage":"https://www.m-1.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/M-1H","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_m1plius_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Contemporary"],"Name":"M-1 Plius","Image":"https___radio_m-1_fm_m1plius_mp3.webp","Homepage":"https://www.pliusas.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/m1plius/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u":{"Genre":["News","Football","Soccer","MPB"],"Name":"Rádio Nacional do Alto Solimões","Image":"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalaltosolimoes","Country":"Brazil","State":"Amazonas","Region":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional do Alto Solimões - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://radionacionalaltosolimoes-stream.ebc.com.br/ebc/radionacionalaltosolimoes/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radio_promodj_com_fullmoon-192.m3u":{"Genre":["Hard Trance","Tech Trance","Progressive Trance","Uplifting Trance","Trance","Trancestep","Vocal Trance"],"Name":"Full Moon","Image":"https___radio_promodj_com_fullmoon-192.webp","Homepage":"https://promodj.com/radio#fullmoon","Country":"Russia","State":"","Region":"","Languages":["English","Russian"],"Language":"English, Russian","Description":"Trance always. Trance everywhere. Trance 24/7.","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.promodj.com/fullmoon-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_sec_unicamp_br_aovivo_1698904239205.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UNICAMP","Image":"https___radio_sec_unicamp_br_aovivo_1698904239205.webp","Homepage":"https://www.sec.unicamp.br/web-radio-2/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e informação de qualidade!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://radio.sec.unicamp.br/aovivo?1698904239205","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___radioshamfm_grtvstream_com_8400__.m3u":{"Genre":["Various","News"],"Name":"Sham FM","Image":"https___radioshamfm_grtvstream_com_8400__.webp","Homepage":"https://sham.fm/ar/index.html","Country":"Syria","State":"","Region":"","Languages":["Arabic"],"Language":"Arabic","Description":"Sham FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://radioshamfm.grtvstream.com:8400/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radio_sk8ter_org_8443_stream.m3u":{"Genre":["Electronic","Drum'n'Bass","Techno","House","Dance"],"Name":"Mémé dans les OrtiEs","Image":"https___radio_sk8ter_org_8443_stream.webp","Homepage":"https://memeradio.org","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Web radio électro","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.sk8ter.org:8443/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_classic21-128_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"RTBF - Classic 21","Image":"https___radios_rtbf_be_classic21-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/classic21-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_jam-128_mp3.m3u":{"Genre":["Urbain","Pop","Electronic","Rock","Folk","New Jazz","World Music"],"Name":"RTBF - Jam","Image":"https___radios_rtbf_be_jam-128_mp3.webp","Homepage":"https://www.rtbf.be/jam","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/jam-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_laprem1ere-128_mp3.m3u":{"Genre":["Various","Variety","News"],"Name":"RTBF - La Première","Image":"https___radios_rtbf_be_laprem1ere-128_mp3.webp","Homepage":"https://www.rtbf.be/lapremiere/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/laprem1ere-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_musiq3-128_aac.m3u":{"Genre":["Classical"],"Name":"RTBF - Musiq 3","Image":"https___radios_rtbf_be_musiq3-128_aac.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radios.rtbf.be/musiq3-128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_pure-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - Tipik / PureFM","Image":"https___radios_rtbf_be_pure-128_mp3.webp","Homepage":"https://www.rtbf.be/tipik/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"null","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/pure-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_rtbfmix-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - RTBF Mix","Image":"https___radios_rtbf_be_rtbfmix-128_mp3.webp","Homepage":"https://www.rtbf.be/rtbfmix","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/rtbfmix-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_tarmac-128_mp3.m3u":{"Genre":["Pop","Variety"],"Name":"RTBF - Tarmac","Image":"https___radios_rtbf_be_tarmac-128_mp3.webp","Homepage":"https://www.rtbf.be/Tarmac","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/tarmac-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaliege-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - VivaCité Liège","Image":"https___radios_rtbf_be_vivaliege-128_mp3.webp","Homepage":"https://www.rtbf.be/vivacite/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaliege-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaplus-128_mp3.m3u":{"Genre":["60's","70's"],"Name":"RTBF - Viva+","Image":"https___radios_rtbf_be_vivaplus-128_mp3.webp","Homepage":"https://www.rtbf.be/vivaplus","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaplus-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_wr-c21-60-128_mp3.m3u":{"Genre":["60's","Rock","Pop"],"Name":"RTBF - Classic 21 60's","Image":"https___radios_rtbf_be_wr-c21-60-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Le meilleur Rock'n'Pop des années 60","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-60-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-70-128_mp3.m3u":{"Genre":["70's","Classic Rock","Rock"],"Name":"RTBF - Classic 21 70's","Image":"https___radios_rtbf_be_wr-c21-70-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-70-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-80-128_mp3.m3u":{"Genre":["80's","Rock","Pop"],"Name":"RTBF - Classic 21 80's","Image":"https___radios_rtbf_be_wr-c21-80-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Rock'n'Pop of the 80's","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-80-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-90-128_mp3.m3u":{"Genre":["90's"],"Name":"RTBF - Classic 21 90's","Image":"https___radios_rtbf_be_wr-c21-90-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-90-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u":{"Genre":["Country"],"Name":"RTBF - Classic 21 Route 66","Image":"https___radios_rtbf_be_wr-c21-route66-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-route66-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u":{"Genre":["Renaissance","Baroque"],"Name":"RTBF - Musiq 3 Baroque","Image":"https___radios_rtbf_be_wr-m3-baroque-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Un voyage dans l'Europe musicale, de la Renaissance jusque 1750","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-baroque-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u":{"Genre":["Jazz"],"Name":"RTBF - Musiq 3 Jazz","Image":"https___radios_rtbf_be_wr-m3-jazz-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Du jazz belge et international pour tous, des années 20 à nos jours","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-jazz-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u":{"Genre":["Romantique"],"Name":"RTBF - Musiq 3 Romantique","Image":"https___radios_rtbf_be_wr-m3-romantique-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Les plus grandes pages de la musique romantique","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-romantique-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_streamgates_net_stream_oranim.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"Radion Oranim 103.6FM רדיו אורנים","Image":"https___radio_streamgates_net_stream_oranim.webp","Homepage":"https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.streamgates.net/stream/oranim","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u":{"Genre":["News","Sport"],"Name":"Guardian Radio 96.9 FM","Image":"https___radiostreams_streamcomedia_com_8000_969guardianradio.webp","Homepage":"https://guardiantalkradio.com","Country":"Bahamas","State":"Nassau","Region":"Nassau","Languages":["English"],"Language":"English","Description":"Guardian Radio 96.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://radiostreams.streamcomedia.com:8000/969guardianradio","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u":{"Genre":["Opera"],"Name":"Rai Radio 3 93.7 FM","Image":"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio3","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 3 93.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiotre-live.akamaized.net/hls/live/2032594/radiotre/radiotre/radio3_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u":{"Genre":["News","Sport"],"Name":"Rai Radio 1 89.7 FM","Image":"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio1","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 1 89.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiounoest-live.akamaized.net/hls/live/2032586/radiounoest/radiounoest/radio1est_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u":{"Genre":["Tamil Radio"],"Name":"IBC Tamil","Image":"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.webp","Homepage":"https://radio.ibctamil.com/","Country":"India","State":"","Region":"","Languages":["Tamil"],"Language":"Tamil","Description":"IBC Tamil offers an excellent line-up of regular and one-off shows","Codec":"MP3","Bitrate":128,"StreamUri":"https://rbx2.hnux.com/http://10454.cloudrad.io:6176/;stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u":{"Genre":["News"],"Name":"Ici Radio-Canada Premiere Montreal","Image":"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.webp","Homepage":"https://ici.radio-canada.ca/","Country":"Canada","State":"Montreal","Region":"Montreal","Languages":["French"],"Language":"French","Description":"","Codec":"HLS","Bitrate":465,"StreamUri":"https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[465],"highestBitrate":465},"https___relay2_bide-et-musique_com_9300_bm_mp3.m3u":{"Genre":["70's","80's"],"Name":"Bide et Musique - La radio de l'improbable et de l'inouï","Image":"https___relay2_bide-et-musique_com_9300_bm_mp3.webp","Homepage":"https://www.bide-et-musique.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et…","Codec":"MP3","Bitrate":128,"StreamUri":"https://relay2.bide-et-musique.com:9300/bm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rozhlas_stream_ddur_mp3_256_mp3.m3u":{"Genre":["Classical"],"Name":"Czech Radio Classical","Image":"https___rozhlas_stream_ddur_mp3_256_mp3.webp","Homepage":"","Country":"Czech Republic","State":"","Languages":["Czech"],"Language":"Czech","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"https://rozhlas.stream/ddur_mp3_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s02_brascast_com_7386_live.m3u":{"Genre":["Entrevistas","Interviews","News","News Talk","Notícias"],"Name":"Rádio Foco Livre","Image":"https___s02_brascast_com_7386_live.webp","Homepage":"https://www.focolivre.com.br/","Country":"Brazil","State":"Santa Catarina","Region":"Santa Catarina","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s02.brascast.com:7386/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s09_hstbr_net_8238_live_1514038524061.m3u":{"Genre":["News","Various"],"Name":"Brasil de Fato","Image":"https___s09_hstbr_net_8238_live_1514038524061.webp","Homepage":"https://www.brasildefato.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Brasil de Fato - Uma visão popular do Brasil e do mundo","Codec":"MP3","Bitrate":128,"StreamUri":"https://s09.hstbr.net:8238/live?1514038524061","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s1_knixx_fm_dein_webradio_256_mp3.m3u":{"Genre":["Variety","Adult Contemporary","New Country","Non-commercial","Non-profit","Oldies","Pop","Rock"],"Name":"knixx.fm","Image":"https___s1_knixx_fm_dein_webradio_256_mp3.webp","Homepage":"https://knixx.fm/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Musik von den 60ern bis heute.","Codec":"MP3","Bitrate":256,"StreamUri":"https://s1.knixx.fm/dein_webradio_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio P.Y.G.","Image":"https___s2_ssl-stream_com_radio_8160_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All the Best from Pink Floyd, Yes and Genesis","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8160/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio Progressive Rock","Image":"https___s2_ssl-stream_com_radio_8180_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8180/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u":{"Genre":["MPB","College Radio","University","Independent Music","Pop"],"Name":"Rádio Pop Goiaba UFF","Image":"https___s37_maxcast_com_br_8450_live_id_1698623926568.webp","Homepage":"https://radiopopgoiaba.uff.br/pop-goiaba-uff/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Pop Goiaba UFF","Codec":"MPEG","Bitrate":32,"StreamUri":"https://s37.maxcast.com.br:8450/live?id=1698623926568","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___s5_radio_co_s23b8ada46_listen.m3u":{"Genre":["Community Radio","Indie","Underground","Indie","AfroHouse","AfroJazz","Hip-Hop","Jazz"],"Name":"Oroko Radio","Image":"https___s5_radio_co_s23b8ada46_listen.webp","Homepage":"https://oroko.live/","Country":"Ghana","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/s23b8ada46/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s5_radio_co_sd515b7b34_listen.m3u":{"Genre":["Rock","Baladas"],"Name":"Radio 2 - 99.5 FM","Image":"https___s5_radio_co_sd515b7b34_listen.webp","Homepage":"https://radiodos.com/","Country":"Costa Rica","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Éxitos que fueron de UNO y ahora son de DOS 99.5 FM.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/sd515b7b34/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s61_radiolize_com_radio_8000_radio_mp3.m3u":{"Genre":["2000's","Dance","Rock","Pop","Hip-Hop"],"Name":"Smart Zeros","Image":"https___s61_radiolize_com_radio_8000_radio_mp3.webp","Homepage":"https://smart2000s.com/cool-songs-for-2000-theme-party/","Country":"Ukraine","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Cool Songs For 2000 Theme Party","Codec":"MP3","Bitrate":128,"StreamUri":"https://s61.radiolize.com/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___server1_fex_red_8366_stream.m3u":{"Genre":["Entretenimiento","Deportes","Noticias","Variedades"],"Name":"Radio Gente","Image":"https___server1_fex_red_8366_stream.webp","Homepage":"https://radiogentebol.com/","Country":"Bolivia","State":"","Region":"","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://server1.fex.red:8366/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___servidor21_brlogic_com_7712_live.m3u":{"Genre":["MPB","Radio Universitaria","University Radio"],"Name":"Rádio UFRJ","Image":"https___servidor21_brlogic_com_7712_live.webp","Homepage":"https://radio.ufrj.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da Universidade Federal do Rio de Janeiro","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor21.brlogic.com:7712/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor22-3_brlogic_com_7404_live.m3u":{"Genre":["MPB","News"],"Name":"Rádio UERJ","Image":"https___servidor22-3_brlogic_com_7404_live.webp","Homepage":"https://www.radiouerj.com/app/index.html","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Conectando você ao conhecimento!","Codec":"MP3","Bitrate":32,"StreamUri":"https://servidor22-3.brlogic.com:7404/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___servidor35-1_brlogic_com_8062_live.m3u":{"Genre":["Eclectic","Football"],"Name":"Rádio FERJ","Image":"https___servidor35-1_brlogic_com_8062_live.webp","Homepage":"https://www.fferj.com.br/radio","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio FERJ","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor35-1.brlogic.com:8062/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor38-2_brlogic_com_8134_live.m3u":{"Genre":["Various"],"Name":"Rádio UPF 99.9 FM","Image":"https___servidor38-2_brlogic_com_8134_live.webp","Homepage":"https://radioupf.minhawebradio.net/app/index.html","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UPF 99.9 FM","Codec":"MPEG","Bitrate":196,"StreamUri":"https://servidor38-2.brlogic.com:8134/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[196],"highestBitrate":196},"https___servidor39-3_brlogic_com_8180_live.m3u":{"Genre":["Various"],"Name":"Rádio Uniso","Image":"https___servidor39-3_brlogic_com_8180_live.webp","Homepage":"https://radiouniso.com","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano.","Codec":"MPEG","Bitrate":128,"StreamUri":"https://servidor39-3.brlogic.com:8180/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_am846_m3u8.m3u":{"Genre":["News","Education"],"Name":"China Plus (China Radio International) - English","Image":"https___sk_cri_cn_am846_m3u8.webp","Homepage":"https://chinaplus.cri.cn","Country":"China","State":"","Region":"","Languages":["English"],"Language":"English","Description":"China Plus (China Radio International) - English","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/am846.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___sk_cri_cn_frenchafrica_m3u8.m3u":{"Genre":["News","Debate"],"Name":"CGTN Radio Français","Image":"https___sk_cri_cn_frenchafrica_m3u8.webp","Homepage":"https://radio.cgtn.com/","Country":"China","State":"","Region":"","Languages":["French"],"Language":"French","Description":"CGTN Radio Français","Codec":"ADTS","Bitrate":128,"StreamUri":"https://sk.cri.cn/frenchafrica.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_nhzs_m3u8.m3u":{"Genre":["Various"],"Name":"CRI Voice of the South China Sea 89.1 FM","Image":"https___sk_cri_cn_nhzs_m3u8.webp","Homepage":"https://vscs.cri.cn","Country":"China","State":"","Region":"","Languages":["Chinese"],"Language":"Chinese","Description":"CRI Voice of the South China Sea 89.1 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/nhzs.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___smoothjazz_cdnstream1_com_2585_320_mp3.m3u":{"Genre":["Jazz","Smooth Jazz"],"Name":"SmoothJazz Global","Image":"https___smoothjazz_cdnstream1_com_2585_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2585_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___smoothjazz_cdnstream1_com_2586_320_mp3.m3u":{"Genre":["Lounge","Smooth Lounge"],"Name":"SmoothLounge Global","Image":"https___smoothjazz_cdnstream1_com_2586_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2586_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"Soho Radio London","Image":"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://sohoradiomusic.doughunt.co.uk:8010/320mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência AM 880","Image":"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Uma Rádio Para Todos e Todas!","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia2?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência 100.9 FM","Image":"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Inconfidência 100.9 FM","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u":{"Genre":["Electronic","Culture","House"],"Name":"La Urban Radio","Image":"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.webp","Homepage":"https://www.urbanrevolution.es","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Nuevos talentos y grandes artistas se dan la mano en La Urban Radio.","Codec":"MP3","Bitrate":160,"StreamUri":"https://st1.urbanrevolution.es:8443/laurbanfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___stm23_xcast_com_br_11284_stream_1705992834372.m3u":{"Genre":["News","Football"],"Name":"Rádio Bandeirantes Campinas 1170 AM","Image":"https___stm23_xcast_com_br_11284_stream_1705992834372.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/campinas","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (Campinas)","Codec":"MP3","Bitrate":128,"StreamUri":"https://stm23.xcast.com.br:11284/stream?1705992834372","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str1_castradios_com_br_10998_stream.m3u":{"Genre":["Flashback","Adult","Sport"],"Name":"Rádio 365","Image":"https___str1_castradios_com_br_10998_stream.webp","Homepage":"https://radio365.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio de todos os dias!","Codec":"MP3","Bitrate":128,"StreamUri":"https://str1.castradios.com.br:10998/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream128_kngi_org.m3u":{"Genre":["Game","Various"],"Name":"KNGI Network","Image":"https___stream128_kngi_org.webp","Homepage":"https://kngi.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream128.kngi.org","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-156_zeno_fm_22db1xmde2zuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Arumbu FM","Image":"https___stream-156_zeno_fm_22db1xmde2zuv.webp","Homepage":"https://tamilradios.net/arumbu-fm/","Country":"India","State":"Tamilnadu","Region":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream-156.zeno.fm/22db1xmde2zuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream1_svrdedicado_org_8028_stream.m3u":{"Genre":["Blues","Rock","Instrumental"],"Name":"Rádio Lam","Image":"https___stream1_svrdedicado_org_8028_stream.webp","Homepage":"https://radiolam.wixsite.com/24horas","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rock & Blues 24 horas!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream1.svrdedicado.org/8028/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_relaxfm_lt_relaxfm128_mp3.m3u":{"Genre":["Pop"],"Name":"Relax FM","Image":"https___stream2_relaxfm_lt_relaxfm128_mp3.webp","Homepage":"https://relaxfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.relaxfm.lt/relaxfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_rockfm_lt_crf128_mp3.m3u":{"Genre":["Rock"],"Name":"Rock FM","Image":"https___stream2_rockfm_lt_crf128_mp3.webp","Homepage":"https://rockfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.rockfm.lt/crf128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u":{"Genre":["MPB","News"],"Name":"Rádio Câmara 96.9 FM","Image":"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.webp","Homepage":"https://www.camara.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Câmara 96.9 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://stream3.camara.gov.br/radiocamara1t64/manifest.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___stream_animeradio_de_animeradio_mp3.m3u":{"Genre":["Anime","J-pop","J-rock","OST","Party","Rock"],"Name":"AnimeRadio.de","Image":"https___stream_animeradio_de_animeradio_mp3.webp","Homepage":"https://www.animeradio.de/","Country":"Germany","State":"","Region":"","Languages":["German","Japanese"],"Language":"German, Japanese","Description":"Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen.","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.animeradio.de/animeradio.mp3","alternativeStreams":{"https___stream_animeradio_de_animeradio_aac":{"StreamUri":"https://stream.animeradio.de/animeradio.aac","Codec":"AAC","Bitrate":32}},"allCodecs":["AAC","MP3"],"allBitrates":[32,192],"highestBitrate":192},"https___stream_artsound_fm_mp3.m3u":{"Genre":["Classical","Jazz","Folk","World Music"],"Name":"ArtSound FM 92.7","Image":"https___stream_artsound_fm_mp3.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.artsound.fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_ceit_be_sudradio-hainaut.m3u":{"Genre":["Various"],"Name":"Sud Radio Hainaut","Image":"https___stream_ceit_be_sudradio-hainaut.webp","Homepage":"https://sudradio.net","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://stream.ceit.be/sudradio-hainaut","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___stream_ehr_lt_8443_ehr.m3u":{"Genre":["Charts","Pop"],"Name":"European Hit Radio","Image":"https___stream_ehr_lt_8443_ehr.webp","Homepage":"https://www.europeanhitradio.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian","English"],"Language":"Lithuanian, English","Description":"","Codec":"HE-AAC","Bitrate":96,"StreamUri":"https://stream.ehr.lt:8443/ehr","alternativeStreams":{"https___82_135_234_195_8443_ehr_mp3":{"StreamUri":"https://82.135.234.195:8443/ehr.mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["HE-AAC","MP3"],"allBitrates":[96,192],"highestBitrate":192},"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.m3u":{"Genre":["Classical"],"Name":"Davide of MIMIC","Image":"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streaming04.liveboxstream.uk/proxy/davideof?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streaming_antipode_be_antipode_mp3.m3u":{"Genre":["Various"],"Name":"Antipode - La Radio du Brabant Wallon","Image":"https___streaming_antipode_be_antipode_mp3.webp","Homepage":"https://www.antipode.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streaming.antipode.be/antipode.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming_inweb_com_br_energia.m3u":{"Genre":["Pop-Rock","Dance","Trance","Pop"],"Name":"Rádio Energia 97 FM","Image":"https___streaming_inweb_com_br_energia.webp","Homepage":"https://www.97fm.com.br","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Energia que te move!","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming.inweb.com.br/energia","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Public Radio"],"Name":"Rádio Antena 1 99.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.webp","Homepage":"https://antena1.rtp.pt","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 99.4 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena180a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u":{"Genre":["News","Politics","Sport","Fado"],"Name":"Rádio Antena 1 Madeira 104.6 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.webp","Homepage":"http://www.rtp.pt/madeira","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 Madeira 104.6 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena1madeira80a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u":{"Genre":["Classical","Opera"],"Name":"Rádio Antena 2 94.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.webp","Homepage":"https://antena2.rtp.pt","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Arte que Toca","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena280a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Dance"],"Name":"Rádio Antena 3 105.2 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.webp","Homepage":"https://media.rtp.pt/antena3/","Country":"Portugal","State":"Lisboa","Region":"Lisboa","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Alternativa Pop","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena380a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming_radio_co_s3699c5e49_listen.m3u":{"Genre":["Ambient","Electronic","Experimental","Hip-Hop","House","Jazz","Pop"],"Name":"Refuge Worldwide","Image":"https___streaming_radio_co_s3699c5e49_listen.webp","Homepage":"https://refugeworldwide.com/","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Alternative community radio from Berlin","Codec":"MP3","Bitrate":192,"StreamUri":"https://streaming.radio.co/s3699c5e49/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___streaming_ufg_br_8443_radiouniversitaria.m3u":{"Genre":["MPB","News"],"Name":"Rádio Universitária UFG","Image":"https___streaming_ufg_br_8443_radiouniversitaria.webp","Homepage":"https://radio.ufg.br/p/aovivo","Country":"Brazil","State":"Goiás","Region":"Goiás","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UFG","Codec":"MPEG","Bitrate":128,"StreamUri":"https://streaming.ufg.br:8443/radiouniversitaria","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Classical","Talk","Culture"],"Name":"LRT Klasika","Image":"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/klasika/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Modern","Contemporary","Indie"],"Name":"LRT Opus","Image":"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/opus/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Various","News","Talk"],"Name":"LRT Radijas","Image":"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/radijas/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream_nowyswiat_online_mp3.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio Nowy Swiat","Image":"https___stream_nowyswiat_online_mp3.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.nowyswiat.online/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_radiomustathens_com_must-hero.m3u":{"Genre":["Adult Contemporary","Top 40"],"Name":"Hero","Image":"https___stream_radiomustathens_com_must-hero.webp","Homepage":"https://app.radiomustathens.com/#/must-hero","Country":"Greece","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.radiomustathens.com/must-hero","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___stream_radioparadise_com_aac-320.m3u":{"Genre":["Eclectic"],"Name":"Radio Paradise - Main Mix","Image":"https___stream_radioparadise_com_aac-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/aac-320","alternativeStreams":{"https___stream_radioparadise_com_flacm":{"StreamUri":"https://stream.radioparadise.com/flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_mellow-320.m3u":{"Genre":["Rock","Mellow Rock"],"Name":"Radio Paradise - Mellow","Image":"https___stream_radioparadise_com_mellow-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/mellow-320","alternativeStreams":{"https___stream_radioparadise_com_mellow-flacm":{"StreamUri":"https://stream.radioparadise.com/mellow-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_rock-320.m3u":{"Genre":["Rock"],"Name":"Radio Paradise - Rock","Image":"https___stream_radioparadise_com_rock-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/rock-320","alternativeStreams":{"https___stream_radioparadise_com_rock-flacm":{"StreamUri":"https://stream.radioparadise.com/rock-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_world-etc-320.m3u":{"Genre":["World Music"],"Name":"Radio Paradise - World","Image":"https___stream_radioparadise_com_world-etc-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/world-etc-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___stream_rcs_revma_com_an1ugyygzk8uv.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio 357","Image":"https___stream_rcs_revma_com_an1ugyygzk8uv.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/an1ugyygzk8uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_anew1ctrgzzuv.m3u":{"Genre":["Pop","Rock"],"Name":"DH Radio / Twizz","Image":"https___stream_rcs_revma_com_anew1ctrgzzuv.webp","Homepage":"https://www.dhnet.be/medias/dh-radio","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing.","Codec":"AAC","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/anew1ctrgzzuv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u":{"Genre":["Pop","Rock"],"Name":"Must FM","Image":"https___stream_rcs_revma_com_cm96zpmrmm0uv.webp","Homepage":"https://mustfm.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/cm96zpmrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_f31w7e0fveuvv.m3u":{"Genre":["Pop","Charts"],"Name":"Power Hit Radio","Image":"https___stream_rcs_revma_com_f31w7e0fveuvv.webp","Homepage":"https://powerhitradio.tv3.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":89,"StreamUri":"https://stream.rcs.revma.com/f31w7e0fveuvv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[89],"highestBitrate":89},"https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u":{"Genre":["Pop","Rock","Dance","Club"],"Name":"Maximum FM","Image":"https___stream_rcs_revma_com_vnmbzemrmm0uv.webp","Homepage":"https://www.maximumfm.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/vnmbzemrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_xh00fwuptg0uv.m3u":{"Genre":["Various"],"Name":"NRJ Belgique","Image":"https___stream_rcs_revma_com_xh00fwuptg0uv.webp","Homepage":"https://www.nrj.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/xh00fwuptg0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rockantenne_de_rockantenne_stream_mp3.m3u":{"Genre":["Rock"],"Name":"Rock Antenne","Image":"https___stream_rockantenne_de_rockantenne_stream_mp3.webp","Homepage":"https://www.rockantenne.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rockantenne.de/rockantenne/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["60's"],"Name":"FluxFM - 60s","Image":"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/60er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - ChillHop","Image":"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Chillhop/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - Chillout Radio","Image":"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/chillout/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Clubsandwich","Image":"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/clubsandwich/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Pop"],"Name":"FluxFM - ElectroFlux","Image":"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/elektro/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.m3u":{"Genre":["Pop","Culture"],"Name":"FluxFM - Hamburg","Image":"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/flux-hamburg/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - FluxKompensator","Image":"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/fluxkompensator/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Disco","Dance"],"Name":"FluxFM - Indie Disco","Image":"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/indiedisco/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - Jazzradio Schwarzenstein","Image":"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/jazzschwarz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - John Reed Radio","Image":"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/john-reed/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Klubradio","Image":"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/klubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Lounge","Neo-Soul","Trip-Hop","Jazz"],"Name":"FluxFM - FluxLounge","Image":"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/lounge/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Eclectic"],"Name":"FluxFM - Melides Art Radio","Image":"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Melides/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","House"],"Name":"FluxFM - Sound Of Berlin","Image":"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/soundofberlin/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Techno"],"Name":"FluxFM - Techno Underground","Image":"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/technoug/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___stream_skylab-radio_com_live.m3u":{"Genre":["Ambient","Eclectic","Experimental","Hip-Hop","House","Rock","Techno"],"Name":"Skylab Radio","Image":"https___stream_skylab-radio_com_live.webp","Homepage":"http://skylab-radio.com/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.skylab-radio.com/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio7_de_dab_mp3-192_web_.m3u":{"Genre":["Pop"],"Name":"Radio 7","Image":"https___streams_radio7_de_dab_mp3-192_web_.webp","Homepage":"https://www.radio7.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio7.de/dab/mp3-192/web/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","70's"],"Name":"Radio BOB! 70s Rock","Image":"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/70errock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","Blues"],"Name":"Radio BOB! Blues","Image":"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"RADIO BOB!s neuer Blues Stream","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/blues/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Best of Rock","Image":"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/bob-bestofrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Newcomer","Image":"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Listen to the hottest new rockbands – nonstop.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/newcomer/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Oldies","Image":"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/rockoldies/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Summer Rock Hits","Image":"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/summerrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u":{"Genre":["60's","70's"],"Name":"Joe 60's & 70's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_60s_70s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u":{"Genre":["80's","90's"],"Name":"Joe 80's & 90's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_80s_90s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u":{"Genre":["Various"],"Name":"Joe Easy","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u":{"Genre":["Various","70's","80's","90's"],"Name":"Joe FM","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u":{"Genre":["2000's"],"Name":"Joe Top 2000","Image":"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_zeno_fm_lf9upjop1gyuv.m3u":{"Genre":["General","News","Various"],"Name":"Kadicou FM","Image":"https___stream_zeno_fm_lf9upjop1gyuv.webp","Homepage":"https://zeno.fm/radio/kadicou-fm/","Country":"Nigeria","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Kadicou FM is dedicated to giving you quality broadcast and entertaining programs!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.zeno.fm/lf9upjop1gyuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 610 AM","Image":"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-am-610-am610khz.html","Country":"Vietnam","State":"Ho Chi Minh City","Region":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 610 AM","Codec":"AAC","Bitrate":320,"StreamUri":"https://strm.voh.com.vn/radio/channel2/chunklist_w2105781582.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 99.9 FM","Image":"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html","Country":"Vietnam","State":"Ho Chi Minh City","Region":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 99.9 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://strm.voh.com.vn/radio/channel3/chunklist_w1232938254.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___str_topradio_be_topradio_mp3.m3u":{"Genre":["Various"],"Name":"Top Radio","Image":"https___str_topradio_be_topradio_mp3.webp","Homepage":"https://www.topradio.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://str.topradio.be/topradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u":{"Genre":["News","Talk","Culture"],"Name":"SR P1","Image":"https___sverigesradio_se_topsy_direkt_132-hi-aac.webp","Homepage":"https://sverigesradio.se/p1","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/132-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u":{"Genre":["Pop","Culture"],"Name":"SR P3","Image":"https___sverigesradio_se_topsy_direkt_164-hi-aac.webp","Homepage":"https://sverigesradio.se/p3","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/164-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u":{"Genre":["News","Weather","Sport","Culture"],"Name":"SR P4 Jämtland","Image":"https___sverigesradio_se_topsy_direkt_200-hi-aac.webp","Homepage":"https://sverigesradio.se/jamtland","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"News, weather, sport, and culture from Jämtland","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/200-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___transliacija_rc_lt_rc128_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"Radijo Centras","Image":"https___transliacija_rc_lt_rc128_mp3.webp","Homepage":"https://rc.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.rc.lt/rc128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___transliacija_zipfm_lt_zipfm128_mp3.m3u":{"Genre":["Youth","Pop"],"Name":"ZIP FM","Image":"https___transliacija_zipfm_lt_zipfm128_mp3.webp","Homepage":"https://zipfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.zipfm.lt/zipfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream0_wfmu_org_freeform-best-available.m3u":{"Genre":["Classical"],"Name":"WFMU 91.1 FM","Image":"http___stream0_wfmu_org_freeform-best-available.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream0.wfmu.org/freeform-best-available","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream1_opb_org_kmhd_mp3.m3u":{"Genre":["Jazz"],"Name":"KMHD Portland FM 89.1 - Jazz","Image":"http___stream1_opb_org_kmhd_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream1.opb.org/kmhd.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream2_radioquantica_com_8000_stream.m3u":{"Genre":["Underground","Urbain"],"Name":"Rádio Quântica","Image":"http___stream2_radioquantica_com_8000_stream.webp","Homepage":"https://www.radioquantica.com/","Country":"Portugal","State":"","Region":"","Languages":["English","Portuguese"],"Language":"English, Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream2.radioquantica.com:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-33_zeno_fm_nkdugu37twzuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Raja Radio HD","Image":"http___stream-33_zeno_fm_nkdugu37twzuv.webp","Homepage":"https://tamilradios.net/raja-radio-hd/","Country":"India","State":"Tamilnadu","Region":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-33.zeno.fm/nkdugu37twzuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_dandelionradio_com_9414.m3u":{"Genre":["Indie"],"Name":"Dandelion Radio","Image":"http___stream_dandelionradio_com_9414.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.dandelionradio.com:9414","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u":{"Genre":["Dub","Reggae"],"Name":"Dr. Dick’s Dub Shack","Image":"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.webp","Homepage":"http://drdicksdubshack.com/","Country":"Bermuda","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Bermuda-based online radio station playing all species of dub, downtempo and bass music","Codec":"MP3","Bitrate":192,"StreamUri":"http://streamer.radio.co/s0635c8b0d/listen?fbclid=IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_fr_morow_com_8080_morow_hi_aacp.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Morow - Retro Progressive Rock","Image":"http___stream_fr_morow_com_8080_morow_hi_aacp.webp","Homepage":"","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://stream.fr.morow.com:8080/morow_hi.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___stream-icy_bauermedia_pt_m80_mp3.m3u":{"Genre":["70's","80's","90's","2000's"],"Name":"M80 Rádio","Image":"http___stream-icy_bauermedia_pt_m80_mp3.webp","Homepage":"https://m80.pt/","Country":"Portugal","State":"Lisbon","Region":"Lisbon","Languages":["Portuguese"],"Language":"Portuguese","Description":"Se a sua vida tem uma música, ela passa na M80","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-icy.bauermedia.pt/m80.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u":{"Genre":["Jazz","Classical","Soul"],"Name":"Apollo Radio","Image":"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.webp","Homepage":"https://www.apolloradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Bleiben sie entspannt","Codec":"MP3","Bitrate":192,"StreamUri":"http://streaming.apolloradio.de/apolloradio_simulcast_192k_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u":{"Genre":["Indie","Indie Rock","Canada","Commercial","Montreal","Mp3","Pop Rock"],"Name":"WKND 91,9","Image":"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.webp","Homepage":"http://quebec.wknd.fm/","Country":"Canada","State":"Québec","Region":"Québec","Languages":["Français"],"Language":"Français","Description":"WKND FM 91,9","Codec":"MP3","Bitrate":96,"StreamUri":"http://streaming.cjec.leclerccommunication.ca:8000/cjec.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___streaming_livespanel_com_20000_live.m3u":{"Genre":["Samba","Pagode","Pop"],"Name":"Rádio FM O DIA","Image":"http___streaming_livespanel_com_20000_live.webp","Homepage":"http://www.fmodia.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"FM O Dia","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.livespanel.com:20000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u":{"Genre":["News","Entertainment"],"Name":"Radio SRF 1","Image":"http___streaming_swisstxt_ch_m_drs1_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs1/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs2_mp3_128.m3u":{"Genre":["Classical","Jazz"],"Name":"Radio SRF 2 Kultur","Image":"http___streaming_swisstxt_ch_m_drs2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"Radio SRF 3","Image":"http___streaming_swisstxt_ch_m_drs3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs4news_mp3_128.m3u":{"Genre":["News"],"Name":"Radio SRF 4 News","Image":"http___streaming_swisstxt_ch_m_drs4news_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs4news/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsmw_mp3_128.m3u":{"Genre":["Pop","Schlager Music"],"Name":"Radio SRF Musikwelle","Image":"http___streaming_swisstxt_ch_m_drsmw_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsmw/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.m3u":{"Genre":["Indie"],"Name":"Radio SRF Virus","Image":"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsvirus/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_klassikradio_de_chor_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Chor","Image":"http___stream_klassikradio_de_chor_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/chor/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_dreams_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Dreams","Image":"http___stream_klassikradio_de_dreams_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/dreams/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_relax_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Relax","Image":"http___stream_klassikradio_de_relax_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/relax/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_laut_fm_alternativeworld.m3u":{"Genre":["Indie","Punk","New Wave","Britpop"],"Name":"Alternativeworld","Image":"http___stream_laut_fm_alternativeworld.webp","Homepage":"https://laut.fm/alternativeworld","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/alternativeworld","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_anderswelt.m3u":{"Genre":["New Wave","Gothic","Minimal","80's"],"Name":"Anderswelt","Image":"http___stream_laut_fm_anderswelt.webp","Homepage":"https://laut.fm/anderswelt","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Stuttgarter Wave-Klänge wie zu den guten alten Zeiten...","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/anderswelt","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_deutschrap.m3u":{"Genre":["Hip-Hop","Rap","German Rap","Urbain"],"Name":"Deutschrap","Image":"http___stream_laut_fm_deutschrap.webp","Homepage":"www.laut.fm/deutschrap","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Schluss mit Deutschrap Einheitsbrei!","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/deutschrap","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_kakerlakenradio.m3u":{"Genre":["Rock","Pop","Indie","New Wave","Punk","Britpop","Garage"],"Name":"Kakerlaken Radio","Image":"http___stream_laut_fm_kakerlakenradio.webp","Homepage":"http://indie-rock-radio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/kakerlakenradio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nightshift_alternative.m3u":{"Genre":["Gothic","Mediaeval","Nu Metal","80's","90's","Industrial","Metal","Metalcore"],"Name":"Nightshift Alternativ","Image":"http___stream_laut_fm_nightshift_alternative.webp","Homepage":"https://nightshift-alternativ.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nightshift_alternative","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nonpop.m3u":{"Genre":["Ambient","Avantgarde","Black Metal","Folk","Industrial","Lo-Fi","Minimal","Indie"],"Name":"NONPOP","Image":"http___stream_laut_fm_nonpop.webp","Homepage":"https://laut.fm/nonpop","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der Name ist Programm. Alles außer Massenware.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nonpop","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_scifi.m3u":{"Genre":["Vocal","Pop","Scifi"],"Name":"SciFi Radio","Image":"http___stream_laut_fm_scifi.webp","Homepage":"https://laut.fm/scifi","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Ein Online Radio für den Bereich Science Fiction.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/scifi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-relay-geo_ntslive_net_stream2.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live International","Image":"http___stream-relay-geo_ntslive_net_stream2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream-relay-geo_ntslive_net_stream.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live London - Don't Assume","Image":"http___stream-relay-geo_ntslive_net_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream_resonance_fm_resonance.m3u":{"Genre":["Eclectic"],"Name":"Resonance Radio 104.4 FM","Image":"http___stream_resonance_fm_resonance.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.resonance.fm/resonance","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u":{"Genre":["Eighties"],"Name":"80s80s","Image":"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.webp","Homepage":"https://www.80s80s.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.80s80s.de/web/mp3-192/streams.80s80s.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_egofm_de_egoCHILLOUT-hq.m3u":{"Genre":["Indie"],"Name":"egoFM CHILLOUT","Image":"http___streams_egofm_de_egoCHILLOUT-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die beruhigende Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoCHILLOUT-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFLASH-hq.m3u":{"Genre":["Indie","Electronic"],"Name":"egoFM FLASH","Image":"http___streams_egofm_de_egoFLASH-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die elektronische Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFLASH-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMBW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Baden-Württemberg","Image":"http___streams_egofm_de_egoFMBW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMBW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMHallOfFame-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM HallOfFame","Image":"http___streams_egofm_de_egoFMHallOfFame-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die legendäre Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMHallOfFame-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFM-hq.m3u":{"Genre":["Indie"],"Name":"egoFM live","Image":"http___streams_egofm_de_egoFM-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFM-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMKavka-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Kavka","Image":"http___streams_egofm_de_egoFMKavka-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die kavkaeske Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMKavka-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMNRW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM NRW","Image":"http___streams_egofm_de_egoFMNRW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMNRW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMRNB-hq.m3u":{"Genre":["R'n'B"],"Name":"egoFM R&B","Image":"http___streams_egofm_de_egoFMRNB-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die smoothe Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMRNB-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSEEWALD-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SEEWALD","Image":"http___streams_egofm_de_egoFMSEEWALD-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die Vermessung der Musik.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSEEWALD-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSoundtrack-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM Soundtrack","Image":"http___streams_egofm_de_egoFMSoundtrack-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die cineastische Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSoundtrack-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoJAZZ-hq.m3u":{"Genre":["Jazz"],"Name":"egoFM JAZZ","Image":"http___streams_egofm_de_egoJAZZ-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die jazzige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoJAZZ-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoPURE-hq.m3u":{"Genre":["Indie"],"Name":"egoFM PURE","Image":"http___streams_egofm_de_egoPURE-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Ohne Punkt und Komma.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoPURE-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRAP-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RAP","Image":"http___streams_egofm_de_egoRAP-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die lässige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRAP-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRIFF-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RIFF","Image":"http___streams_egofm_de_egoRIFF-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die rockige Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRIFF-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSNOW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SNOW","Image":"http___streams_egofm_de_egoSNOW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die winterliche Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSNOW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSOUL-hq.m3u":{"Genre":["Indie","Soul"],"Name":"egoFM SOUL","Image":"http___streams_egofm_de_egoSOUL-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die gefühlvolle Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSOUL-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSUN-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SUN","Image":"http___streams_egofm_de_egoSUN-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die sommerliche Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSUN-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_fluxfm_de_70er_mp3-320_audio_.m3u":{"Genre":["70's"],"Name":"FluxFM - 70s","Image":"http___streams_fluxfm_de_70er_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/70er/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["80's"],"Name":"FluxFM - 80s","Image":"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/80er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Berlin Beach House Radio","Image":"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/bbeachhouse/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.m3u":{"Genre":["Hip-Hop","Oldschool"],"Name":"FluxFM - BoomFM Classics","Image":"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfmclassics/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfm_mp3-320_audio_.m3u":{"Genre":["Hip-Hop"],"Name":"FluxFM - BoomFM","Image":"http___streams_fluxfm_de_boomfm_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfm/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Dub","Reggae"],"Name":"FluxFM - Dub Radio","Image":"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/dubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Funk"],"Name":"FluxFM - B-Funk","Image":"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/event01/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000's Naughty","Image":"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/flx_2000/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_forward_mp3-320_audio_.m3u":{"Genre":["Various","Releases"],"Name":"FluxFM - FluxForward","Image":"http___streams_fluxfm_de_forward_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/flux-forward/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward.","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/forward/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Rock","Hard Rock"],"Name":"FluxFM - Hard Rock FM","Image":"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/hardrock/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Metal"],"Name":"FluxFM - MetalFM","Image":"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/metalfm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Classical","Contemporary"],"Name":"FluxFM - neoFM","Image":"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/neofm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_passport_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - Passport Approved","Image":"http___streams_fluxfm_de_passport_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/passport/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie"],"Name":"FluxFM - Radio Alternative","Image":"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/radioalt/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Reggae"],"Name":"FluxFM - Rasta Radio","Image":"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/rastaradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_studio56_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - JaegerMusic Radio","Image":"http___streams_fluxfm_de_studio56_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/studio56/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - XJAZZ","Image":"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/xjazz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Ambient","Yoga"],"Name":"FluxFM - Yoga Sounds","Image":"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/yogasounds/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_norbert_de_8000_zappa_aac.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Zappa Stream Radio","Image":"http___streams_norbert_de_8000_zappa_aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"http://streams.norbert.de:8000/zappa.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 2000s Rock","Image":"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/2000er/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 80s Rock","Image":"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-80srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio Bob! 90s Rock","Image":"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-90srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u":{"Genre":["Indie Rock"],"Name":"Radio BOB! Alternative","Image":"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-alternative/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Christmas Rock","Image":"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-christmas/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u":{"Genre":["Classic Rock"],"Name":"Radio BOB! Classic Rock","Image":"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-classicrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u":{"Genre":["Hard Rock"],"Name":"Radio BOB! Hardrock","Image":"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Wenn Rock, dann BOB! Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-hardrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Kuschelrock","Image":"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-kuschelrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u":{"Genre":["Metal"],"Name":"Radio BOB! Metal","Image":"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-metal/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB!","Image":"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-national/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u":{"Genre":["Punk"],"Name":"Radio BOB! Punk","Image":"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-punk/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u":{"Genre":["Rockabilly"],"Name":"Radio BOB! Rockabilly","Image":"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockabilly/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Hits","Image":"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockhits/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u":{"Genre":["Country"],"Name":"Radio BOB! Country","Image":"http___streams_radiobob_de_country_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/country/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_country_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/country/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_roadtrip_mp3-192_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Roadtrip","Image":"http___streams_radiobob_de_roadtrip_mp3-192_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"BOBs Road Trip-Stream","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/roadtrip/mp3-192/","alternativeStreams":{"https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rockparty","Image":"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/rockparty/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u":{"Genre":["Southern Rock"],"Name":"Radio BOB! Southern Rock","Image":"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/southernrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___stream_srg-ssr_ch_m_couleur3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"RTS - Couleur 3","Image":"http___stream_srg-ssr_ch_m_couleur3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/couleur3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_espace-2_mp3_128.m3u":{"Genre":["Classical"],"Name":"RTS - Espace 2","Image":"http___stream_srg-ssr_ch_m_espace-2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/espace-2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTS - La Premiere","Image":"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/la-1ere/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u":{"Genre":["Indie"],"Name":"RTS - option musique","Image":"http___stream_srg-ssr_ch_m_option-musique_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/option-musique/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retedue_mp3_128.m3u":{"Genre":["Classical","Various","Culture"],"Name":"RSI - Rete Due","Image":"http___stream_srg-ssr_ch_m_retedue_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retedue/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retetre_mp3_128.m3u":{"Genre":["Indie","Pop"],"Name":"RSI - Rete Tre","Image":"http___stream_srg-ssr_ch_m_retetre_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retetre/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_reteuno_mp3_128.m3u":{"Genre":["News","Entertainment","News"],"Name":"RSI - Rete Uno","Image":"http___stream_srg-ssr_ch_m_reteuno_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/reteuno/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rr_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTR Radio","Image":"http___stream_srg-ssr_ch_m_rr_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Romansh"],"Language":"Romansh","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/rr/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.m3u":{"Genre":["Classical"],"Name":"Radio Swiss Classic","Image":"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsc_de/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsj_aacp_96.m3u":{"Genre":["Jazz"],"Name":"Radio Swiss Jazz","Image":"http___stream_srg-ssr_ch_m_rsj_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsj/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsp_aacp_96.m3u":{"Genre":["Pop"],"Name":"Radio Swiss Pop","Image":"http___stream_srg-ssr_ch_m_rsp_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsp/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_wfmt_com_main.m3u":{"Genre":["Classical"],"Name":"WFMT Chicago 98.7 - Classical","Image":"http___stream_wfmt_com_main.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wfmt.com/main","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_wqxr_org_wqxr.m3u":{"Genre":["Classical"],"Name":"WQXR New York - Classical Music","Image":"http___stream_wqxr_org_wqxr.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wqxr.org/wqxr","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___strm112_1_fm_blues_mobile_mp3.m3u":{"Genre":["Blues"],"Name":"1.FM - Blues Radio","Image":"http___strm112_1_fm_blues_mobile_mp3.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://strm112.1.fm/blues_mobile_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u":{"Genre":["Jazz"],"Name":"TSF Jazz","Image":"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.webp","Homepage":"https://www.tsfjazz.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ».","Codec":"MP3","Bitrate":128,"StreamUri":"https://tsfjazz.ice.infomaniak.ch/tsfjazz-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tunein_cdnstream1_com_3519_96_mp3.m3u":{"Genre":["News","Tv News","World News"],"Name":"CNN International","Image":"https___tunein_cdnstream1_com_3519_96_mp3.webp","Homepage":"https://www.cnn.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"TV Audio for CNN International","Codec":"MP3","Bitrate":96,"StreamUri":"https://tunein.cdnstream1.com/3519_96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___subfm_radioca_st_Sub_FM.m3u":{"Genre":["Dub","Dubstep","Garage","Grime","Deep House","Techno","Juke","Jungle Trap"],"Name":"SUB.FM - Where Bass Matters","Image":"http___subfm_radioca_st_Sub_FM.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://subfm.radioca.st/Sub.FM","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u":{"Genre":["News. MPB"],"Name":"Rádio UFMG Educativa 104.5 FM","Image":"https___ufmg_br_streamingradioaovivo_aovivo_mp3.webp","Homepage":"https://ufmg.br/comunicacao/radio-ufmg-educativa","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFMG Educativa 104.5 FM","Codec":"MP3","Bitrate":32,"StreamUri":"https://ufmg.br/streamingradioaovivo/aovivo.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___uk2_streamingpulse_com_ssl_vcr1.m3u":{"Genre":["Classical"],"Name":"Venice Classic Radio","Image":"https___uk2_streamingpulse_com_ssl_vcr1.webp","Homepage":"https://www.veniceclassicradio.eu/","Country":"Italy","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers.","Codec":"MP3","Bitrate":128,"StreamUri":"https://uk2.streamingpulse.com/ssl/vcr1","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___virtualtronics_net_proxy_zetafm_mp__stream.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"Zeta FM - 95.1 FM","Image":"https___virtualtronics_net_proxy_zetafm_mp__stream.webp","Homepage":"https://www.zetafmcr.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina.","Codec":"MP3","Bitrate":128,"StreamUri":"https://virtualtronics.net/proxy/zetafm?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"WDR 3","Image":"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr3/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Kulturradio","Codec":"MP3","Bitrate":256,"StreamUri":"https://wdr-wdr3-live.icecastssl.wdr.de/wdr/wdr3/live/mp3/256/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___wgbh-live_streamguys1_com_classical-hi.m3u":{"Genre":["Classical"],"Name":"WCRB Boston 99.5 - Classical","Image":"https___wgbh-live_streamguys1_com_classical-hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://wgbh-live.streamguys1.com/classical-hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___www_radioking_com_play_radio-doudou.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Doudou","Image":"https___www_radioking_com_play_radio-doudou.webp","Homepage":"https://www.radiodoudou.com","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radioking.com/play/radio-doudou","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_radiopommedapi_com_radio_mp3.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Pomme d'Api - La Radio des Petits","Image":"https___www_radiopommedapi_com_radio_mp3.webp","Homepage":"https://www.radiopommedapi.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radiopommedapi.com/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_ragya_com_prahar.m3u":{"Genre":["Indian Classical","Indian Instrumental"],"Name":"Ragya","Image":"https___www_ragya_com_prahar.webp","Homepage":"https://www.ragya.com/prahar","Country":"India","State":"Maharashtra","Region":"Maharashtra","Languages":["Hindi","Urdu","Sanskrit"],"Language":"Hindi, Urdu, Sanskrit","Description":"Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition.","Codec":"MP3","Bitrate":32,"StreamUri":"https://www.ragya.com/prahar","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___www_wwoz_org_listen_hi.m3u":{"Genre":["Jazz","Blues","Latin","Cajun","Funk"],"Name":"WWOZ New Orleans FM 90.7 - Various Artists","Image":"https___www_wwoz_org_listen_hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.wwoz.org/listen/hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wz7_servidoresbrasil_com_8162_stream.m3u":{"Genre":["MPB","Flashback"],"Name":"Rádio Hits 98.9 FM (Campos/São João da Barra)","Image":"https___wz7_servidoresbrasil_com_8162_stream.webp","Homepage":"https://redehits.fm","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Dá gosto de ouvir!","Codec":"MP3","Bitrate":32,"StreamUri":"https://wz7.servidoresbrasil.com:8162/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"Radio Zet","Image":"https___zt03_cdn_eurozet_pl_zet-tun_mp3.webp","Homepage":"https://www.radiozet.pl","Country":"Poland","State":"","Region":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://zt03.cdn.eurozet.pl/zet-tun.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdcb-ice_streamguys_org_80_wdcb128.m3u":{"Genre":["Blues","Jazz"],"Name":"WDCB Chicago FM 90.9 - Jazz & Blues","Image":"http___wdcb-ice_streamguys_org_80_wdcb128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdcb-ice.streamguys.org:80/wdcb128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.m3u":{"Genre":["Pop"],"Name":"WDR 1LIVE","Image":"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u":{"Genre":["Spoken Word"],"Name":"WDR 5","Image":"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr5/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-wdr5-live.icecast.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___west-aac-64_streamthejazzgroove_com_stream.m3u":{"Genre":["Jazz"],"Name":"The Jazz Groove","Image":"http___west-aac-64_streamthejazzgroove_com_stream.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://west-aac-64.streamthejazzgroove.com/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___wkcr_streamguys1_com_80_live.m3u":{"Genre":["Jazz","Classical"],"Name":"WKCR 89.9 FM","Image":"http___wkcr_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://wkcr.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___yumicoradio_net_8000_stream.m3u":{"Genre":["Future Funk","City Pop","Anime Groove","Vaporwave","Nu Disco","Electronic"],"Name":"Yumi Co. Radio","Image":"http___yumicoradio_net_8000_stream.webp","Homepage":"http://yumicoradio.net","Country":"France","State":"","Region":"","Languages":["English"],"Language":"English","Description":"24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived.","Codec":"MP3","Bitrate":256,"StreamUri":"http://yumicoradio.net:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256}},"totalWebradios":591,"webradioLanguages":["Arabic","Bengali","Brazilian Portuguese","Chinese","Corse","Czech","Danish","Dutch","English","Español","Francais","Français","French","German","Greek","Hebrew","Hindi","Indigenous Languages","Italian","Japanese","Kannada","Konkani","Korean","Lithuanian","Luxembourgish","Multilingual","Polish","Portugues","Portuguese","Romansh","Russian","Sanskrit","Spanish","Swedish","Tamil","Ukrainian","Urdu","Vietnamese/tiếng Việt","Welsh"],"totalWebradioLanguages":39,"webradioCountries":["Argentina","Australia","Austria","Bahamas","Belgium","Bermuda","Bolivia","Brazil","Canada","Chile","China","Colombia","Costa Rica","Cuba","Czech Republic","Denmark","Estonia","France","Germany","Ghana","Greece","Hungary","India","Israel","Italy","Japan","Korea, Democratic People's Republic Of","Kyrgyzstan","Lithuania","Luxembourg","Malaysia","Netherlands","New Zealand","Nigeria","Poland","Portugal","Republica Dominicana","Russia","Spain","Sweden","Switzerland","Syria","The Netherlands","Ukraine","United Kingdom","United States","USA","Vietnam","Wales"],"totalwebradioCountries":49,"webradioStates":{"Argentina":[],"Australia":["null"],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":["null"],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","null","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":["null"],"Denmark":["null"],"Estonia":["Tallinn"],"France":["Corse","null"],"Germany":["Baden-Württemberg","Bayern","Hesse","null"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":["null"],"New Zealand":["Dunedin","null"],"Nigeria":[],"Poland":["null"],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":["null"],"Syria":[],"The Netherlands":[],"Ukraine":[],"United Kingdom":["null"],"United States":["North Carolina","null","Ohio"],"USA":["Michigan"],"Vietnam":["Ho Chi Minh City"],"Wales":[]},"totalwebradioStates":238,"webradioRegions":{"Argentina":[],"Australia":["null"],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":["null"],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","null","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":["null"],"Denmark":["null"],"Estonia":["Tallinn"],"France":["Corse","null"],"Germany":["Baden-Württemberg","Bayern","Hesse","null"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":["null"],"New Zealand":["Dunedin","null"],"Nigeria":[],"Poland":["null"],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":["null"],"Syria":[],"The Netherlands":[],"Ukraine":[],"United Kingdom":["null"],"United States":["North Carolina","null","Ohio"],"USA":["Michigan"],"Vietnam":["Ho Chi Minh City"],"Wales":[]},"totalwebradioRegions":238,"webradioCodecs":["AAC","AAC+","ADTS","FLAC","HE-AAC","HLS","MP3","MPEG","OGG","OPUS"],"totalwebradioCodecs":10,"webradioBitrates":["32","48","50","56","64","66","89","96","99","123","128","160","192","196","224","256","320","384","465"],"totalwebradioBitrates":19,"webradioGenres":["2000's","60's","70's","80's","90's","Acoustic","Adult","Adult Contemporary","Afrobeat","AfroHouse","AfroJazz","Ambient","Americana Roots Music","Anime","Anime Groove","Archive","Atmospheric","Atmospheric Texture","Avantgarde","Bachelor Pad","Baladas","Baroque","Bass","Bebop","Bhangra","Big Band","Black Metal","Blues","Bollywood","Bop","Bossanova","Brazilian Music","Breakbeat","Britpop","Cajun","Canada","Carnatic","Catholic","Celtic","Charts","Children","Chill Out","City Pop","Classical","Classical Music","Classic Hits","Classic Rock","Club","College Radio","Combos","Commercial","Community","Community Radio","Contemporary","Contemporary Jazz","Cool Jazz","Corse","Country","Cover Songs","Culture","Cumbia","Current Affairs","Dance","Dancehall","Debate","Deep","Deep Ambient","Deep Bass","Deep House","Deep Tech","Deportes","Desi-Influenced Asian","Digitally Affected Analog Rock","Disco","Discussion","DJ Mixes","Down-Tempo","Drum'n'Bass","Dub","Dubstep","Easy Listening","Easy-Tempo","Eclectic","Education","Educational","Eighties","Electro-Acoustic","Electronic","Electro-Pop","Entertainment","Entretenimiento","Entrevistas","Ethnic","Evergreens","Exotica","Experimental","Fado","Fight","Flashback","Flim","Folk","Folklore","Football","Freeform","Free Jazz","Funk","Fusion","Future Funk","Future Soul","Game","Garage","Garage Rock","General","German Rap","Golden Oldies","Gospel","Gothic","Grime","Groove","Hard Bop","Hardcore","Hard Drums","Hard Rock","Hard Trance","Heavy Metal","Hebrew Pop","Hip-Hop","House","IDM","Independent","Independent Music","Indian Classical","Indian Instrumental","Indie","Indie Folk","Indie Pop","Indie Rock","Indigenous","Industrial","Information","Instrumental","Instrumental Hiphop","International","Interviews","Jazz","Jeebanmukhi","Journalism","J-pop","J-rock","Juke","Jungle","Jungle Trap","Kids","Laidback","Latin","Latin Hits","Latino","Liquid Trap","Lithuanian","Live","Local News","Lo-Fi","Lokageeti","Lounge","Lullabies","Mainstream","Mainstream Jazz","Mashup","Math Rock","Mediaeval","Mediaset","Meditation","Mellow Rock","Mellow Vocals Mostly Female","Merengue","Metal","Metalcore","Mid-Tempo","Mild Pop","Minimal","Minimal Beats","Modern","Modern Big Band","Modern Rock","Montreal","Mp3","MPB","Musica Cristiana","Música Latina","Neo-Soul","New Age","New Country","New Jazz","News","News. MPB","News Talk","New Wave","Non-commercial","Non-profit","Noticias","Notícias","Noticiero","Nu Disco","Nu Grooves","Nu Metal","Oldies","Oldschool","Opera","OST","Pagode","Paranormal","Party","Past Time Favorites","Past Time Favs","Patriotic","Political Talk","Politics","Pop","Pop Rock","Pop-Rock","Post-bop","Post-Metal","Post Punk","Post-Punk","Post-Rock","Progressive","Progressive House","Progressive Rock","Progressive Trance","Psy","Psych Rock","Psytrance","Public Radio","Punk","Rabindrasangeet","Radio Universitaria","Rap","Rave","Reggae","Regional","Releases","Renaissance","Requests","R'n'B","Rock","Rockabilly","Rocksteady Classic","Romántico","Romantique","Roots Music","Roots Reggae","Salsa","Samba","Schlager Music","Scifi","Sertanejo","Shoegaze","Ska","Smooth Jazz","Smooth Lounge","Soccer","Soft Rock","Soul","Soundscape","Soundtrack","Southern Rock","Space Music","Special Events","Spiritual","Spoken Word","Sport","Straight-ahead","Student Radio","Synth-Pop","Talk","Tamil Movie Songs","Tamil Radio","Techno","Tech Trance","Tiki","Top 40","Top Hits","Trance","Trancestep","Trip-Hop","Tropical/Urbana","Tv News","Uk Funky","Underground","University","University Radio","Uplifting Trance","Urbain","Urbana","Vaporwave","Variedades","Variety","Various","Vintage Music","Vocal","Vocal Trance","Walm","Weather","World Music","World News","Yoga","Youth"],"totalWebradioGenres":307,"webradioStatus":{"http___200_128_65_57_8000_live.m3u":{"date":"2024-07-03","count":1,"error":"http://200.128.65.57:8000/live: Server returned 404 Not Found"},"http___livestreams_radioton_de_http_rt-live-bw_m3u.m3u.AAC.64":{"date":"2024-07-03","count":16,"error":"http://livestreams.radioton.de/http/rt-live-mobile-bw.m3u: Invalid data found when processing input"},"http___yumicoradio_net_8000_stream.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x55abeda30b80] Connection to tcp://yumicoradio.net:8000 failed: Connection timed out\nhttp://yumicoradio.net:8000/stream: Connection timed out"},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"date":"2024-07-03","count":5,"error":"https://18003.live.streamtheworld.com/RT_SPAAC.aac: Server returned 403 Forbidden (access denied)"},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://22653.live.streamtheworld.com/TOPZEN.mp3: Server returned 403 Forbidden (access denied)"},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"date":"2024-07-03","count":4,"error":"https://akashvani.gov.in/radio/live.php?channel=5: Invalid data found when processing input"},"https___chokostream_com_8010_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x56222dcf0200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8010/live: Input/output error"},"https___chokostream_com_8050_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x561584cc1200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8050/live: Input/output error"},"https___chokostream_com_8070_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x559b88d98200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8070/live: Input/output error"},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"date":"2024-07-03","count":6,"error":"[tls @ 0x55acbb6bfbc0] A TLS fatal alert has been received.\nhttps://emisoras.dip-badajoz.es:58062/stream: Input/output error"},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3: Server returned 5XX Server Error reply"},"https___myradio24_org_radiometal.m3u":{"date":"2024-07-03","count":7,"error":"https://myradio24.org/radiometal: Server returned 404 Not Found"},"https___www_ragya_com_prahar.m3u":{"date":"2024-07-03","count":4,"error":"https://www.ragya.com/prahar: Invalid data found when processing input"}}}; diff --git a/docs/db/index/webradiodb-combined.min.js.gz b/docs/db/index/webradiodb-combined.min.js.gz index 6325f2db..11946e6e 100644 Binary files a/docs/db/index/webradiodb-combined.min.js.gz and b/docs/db/index/webradiodb-combined.min.js.gz differ diff --git a/docs/db/index/webradiodb-combined.min.json b/docs/db/index/webradiodb-combined.min.json index 71fcc092..36493a47 100644 --- a/docs/db/index/webradiodb-combined.min.json +++ b/docs/db/index/webradiodb-combined.min.json @@ -1 +1 @@ -{"timestamp":1720239940,"webradios":{"http___158_69_74_203_80_.m3u":{"Genre":["Jazz","Funk","Soul","World Music","Latin","Lounge","Nu Grooves"],"Name":"SwissGroove","Image":"http___158_69_74_203_80_.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://158.69.74.203:80/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u":{"Genre":["Rock","Lokageeti","Rabindrasangeet","Jeebanmukhi"],"Name":"Radio Bangla Net","Image":"http___18163_live_streamtheworld_com_SP_R3563475_SC.webp","Homepage":"https://radiobanglanet.com/","Country":"India","State":"","Languages":["Bengali"],"Language":"Bengali","Description":"A Radio Station for all Bengalis","Codec":"AAC","Bitrate":64,"StreamUri":"http://18163.live.streamtheworld.com/SP_R3563475_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___200_128_65_57_8000_live.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UESC","Image":"http___200_128_65_57_8000_live.webp","Homepage":"http://radio.uesc.br/3.html","Country":"Brazil","State":"Bahia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Inovação, conhecimento e música de qualidade!","Codec":"MPEG","Bitrate":128,"StreamUri":"http://200.128.65.57:8000/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___200_129_35_230_8081_aovivo_ogg_m3u.m3u":{"Genre":["MPB","News","Educational"],"Name":"Universitária FM","Image":"http___200_129_35_230_8081_aovivo_ogg_m3u.webp","Homepage":"http://www.radiouniversitariafm.com.br/","Country":"Brazil","State":"Ceará","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://200.129.35.230:8081/aovivo.ogg.m3u","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___200_136_219_172_8000_radioufscar96_mp3.m3u":{"Genre":["News","Various"],"Name":"Rádio UFSCar 95.3 FM","Image":"http___200_136_219_172_8000_radioufscar96_mp3.webp","Homepage":"http://radio.ufscar.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFSCar - Escute Diferente","Codec":"MP3","Bitrate":128,"StreamUri":"http://200.136.219.172:8000/radioufscar96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___206_189_117_157_8000_stream.m3u":{"Genre":["Electronic","Grime","Hip-Hop","House"],"Name":"Rinse FM","Image":"http___206_189_117_157_8000_stream.webp","Homepage":"https://rinse.fm/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC+","Bitrate":128,"StreamUri":"http://206.189.117.157:8000/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[128],"highestBitrate":128},"http___217_20_116_68_32032_stream.m3u":{"Genre":["International"],"Name":"Sohos FM 88.7","Image":"http___217_20_116_68_32032_stream.webp","Homepage":"http://sohosfm.gr/","Country":"Greece","State":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://217.20.116.68:32032/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___54_173_171_80_8000_6forty.m3u":{"Genre":["Indie","Post-Rock","Post-Metal","Modern","Experimental"],"Name":"6forty Radio","Image":"http___54_173_171_80_8000_6forty.webp","Homepage":"http://www.6fortyradio.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"a home for interesting music","Codec":"MP3","Bitrate":192,"StreamUri":"http://54.173.171.80:8000/6forty","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___5_135_183_124_8073_stream.m3u":{"Genre":["Dance","Pop","Latino","Rock","House","Techno"],"Name":"Onda Torrente Radio","Image":"http___5_135_183_124_8073_stream.webp","Homepage":"https://www.ondatorrenteradio.com","Country":"Spain","State":"Valencia","Languages":["Spanish"],"Language":"Spanish","Description":"Somos la radio de todo el mundo","Codec":"MP3","Bitrate":128,"StreamUri":"http://5.135.183.124:8073/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___7878_go2stream_fr_8000_stream.m3u":{"Genre":["Corse"],"Name":"Radio Balagne","Image":"http___7878_go2stream_fr_8000_stream.webp","Homepage":"http://www.radiobalagne.com/","Country":"France","State":"Corse","Languages":["Corse","Francais"],"Language":"Corse, Francais","Description":"A voce insulana","Codec":"MPEG","Bitrate":128,"StreamUri":"http://7878.go2stream.fr:8000/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___79_120_39_202_8002_mathrock.m3u":{"Genre":["Math Rock"],"Name":"Caprice Radio Math Rock","Image":"http___79_120_39_202_8002_mathrock.webp","Homepage":"http://radcap.ru/mathrock.html","Country":"Russia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"http://79.120.39.202:8002/mathrock","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___81_92_238_33_80.m3u":{"Genre":["Pop","Charts"],"Name":"Eldoradio","Image":"http___81_92_238_33_80.webp","Homepage":"","Country":"Luxembourg","State":"","Languages":["Luxembourgish"],"Language":"Luxembourgish","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://81.92.238.33:80","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___82_135_234_195_8000_goldfm_mp3.m3u":{"Genre":["Adult Contemporary","Rock"],"Name":"Gold FM","Image":"http___82_135_234_195_8000_goldfm_mp3.webp","Homepage":"https://goldfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/goldfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Kaunas)","Image":"http___82_135_234_195_8000_kelyje_kaunas_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_kaunas.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Klaipėda, Vilnius)","Image":"http___82_135_234_195_8000_kelyje_klaipeda_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_klaipeda.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u":{"Genre":["Community","Indie","Experimental","Pop","Rock","Techno"],"Name":"L'Eko des Garrigues","Image":"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.webp","Homepage":"http://www.ekodesgarrigues.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"OGG","Bitrate":320,"StreamUri":"http://91.121.159.124:8000/eko-des-garrigues-256k.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[320],"highestBitrate":320},"http___91_218_212_67_8000_stream.m3u":{"Genre":["Spoken Word"],"Name":"Hromadske Radio","Image":"http___91_218_212_67_8000_stream.webp","Homepage":"https://hromadske.radio/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine Talk","Codec":"MP3","Bitrate":160,"StreamUri":"http://91.218.212.67:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u":{"Genre":["Various"],"Name":"BBC World Service","Image":"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_world_service","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___antena1_newradio_it_stream_ext__mp3.m3u":{"Genre":["Adult Contemporary","Jazz","Pop","Smooth Jazz"],"Name":"Antena 1 São Paulo, SP (ZYD823 94,7 MHz FM)","Image":"http___antena1_newradio_it_stream_ext__mp3.webp","Homepage":"http://antena1.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"ANTENA1 - 94 7 FM","Codec":"AAC+","Bitrate":64,"StreamUri":"http://antena1.newradio.it/stream?ext=.mp3","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Hip-Hop","R'n'B","Soul","Gospel","Electronic"],"Name":"BBC Radio 1Xtra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/1xtra","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Indie","Rock","Funk"],"Name":"BBC Radio 6 Music","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_6music/bbc_6music.isml/bbc_6music-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Contemporary","Bollywood","Bhangra","Pop","Urbain"],"Name":"BBC Asian Network","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_asian_network/bbc_asian_network.isml/bbc_asian_network-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio Cymru","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru","Country":"Wales","State":"","Languages":["Welsh"],"Language":"Welsh","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_cymru/bbc_radio_cymru.isml/bbc_radio_cymru-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u":{"Genre":["News","Discussion","Sport","Interviews"],"Name":"BBC Radio 5 Live","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/programmes/b0070hx6","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"The latest sport with coverage and debate, featuring commentaries on the big games and sporting events.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_five_live/bbc_radio_five_live.isml/bbc_radio_five_live-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Archive"],"Name":"BBC Radio 4 Extra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4extra","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_four_extra/bbc_radio_four_extra.isml/bbc_radio_four_extra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourfm/bbc_radio_fourfm.isml/bbc_radio_fourfm-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4 LW","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"Longwave broadcast of BBC Radio 4.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourlw/bbc_radio_fourlw.isml/bbc_radio_fourlw-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Charts"],"Name":"BBC Radio 1","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Dance"],"Name":"BBC Radio 1 Dance","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1dance","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"A mix of classic, current and future dance music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Meditation"],"Name":"BBC Radio 1 Relax","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1relax","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"A mix of relaxing and meditating music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Classical","Jazz","World Music"],"Name":"BBC Radio 3","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio 2","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_two/bbc_radio_two.isml/bbc_radio_two-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___audio1_ideastream_org_wclv_mp3.m3u":{"Genre":["Classical"],"Name":"WCLV Cleveland 104.9 - Classical","Image":"http___audio1_ideastream_org_wclv_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://audio1.ideastream.org/wclv.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___centova_rockhost_com_8001_stream.m3u":{"Genre":["Ethnic","Eclectic"],"Name":"Hollow Earth Radio","Image":"http___centova_rockhost_com_8001_stream.webp","Homepage":"https://www.hollowearthradio.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Non-commercial DIY radio station for underrepresented music, sounds and perspectives","Codec":"MP3","Bitrate":128,"StreamUri":"http://centova.rockhost.com:8001/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u":{"Genre":["Indie Rock"],"Name":"WEQX 102.7 Manchester, VT","Image":"http___crystalout_surfernetwork_com_8001_WEQX_MP3.webp","Homepage":"http://www.weqx.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The real alternative","Codec":"MP3","Bitrate":128,"StreamUri":"http://crystalout.surfernetwork.com:8001/WEQX_MP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___current_stream_publicradio_org_kcmp_mp3.m3u":{"Genre":["Indie"],"Name":"KCMP 89.3 FM - The Current","Image":"http___current_stream_publicradio_org_kcmp_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://current.stream.publicradio.org/kcmp.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___dancewave_online_dance_mp3.m3u":{"Genre":["Dance","House","Trance"],"Name":"Dance Wave!","Image":"http___dancewave_online_dance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Languages":["English"],"Language":"English","Description":"All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet!","Codec":"MP3","Bitrate":128,"StreamUri":"http://dancewave.online/dance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_fipradio_fr_live_fip-midfi_mp3.m3u":{"Genre":["Classical","Jazz","Rock","World Music"],"Name":"France Inter Paris (FIP)","Image":"http___direct_fipradio_fr_live_fip-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.fipradio.fr/live/fip-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_franceculture_fr_live_franceculture-midfi_mp3.m3u":{"Genre":["Spoken Word","Current Affairs"],"Name":"France Culture Live","Image":"http___direct_franceculture_fr_live_franceculture-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.franceculture.fr/live/franceculture-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusique-midfi_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"France Musique Live","Image":"http___direct_francemusique_fr_live_francemusique-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusique-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.m3u":{"Genre":["Classical"],"Name":"France Musique Classique Plus","Image":"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiqueclassiqueplus-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.m3u":{"Genre":["Contemporary"],"Name":"France Musique La Contemporaine","Image":"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelacontemporaine-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.m3u":{"Genre":["Jazz"],"Name":"France Musique La Jazz","Image":"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelajazz-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___eagle_streemlion_com_4040_stream_icy_http.m3u":{"Genre":["Progressive Rock"],"Name":"Prog Frog","Image":"http___eagle_streemlion_com_4040_stream_icy_http.webp","Homepage":"https://prog-frog.com/","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"Progressive Rock Radio Worldwide","Codec":"MP3","Bitrate":128,"StreamUri":"http://eagle.streemlion.com:4040/stream?icy=http","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u":{"Genre":["Jazz","Blues","Soul"],"Name":"Jazz FM","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.webp","Homepage":"https://planetradio.co.uk/jazz-fm/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"Listen in Colour","Codec":"AAC","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/jazzhigh.aac?aw_0_1st.skey=1650998937","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.m3u":{"Genre":["Classical","News","Classical","Requests"],"Name":"Scala Radio","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/scalahigh.aac?aw_0_1st.skey=1650896299","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u":{"Genre":["Metal"],"Name":"La Grosse Radio Métal","Image":"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/metal/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u":{"Genre":["Reggae"],"Name":"La Grosse Radio Reggae","Image":"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/reggae/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-reggae-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u":{"Genre":["Rock"],"Name":"La Grosse Radio Rock","Image":"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/rock/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced!","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_stream_frequence3_net_frequence3_flac.m3u":{"Genre":["Pop","Charts"],"Name":"frequence3","Image":"http___hd_stream_frequence3_net_frequence3_flac.webp","Homepage":"https://www.frequence3.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"FLAC","Bitrate":0,"StreamUri":"http://hd.stream.frequence3.net/frequence3.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[0],"highestBitrate":0},"http___hirschmilch_de_7000_electronic_mp3.m3u":{"Genre":["Electronic"],"Name":"Hirschmilch Electronic","Image":"http___hirschmilch_de_7000_electronic_mp3.webp","Homepage":"https://hirschmilch.de/","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7.","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/electronic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_prog-house_mp3.m3u":{"Genre":["Progressive House"],"Name":"Hirschmilch Prog-House","Image":"http___hirschmilch_de_7000_prog-house_mp3.webp","Homepage":"https://hirschmilch.de/prog-house","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Progressive House on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/prog-house.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_psytrance_mp3.m3u":{"Genre":["Psytrance"],"Name":"Hirschmilch Psytrance","Image":"http___hirschmilch_de_7000_psytrance_mp3.webp","Homepage":"https://hirschmilch.de/psytrance","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Psytrance on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/psytrance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_techno_mp3.m3u":{"Genre":["Techno"],"Name":"Hirschmilch Techno","Image":"http___hirschmilch_de_7000_techno_mp3.webp","Homepage":"https://hirschmilch.de/techno","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Techno on https://hirschmilch.de","Codec":"MP3","Bitrate":123,"StreamUri":"http://hirschmilch.de:7000/techno.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[123],"highestBitrate":123},"http___ice-1_streamhoster_com_lv_wqed--893.m3u":{"Genre":["Classical"],"Name":"WQED Pittsburgh 89.3 - Classical","Image":"http___ice-1_streamhoster_com_lv_wqed--893.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice-1.streamhoster.com/lv_wqed--893","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_7soul-128-aac.m3u":{"Genre":["Soul","Vintage Music"],"Name":"Soma FM - Seven Inch Soul","Image":"http___ice1_somafm_com_7soul-128-aac.webp","Homepage":"https://somafm.com/7soul/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Vintage soul tracks from the original 45 RPM vinyl.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/7soul-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_beatblender-128-aac.m3u":{"Genre":["Electronic","Deep House","Down-Tempo"],"Name":"Soma FM - Beat Blender","Image":"http___ice1_somafm_com_beatblender-128-aac.webp","Homepage":"https://somafm.com/beatblender/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A late night blend of deep-house and downtempo chill.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/beatblender-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_bootliquor-128-aac.m3u":{"Genre":["Country","Americana Roots Music"],"Name":"Soma FM - Boot Liquor","Image":"http___ice1_somafm_com_bootliquor-128-aac.webp","Homepage":"https://somafm.com/bootliquor/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Americana Roots music for Cowhands, Cowpokes and Cowtippers.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/bootliquor-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_brfm-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - Black Rock FM","Image":"http___ice1_somafm_com_brfm-128-aac.webp","Homepage":"https://somafm.com/brfm/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"From the Playa to the world, for the annual Burning Man festival.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/brfm-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-128-aac.m3u":{"Genre":["Electronic","IDM"],"Name":"Soma FM - cliqhop idm","Image":"http___ice1_somafm_com_cliqhop-128-aac.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/cliqhop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-256-mp3.m3u":{"Genre":["IDM"],"Name":"cliqhop idm - SomaFM","Image":"http___ice1_somafm_com_cliqhop-256-mp3.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"MP3","Bitrate":256,"StreamUri":"http://ice1.somafm.com/cliqhop-256-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ice1_somafm_com_covers-128-mp3.m3u":{"Genre":["Pop","Cover Songs"],"Name":"Soma FM - Covers","Image":"http___ice1_somafm_com_covers-128-mp3.webp","Homepage":"https://somafm.com/covers/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Just covers. Songs you know by artists you don't. We've got you covered.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice1.somafm.com/covers-128-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_deepspaceone-128-aac.m3u":{"Genre":["Electronic","Ambient","Experimental","Space Music"],"Name":"Soma FM - Deep Space One","Image":"http___ice1_somafm_com_deepspaceone-128-aac.webp","Homepage":"https://somafm.com/deepspaceone/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Deep ambient electronic, experimental and space music. For inner and outer space exploration.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/deepspaceone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_defcon-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - DEF CON Radio","Image":"http___ice1_somafm_com_defcon-128-aac.webp","Homepage":"https://somafm.com/defcon/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Music for Hacking. The DEF CON Year-Round Channel.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/defcon-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_digitalis-128-aac.m3u":{"Genre":["Rock","Digitally Affected Analog Rock"],"Name":"Soma FM - Digitalis","Image":"http___ice1_somafm_com_digitalis-128-aac.webp","Homepage":"https://somafm.com/digitalis/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Digitally affected analog rock to calm the agitated heart.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/digitalis-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dronezone-128-aac.m3u":{"Genre":["Electronic","Ambient","Atmospheric Texture","Minimal Beats"],"Name":"Soma FM - Drone Zone","Image":"http___ice1_somafm_com_dronezone-128-aac.webp","Homepage":"https://somafm.com/dronezone/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Served best chilled, safe with most medications. Atmospheric textures with minimal beats.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dronezone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dubstep-128-aac.m3u":{"Genre":["Dub","Dubstep","Deep Bass"],"Name":"Soma FM - Dub Step Beyond","Image":"http___ice1_somafm_com_dubstep-128-aac.webp","Homepage":"https://somafm.com/dubstep/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Dubstep, Dub and Deep Bass. May damage speakers at high volume.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dubstep-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_fluid-128-aac.m3u":{"Genre":["Electronic","Instrumental Hiphop","Future Soul","Liquid Trap"],"Name":"Soma FM - Fluid","Image":"http___ice1_somafm_com_fluid-128-aac.webp","Homepage":"https://somafm.com/fluid/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Drown in the electronic sound of instrumental hiphop, future soul and liquid trap.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/fluid-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_folkfwd-128-aac.m3u":{"Genre":["Folk","Indie Folk"],"Name":"Soma FM - Folk Forward","Image":"http___ice1_somafm_com_folkfwd-128-aac.webp","Homepage":"https://somafm.com/folkfwd/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Indie Folk, Alt-folk and the occasional folk classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/folkfwd-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_groovesalad-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo"],"Name":"Soma FM - Groove Salad","Image":"http___ice1_somafm_com_groovesalad-128-aac.webp","Homepage":"https://somafm.com/groovesalad/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A nicely chilled plate of ambient/downtempo beats and grooves.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/groovesalad-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_illstreet-128-aac.m3u":{"Genre":["Lounge","Bachelor Pad","Exotica","Vintage Music"],"Name":"Soma FM - Illinois Street Lounge","Image":"http___ice1_somafm_com_illstreet-128-aac.webp","Homepage":"https://somafm.com/illstreet/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Classic bachelor pad, playful exotica and vintage music of tomorrow.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/illstreet-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_indiepop-128-aac.m3u":{"Genre":["Pop","Indie Pop"],"Name":"Soma FM - Indie Pop Rocks!","Image":"http___ice1_somafm_com_indiepop-128-aac.webp","Homepage":"https://somafm.com/indiepop/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"New and classic favorite indie pop tracks.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/indiepop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_live-128-aac.m3u":{"Genre":["Electronic","Live","Special Events"],"Name":"Soma FM - Live","Image":"http___ice1_somafm_com_live-128-aac.webp","Homepage":"https://somafm.com/live/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Special Live Events and rebroadcasts of past live events.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/live-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_lush-128-aac.m3u":{"Genre":["Electronic","Mellow Vocals Mostly Female"],"Name":"Soma FM - Lush","Image":"http___ice1_somafm_com_lush-128-aac.webp","Homepage":"https://somafm.com/lush/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Sensuous and mellow female vocals, many with an electronic influence.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/lush-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_metal-128-aac.m3u":{"Genre":["Metal"],"Name":"Soma FM - Metal Detector","Image":"http___ice1_somafm_com_metal-128-aac.webp","Homepage":"https://somafm.com/metal/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/metal-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_missioncontrol-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - Mission Control","Image":"http___ice1_somafm_com_missioncontrol-128-aac.webp","Homepage":"https://somafm.com/missioncontrol/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Celebrating NASA and Space Explorers everywhere.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/missioncontrol-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_poptron-128-aac.m3u":{"Genre":["Pop","Electro-Pop","Indie Rock"],"Name":"Soma FM - PopTron","Image":"http___ice1_somafm_com_poptron-128-aac.webp","Homepage":"https://somafm.com/poptron/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Electropop and indie dance rock with sparkle and pop.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/poptron-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_secretagent-128-aac.m3u":{"Genre":["Pop","Easy-Tempo","60's"],"Name":"Soma FM - Secret Agent","Image":"http___ice1_somafm_com_secretagent-128-aac.webp","Homepage":"https://somafm.com/secretagent/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/secretagent-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_seventies-128-aac.m3u":{"Genre":["Rock","70's","Mellow Rock"],"Name":"Soma FM - Left Coast 70s","Image":"http___ice1_somafm_com_seventies-128-aac.webp","Homepage":"https://somafm.com/seventies/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Mellow album rock from the Seventies. Yacht not required.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/seventies-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sf1033-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - SF 10-33","Image":"http___ice1_somafm_com_sf1033-128-aac.webp","Homepage":"https://somafm.com/sf1033/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Ambient music mixed with the sounds of San Francisco public safety radio traffic.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sf1033-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sonicuniverse-128-aac.m3u":{"Genre":["Jazz","Avantgarde"],"Name":"Soma FM - Sonic Universe","Image":"http___ice1_somafm_com_sonicuniverse-128-aac.webp","Homepage":"https://somafm.com/sonicuniverse/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Transcending the world of jazz with eclectic, avant-garde takes on tradition.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sonicuniverse-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_spacestation-128-aac.m3u":{"Genre":["Electronic","Mid-Tempo"],"Name":"Soma FM - Space Station Soma","Image":"http___ice1_somafm_com_spacestation-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/spacestation-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_suburbsofgoa-128-aac.m3u":{"Genre":["World Music","Desi-Influenced Asian","World Music"],"Name":"Soma FM - Suburbs of Goa","Image":"http___ice1_somafm_com_suburbsofgoa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/suburbsofgoa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thetrip-128-aac.m3u":{"Genre":["Pop","Progressive House","Trance"],"Name":"Soma FM - The Trip","Image":"http___ice1_somafm_com_thetrip-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thetrip-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thistle-128-aac.m3u":{"Genre":["Folk","Celtic","Roots Music"],"Name":"Soma FM - ThistleRadio","Image":"http___ice1_somafm_com_thistle-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thistle-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_u80s-128-aac.m3u":{"Genre":["Pop","80's","Synth-Pop","New Wave"],"Name":"Soma FM - Underground 80s","Image":"http___ice1_somafm_com_u80s-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/u80s-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice2_somafm_com_gsclassic-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo","2000's"],"Name":"Soma FM - Groove Salad Classic","Image":"http___ice2_somafm_com_gsclassic-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice2.somafm.com/gsclassic-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice4_somafm_com_reggae-128-aac.m3u":{"Genre":["Reggae","Ska","Rocksteady Classic","Deep"],"Name":"Soma FM - Heavyweight Reggae","Image":"http___ice4_somafm_com_reggae-128-aac.webp","Homepage":"https://somafm.com/reggae/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice4.somafm.com/reggae-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice5_securenetsystems_net_KCSM.m3u":{"Genre":["Jazz"],"Name":"KCSM","Image":"http___ice5_securenetsystems_net_KCSM.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://ice5.securenetsystems.net/KCSM","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___ice_bassdrive_net_80_stream.m3u":{"Genre":["Drum'n'Bass"],"Name":"Bassdrive Radio","Image":"http___ice_bassdrive_net_80_stream.webp","Homepage":"https://www.bassdrive.com/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice.bassdrive.net:80/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u":{"Genre":["Rock"],"Name":"SuperStereo 1","Image":"http___icecast_centaury_cl_7570_SuperStereoHiRes1.webp","Homepage":"https://www.hiresaudio.online/superstereo-1/","Country":"Chile","State":"","Languages":["English"],"Language":"English","Description":"YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’","Codec":"OGG","Bitrate":48,"StreamUri":"http://icecast.centaury.cl:7570/SuperStereoHiRes1","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[48],"highestBitrate":48},"http___icecast_err_ee_80_raadio4korge_mp3.m3u":{"Genre":["News","Pop","Jazz","Classical"],"Name":"Raadio 4","Image":"http___icecast_err_ee_80_raadio4korge_mp3.webp","Homepage":"https://r4.err.ee/","Country":"Estonia","State":"Tallinn","Languages":["Russian"],"Language":"Russian","Description":"Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia","Codec":"MP3","Bitrate":320,"StreamUri":"http://icecast.err.ee:80/raadio4korge.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___icecast_omroep_nl_radio1-bb-aac.m3u":{"Genre":["News"],"Name":"NPO Radio 1","Image":"http___icecast_omroep_nl_radio1-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio1-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio2-bb-aac.m3u":{"Genre":["Pop","Dance","Oldies","Rock"],"Name":"NPO Radio 2","Image":"http___icecast_omroep_nl_radio2-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio2-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio4-bb-aac.m3u":{"Genre":["Classical"],"Name":"NPO Radio 4","Image":"http___icecast_omroep_nl_radio4-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio4-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_unitedradio_it_Virgin_mp3.m3u":{"Genre":["Mediaset","Pop Rock"],"Name":"Virgin Radio Italia","Image":"http___icecast_unitedradio_it_Virgin_mp3.webp","Homepage":"http://www.virginradio.it/","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.unitedradio.it/Virgin.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klara-high_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"VRT - Klara","Image":"http___icecast_vrtcdn_be_klara-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klara-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u":{"Genre":["Classical"],"Name":"VRT - Klara Continuo","Image":"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klaracontinuo-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm-high_mp3.m3u":{"Genre":["Pop"],"Name":"VRT - MNM","Image":"http___icecast_vrtcdn_be_mnm-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"VRT - MNM Hits","Image":"http___icecast_vrtcdn_be_mnm_hits-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm_hits-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u":{"Genre":["Eclectic"],"Name":"VRT - Radio 2","Image":"http___icecast_vrtcdn_be_ra2vlb-high_mp3.webp","Homepage":"https://radio2.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/ra2vlb-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio1-high_mp3.m3u":{"Genre":["Pop","Contemporary","Rock","News"],"Name":"VRT - Radio 1","Image":"http___icecast_vrtcdn_be_radio1-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio1-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Unwind","Image":"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-unwind","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio2_unwind-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru-high_mp3.m3u":{"Genre":["Indie"],"Name":"VRT - StuBru - Studio Brussels","Image":"http___icecast_vrtcdn_be_stubru-high_mp3.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u":{"Genre":["Pop","Rock"],"Name":"VRT Studio Brussel De Tijdloze","Image":"http___icecast_vrtcdn_be_stubru_tijdloze_aac.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru_tijdloze.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginHardRock_mp3.m3u":{"Genre":["Hard Rock","Mediaset"],"Name":"Virgin Radio Hard Rock","Image":"http___icy_unitedradio_it_VirginHardRock_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginHardRock.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginRockClassics_mp3.m3u":{"Genre":["Classic Rock","Mediaset"],"Name":"Virgin Radio Classic Rock","Image":"http___icy_unitedradio_it_VirginRockClassics_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginRockClassics.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___kdhx-ice_streamguys1_com_80_live.m3u":{"Genre":["Indie"],"Name":"KDHX 88.1 FM St. Louis","Image":"http___kdhx-ice_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://kdhx-ice.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___kuvo-ice_streamguys_org_kuvo-aac-128.m3u":{"Genre":["Jazz"],"Name":"KUVO 89.3 FM Denver","Image":"http___kuvo-ice_streamguys_org_kuvo-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvo-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.m3u":{"Genre":["Pop","R'n'B","Hip-Hop"],"Name":"KUVO HD2","Image":"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvohd2-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u":{"Genre":["Indie","Rock","Pop","New Age","Punk","Post-Punk","Electronic","Contemporary"],"Name":"KZradio הקצה","Image":"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.webp","Homepage":"https://kzradio.net/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Independent Internet-radio based in Tel Aviv","Codec":"HE-AAC","Bitrate":128,"StreamUri":"http://kzradio.mediacast.co.il/kzradio_live/kzradio/icecast.audio","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[128],"highestBitrate":128},"http___listen-nme_sharp-stream_com_nme1high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 1 - Classic & New Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme1high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme1high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen-nme_sharp-stream_com_nme2high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 2 - New & Upfront Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme2high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme2high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen_jazz88_org_ksds_mp3.m3u":{"Genre":["Jazz"],"Name":"San Diego Jazz 88.3","Image":"http___listen_jazz88_org_ksds_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://listen.jazz88.org/ksds.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live-aacplus-64_kexp_org_kexp64_aac.m3u":{"Genre":["Indie"],"Name":"KEXP 90.3 FM Seattle","Image":"http___live-aacplus-64_kexp_org_kexp64_aac.webp","Homepage":"https://www.kexp.org/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://live-aacplus-64.kexp.org/kexp64.aac","alternativeStreams":{"http___live-mp3-128_kexp_org_":{"StreamUri":"http://live-mp3-128.kexp.org/","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[128,64],"highestBitrate":128},"http___live-icy_dr_dk_A_A03H_mp3.m3u":{"Genre":["News","Talk"],"Name":"DR P1","Image":"http___live-icy_dr_dk_A_A03H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A03H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A04H_mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"DR P2","Image":"http___live-icy_dr_dk_A_A04H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A04H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A05H_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"DR P3","Image":"http___live-icy_dr_dk_A_A05H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A05H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A08H_mp3.m3u":{"Genre":["Pop","News"],"Name":"DR P4","Image":"http___live-icy_dr_dk_A_A08H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A08H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A29H_mp3.m3u":{"Genre":["Indie","Indie Rock","Rock"],"Name":"DR P6 Beat","Image":"http___live-icy_dr_dk_A_A29H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A29H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J","Image":"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/2TJW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.m3u":{"Genre":["Country"],"Name":"ABC Country","Image":"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/CTRW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.m3u":{"Genre":["Jazz"],"Name":"ABC Jazz","Image":"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/JAZW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J Unearthed","Image":"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.webp","Homepage":"https://www.abc.net.au/triplejunearthed/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/UNEW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live_radioec_com_ua_8000_kiev.m3u":{"Genre":["Pop","Rock","Techno"],"Name":"KrainaFM","Image":"http___live_radioec_com_ua_8000_kiev.webp","Homepage":"http://krainafm.com.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine's first all-Ukrainian-language radio","Codec":"MP3","Bitrate":128,"StreamUri":"http://live.radioec.com.ua:8000/kiev","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live_radioton_de_rt-live-bw.m3u":{"Genre":["80's"],"Name":"Radioton","Image":"http___live_radioton_de_rt-live-bw.webp","Homepage":"https://www.radioton.de/","Country":"Germany","State":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"Lang leben die 80er.","Codec":"MP3","Bitrate":192,"StreamUri":"http://live.radioton.de/rt-live-bw","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mainstream_amazingradios_com_8000_blues128.m3u":{"Genre":["Blues"],"Name":"Amazing Blues","Image":"http___mainstream_amazingradios_com_8000_blues128.webp","Homepage":"https://amazingradios.com/","Country":"USA","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://mainstream.amazingradios.com:8000/blues128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.m3u":{"Genre":["Classical"],"Name":"MDR Klassik","Image":"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://mdr-284350-0.cast.mdr.de/mdr/284350/0/aac/high/stream.aac","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___media-ice_musicradio_com_ClassicFMMP3.m3u":{"Genre":["Classical"],"Name":"Classic FM","Image":"http___media-ice_musicradio_com_ClassicFMMP3.webp","Homepage":"https://www.classicfm.com/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://media-ice.musicradio.com/ClassicFMMP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___media_radio-libertaire_org_8080_radiolib_mp3.m3u":{"Genre":["Various","Talk"],"Name":"Radio Libertaire (France)","Image":"http___media_radio-libertaire_org_8080_radiolib_mp3.webp","Homepage":"https://www.radio-libertaire.net/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://media.radio-libertaire.org:8080/radiolib.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mediaserv21_live-streams_nl_8000_live.m3u":{"Genre":["Contemporary"],"Name":"Hi On Line - France","Image":"http___mediaserv21_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv21.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8000_live.m3u":{"Genre":["Pop","Golden Oldies"],"Name":"Hi On Line - Gold","Image":"http___mediaserv30_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8086_live.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop (320K)","Image":"http___mediaserv30_live-streams_nl_8086_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8086/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8088_live.m3u":{"Genre":["Classical"],"Name":"Hi On Line - Classical","Image":"http___mediaserv30_live-streams_nl_8088_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8088/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8034_live.m3u":{"Genre":["Latin"],"Name":"Hi On Line - Latin","Image":"http___mediaserv33_live-streams_nl_8034_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8034/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8036_live.m3u":{"Genre":["Lounge"],"Name":"Hi On Line - Lounge","Image":"http___mediaserv33_live-streams_nl_8036_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8036/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8006_live.m3u":{"Genre":["Jazz"],"Name":"Hi On Line - Jazz","Image":"http___mediaserv38_live-streams_nl_8006_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8006/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8027_live.m3u":{"Genre":["World Music"],"Name":"Hi On Line - World","Image":"http___mediaserv38_live-streams_nl_8027_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8027/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u":{"Genre":["Classical"],"Name":"Mother Earth Klassik","Image":"http___motherearth_streamserver24_com_18910_motherearth_klassik.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"http://motherearth.streamserver24.com:18910/motherearth.klassik","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u":{"Genre":["80's"],"Name":"harmony.fm","Image":"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.webp","Homepage":"https://www.harmonyfm.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Alles 80er!","Codec":"AAC","Bitrate":48,"StreamUri":"http://mp3.harmonyfm.de/harmonyfm/livestream.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u":{"Genre":["Pop","Dance","House","Hip-Hop","R'n'B"],"Name":"planet radio","Image":"http___mp3_planetradio_de_planetradio_hqlivestream_aac.webp","Homepage":"https://www.planetradio.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.aac","alternativeStreams":{"http___mp3_planetradio_de_planetradio_livestream_aac":{"StreamUri":"http://mp3.planetradio.de/planetradio/livestream.aac","Codec":"AAC","Bitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_mp3":{"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[48,128],"highestBitrate":128},"http___mscp2_live-streams_nl_8100_flac_flac.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop","Image":"http___mscp2_live-streams_nl_8100_flac_flac.webp","Homepage":"http://www.hionline.eu","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"FLAC","Bitrate":128,"StreamUri":"http://mscp2.live-streams.nl:8100/flac.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[128],"highestBitrate":128},"http___mscp3_live-streams_nl_8250_class-high_aac.m3u":{"Genre":["Classical"],"Name":"Naim Classical","Image":"http___mscp3_live-streams_nl_8250_class-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8250/class-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8340_jazz-high_aac.m3u":{"Genre":["Jazz"],"Name":"Naim Jazz","Image":"http___mscp3_live-streams_nl_8340_jazz-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8340/jazz-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8360_high_aac.m3u":{"Genre":["Eclectic"],"Name":"Naim Radio","Image":"http___mscp3_live-streams_nl_8360_high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8360/high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___msmn7_co_8018_stream.m3u":{"Genre":["Indie"],"Name":"CDNX","Image":"http___msmn7_co_8018_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://msmn7.co:8018/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ninarfm_grtvstream_com_8896__.m3u":{"Genre":["Various","News"],"Name":"Ninar FM نينار اف ام","Image":"http___ninarfm_grtvstream_com_8896__.webp","Homepage":"http://ninarfm.com/","Country":"Syria","State":"","Languages":["Arabic"],"Language":"Arabic","Description":"Ninar FM نينار اف ام","Codec":"MP3","Bitrate":96,"StreamUri":"http://ninarfm.grtvstream.com:8896/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___npr-ice_streamguys1_com_live_mp3.m3u":{"Genre":["News","News Talk","Political Talk","Politics","Public Radio","Talk"],"Name":"NPR - 24 Hour Program Stream","Image":"http___npr-ice_streamguys1_com_live_mp3.webp","Homepage":"https://www.npr.org/about-npr/472557877/npr-program-stream","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"NPR Program Stream","Codec":"MP3","Bitrate":96,"StreamUri":"http://npr-ice.streamguys1.com/live.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___okradio_rtvhd_net_8130__.m3u":{"Genre":["Pop","Música Latina"],"Name":"Vox Radio - 105.5 FM","Image":"http___okradio_rtvhd_net_8130__.webp","Homepage":"http://www.voxradio.fm/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música.","Codec":"AAC","Bitrate":56,"StreamUri":"http://okradio.rtvhd.net:8130/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[56],"highestBitrate":56},"http___play_organlive_com_8002_320.m3u":{"Genre":["Classical"],"Name":"OrganLive.com","Image":"http___play_organlive_com_8002_320.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320oe.m3u":{"Genre":["Classical"],"Name":"Organ Experience","Image":"http___play_organlive_com_8002_320oe.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320oe","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320pb.m3u":{"Genre":["Classical","Baroque"],"Name":"Positivly Baroque","Image":"http___play_organlive_com_8002_320pb.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320pb","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u":{"Genre":["Brazilian Music","Contemporary","Pop","Rock"],"Name":"Rádio Cidade","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.webp","Homepage":"https://radiocidade.fm/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Cidade - Rio de Janeiro","Codec":"AAC+","Bitrate":48,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[48],"highestBitrate":48},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.m3u":{"Genre":["Classical"],"Name":"WRTI Philadelphia 90.1 - Classical","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_CLASSICAL.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.m3u":{"Genre":["Jazz"],"Name":"WRTI Philadelphia 90.1 - Jazz","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_JAZZ.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u":{"Genre":["News"],"Name":"VRT - NWS","Image":"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.webp","Homepage":"https://www.vrt.be/vrtnws/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://progressive-audio.lwc.vrtcdn.be/content/fixed/11_11niws-snip_hi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___q2stream_wqxr_org_q2.m3u":{"Genre":["Classical"],"Name":"WQXR Q2 - Living Music, Living Composers","Image":"http___q2stream_wqxr_org_q2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://q2stream.wqxr.org/q2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio80k_out_airtime_pro_8000_radio80k_a.m3u":{"Genre":["Community Radio","Freeform","Variety"],"Name":"Radio 80000 Munich, Germany","Image":"http___radio80k_out_airtime_pro_8000_radio80k_a.webp","Homepage":"http://www.radio80k.de/","Country":"Germany","State":"","Languages":["English","German"],"Language":"English, German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio80k.out.airtime.pro:8000/radio80k_a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radio_comunica_ufrn_br_8000_live_aac.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária Natal 88.9 FM (UFRN)","Image":"http___radio_comunica_ufrn_br_8000_live_aac.webp","Homepage":"https://www.instagram.com/radiouniversitarianatal/","Country":"Brazil","State":"Rio Grande Do Norte","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Transforma Natal, transforma você!","Codec":"AAC","Bitrate":128,"StreamUri":"http://radio.comunica.ufrn.br:8000/live.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___radio_linn_co_uk_8000_autodj.m3u":{"Genre":["Jazz"],"Name":"Linn Jazz","Image":"http___radio_linn_co_uk_8000_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8000/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8003_autodj.m3u":{"Genre":["Eclectic"],"Name":"Linn Radio","Image":"http___radio_linn_co_uk_8003_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8003/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8004_autodj.m3u":{"Genre":["Classical"],"Name":"Linn Classical","Image":"http___radio_linn_co_uk_8004_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8004/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_m-1_fm_lietus_mp3.m3u":{"Genre":["Lithuanian","Various"],"Name":"Lietus","Image":"http___radio_m-1_fm_lietus_mp3.webp","Homepage":"https://www.lietus.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio.m-1.fm/lietus/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radio_plaza_one_mp3.m3u":{"Genre":["Vaporwave","Future Funk","Chill Out"],"Name":"Nightwave Plaza","Image":"http___radio_plaza_one_mp3.webp","Homepage":"https://plaza.one/","Country":"Japan","State":"","Languages":["English"],"Language":"English","Description":"Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity.","Codec":"MP3","Bitrate":128,"StreamUri":"http://radio.plaza.one/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio_stereoscenic_com_ama-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"A.M. Ambient","Image":"http___radio_stereoscenic_com_ama-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/ama-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radio_stereoscenic_com_asp-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"Ambient Sleeping Pill","Image":"http___radio_stereoscenic_com_asp-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/asp-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radioaovivo_senado_gov_br_canal2_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado Canal 2","Image":"http___radioaovivo_senado_gov_br_canal2_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado Canal 2","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.gov.br/canal2.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_senado_leg_br_fm_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado","Image":"http___radioaovivo_senado_leg_br_fm_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado 91.7 FM","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.leg.br/fm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u":{"Genre":["Classical","MPB"],"Name":"Rádio da Universidade 1080 AM (UFRGS)","Image":"http___radioaovivo_ufrgs_br_8000_stream_mp3.webp","Homepage":"https://www.ufrgs.br/radio/","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio da Universidade 1080 AM (UFRGS)","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.ufrgs.br:8000/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radionz-ice_streamguys_com_80_concert_mp3.m3u":{"Genre":["Classical"],"Name":"Radio New Zealand - Concert","Image":"http___radionz-ice_streamguys_com_80_concert_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/concert.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radionz-ice_streamguys_com_80_national_mp3.m3u":{"Genre":["Eclectic","Various","Current Affairs"],"Name":"Radio New Zealand - National","Image":"http___radionz-ice_streamguys_com_80_national_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/national.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___retro_dancewave_online_retrodance_mp3.m3u":{"Genre":["90's","Dance"],"Name":"Dance Wave Retro!","Image":"http___retro_dancewave_online_retrodance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Languages":["English"],"Language":"English","Description":"All about Dance before 2000!","Codec":"MP3","Bitrate":128,"StreamUri":"http://retro.dancewave.online/retrodance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___rootslegacy_fr_8080__listen_mp3.m3u":{"Genre":["Dub","Roots Reggae"],"Name":"Roots Legacy Radio - Dub UK & Roots Reggae","Image":"http___rootslegacy_fr_8080__listen_mp3.webp","Homepage":"https://www.rootslegacy.fr/","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":224,"StreamUri":"http://rootslegacy.fr:8080/;listen.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[224],"highestBitrate":224},"http___rtvhd_net_9942__.m3u":{"Genre":["Rock","Baladas"],"Name":"IQ Radio - 93.9 FM","Image":"http___rtvhd_net_9942__.webp","Homepage":"http://www.iqmedios.com/","Country":"Costa Rica","State":"","Languages":["English"],"Language":"English","Description":"IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más.","Codec":"AAC","Bitrate":64,"StreamUri":"http://rtvhd.net:9942/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___s1_slotex_pl_7430_stream.m3u":{"Genre":["Indie","Pop","Rock"],"Name":"Mittendrin ALT!NEU Radio der deutschen Minderheit","Image":"http___s1_slotex_pl_7430_stream.webp","Homepage":"https://mittendrin.pl/de/radio-altneu.html","Country":"Poland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://s1.slotex.pl:7430/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___sc3_radiocaroline_net_8030.m3u":{"Genre":["Rock","Classic Rock"],"Name":"Radio Caroline","Image":"http___sc3_radiocaroline_net_8030.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://sc3.radiocaroline.net:8030","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___shoutcastunlimited_com_8512.m3u":{"Genre":["Progressive Rock","Metal"],"Name":"PRM - Prog Rock & Metal","Image":"http___shoutcastunlimited_com_8512.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://shoutcastunlimited.com:8512","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___sk_cri_cn_915_m3u8.m3u":{"Genre":["World Music"],"Name":"CRI Radio EZFM 91.5 FM","Image":"http___sk_cri_cn_915_m3u8.webp","Homepage":"http://ezfm.cri.cn/live","Country":"China","State":"","Languages":["English"],"Language":"English","Description":"CRI Radio EZFM 91.5 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"http://sk.cri.cn/915.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"http___stream-33_zeno_fm_nkdugu37twzuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Raja Radio HD","Image":"http___stream-33_zeno_fm_nkdugu37twzuv.webp","Homepage":"https://tamilradios.net/raja-radio-hd/","Country":"India","State":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-33.zeno.fm/nkdugu37twzuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-icy_bauermedia_pt_m80_mp3.m3u":{"Genre":["70's","80's","90's","2000's"],"Name":"M80 Rádio","Image":"http___stream-icy_bauermedia_pt_m80_mp3.webp","Homepage":"https://m80.pt/","Country":"Portugal","State":"Lisbon","Languages":["Portuguese"],"Language":"Portuguese","Description":"Se a sua vida tem uma música, ela passa na M80","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-icy.bauermedia.pt/m80.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-relay-geo_ntslive_net_stream.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live London - Don't Assume","Image":"http___stream-relay-geo_ntslive_net_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream-relay-geo_ntslive_net_stream2.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live International","Image":"http___stream-relay-geo_ntslive_net_stream2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream0_wfmu_org_freeform-best-available.m3u":{"Genre":["Classical"],"Name":"WFMU 91.1 FM","Image":"http___stream0_wfmu_org_freeform-best-available.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream0.wfmu.org/freeform-best-available","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream1_opb_org_kmhd_mp3.m3u":{"Genre":["Jazz"],"Name":"KMHD Portland FM 89.1 - Jazz","Image":"http___stream1_opb_org_kmhd_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream1.opb.org/kmhd.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream2_radioquantica_com_8000_stream.m3u":{"Genre":["Underground","Urbain"],"Name":"Rádio Quântica","Image":"http___stream2_radioquantica_com_8000_stream.webp","Homepage":"https://www.radioquantica.com/","Country":"Portugal","State":"","Languages":["English","Portuguese"],"Language":"English, Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream2.radioquantica.com:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_dandelionradio_com_9414.m3u":{"Genre":["Indie"],"Name":"Dandelion Radio","Image":"http___stream_dandelionradio_com_9414.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.dandelionradio.com:9414","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_fr_morow_com_8080_morow_hi_aacp.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Morow - Retro Progressive Rock","Image":"http___stream_fr_morow_com_8080_morow_hi_aacp.webp","Homepage":"","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://stream.fr.morow.com:8080/morow_hi.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___stream_klassikradio_de_chor_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Chor","Image":"http___stream_klassikradio_de_chor_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/chor/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_dreams_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Dreams","Image":"http___stream_klassikradio_de_dreams_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/dreams/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_relax_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Relax","Image":"http___stream_klassikradio_de_relax_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/relax/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_laut_fm_alternativeworld.m3u":{"Genre":["Indie","Punk","New Wave","Britpop"],"Name":"Alternativeworld","Image":"http___stream_laut_fm_alternativeworld.webp","Homepage":"https://laut.fm/alternativeworld","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/alternativeworld","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_anderswelt.m3u":{"Genre":["New Wave","Gothic","Minimal","80's"],"Name":"Anderswelt","Image":"http___stream_laut_fm_anderswelt.webp","Homepage":"https://laut.fm/anderswelt","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Stuttgarter Wave-Klänge wie zu den guten alten Zeiten...","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/anderswelt","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_deutschrap.m3u":{"Genre":["Hip-Hop","Rap","German Rap","Urbain"],"Name":"Deutschrap","Image":"http___stream_laut_fm_deutschrap.webp","Homepage":"www.laut.fm/deutschrap","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Schluss mit Deutschrap Einheitsbrei!","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/deutschrap","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_kakerlakenradio.m3u":{"Genre":["Rock","Pop","Indie","New Wave","Punk","Britpop","Garage"],"Name":"Kakerlaken Radio","Image":"http___stream_laut_fm_kakerlakenradio.webp","Homepage":"http://indie-rock-radio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/kakerlakenradio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nightshift_alternative.m3u":{"Genre":["Gothic","Mediaeval","Nu Metal","80's","90's","Industrial","Metal","Metalcore"],"Name":"Nightshift Alternativ","Image":"http___stream_laut_fm_nightshift_alternative.webp","Homepage":"https://nightshift-alternativ.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nightshift_alternative","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nonpop.m3u":{"Genre":["Ambient","Avantgarde","Black Metal","Folk","Industrial","Lo-Fi","Minimal","Indie"],"Name":"NONPOP","Image":"http___stream_laut_fm_nonpop.webp","Homepage":"https://laut.fm/nonpop","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der Name ist Programm. Alles außer Massenware.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nonpop","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_scifi.m3u":{"Genre":["Vocal","Pop","Scifi"],"Name":"SciFi Radio","Image":"http___stream_laut_fm_scifi.webp","Homepage":"https://laut.fm/scifi","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Ein Online Radio für den Bereich Science Fiction.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/scifi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_resonance_fm_resonance.m3u":{"Genre":["Eclectic"],"Name":"Resonance Radio 104.4 FM","Image":"http___stream_resonance_fm_resonance.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.resonance.fm/resonance","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_srg-ssr_ch_m_couleur3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"RTS - Couleur 3","Image":"http___stream_srg-ssr_ch_m_couleur3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/couleur3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_espace-2_mp3_128.m3u":{"Genre":["Classical"],"Name":"RTS - Espace 2","Image":"http___stream_srg-ssr_ch_m_espace-2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/espace-2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTS - La Premiere","Image":"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/la-1ere/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u":{"Genre":["Indie"],"Name":"RTS - option musique","Image":"http___stream_srg-ssr_ch_m_option-musique_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/option-musique/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retedue_mp3_128.m3u":{"Genre":["Classical","Various","Culture"],"Name":"RSI - Rete Due","Image":"http___stream_srg-ssr_ch_m_retedue_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retedue/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retetre_mp3_128.m3u":{"Genre":["Indie","Pop"],"Name":"RSI - Rete Tre","Image":"http___stream_srg-ssr_ch_m_retetre_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retetre/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_reteuno_mp3_128.m3u":{"Genre":["News","Entertainment","News"],"Name":"RSI - Rete Uno","Image":"http___stream_srg-ssr_ch_m_reteuno_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/reteuno/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rr_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTR Radio","Image":"http___stream_srg-ssr_ch_m_rr_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Romansh"],"Language":"Romansh","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/rr/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.m3u":{"Genre":["Classical"],"Name":"Radio Swiss Classic","Image":"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsc_de/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsj_aacp_96.m3u":{"Genre":["Jazz"],"Name":"Radio Swiss Jazz","Image":"http___stream_srg-ssr_ch_m_rsj_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsj/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsp_aacp_96.m3u":{"Genre":["Pop"],"Name":"Radio Swiss Pop","Image":"http___stream_srg-ssr_ch_m_rsp_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsp/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_wfmt_com_main.m3u":{"Genre":["Classical"],"Name":"WFMT Chicago 98.7 - Classical","Image":"http___stream_wfmt_com_main.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wfmt.com/main","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_wqxr_org_wqxr.m3u":{"Genre":["Classical"],"Name":"WQXR New York - Classical Music","Image":"http___stream_wqxr_org_wqxr.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wqxr.org/wqxr","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u":{"Genre":["Dub","Reggae"],"Name":"Dr. Dick’s Dub Shack","Image":"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.webp","Homepage":"http://drdicksdubshack.com/","Country":"Bermuda","State":"","Languages":["English"],"Language":"English","Description":"Bermuda-based online radio station playing all species of dub, downtempo and bass music","Codec":"MP3","Bitrate":192,"StreamUri":"http://streamer.radio.co/s0635c8b0d/listen?fbclid=IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u":{"Genre":["Jazz","Classical","Soul"],"Name":"Apollo Radio","Image":"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.webp","Homepage":"https://www.apolloradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Bleiben sie entspannt","Codec":"MP3","Bitrate":192,"StreamUri":"http://streaming.apolloradio.de/apolloradio_simulcast_192k_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u":{"Genre":["Indie","Indie Rock","Canada","Commercial","Montreal","Mp3","Pop Rock"],"Name":"WKND 91,9","Image":"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.webp","Homepage":"http://quebec.wknd.fm/","Country":"Canada","State":"Québec","Languages":["Français"],"Language":"Français","Description":"WKND FM 91,9","Codec":"MP3","Bitrate":96,"StreamUri":"http://streaming.cjec.leclerccommunication.ca:8000/cjec.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___streaming_livespanel_com_20000_live.m3u":{"Genre":["Samba","Pagode","Pop"],"Name":"Rádio FM O DIA","Image":"http___streaming_livespanel_com_20000_live.webp","Homepage":"http://www.fmodia.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"FM O Dia","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.livespanel.com:20000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u":{"Genre":["News","Entertainment"],"Name":"Radio SRF 1","Image":"http___streaming_swisstxt_ch_m_drs1_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs1/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs2_mp3_128.m3u":{"Genre":["Classical","Jazz"],"Name":"Radio SRF 2 Kultur","Image":"http___streaming_swisstxt_ch_m_drs2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"Radio SRF 3","Image":"http___streaming_swisstxt_ch_m_drs3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs4news_mp3_128.m3u":{"Genre":["News"],"Name":"Radio SRF 4 News","Image":"http___streaming_swisstxt_ch_m_drs4news_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs4news/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsmw_mp3_128.m3u":{"Genre":["Pop","Schlager Music"],"Name":"Radio SRF Musikwelle","Image":"http___streaming_swisstxt_ch_m_drsmw_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsmw/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.m3u":{"Genre":["Indie"],"Name":"Radio SRF Virus","Image":"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsvirus/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u":{"Genre":["Eighties"],"Name":"80s80s","Image":"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.webp","Homepage":"https://www.80s80s.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.80s80s.de/web/mp3-192/streams.80s80s.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_egofm_de_egoCHILLOUT-hq.m3u":{"Genre":["Indie"],"Name":"egoFM CHILLOUT","Image":"http___streams_egofm_de_egoCHILLOUT-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die beruhigende Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoCHILLOUT-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFLASH-hq.m3u":{"Genre":["Indie","Electronic"],"Name":"egoFM FLASH","Image":"http___streams_egofm_de_egoFLASH-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die elektronische Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFLASH-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFM-hq.m3u":{"Genre":["Indie"],"Name":"egoFM live","Image":"http___streams_egofm_de_egoFM-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFM-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMBW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Baden-Württemberg","Image":"http___streams_egofm_de_egoFMBW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMBW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMHallOfFame-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM HallOfFame","Image":"http___streams_egofm_de_egoFMHallOfFame-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die legendäre Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMHallOfFame-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMKavka-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Kavka","Image":"http___streams_egofm_de_egoFMKavka-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die kavkaeske Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMKavka-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMNRW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM NRW","Image":"http___streams_egofm_de_egoFMNRW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMNRW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMRNB-hq.m3u":{"Genre":["R'n'B"],"Name":"egoFM R&B","Image":"http___streams_egofm_de_egoFMRNB-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die smoothe Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMRNB-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSEEWALD-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SEEWALD","Image":"http___streams_egofm_de_egoFMSEEWALD-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die Vermessung der Musik.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSEEWALD-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSoundtrack-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM Soundtrack","Image":"http___streams_egofm_de_egoFMSoundtrack-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die cineastische Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSoundtrack-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoJAZZ-hq.m3u":{"Genre":["Jazz"],"Name":"egoFM JAZZ","Image":"http___streams_egofm_de_egoJAZZ-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die jazzige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoJAZZ-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoPURE-hq.m3u":{"Genre":["Indie"],"Name":"egoFM PURE","Image":"http___streams_egofm_de_egoPURE-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Ohne Punkt und Komma.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoPURE-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRAP-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RAP","Image":"http___streams_egofm_de_egoRAP-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die lässige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRAP-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRIFF-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RIFF","Image":"http___streams_egofm_de_egoRIFF-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die rockige Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRIFF-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSNOW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SNOW","Image":"http___streams_egofm_de_egoSNOW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die winterliche Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSNOW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSOUL-hq.m3u":{"Genre":["Indie","Soul"],"Name":"egoFM SOUL","Image":"http___streams_egofm_de_egoSOUL-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die gefühlvolle Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSOUL-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSUN-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SUN","Image":"http___streams_egofm_de_egoSUN-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die sommerliche Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSUN-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_fluxfm_de_70er_mp3-320_audio_.m3u":{"Genre":["70's"],"Name":"FluxFM - 70s","Image":"http___streams_fluxfm_de_70er_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/70er/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["80's"],"Name":"FluxFM - 80s","Image":"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/80er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Berlin Beach House Radio","Image":"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/bbeachhouse/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfm_mp3-320_audio_.m3u":{"Genre":["Hip-Hop"],"Name":"FluxFM - BoomFM","Image":"http___streams_fluxfm_de_boomfm_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfm/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.m3u":{"Genre":["Hip-Hop","Oldschool"],"Name":"FluxFM - BoomFM Classics","Image":"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfmclassics/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Dub","Reggae"],"Name":"FluxFM - Dub Radio","Image":"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/dubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Funk"],"Name":"FluxFM - B-Funk","Image":"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/event01/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000's Naughty","Image":"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/flx_2000/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_forward_mp3-320_audio_.m3u":{"Genre":["Various","Releases"],"Name":"FluxFM - FluxForward","Image":"http___streams_fluxfm_de_forward_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/flux-forward/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward.","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/forward/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Rock","Hard Rock"],"Name":"FluxFM - Hard Rock FM","Image":"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/hardrock/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Metal"],"Name":"FluxFM - MetalFM","Image":"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/metalfm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Classical","Contemporary"],"Name":"FluxFM - neoFM","Image":"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/neofm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_passport_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - Passport Approved","Image":"http___streams_fluxfm_de_passport_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/passport/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie"],"Name":"FluxFM - Radio Alternative","Image":"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/radioalt/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Reggae"],"Name":"FluxFM - Rasta Radio","Image":"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/rastaradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_studio56_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - JaegerMusic Radio","Image":"http___streams_fluxfm_de_studio56_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/studio56/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - XJAZZ","Image":"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/xjazz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Ambient","Yoga"],"Name":"FluxFM - Yoga Sounds","Image":"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/yogasounds/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_norbert_de_8000_zappa_aac.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Zappa Stream Radio","Image":"http___streams_norbert_de_8000_zappa_aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"http://streams.norbert.de:8000/zappa.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 2000s Rock","Image":"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/2000er/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 80s Rock","Image":"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-80srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio Bob! 90s Rock","Image":"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-90srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u":{"Genre":["Indie Rock"],"Name":"Radio BOB! Alternative","Image":"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-alternative/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Christmas Rock","Image":"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-christmas/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u":{"Genre":["Classic Rock"],"Name":"Radio BOB! Classic Rock","Image":"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-classicrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u":{"Genre":["Hard Rock"],"Name":"Radio BOB! Hardrock","Image":"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Wenn Rock, dann BOB! Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-hardrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Kuschelrock","Image":"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-kuschelrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u":{"Genre":["Metal"],"Name":"Radio BOB! Metal","Image":"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-metal/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB!","Image":"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-national/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u":{"Genre":["Punk"],"Name":"Radio BOB! Punk","Image":"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-punk/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u":{"Genre":["Rockabilly"],"Name":"Radio BOB! Rockabilly","Image":"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockabilly/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Hits","Image":"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockhits/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u":{"Genre":["Country"],"Name":"Radio BOB! Country","Image":"http___streams_radiobob_de_country_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/country/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_country_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/country/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_roadtrip_mp3-192_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Roadtrip","Image":"http___streams_radiobob_de_roadtrip_mp3-192_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"BOBs Road Trip-Stream","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/roadtrip/mp3-192/","alternativeStreams":{"https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rockparty","Image":"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/rockparty/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u":{"Genre":["Southern Rock"],"Name":"Radio BOB! Southern Rock","Image":"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/southernrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___strm112_1_fm_blues_mobile_mp3.m3u":{"Genre":["Blues"],"Name":"1.FM - Blues Radio","Image":"http___strm112_1_fm_blues_mobile_mp3.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://strm112.1.fm/blues_mobile_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___subfm_radioca_st_Sub_FM.m3u":{"Genre":["Dub","Dubstep","Garage","Grime","Deep House","Techno","Juke","Jungle Trap"],"Name":"SUB.FM - Where Bass Matters","Image":"http___subfm_radioca_st_Sub_FM.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://subfm.radioca.st/Sub.FM","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___wdcb-ice_streamguys_org_80_wdcb128.m3u":{"Genre":["Blues","Jazz"],"Name":"WDCB Chicago FM 90.9 - Jazz & Blues","Image":"http___wdcb-ice_streamguys_org_80_wdcb128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdcb-ice.streamguys.org:80/wdcb128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.m3u":{"Genre":["Pop"],"Name":"WDR 1LIVE","Image":"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u":{"Genre":["Spoken Word"],"Name":"WDR 5","Image":"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr5/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-wdr5-live.icecast.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___west-aac-64_streamthejazzgroove_com_stream.m3u":{"Genre":["Jazz"],"Name":"The Jazz Groove","Image":"http___west-aac-64_streamthejazzgroove_com_stream.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://west-aac-64.streamthejazzgroove.com/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___wkcr_streamguys1_com_80_live.m3u":{"Genre":["Jazz","Classical"],"Name":"WKCR 89.9 FM","Image":"http___wkcr_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://wkcr.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___yumicoradio_net_8000_stream.m3u":{"Genre":["Future Funk","City Pop","Anime Groove","Vaporwave","Nu Disco","Electronic"],"Name":"Yumi Co. Radio","Image":"http___yumicoradio_net_8000_stream.webp","Homepage":"http://yumicoradio.net","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived.","Codec":"MP3","Bitrate":256,"StreamUri":"http://yumicoradio.net:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u":{"Genre":["Classical","Classical Music"],"Name":"Rádio MEC FM","Image":"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecfmrio","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio MEC FM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://122722d.ha.azioncdn.net/ebc/radiomecfm/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u":{"Genre":["MPB"],"Name":"Rádio MEC AM","Image":"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecamrio","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio MEC AM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://132722d.ha.azioncdn.net/ebc/radiomec/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"Genre":["Soccer","News"],"Name":"Rádio Transamérica 100.1 FM (São Paulo)","Image":"https___18003_live_streamtheworld_com_RT_SPAAC_aac.webp","Homepage":"https://radiotransamerica.com.br","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio onde você estiver!","Codec":"AAC","Bitrate":32,"StreamUri":"https://18003.live.streamtheworld.com/RT_SPAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u":{"Genre":["Community"],"Name":"2nurfm","Image":"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.webp","Homepage":"https://2nurfm.com.au","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"Good times and great music","Codec":"MP3","Bitrate":96,"StreamUri":"https://21413.live.streamtheworld.com:443/2NURFMAAC_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"Genre":["Lounge"],"Name":"Zen FM","Image":"https___22653_live_streamtheworld_com_TOPZEN_mp3.webp","Homepage":"","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://22653.live.streamtheworld.com/TOPZEN.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u":{"Genre":["Gospel","Various"],"Name":"Rádio Melodia 97.5 FM","Image":"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.webp","Homepage":"https://melodia.com.br/player/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A voz que fala ao coração!","Codec":"AAC","Bitrate":32,"StreamUri":"https://24483.live.streamtheworld.com/MELODIAFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u":{"Genre":["Classic Hits","Indie"],"Name":"KINK 80's","Image":"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.webp","Homepage":"https://kink.nl","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"Alive and Kicking","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_DNA_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25293_live_streamtheworld_com_443_KINK_SC.m3u":{"Genre":["Modern Rock"],"Name":"KINK","Image":"https___25293_live_streamtheworld_com_443_KINK_SC.webp","Homepage":"https://www.kink.nl","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"No alternative","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u":{"Genre":["Hard Rock"],"Name":"KINK Distortion","Image":"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.webp","Homepage":"https://www.kink.nl/distortion","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"non-stop de beste metal, hardrock en metalcore","Codec":"MP3","Bitrate":192,"StreamUri":"https://25323.live.streamtheworld.com:443/KINK_DISTORTION_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u":{"Genre":["Pop","Flim"],"Name":"Radio Daijiworld","Image":"https___26453_live_streamtheworld_com_SAM08AAC013_SC.webp","Homepage":"http://www.radiodaijiworld.com/","Country":"India","State":"Mangalore","Languages":["Konkani"],"Language":"Konkani","Description":"Online RADIO station for konkani & Tulu music","Codec":"AAC","Bitrate":64,"StreamUri":"https://26453.live.streamtheworld.com/SAM08AAC013_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u":{"Genre":["Community Radio","Independent"],"Name":"PBS 106.7FM (Progressive Broadcasting Service)","Image":"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.webp","Homepage":"https://www.pbsfm.org.au","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"PBS 106.7FM (Progressive Broadcasting Service)","Codec":"AAC","Bitrate":128,"StreamUri":"https://27253.live.streamtheworld.com/3PBS_FMAAC128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u":{"Genre":["Journalism","Soccer","Football","News"],"Name":"Rádio CBN Rio 92.5 FM","Image":"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.webp","Homepage":"https://cbn.globoradio.globo.com","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que toca notícia!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27403.live.streamtheworld.com/CBN_RJAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u":{"Genre":["Pop-Rock","Sertanejo","Youth"],"Name":"Rádio Disney 91.3 FM","Image":"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.webp","Homepage":"https://radiodisney.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que te ouve","Codec":"AAC","Bitrate":320,"StreamUri":"https://27403.live.streamtheworld.com/DISNEY_BRA_SP_ADP/HLS/playlist.m3u8?dist=web-radiodisney","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u":{"Genre":["MPB","Pop","Flashback"],"Name":"Rádio JB 99.9 FM","Image":"https___27433_live_streamtheworld_com_JBFMAAC_aac.webp","Homepage":"https://jb.fm","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e Informação!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27433.live.streamtheworld.com/JBFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u":{"Genre":["Community","Catholic"],"Name":"Rádio Serra Verde 98.7 FM","Image":"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.webp","Homepage":"https://www.serraverde.fm.br/","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Aqui é o seu lugar!","Codec":"MP3","Bitrate":128,"StreamUri":"https://5a2b083e9f360.streamlock.net/serraverdefm/serraverdefm.stream/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___8016_brasilstream_com_br_stream.m3u":{"Genre":["Soccer","Various"],"Name":"Rádio Difusora 96.9 FM","Image":"https___8016_brasilstream_com_br_stream.webp","Homepage":"https://difusora24h.com","Country":"Brazil","State":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"O amor do Amazonas esta no ar!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://8016.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u":{"Genre":["News","MPB","Sport"],"Name":"Rádio Nacional do Rio de Janeiro","Image":"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalrioam","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional 87.1 FM 1130 AM","Codec":"HLS","Bitrate":99,"StreamUri":"https://82722d.ha.azioncdn.net/ebc/radionacionalriodejaneiro/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[99],"highestBitrate":99},"https___8923_brasilstream_com_br_stream.m3u":{"Genre":["Local News","News","Talk","Variety"],"Name":"Super Rádio Tupi 96.5 (Tupi FM)","Image":"https___8923_brasilstream_com_br_stream.webp","Homepage":"https://tupi.fm/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder","Codec":"AAC+","Bitrate":32,"StreamUri":"https://8923.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___99_mediacast_co_il_99fm_aac__m4a.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"eco99fm אקו99","Image":"https___99_mediacast_co_il_99fm_aac__m4a.webp","Homepage":"https://eco99fm.maariv.co.il","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HE-AAC","Bitrate":64,"StreamUri":"https://99.mediacast.co.il/99fm_aac?.m4a","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[64],"highestBitrate":64},"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u":{"Genre":["Jazz"],"Name":"DR P8 Jazz","Image":"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.webp","Homepage":"https://www.dr.dk/lyd/p8jazz","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://DRliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8","alternativeStreams":{"http___live-icy_gss_dr_dk_8000_A_A22H_mp3":{"StreamUri":"http://live-icy.gss.dr.dk:8000/A/A22H.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[320,128],"highestBitrate":320},"https___a2_asurahosting_com_8800_radio_mp3.m3u":{"Genre":["Political Talk","Patriotic"],"Name":"Multicanal Radio","Image":"https___a2_asurahosting_com_8800_radio_mp3.webp","Homepage":"https://multicanalradio.com","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://a2.asurahosting.com:8800/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u":{"Genre":["Pop","Releases","Oldies","Rock","Pop"],"Name":"Absolut music XL","Image":"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://absolut-musicxl.live-sm.absolutradio.de/absolut-musicxl/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u":{"Genre":["Electronic"],"Name":"Deep Space Radio","Image":"https___ais-edge102-live365-dal02_cdnstream_com_a71161.webp","Homepage":"https://deepspaceradio.com/","Country":"USA","State":"Michigan","Languages":["English"],"Language":"English","Description":"Artists and DJs who are working to promote Detroit’s Electronic Music and Art.","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-edge102-live365-dal02.cdnstream.com/a71161","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u":{"Genre":["Indie","Rock","Post-Punk","Garage Rock","Psych Rock","New Wave","Gothic"],"Name":"BAGeL Radio","Image":"https___ais-sa3_cdnstream1_com_2606_128_mp3.webp","Homepage":"https://www.bagelradio.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Radio as it should be: commercial-free listener-supported live-hosted","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-sa3.cdnstream1.com/2606_128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"Genre":["Indian Classical","Carnatic"],"Name":"Raagam","Image":"https___akashvani_gov_in_radio_live_php_channel_5.webp","Homepage":"https://prasarbharati.gov.in/channel-raagam/","Country":"India","State":"Karnataka","Languages":["Multilingual","Kannada"],"Language":"Multilingual, Kannada","Description":"Raagam Radio is an online station from Bangalore (India), open since 26 January 2016.","Codec":"MP3","Bitrate":50,"StreamUri":"https://akashvani.gov.in/radio/live.php?channel=5","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[50],"highestBitrate":50},"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Mejor FM - 99.1 FM","Image":"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.lamejor.co.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-lamejor-lamejor.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Noticiero"],"Name":"Monumental - 93.5 FM","Image":"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.monumental.co.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-monumental-monumental.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u":{"Genre":["Schlager Music"],"Name":"Antenne Schlager","Image":"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.webp","Homepage":"https://www.antenne-schlager.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"German Schlager music station from Hannover, Lower Saxony, Germany","Codec":"MP3","Bitrate":192,"StreamUri":"https://antnds.streamabc.net/ands-antenneschlager-mp3-192-8742257","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u":{"Genre":["Commercial","Pop","Rock","Top Hits"],"Name":"RDL Radio Diffusione Libera","Image":"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.webp","Homepage":"https://www.radiodiffusionelibera.com","Country":"Italy","State":"Salerno","Languages":["Italian"],"Language":"Italian","Description":"RDL Radio Diffusione Libera powered by RPIGroup","Codec":"MP3","Bitrate":192,"StreamUri":"https://asvradiostream.asvstudios.it/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___audio-mp3_ibiblio_org_wxyc_mp3.m3u":{"Genre":["College Radio","Various"],"Name":"WXYC Chapel Hill 89.3FM","Image":"https___audio-mp3_ibiblio_org_wxyc_mp3.webp","Homepage":"https://wxyc.org/","Country":"United States","State":"North Carolina","Languages":["English"],"Language":"English","Description":"UNC-Chapel Hill's student-run, freeform radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://audio-mp3.ibiblio.org/wxyc.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___audio_tv_unesp_br_unespfm.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária UNESP 105.7 FM","Image":"https___audio_tv_unesp_br_unespfm.webp","Homepage":"https://www.radio.unesp.br","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UNESP 105.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://audio.tv.unesp.br/unespfm","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Bel RTL","Image":"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.webp","Homepage":"https://www.rtl.be/belrtl/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Bel RTL est une station de radio généraliste privée du groupe RTL.","Codec":"MP3","Bitrate":192,"StreamUri":"https://belrtl.ice.infomaniak.ch/belrtl-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___bytefm_cast_addradio_de_bytefm_main_high_stream.m3u":{"Genre":["Eclectic"],"Name":"ByteFM","Image":"https___bytefm_cast_addradio_de_bytefm_main_high_stream.webp","Homepage":"https://www.byte.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://bytefm.cast.addradio.de/bytefm/main/high/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___c7_radioboss_fm_18205_stream.m3u":{"Genre":["Mashup"],"Name":"Bootie Mashup","Image":"https___c7_radioboss_fm_18205_stream.webp","Homepage":"https://bootiemashup.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The best bootleg mashups in the world ever.","Codec":"MP3","Bitrate":320,"StreamUri":"https://c7.radioboss.fm:18205/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___carajas2_jmvstream_com_live.m3u":{"Genre":["News","Sport","Football","Soccer"],"Name":"Rádio Clube do Pará 104.7 FM 690 AM","Image":"https___carajas2_jmvstream_com_live.webp","Homepage":"https://radioclube.dol.com.br/","Country":"Brazil","State":"Pará","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Equipe Bola de Ouro","Codec":"AAC","Bitrate":128,"StreamUri":"https://carajas2.jmvstream.com/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cast4_asurahosting_com_proxy_miles_stream.m3u":{"Genre":["Talk","Paranormal","Spiritual","70's","80's","90's"],"Name":"NYE Underground","Image":"https___cast4_asurahosting_com_proxy_miles_stream.webp","Homepage":"https://www.nyeug.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Streaming Art Bell classics and his favorite bumper music - ad free.","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.asurahosting.com/proxy/miles/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cast4_audiostream_com_br_2655_mp3.m3u":{"Genre":["Various","News"],"Name":"Rádio Liberdade","Image":"https___cast4_audiostream_com_br_2655_mp3.webp","Homepage":"https://www.redepampa.com.br/radios/radio-liberdade/","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"No campo e na cidade, Rádio Liberdade!","Codec":"MP3","Bitrate":32,"StreamUri":"https://cast4.audiostream.com.br:2655/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u":{"Genre":["News"],"Name":"Radio 98.4","Image":"https___cast4_my-control-panel_com_proxy_anastas2_stream.webp","Homepage":"https://www.radio984.gr/","Country":"Greece","State":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.my-control-panel.com/proxy/anastas2/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cdn4_onstream_audio_9267_stream.m3u":{"Genre":["News"],"Name":"Radio Prensa Latina","Image":"https___cdn4_onstream_audio_9267_stream.webp","Homepage":"https://radio.prensa-latina.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://cdn4.onstream.audio:9267/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u":{"Genre":["News","Talk","Pop"],"Name":"103FM","Image":"https___cdn_cybercdn_live_103FM_Live_icecast_audio.webp","Homepage":"https://103fm.maariv.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://cdn.cybercdn.live/103FM/Live/icecast.audio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u":{"Genre":["Rock","Hard Rock","Heavy Metal"],"Name":"UnDinamo","Image":"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.webp","Homepage":"https://undinamo.com/","Country":"Argentina","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"https://cdn.instream.audio/:9339/stream?in_device_id=WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u":{"Genre":["News"],"Name":"Kan Bet כאן ב","Image":"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=3","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":256,"StreamUri":"https://cdnapisec.kaltura.com/p/2717431/sp/271743100/playManifest/entryId/1_eu4h60uh/format/applehttp/protocol/https/uiConfId/46986963/a.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[256],"highestBitrate":256},"https___centova_svdns_com_br_20110_stream.m3u":{"Genre":["Pop"],"Name":"morena fm easy","Image":"https___centova_svdns_com_br_20110_stream.webp","Homepage":"https://www.morenafm.com.br","Country":"Brazil","State":"Mato Grosso","Languages":["Portugues"],"Language":"Portugues","Description":"boa mussica , boa programaçion","Codec":"AAC","Bitrate":128,"StreamUri":"https://centova.svdns.com.br:20110/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8010_live.m3u":{"Genre":["Tropical/Urbana"],"Name":"Ritmo Hits","Image":"https___chokostream_com_8010_live.webp","Homepage":"https://ritmohits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Donde El Ritmo No Tiene Fin!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8010/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8050_live.m3u":{"Genre":["Urbana"],"Name":"La Vaina Hits","Image":"https___chokostream_com_8050_live.webp","Homepage":"https://lavainahits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Detonando Hits!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8050/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8070_live.m3u":{"Genre":["Musica Cristiana"],"Name":"ExaltacionFM","Image":"https___chokostream_com_8070_live.webp","Homepage":"https://exaltacionfm.com/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Ondas De Avivamiento!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8070/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cloud_cdnseguro_com_2611_stream.m3u":{"Genre":["Ethnic","Indigenous"],"Name":"Rádio Yandê","Image":"https___cloud_cdnseguro_com_2611_stream.webp","Homepage":"https://radioyande.com","Country":"Brazil","State":"Rio De Janeiro","Languages":["Indigenous Languages","Brazilian Portuguese"],"Language":"Indigenous Languages, Brazilian Portuguese","Description":"Radio Yandê - Etnomidia Indígena","Codec":"MP3","Bitrate":128,"StreamUri":"https://cloud.cdnseguro.com:2611/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact 2000","Image":"https___contact2_ice_infomaniak_ch_contact2-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contact2.ice.infomaniak.ch/contact2-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u":{"Genre":["Children","Kids"],"Name":"Radio Contact Kids","Image":"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactkids.ice.infomaniak.ch/contactkids-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Mix","Image":"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactmix.ice.infomaniak.ch/contactmix-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Fresh","Image":"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactplus.ice.infomaniak.ch/contactplus-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Urban","Image":"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contacturban.ice.infomaniak.ch/contacturban-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u":{"Genre":["Pop"],"Name":"Omroep Zeeland","Image":"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.webp","Homepage":"https://www.omroepzeeland.nl/radio-zeeland","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://d3isaxd2t6q8zm.cloudfront.net/icecast/omroepzeeland/omroepzeeland_radio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u":{"Genre":["80's","70's","60's","90's","Oldies","Classic Hits"],"Name":"KVKVI - Classic Hits","Image":"https___dc1_serverse_com_proxy_gjlrjfhp_stream.webp","Homepage":"https://www.kvkvi.com","Country":"United States","State":"Ohio","Languages":["English"],"Language":"English","Description":"The Greatest Hits and The Songs You Missed","Codec":"MP3","Bitrate":160,"StreamUri":"https://dc1.serverse.com/proxy/gjlrjfhp/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u":{"Genre":["Adult Contemporary","News","Sport"],"Name":"Bayern 1","Image":"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern1/index.html","Country":"Germany","State":"Bayern","Languages":["German"],"Language":"German","Description":"The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting.","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u":{"Genre":["Eclectic"],"Name":"Bayern 2","Image":"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern2/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br2/live/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u":{"Genre":["Classical"],"Name":"BR-Klassik","Image":"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.webp","Homepage":"https://www.br-klassik.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u":{"Genre":["Pop","80's","90's"],"Name":"Absolut Relax","Image":"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://edge56.live-sm.absolutradio.de/absolut-relax/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u":{"Genre":["Pop","Charts","Electronic","Hip-Hop"],"Name":"Absolut Hot","Image":"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://edge68.live-sm.absolutradio.de/absolut-hot/stream/aacp?aggregator=smk-m3u-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"Genre":["Pop","Rock","Latin"],"Name":"Radio Ciudad del Granito","Image":"https___emisoras_dip-badajoz_es_58062_stream.webp","Homepage":"https://quintanadelaserena.org/","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Quintana de la Serena (Badajoz, Spain) local radio","Codec":"OPUS","Bitrate":0,"StreamUri":"https://emisoras.dip-badajoz.es:58062/stream","alternativeStreams":{},"allCodecs":["OPUS"],"allBitrates":[0],"highestBitrate":0},"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u":{"Genre":["Indie","Rock","Pop","New Age","Disco","Electronic","Contemporary"],"Name":"EOL Essence of Life רדיו מהות החיים","Image":"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.webp","Homepage":"https://radio.eol.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"AAC","Bitrate":32,"StreamUri":"https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___everest_radionanet_com_8990_stream_1698969239317.m3u":{"Genre":["MPB","University Radio","News"],"Name":"Universitária FM 104.7 (UFES)","Image":"https___everest_radionanet_com_8990_stream_1698969239317.webp","Homepage":"https://universitariafm.ufes.br/","Country":"Brazil","State":"Espirito Santo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da UFES (Universitária FM 104.7)","Codec":"MPEG","Bitrate":32,"StreamUri":"https://everest.radionanet.com:8990/stream?1698969239317","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u":{"Genre":["MPB","News","University Radio"],"Name":"Rádio USP - São Paulo","Image":"https___flow_emm_usp_br_8008_radiousp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da USP (Universidade de São Paulo)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u":{"Genre":["Adult Contemporary","University Radio"],"Name":"Rádio USP - Ribeirão Preto","Image":"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da USP (USP Ribeirão Preto)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-rp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000er","Image":"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/2000er/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u":{"Genre":["90's"],"Name":"FluxFM - 90s","Image":"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben.","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/90s/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.m3u":{"Genre":["News","Various"],"Name":"FluxFM","Image":"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/FluxFM/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.m3u":{"Genre":["Electronic","Soundscape","Atmospheric"],"Name":"FluxFM - Hippie Trippy Garden Pretty","Image":"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/htgp/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.m3u":{"Genre":["Various"],"Name":"FluxFM - Mini Flux","Image":"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/mini-flux/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u":{"Genre":["Dance","Groove","R'n'B","Soul"],"Name":"Fun Radio Belgique","Image":"https___funradiobe_ice_infomaniak_ch_funradiobe-high.webp","Homepage":"https://www.funradio.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française.","Codec":"MP3","Bitrate":128,"StreamUri":"https://funradiobe.ice.infomaniak.ch/funradiobe-high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___gartenheimradio_sp_radio_fm_stream.m3u":{"Genre":["Various"],"Name":"Gartenheim-Radio","Image":"https___gartenheimradio_sp_radio_fm_stream.webp","Homepage":"https://gartenheim-radio.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"70er, 80er, 90er Schlager-Pop und die Hits von Heute","Codec":"MP3","Bitrate":192,"StreamUri":"https://gartenheimradio.sp.radio.fm/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u":{"Genre":["Pop","Top Hits","Past Time Favorites"],"Name":"Galgalatz גלגלצ","Image":"https___glzwizzlv_bynetcdn_com_glglz_mp3.webp","Homepage":"https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glglz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___glzwizzlv_bynetcdn_com_glz_mp3.m3u":{"Genre":["News","Talk","Current Affairs"],"Name":"Galei Zahal GLZ גלי צהל גלצ","Image":"https___glzwizzlv_bynetcdn_com_glz_mp3.webp","Homepage":"https://glz.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"IDF Radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___grenal_audiostream_com_br_20000_aac.m3u":{"Genre":["Sport"],"Name":"Rádio Grenal","Image":"https___grenal_audiostream_com_br_20000_aac.webp","Homepage":"https://www.radiogrenal.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Grenal","Codec":"AAC+","Bitrate":32,"StreamUri":"https://grenal.audiostream.com.br:20000/aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___happyrave-rex_radioca_st_stream.m3u":{"Genre":["Rave","Breakbeat","Hardcore","Jungle","Oldschool"],"Name":"Happy Rave Radio","Image":"https___happyrave-rex_radioca_st_stream.webp","Homepage":"happyraveradio.com","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"Classic happy hardcore, rave, and breakbeat hardcore.","Codec":"MP3","Bitrate":320,"StreamUri":"https://happyrave-rex.radioca.st/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___hts03_kshost_com_br_13392_live.m3u":{"Genre":["News","Various"],"Name":"Rádio Força Aérea 91.1 FM","Image":"https___hts03_kshost_com_br_13392_live.webp","Homepage":"https://www.fab.mil.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Força Aérea 91.1 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://hts03.kshost.com.br:13392/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___http-live_sr_se_p2musik-aac-320.m3u":{"Genre":["Classical","Jazz"],"Name":"SR P2","Image":"https___http-live_sr_se_p2musik-aac-320.webp","Homepage":"https://sverigesradio.se/p2","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://http-live.sr.se/p2musik-aac-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___ic_streann_com_disneycostarica.m3u":{"Genre":["Pop"],"Name":"Radio Disney - 101.1 FM","Image":"https___ic_streann_com_disneycostarica.webp","Homepage":"https://cr.radiodisney.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica.","Codec":"MP3","Bitrate":192,"StreamUri":"https://ic.streann.com/disneycostarica","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice1_somafm_com_vaporwaves-128-aac.m3u":{"Genre":["Electronic","Electro-Acoustic","IDM","Shoegaze","Post-Rock"],"Name":"Soma FM - Vaporwaves","Image":"https___ice1_somafm_com_vaporwaves-128-aac.webp","Homepage":"https://somafm.com/vaporwaves/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"All Vaporwave. All the time.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice1.somafm.com/vaporwaves-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_bossa-128-aac.m3u":{"Genre":["Bossanova","World Music"],"Name":"Soma FM - Bossa Beyond","Image":"https___ice5_somafm_com_bossa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/bossa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_insound-128-aac.m3u":{"Genre":["Pop","Oldies"],"Name":"Soma FM - The In-Sound","Image":"https___ice5_somafm_com_insound-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/insound-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice64_securenetsystems_net_WBJC.m3u":{"Genre":["Classical"],"Name":"WBJC Baltimore 91.5 - Classical","Image":"https___ice64_securenetsystems_net_WBJC.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ice64.securenetsystems.net/WBJC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_darkzone-128-aac.m3u":{"Genre":["Electronic","Ambient","Deep Ambient"],"Name":"Soma FM - The Dark Zone","Image":"https___ice6_somafm_com_darkzone-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/darkzone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_n5md-128-aac.m3u":{"Genre":["Ambient","Post-Rock","Experimental","Electronic"],"Name":"Soma FM - n5MD Radio","Image":"https___ice6_somafm_com_n5md-128-aac.webp","Homepage":"https://somafm.com/n5md/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/n5md-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_synphaera-128-aac.m3u":{"Genre":["Electronic","Synth-Pop"],"Name":"Soma FM - Synphaera","Image":"https___ice6_somafm_com_synphaera-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/synphaera-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_tikitime-128-aac.m3u":{"Genre":["Tiki","World Music"],"Name":"Soma FM - Tiki Time","Image":"https___ice6_somafm_com_tikitime-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/tikitime-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice_coldstar_online_high_ogg.m3u":{"Genre":["Trance","Progressive","Psy","House","Deep House","Deep Tech"],"Name":"Coldstar Radio","Image":"https___ice_coldstar_online_high_ogg.webp","Homepage":"https://coldstar.online/","Country":"Kyrgyzstan","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"OGG","Bitrate":256,"StreamUri":"https://ice.coldstar.online/high.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[256],"highestBitrate":256},"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.m3u":{"Genre":["Classical"],"Name":"RCO Live","Image":"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice_fabricahost_com_br_radiomarinha.m3u":{"Genre":["News","Various"],"Name":"Rádio Marinha","Image":"https___ice_fabricahost_com_br_radiomarinha.webp","Homepage":"https://www.marinha.mil.br/radio-marinha","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Marinha FM: Navegando nas Ondas do Rádio","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice.fabricahost.com.br/radiomarinha","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___icecast_live_proxy_zerock_zerock.m3u":{"Genre":["Rock","Metal","Post Punk","Punk","Indie"],"Name":"Ze Rock Radio","Image":"https___icecast_live_proxy_zerock_zerock.webp","Homepage":"https://zerockradio.com/","Country":"Israel","State":"","Languages":["Hebrew","English"],"Language":"Hebrew, English","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://icecast.live/proxy/zerock/zerock","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___icecast_lyl_live_live.m3u":{"Genre":["Ambient","Contemporary","Electronic","Electronic","Experimental","Independent"],"Name":"LYL Radio","Image":"https___icecast_lyl_live_live.webp","Homepage":"http://lyl.live/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://icecast.lyl.live/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u":{"Genre":["Various","Variety"],"Name":"France Inter","Image":"https___icecast_radiofrance_fr_franceinter-midfi_mp3.webp","Homepage":"https://www.franceinter.fr/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"France Inter est une station de radio généraliste nationale publique française du groupe Radio France.","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.radiofrance.fr/franceinter-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_teveo_cu_3MCwWg3V.m3u":{"Genre":["Latin Hits","Reggae"],"Name":"Radio Taíno 93.3 FM","Image":"https___icecast_teveo_cu_3MCwWg3V.webp","Homepage":"www.radiotaino.icrt.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Taíno, la FM de Cuba","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/3MCwWg3V","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_McW3fLhs.m3u":{"Genre":["News","Various"],"Name":"Radio Habana Cuba","Image":"https___icecast_teveo_cu_McW3fLhs.webp","Homepage":"www.radiohc.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Una voz de amistad que recorre el mundo","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/McW3fLhs","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_NqWrgw7j.m3u":{"Genre":["Variety"],"Name":"Radio Sancti Spíritus 1210 AM 106.3 FM","Image":"https___icecast_teveo_cu_NqWrgw7j.webp","Homepage":"https://www.radiosanctispiritus.cu/es/","Country":"Cuba","State":"Sancti Spíritus","Languages":["Spanish"],"Language":"Spanish","Description":"Contemporánea en su tradición","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/NqWrgw7j","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_X9XNRkW4.m3u":{"Genre":["Various","News"],"Name":"Radio Minas 104.9 FM","Image":"https___icecast_teveo_cu_X9XNRkW4.webp","Homepage":"https://www.radiominas.icrt.cu","Country":"Cuba","State":"Minas De Matahambre","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Minas 104.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/X9XNRkW4","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_b3jbfThq.m3u":{"Genre":["News"],"Name":"Radio Reloj","Image":"https___icecast_teveo_cu_b3jbfThq.webp","Homepage":"https://www.radioreloj.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Canal de Informacíon Continua","Codec":"MP3","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/b3jbfThq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_kHKL7tWd.m3u":{"Genre":["Sport","News"],"Name":"Radio Rebelde AM","Image":"https___icecast_teveo_cu_kHKL7tWd.webp","Homepage":"https://www.radiorebelde.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"La emisora de la Revolución","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/kHKL7tWd","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 1 Classics","Image":"https___icecast_vrtcdn_be_radio1_classics-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio1_classics-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Bene Bene","Image":"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-bene-bene","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio2_benebene-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_walmradio_com_8443_jazz.m3u":{"Genre":["Avantgarde","Bebop","Big Band","Bop","Combos","Contemporary","Contemporary Jazz","Cool Jazz","Free Jazz","Fusion","Hard Bop","Mainstream","Mainstream Jazz","Modern Big Band","Post-bop","Straight-ahead","Walm"],"Name":"Adroit Jazz Underground","Image":"https___icecast_walmradio_com_8443_jazz.webp","Homepage":"https://walmradio.com/jazz","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Real Jazz in HD","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecast.walmradio.com:8443/jazz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___icecasthd_net_proxy_abejorral_live.m3u":{"Genre":["Public Radio"],"Name":"Abejorral Stereo","Image":"https___icecasthd_net_proxy_abejorral_live.webp","Homepage":"https://www.asenred.com/abejorral/","Country":"Colombia","State":"Antioquia","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecasthd.net/proxy/abejorral/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___iheart_4zzz_org_au_4zzz.m3u":{"Genre":["Indie"],"Name":"4ZZZ FM 102.1 - Alternative","Image":"https___iheart_4zzz_org_au_4zzz.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://iheart.4zzz.org.au/4zzz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u":{"Genre":["Adult Contemporary","Past Time Favs","Soft Rock","Mild Pop","Easy Listening"],"Name":"Kan 88 כאן","Image":"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=4","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kan88.media.kan.org.il/hls/live/2024812/2024812/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u":{"Genre":["Indie"],"Name":"Kanal K","Image":"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.webp","Homepage":"https://www.kanalk.ch/","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream.","Codec":"MP3","Bitrate":160,"StreamUri":"https://kanalk.streamabc.net/91-kanalk-mp3-192-5146873","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u":{"Genre":["Hebrew Pop","Top Hits","Past Time Favorites"],"Name":"Kan Gimel רשת גימל","Image":"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/content/kan/kan-gimel/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":384,"StreamUri":"https://kangimmel.media.kan.org.il/hls/live/2024813/2024813/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[384],"highestBitrate":384},"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"Kol Hamusica קול המוסיקה","Image":"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=7","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kanliveicy.media.kan.org.il/icy/kankolhamusica_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Bent 24","Image":"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.webp","Homepage":"https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com//kcrw_192k_mp3_bent24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Eclectic 24","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.webp","Homepage":"https://www.kcrw.com/music/shows/eclectic24/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_e24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u":{"Genre":["Eclectic","News"],"Name":"KCRW Live 89.9FM","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.webp","Homepage":"https://www.kcrw.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_on_air","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u":{"Genre":["DJ Mixes","Electronic","Independent"],"Name":"Kiosk Radio","Image":"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.webp","Homepage":"https://kioskradio.com/","Country":"Belgium","State":"","Languages":["English","French"],"Language":"English, French","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Reggae","Classical","Eclectic"],"Name":"DjamRadio","Image":"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.webp","Homepage":"https://www.djamradio.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"The Eclectic French Radio","Codec":"MP3","Bitrate":128,"StreamUri":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___legacy_scahw_com_au_2buddha_32.m3u":{"Genre":["Chill Out"],"Name":"Buddha Radio","Image":"https___legacy_scahw_com_au_2buddha_32.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":32,"StreamUri":"https://legacy.scahw.com.au/2buddha_32","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u":{"Genre":["IDM"],"Name":"Limbik Frequencies","Image":"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.webp","Homepage":"https://limbikfreq.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A tasty mix of downtempo electronica","Codec":"MP3","Bitrate":128,"StreamUri":"https://limbikfreq.com/listen/limbik_frequencies/128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___listen7_myradio24_com_69366.m3u":{"Genre":["Various"],"Name":"Pyongyang FM","Image":"https___listen7_myradio24_com_69366.webp","Homepage":"https://korea-dpr.com","Country":"Korea, Democratic People's Republic Of","State":"Pyongyang","Languages":["Korean"],"Language":"Korean","Description":"Pyongyang FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://listen7.myradio24.com/69366","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u":{"Genre":["Jazz"],"Name":"Jazz24","Image":"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.webp","Homepage":"https://www.jazz24.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"https://live.amperwave.net/direct/ppm-jazz24aac256-ibc1","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"https___live_streams_klassikradio_de_klassikradio-deutschland.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Live","Image":"https___live_streams_klassikradio_de_klassikradio-deutschland.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-deutschland","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_streams_klassikradio_de_klassikradio-movie.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Movie","Image":"https___live_streams_klassikradio_de_klassikradio-movie.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-movie","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u":{"Genre":["Romántico"],"Name":"Musical - 97.5 FM","Image":"https___live_turadio_stream_7005_stream_type_http_nocache_596.webp","Homepage":"https://radiomusical.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Musical es uno de los principales medios de comunicación de Costa Rica.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7005/stream?type=http&nocache=596","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___live_turadio_stream_7006__.m3u":{"Genre":["Romántico"],"Name":"Sinfonola - 90.3 FM","Image":"https___live_turadio_stream_7006__.webp","Homepage":"https://radiosinfonola.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7006/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u":{"Genre":["Pop","Hip-Hop","Electronic"],"Name":"DASDING","Image":"https___liveradio_swr_de_sw282p3_dasding_play_mp3.webp","Homepage":"https://www.dasding.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Jugendradioprogramm des Südwestrundfunks","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/dasding/play.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 BW","Image":"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"SWR1 Baden-Württemberg","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 RP","Image":"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR1 Rheinland-Pfalz","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"SWR2","Image":"https___liveradio_swr_de_sw282p3_swr2_play_mp3.webp","Homepage":"https://www.swr.de/swr2/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Kultur neu entdecken","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr2/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr2_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr2/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr2_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr2/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR3","Image":"https___liveradio_swr_de_sw282p3_swr3_play_mp3.webp","Homepage":"https://www.swr3.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der beste Musikmix. Einfach SWR3","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr3/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr3_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr3/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr3_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr3/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 BW","Image":"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 RP","Image":"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR Aktuell","Image":"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.webp","Homepage":"https://www.swr.de/swraktuell/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swraktuell/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swraktuell/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swraktuell/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___livex_radiopopolare_it_radiopop_FLID_3.m3u":{"Genre":["Information","News","Culture","Talk"],"Name":"Radio Popolare","Image":"https___livex_radiopopolare_it_radiopop_FLID_3.webp","Homepage":"https://livex.radiopopolare.it","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"The radio who gives a voice to those who have not.","Codec":"MP3","Bitrate":64,"StreamUri":"https://livex.radiopopolare.it/radiopop?FLID=3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u":{"Genre":["Rock","Eclectic"],"Name":"Mad Music Asylum","Image":"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://madmusicasylum.radioca.st/stream?type=http&nocache=36907","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___maggie_torontocast_com_8076_aac.m3u":{"Genre":["Indie","Rock","Eclectic"],"Name":"JB Radio2 (320K)","Image":"https___maggie_torontocast_com_8076_aac.webp","Homepage":"https://jb-radio.net/","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"JB Radio is an alternative,non-commercial,web radio station.","Codec":"AAC","Bitrate":320,"StreamUri":"https://maggie.torontocast.com:8076/aac","alternativeStreams":{"https___maggie_torontocast_com_8076_flac":{"StreamUri":"https://maggie.torontocast.com:8076/flac","Codec":"FLAC","Bitrate":0}},"allCodecs":["AAC","FLAC"],"allBitrates":[0,320],"highestBitrate":320},"https___maximum_hostingradio_ru_maximum96_aacp.m3u":{"Genre":["Pop","Rock","Hard Rock"],"Name":"Radio Maximum","Image":"https___maximum_hostingradio_ru_maximum96_aacp.webp","Homepage":"https://maximum.ru/","Country":"Russia","State":"","Languages":["Russian"],"Language":"Russian","Description":"Radio Maximum provides twenty four hour mix of several genres and styles of music.","Codec":"AAC","Bitrate":96,"StreamUri":"https://maximum.hostingradio.ru/maximum96.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"https___mediaserv73_live-streams_nl_18058_stream.m3u":{"Genre":["Classical","Mediaeval","Renaissance"],"Name":"Ancient FM - Mediaeval and Renaissance Music","Image":"https___mediaserv73_live-streams_nl_18058_stream.webp","Homepage":"","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://mediaserv73.live-streams.nl:18058/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u":{"Genre":["Rock"],"Name":"Radio Mega 98.3 Puro Rock Nacional","Image":"https___mega983_stweb_tv_mega983_live_playlist_m3u8.webp","Homepage":"https://radiomega.fm/","Country":"Argentina","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"HLS","Bitrate":66,"StreamUri":"https://mega983.stweb.tv/mega983/live/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[66],"highestBitrate":66},"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Mint (RTL)","Image":"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.webp","Homepage":"https://mint.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007.","Codec":"MP3","Bitrate":192,"StreamUri":"https://mint.ice.infomaniak.ch/mint-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u":{"Genre":["Jazz"],"Name":"Mother Earth Jazz","Image":"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u":{"Genre":["Various"],"Name":"Mother Earth Radio","Image":"https___motherearth_streamserver24_com_listen_motherearth_motherearth.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth/motherearth","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___myradio24_org_radiometal.m3u":{"Genre":["Metal"],"Name":"Radio Metal","Image":"https___myradio24_org_radiometal.webp","Homepage":"https://www.radio-metal.in.ua","Country":"Ukraine","State":"","Languages":["English"],"Language":"English","Description":"First Metal Radio in Ukraine!","Codec":"MP3","Bitrate":128,"StreamUri":"https://myradio24.org/radiometal","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u":{"Genre":["Classical"],"Name":"malaysia","Image":"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.webp","Homepage":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","Country":"Malaysia","State":"Kuala Lumpur","Languages":["Chinese"],"Language":"Chinese","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u":{"Genre":["Indie"],"Name":"Ultra","Image":"https___nashe1_hostingradio_ru_80_ultra-128_mp3.webp","Homepage":"https://radioultra.ru/","Country":"Russia","State":"","Languages":["Russian"],"Language":"Russian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://nashe1.hostingradio.ru:80/ultra-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___netradio_ziniur_lt_ziniur_64_mp3.m3u":{"Genre":["Talk","News"],"Name":"Žinių Radijas","Image":"https___netradio_ziniur_lt_ziniur_64_mp3.webp","Homepage":"https://www.ziniuradijas.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://netradio.ziniur.lt/ziniur_64.mp3","alternativeStreams":{"https___netradio_ziniuradijas_lt_ziniur_64_mp3":{"StreamUri":"https://netradio.ziniuradijas.lt/ziniur_64.mp3","Codec":"MP3","Bitrate":64}},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___online_extrafm_lt_8443_extrafm_mp3.m3u":{"Genre":["Pop","Talk","Folklore"],"Name":"Extra FM","Image":"https___online_extrafm_lt_8443_extrafm_mp3.webp","Homepage":"https://extrafm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://online.extrafm.lt:8443/extrafm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u":{"Genre":["Fight","Patriotic"],"Name":"Radio Bayraktar","Image":"https___online_radiobayraktar_ua_RadioBayraktar_HD.webp","Homepage":"https://www.radiobayraktar.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Radio Bayraktar is a radio station of unprecedented Ukrainian resistance","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radiobayraktar.ua/RadioBayraktar_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___online_radioroks_ua_RadioROKS_HD.m3u":{"Genre":["Rock","Hard Rock","Pop"],"Name":"Radio Roks Ukraine","Image":"https___online_radioroks_ua_RadioROKS_HD.webp","Homepage":"https://www.radioroks.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Рок. Тільки рок! (Rock, only rock !)","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radioroks.ua/RadioROKS_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___orelha_radiolivre_org_radiopaulofreire.m3u":{"Genre":["University Radio","MPB"],"Name":"Rádio Paulo Freire - UFPE","Image":"https___orelha_radiolivre_org_radiopaulofreire.webp","Homepage":"https://sites.ufpe.br/rpf/","Country":"Brazil","State":"Pernambuco","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Paulo Freire - Rádio Universitária da UFPE","Codec":"MP3","Bitrate":64,"StreamUri":"https://orelha.radiolivre.org/radiopaulofreire","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___orf-live_ors-shoutcast_at_fm4-q2a.m3u":{"Genre":["Indie Rock","Electronic"],"Name":"Radio FM4","Image":"https___orf-live_ors-shoutcast_at_fm4-q2a.webp","Homepage":"https://fm4.orf.at/","Country":"Austria","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/fm4-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___orf-live_ors-shoutcast_at_oe1-q2a.m3u":{"Genre":["Classical","Information","Culture"],"Name":"Ö1","Image":"https___orf-live_ors-shoutcast_at_oe1-q2a.webp","Homepage":"https://oe1.orf.at/","Country":"Austria","State":"Vienna","Languages":["German"],"Language":"German","Description":"Österreichischer Rundfunk, Stiftung öffentlichen Rechts","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/oe1-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u":{"Genre":["Acoustic","Rock"],"Name":"OUI FM ACOUSTIC","Image":"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.webp","Homepage":"https://www.ouifm.fr/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ouifmacoustic.ice.infomaniak.ch/ouifmacoustic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___paineldj5_com_br_20073_stream_1705993267781.m3u":{"Genre":["College Radio","Various"],"Name":"Universitária FM 100.7 (UFV)","Image":"https___paineldj5_com_br_20073_stream_1705993267781.webp","Homepage":"https://fratevi.org.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Para quem gosta de música e conteúdo!","Codec":"MP3","Bitrate":128,"StreamUri":"https://paineldj5.com.br:20073/stream?1705993267781","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___play_r1_co_nz_live.m3u":{"Genre":["Indie","Student Radio"],"Name":"Radio One 91FM","Image":"https___play_r1_co_nz_live.webp","Homepage":"https://r1.co.nz","Country":"New Zealand","State":"Dunedin","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://play.r1.co.nz/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u":{"Genre":["Indie"],"Name":"2BOB Radio 104.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.webp","Homepage":"http://www.2bobradio.org.au/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/2BOB.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u":{"Genre":["Romántico"],"Name":"Bésame - 89.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.webp","Homepage":"https://www.besame.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado.","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/BESAME_CR_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u":{"Genre":["Pop"],"Name":"Noventa y Cuatro Siete - 94.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.webp","Homepage":"https://www.crc.cr/crc947/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español.","Codec":"AAC","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/CRC_947AAC.aac?_=819140","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u":{"Genre":["Various"],"Name":"Q Music","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.webp","Homepage":"https://qmusic.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QMUSIC.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Caliente - 90.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.webp","Homepage":"https://www.lacaliente.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"La Caliente ofrece a sus oyentes una programación muy diversa.","Codec":"AAC","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QTEJA_CRAAC_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u":{"Genre":["News"],"Name":"Rádio Bandeirantes São Paulo 90.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (São Paulo)","Codec":"AAC+","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.m3u":{"Genre":["Jazz"],"Name":"WEMU Ypsilanti FM 89.1 - Jazz","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/WEMUFM.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___proic1_evspt_com_oxigenio_aac.m3u":{"Genre":["House","Hip-Hop","Jazz","Funk","Soul"],"Name":"OXIGÉNIO 102.6 FM","Image":"https___proic1_evspt_com_oxigenio_aac.webp","Homepage":"https://www.oxigenio.fm/","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Música para respirar","Codec":"AAC","Bitrate":192,"StreamUri":"https://proic1.evspt.com/oxigenio_aac","alternativeStreams":{"https___proic1_evspt_com_oxigenio_mp3":{"StreamUri":"https://proic1.evspt.com/oxigenio_mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["AAC","MP3"],"allBitrates":[192],"highestBitrate":192},"https___r1_comcities_com_proxy_emogddug_stream.m3u":{"Genre":["60's","70's","Oldies"],"Name":"Groovy Radio - 60's and 70's Oldies","Image":"https___r1_comcities_com_proxy_emogddug_stream.webp","Homepage":"https://www.groovyradio.us","Country":"United States","State":"Ohio","Languages":["English"],"Language":"English","Description":"Non-Stop 60's and 70's All Hit Oldies","Codec":"MP3","Bitrate":160,"StreamUri":"https://r1.comcities.com/proxy/emogddug/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio10_pro-fhi_net_radio_9041_stream.m3u":{"Genre":["Afrobeat","Ambient","Bass","Breakbeat","Dancehall","Dub","Electronic","Experimental","Funk","Hard Drums","House","IDM","Jazz","Latin","R'n'B","Rap","Techno","Trance","Uk Funky"],"Name":"Rinse France","Image":"https___radio10_pro-fhi_net_radio_9041_stream.webp","Homepage":"https://rinse.fm/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio10.pro-fhi.net/radio/9041/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_M-1H.m3u":{"Genre":["Pop","Charts"],"Name":"M-1","Image":"https___radio_m-1_fm_M-1H.webp","Homepage":"https://www.m-1.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/M-1H","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_laluna_mp3.m3u":{"Genre":["Pop","Regional"],"Name":"Laluna","Image":"https___radio_m-1_fm_laluna_mp3.webp","Homepage":"https://www.laluna.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://radio.m-1.fm/laluna/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio_m-1_fm_m-1dance_aac.m3u":{"Genre":["Dance"],"Name":"M-1 Dance","Image":"https___radio_m-1_fm_m-1dance_aac.webp","Homepage":"https://m-1dance.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radio.m-1.fm/m-1dance/aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radio_m-1_fm_m1plius_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Contemporary"],"Name":"M-1 Plius","Image":"https___radio_m-1_fm_m1plius_mp3.webp","Homepage":"https://www.pliusas.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/m1plius/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_promodj_com_fullmoon-192.m3u":{"Genre":["Hard Trance","Tech Trance","Progressive Trance","Uplifting Trance","Trance","Trancestep","Vocal Trance"],"Name":"Full Moon","Image":"https___radio_promodj_com_fullmoon-192.webp","Homepage":"https://promodj.com/radio#fullmoon","Country":"Russia","State":"","Languages":["English","Russian"],"Language":"English, Russian","Description":"Trance always. Trance everywhere. Trance 24/7.","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.promodj.com/fullmoon-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_sec_unicamp_br_aovivo_1698904239205.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UNICAMP","Image":"https___radio_sec_unicamp_br_aovivo_1698904239205.webp","Homepage":"https://www.sec.unicamp.br/web-radio-2/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e informação de qualidade!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://radio.sec.unicamp.br/aovivo?1698904239205","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___radio_sk8ter_org_8443_stream.m3u":{"Genre":["Electronic","Drum'n'Bass","Techno","House","Dance"],"Name":"Mémé dans les OrtiEs","Image":"https___radio_sk8ter_org_8443_stream.webp","Homepage":"https://memeradio.org","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Web radio électro","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.sk8ter.org:8443/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radio_streamgates_net_stream_oranim.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"Radion Oranim 103.6FM רדיו אורנים","Image":"https___radio_streamgates_net_stream_oranim.webp","Homepage":"https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.streamgates.net/stream/oranim","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact \"Feel Good\"","Image":"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiocontact.ice.infomaniak.ch/radiocontact-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u":{"Genre":["Variety"],"Name":"Rai Radio 2 91.7 FM","Image":"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio2","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 2 91.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiodue-live.akamaized.net/hls/live/2032592/radiodue/radiodue/radio2_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiofunandmore_spcast_eu_dj03.m3u":{"Genre":["Various"],"Name":"RadioFunAndMore","Image":"https___radiofunandmore_spcast_eu_dj03.webp","Homepage":"https://radiofunandmore.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Dein Sender Deine Hits","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiofunandmore.spcast.eu/dj03","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u":{"Genre":["News","Football","Soccer","MPB"],"Name":"Rádio Nacional do Alto Solimões","Image":"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalaltosolimoes","Country":"Brazil","State":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional do Alto Solimões - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://radionacionalaltosolimoes-stream.ebc.com.br/ebc/radionacionalaltosolimoes/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radios_rtbf_be_classic21-128_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"RTBF - Classic 21","Image":"https___radios_rtbf_be_classic21-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/classic21-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_jam-128_mp3.m3u":{"Genre":["Urbain","Pop","Electronic","Rock","Folk","New Jazz","World Music"],"Name":"RTBF - Jam","Image":"https___radios_rtbf_be_jam-128_mp3.webp","Homepage":"https://www.rtbf.be/jam","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/jam-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_laprem1ere-128_mp3.m3u":{"Genre":["Various","Variety","News"],"Name":"RTBF - La Première","Image":"https___radios_rtbf_be_laprem1ere-128_mp3.webp","Homepage":"https://www.rtbf.be/lapremiere/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/laprem1ere-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_musiq3-128_aac.m3u":{"Genre":["Classical"],"Name":"RTBF - Musiq 3","Image":"https___radios_rtbf_be_musiq3-128_aac.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radios.rtbf.be/musiq3-128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_pure-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - Tipik / PureFM","Image":"https___radios_rtbf_be_pure-128_mp3.webp","Homepage":"https://www.rtbf.be/tipik/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"null","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/pure-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_rtbfmix-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - RTBF Mix","Image":"https___radios_rtbf_be_rtbfmix-128_mp3.webp","Homepage":"https://www.rtbf.be/rtbfmix","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/rtbfmix-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_tarmac-128_mp3.m3u":{"Genre":["Pop","Variety"],"Name":"RTBF - Tarmac","Image":"https___radios_rtbf_be_tarmac-128_mp3.webp","Homepage":"https://www.rtbf.be/Tarmac","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/tarmac-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaliege-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - VivaCité Liège","Image":"https___radios_rtbf_be_vivaliege-128_mp3.webp","Homepage":"https://www.rtbf.be/vivacite/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaliege-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaplus-128_mp3.m3u":{"Genre":["60's","70's"],"Name":"RTBF - Viva+","Image":"https___radios_rtbf_be_vivaplus-128_mp3.webp","Homepage":"https://www.rtbf.be/vivaplus","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaplus-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_wr-c21-60-128_mp3.m3u":{"Genre":["60's","Rock","Pop"],"Name":"RTBF - Classic 21 60's","Image":"https___radios_rtbf_be_wr-c21-60-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Le meilleur Rock'n'Pop des années 60","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-60-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-70-128_mp3.m3u":{"Genre":["70's","Classic Rock","Rock"],"Name":"RTBF - Classic 21 70's","Image":"https___radios_rtbf_be_wr-c21-70-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-70-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-80-128_mp3.m3u":{"Genre":["80's","Rock","Pop"],"Name":"RTBF - Classic 21 80's","Image":"https___radios_rtbf_be_wr-c21-80-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Rock'n'Pop of the 80's","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-80-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-90-128_mp3.m3u":{"Genre":["90's"],"Name":"RTBF - Classic 21 90's","Image":"https___radios_rtbf_be_wr-c21-90-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-90-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u":{"Genre":["Country"],"Name":"RTBF - Classic 21 Route 66","Image":"https___radios_rtbf_be_wr-c21-route66-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-route66-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u":{"Genre":["Renaissance","Baroque"],"Name":"RTBF - Musiq 3 Baroque","Image":"https___radios_rtbf_be_wr-m3-baroque-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Un voyage dans l'Europe musicale, de la Renaissance jusque 1750","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-baroque-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u":{"Genre":["Jazz"],"Name":"RTBF - Musiq 3 Jazz","Image":"https___radios_rtbf_be_wr-m3-jazz-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Du jazz belge et international pour tous, des années 20 à nos jours","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-jazz-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u":{"Genre":["Romantique"],"Name":"RTBF - Musiq 3 Romantique","Image":"https___radios_rtbf_be_wr-m3-romantique-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Les plus grandes pages de la musique romantique","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-romantique-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radioshamfm_grtvstream_com_8400__.m3u":{"Genre":["Various","News"],"Name":"Sham FM","Image":"https___radioshamfm_grtvstream_com_8400__.webp","Homepage":"https://sham.fm/ar/index.html","Country":"Syria","State":"","Languages":["Arabic"],"Language":"Arabic","Description":"Sham FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://radioshamfm.grtvstream.com:8400/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u":{"Genre":["News","Sport"],"Name":"Guardian Radio 96.9 FM","Image":"https___radiostreams_streamcomedia_com_8000_969guardianradio.webp","Homepage":"https://guardiantalkradio.com","Country":"Bahamas","State":"Nassau","Languages":["English"],"Language":"English","Description":"Guardian Radio 96.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://radiostreams.streamcomedia.com:8000/969guardianradio","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u":{"Genre":["Opera"],"Name":"Rai Radio 3 93.7 FM","Image":"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio3","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 3 93.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiotre-live.akamaized.net/hls/live/2032594/radiotre/radiotre/radio3_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u":{"Genre":["News","Sport"],"Name":"Rai Radio 1 89.7 FM","Image":"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio1","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 1 89.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiounoest-live.akamaized.net/hls/live/2032586/radiounoest/radiounoest/radio1est_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u":{"Genre":["Tamil Radio"],"Name":"IBC Tamil","Image":"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.webp","Homepage":"https://radio.ibctamil.com/","Country":"India","State":"","Languages":["Tamil"],"Language":"Tamil","Description":"IBC Tamil offers an excellent line-up of regular and one-off shows","Codec":"MP3","Bitrate":128,"StreamUri":"https://rbx2.hnux.com/http://10454.cloudrad.io:6176/;stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u":{"Genre":["News"],"Name":"Ici Radio-Canada Premiere Montreal","Image":"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.webp","Homepage":"https://ici.radio-canada.ca/","Country":"Canada","State":"Montreal","Languages":["French"],"Language":"French","Description":"","Codec":"HLS","Bitrate":465,"StreamUri":"https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[465],"highestBitrate":465},"https___relay2_bide-et-musique_com_9300_bm_mp3.m3u":{"Genre":["70's","80's"],"Name":"Bide et Musique - La radio de l'improbable et de l'inouï","Image":"https___relay2_bide-et-musique_com_9300_bm_mp3.webp","Homepage":"https://www.bide-et-musique.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et…","Codec":"MP3","Bitrate":128,"StreamUri":"https://relay2.bide-et-musique.com:9300/bm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rozhlas_stream_ddur_mp3_256_mp3.m3u":{"Genre":["Classical"],"Name":"Czech Radio Classical","Image":"https___rozhlas_stream_ddur_mp3_256_mp3.webp","Homepage":"","Country":"Czech Republic","State":"","Languages":["Czech"],"Language":"Czech","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"https://rozhlas.stream/ddur_mp3_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s02_brascast_com_7386_live.m3u":{"Genre":["Entrevistas","Interviews","News","News Talk","Notícias"],"Name":"Rádio Foco Livre","Image":"https___s02_brascast_com_7386_live.webp","Homepage":"https://www.focolivre.com.br/","Country":"Brazil","State":"Santa Catarina","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s02.brascast.com:7386/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s09_hstbr_net_8238_live_1514038524061.m3u":{"Genre":["News","Various"],"Name":"Brasil de Fato","Image":"https___s09_hstbr_net_8238_live_1514038524061.webp","Homepage":"https://www.brasildefato.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Brasil de Fato - Uma visão popular do Brasil e do mundo","Codec":"MP3","Bitrate":128,"StreamUri":"https://s09.hstbr.net:8238/live?1514038524061","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s1_knixx_fm_dein_webradio_256_mp3.m3u":{"Genre":["Variety","Adult Contemporary","New Country","Non-commercial","Non-profit","Oldies","Pop","Rock"],"Name":"knixx.fm","Image":"https___s1_knixx_fm_dein_webradio_256_mp3.webp","Homepage":"https://knixx.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Musik von den 60ern bis heute.","Codec":"MP3","Bitrate":256,"StreamUri":"https://s1.knixx.fm/dein_webradio_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio P.Y.G.","Image":"https___s2_ssl-stream_com_radio_8160_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"All the Best from Pink Floyd, Yes and Genesis","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8160/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio Progressive Rock","Image":"https___s2_ssl-stream_com_radio_8180_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8180/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u":{"Genre":["MPB","College Radio","University","Independent Music","Pop"],"Name":"Rádio Pop Goiaba UFF","Image":"https___s37_maxcast_com_br_8450_live_id_1698623926568.webp","Homepage":"https://radiopopgoiaba.uff.br/pop-goiaba-uff/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Pop Goiaba UFF","Codec":"MPEG","Bitrate":32,"StreamUri":"https://s37.maxcast.com.br:8450/live?id=1698623926568","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___s5_radio_co_s23b8ada46_listen.m3u":{"Genre":["Community Radio","Indie","Underground","Indie","AfroHouse","AfroJazz","Hip-Hop","Jazz"],"Name":"Oroko Radio","Image":"https___s5_radio_co_s23b8ada46_listen.webp","Homepage":"https://oroko.live/","Country":"Ghana","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/s23b8ada46/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s5_radio_co_sd515b7b34_listen.m3u":{"Genre":["Rock","Baladas"],"Name":"Radio 2 - 99.5 FM","Image":"https___s5_radio_co_sd515b7b34_listen.webp","Homepage":"https://radiodos.com/","Country":"Costa Rica","State":"","Languages":["English"],"Language":"English","Description":"Éxitos que fueron de UNO y ahora son de DOS 99.5 FM.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/sd515b7b34/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s61_radiolize_com_radio_8000_radio_mp3.m3u":{"Genre":["2000's","Dance","Rock","Pop","Hip-Hop"],"Name":"Smart Zeros","Image":"https___s61_radiolize_com_radio_8000_radio_mp3.webp","Homepage":"https://smart2000s.com/cool-songs-for-2000-theme-party/","Country":"Ukraine","State":"","Languages":["English"],"Language":"English","Description":"Cool Songs For 2000 Theme Party","Codec":"MP3","Bitrate":128,"StreamUri":"https://s61.radiolize.com/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___server1_fex_red_8366_stream.m3u":{"Genre":["Entretenimiento","Deportes","Noticias","Variedades"],"Name":"Radio Gente","Image":"https___server1_fex_red_8366_stream.webp","Homepage":"https://radiogentebol.com/","Country":"Bolivia","State":"","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://server1.fex.red:8366/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___servidor21_brlogic_com_7712_live.m3u":{"Genre":["MPB","Radio Universitaria","University Radio"],"Name":"Rádio UFRJ","Image":"https___servidor21_brlogic_com_7712_live.webp","Homepage":"https://radio.ufrj.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da Universidade Federal do Rio de Janeiro","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor21.brlogic.com:7712/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor22-3_brlogic_com_7404_live.m3u":{"Genre":["MPB","News"],"Name":"Rádio UERJ","Image":"https___servidor22-3_brlogic_com_7404_live.webp","Homepage":"https://www.radiouerj.com/app/index.html","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Conectando você ao conhecimento!","Codec":"MP3","Bitrate":32,"StreamUri":"https://servidor22-3.brlogic.com:7404/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___servidor35-1_brlogic_com_8062_live.m3u":{"Genre":["Eclectic","Football"],"Name":"Rádio FERJ","Image":"https___servidor35-1_brlogic_com_8062_live.webp","Homepage":"https://www.fferj.com.br/radio","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio FERJ","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor35-1.brlogic.com:8062/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor38-2_brlogic_com_8134_live.m3u":{"Genre":["Various"],"Name":"Rádio UPF 99.9 FM","Image":"https___servidor38-2_brlogic_com_8134_live.webp","Homepage":"https://radioupf.minhawebradio.net/app/index.html","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UPF 99.9 FM","Codec":"MPEG","Bitrate":196,"StreamUri":"https://servidor38-2.brlogic.com:8134/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[196],"highestBitrate":196},"https___servidor39-3_brlogic_com_8180_live.m3u":{"Genre":["Various"],"Name":"Rádio Uniso","Image":"https___servidor39-3_brlogic_com_8180_live.webp","Homepage":"https://radiouniso.com","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano.","Codec":"MPEG","Bitrate":128,"StreamUri":"https://servidor39-3.brlogic.com:8180/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_am846_m3u8.m3u":{"Genre":["News","Education"],"Name":"China Plus (China Radio International) - English","Image":"https___sk_cri_cn_am846_m3u8.webp","Homepage":"https://chinaplus.cri.cn","Country":"China","State":"","Languages":["English"],"Language":"English","Description":"China Plus (China Radio International) - English","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/am846.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___sk_cri_cn_frenchafrica_m3u8.m3u":{"Genre":["News","Debate"],"Name":"CGTN Radio Français","Image":"https___sk_cri_cn_frenchafrica_m3u8.webp","Homepage":"https://radio.cgtn.com/","Country":"China","State":"","Languages":["French"],"Language":"French","Description":"CGTN Radio Français","Codec":"ADTS","Bitrate":128,"StreamUri":"https://sk.cri.cn/frenchafrica.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_nhzs_m3u8.m3u":{"Genre":["Various"],"Name":"CRI Voice of the South China Sea 89.1 FM","Image":"https___sk_cri_cn_nhzs_m3u8.webp","Homepage":"https://vscs.cri.cn","Country":"China","State":"","Languages":["Chinese"],"Language":"Chinese","Description":"CRI Voice of the South China Sea 89.1 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/nhzs.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___smoothjazz_cdnstream1_com_2585_320_mp3.m3u":{"Genre":["Jazz","Smooth Jazz"],"Name":"SmoothJazz Global","Image":"https___smoothjazz_cdnstream1_com_2585_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2585_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___smoothjazz_cdnstream1_com_2586_320_mp3.m3u":{"Genre":["Lounge","Smooth Lounge"],"Name":"SmoothLounge Global","Image":"https___smoothjazz_cdnstream1_com_2586_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2586_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"Soho Radio London","Image":"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://sohoradiomusic.doughunt.co.uk:8010/320mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência AM 880","Image":"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Uma Rádio Para Todos e Todas!","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia2?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência 100.9 FM","Image":"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Inconfidência 100.9 FM","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u":{"Genre":["Electronic","Culture","House"],"Name":"La Urban Radio","Image":"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.webp","Homepage":"https://www.urbanrevolution.es","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Nuevos talentos y grandes artistas se dan la mano en La Urban Radio.","Codec":"MP3","Bitrate":160,"StreamUri":"https://st1.urbanrevolution.es:8443/laurbanfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___stm23_xcast_com_br_11284_stream_1705992834372.m3u":{"Genre":["News","Football"],"Name":"Rádio Bandeirantes Campinas 1170 AM","Image":"https___stm23_xcast_com_br_11284_stream_1705992834372.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/campinas","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (Campinas)","Codec":"MP3","Bitrate":128,"StreamUri":"https://stm23.xcast.com.br:11284/stream?1705992834372","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str1_castradios_com_br_10998_stream.m3u":{"Genre":["Flashback","Adult","Sport"],"Name":"Rádio 365","Image":"https___str1_castradios_com_br_10998_stream.webp","Homepage":"https://radio365.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio de todos os dias!","Codec":"MP3","Bitrate":128,"StreamUri":"https://str1.castradios.com.br:10998/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str_topradio_be_topradio_mp3.m3u":{"Genre":["Various"],"Name":"Top Radio","Image":"https___str_topradio_be_topradio_mp3.webp","Homepage":"https://www.topradio.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://str.topradio.be/topradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-156_zeno_fm_22db1xmde2zuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Arumbu FM","Image":"https___stream-156_zeno_fm_22db1xmde2zuv.webp","Homepage":"https://tamilradios.net/arumbu-fm/","Country":"India","State":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream-156.zeno.fm/22db1xmde2zuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Classical","Talk","Culture"],"Name":"LRT Klasika","Image":"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/klasika/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Modern","Contemporary","Indie"],"Name":"LRT Opus","Image":"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/opus/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Various","News","Talk"],"Name":"LRT Radijas","Image":"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/radijas/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream128_kngi_org.m3u":{"Genre":["Game","Various"],"Name":"KNGI Network","Image":"https___stream128_kngi_org.webp","Homepage":"https://kngi.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream128.kngi.org","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream1_svrdedicado_org_8028_stream.m3u":{"Genre":["Blues","Rock","Instrumental"],"Name":"Rádio Lam","Image":"https___stream1_svrdedicado_org_8028_stream.webp","Homepage":"https://radiolam.wixsite.com/24horas","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rock & Blues 24 horas!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream1.svrdedicado.org/8028/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_relaxfm_lt_relaxfm128_mp3.m3u":{"Genre":["Pop"],"Name":"Relax FM","Image":"https___stream2_relaxfm_lt_relaxfm128_mp3.webp","Homepage":"https://relaxfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.relaxfm.lt/relaxfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_rockfm_lt_crf128_mp3.m3u":{"Genre":["Rock"],"Name":"Rock FM","Image":"https___stream2_rockfm_lt_crf128_mp3.webp","Homepage":"https://rockfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.rockfm.lt/crf128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u":{"Genre":["MPB","News"],"Name":"Rádio Câmara 96.9 FM","Image":"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.webp","Homepage":"https://www.camara.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Câmara 96.9 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://stream3.camara.gov.br/radiocamara1t64/manifest.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___stream_animeradio_de_animeradio_mp3.m3u":{"Genre":["Anime","J-pop","J-rock","OST","Party","Rock"],"Name":"AnimeRadio.de","Image":"https___stream_animeradio_de_animeradio_mp3.webp","Homepage":"https://www.animeradio.de/","Country":"Germany","State":"","Languages":["German","Japanese"],"Language":"German, Japanese","Description":"Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen.","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.animeradio.de/animeradio.mp3","alternativeStreams":{"https___stream_animeradio_de_animeradio_aac":{"StreamUri":"https://stream.animeradio.de/animeradio.aac","Codec":"AAC","Bitrate":32}},"allCodecs":["AAC","MP3"],"allBitrates":[32,192],"highestBitrate":192},"https___stream_artsound_fm_mp3.m3u":{"Genre":["Classical","Jazz","Folk","World Music"],"Name":"ArtSound FM 92.7","Image":"https___stream_artsound_fm_mp3.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.artsound.fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_ceit_be_sudradio-hainaut.m3u":{"Genre":["Various"],"Name":"Sud Radio Hainaut","Image":"https___stream_ceit_be_sudradio-hainaut.webp","Homepage":"https://sudradio.net","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://stream.ceit.be/sudradio-hainaut","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___stream_ehr_lt_8443_ehr.m3u":{"Genre":["Charts","Pop"],"Name":"European Hit Radio","Image":"https___stream_ehr_lt_8443_ehr.webp","Homepage":"https://www.europeanhitradio.lt","Country":"Lithuania","State":"","Languages":["Lithuanian","English"],"Language":"Lithuanian, English","Description":"","Codec":"HE-AAC","Bitrate":96,"StreamUri":"https://stream.ehr.lt:8443/ehr","alternativeStreams":{"https___82_135_234_195_8443_ehr_mp3":{"StreamUri":"https://82.135.234.195:8443/ehr.mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["HE-AAC","MP3"],"allBitrates":[96,192],"highestBitrate":192},"https___stream_nowyswiat_online_mp3.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio Nowy Swiat","Image":"https___stream_nowyswiat_online_mp3.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.nowyswiat.online/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_radiomustathens_com_must-hero.m3u":{"Genre":["Adult Contemporary","Top 40"],"Name":"Hero","Image":"https___stream_radiomustathens_com_must-hero.webp","Homepage":"https://app.radiomustathens.com/#/must-hero","Country":"Greece","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.radiomustathens.com/must-hero","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___stream_radioparadise_com_aac-320.m3u":{"Genre":["Eclectic"],"Name":"Radio Paradise - Main Mix","Image":"https___stream_radioparadise_com_aac-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/aac-320","alternativeStreams":{"https___stream_radioparadise_com_flacm":{"StreamUri":"https://stream.radioparadise.com/flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_mellow-320.m3u":{"Genre":["Rock","Mellow Rock"],"Name":"Radio Paradise - Mellow","Image":"https___stream_radioparadise_com_mellow-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/mellow-320","alternativeStreams":{"https___stream_radioparadise_com_mellow-flacm":{"StreamUri":"https://stream.radioparadise.com/mellow-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_rock-320.m3u":{"Genre":["Rock"],"Name":"Radio Paradise - Rock","Image":"https___stream_radioparadise_com_rock-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/rock-320","alternativeStreams":{"https___stream_radioparadise_com_rock-flacm":{"StreamUri":"https://stream.radioparadise.com/rock-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_world-etc-320.m3u":{"Genre":["World Music"],"Name":"Radio Paradise - World","Image":"https___stream_radioparadise_com_world-etc-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/world-etc-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___stream_rcs_revma_com_an1ugyygzk8uv.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio 357","Image":"https___stream_rcs_revma_com_an1ugyygzk8uv.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/an1ugyygzk8uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_anew1ctrgzzuv.m3u":{"Genre":["Pop","Rock"],"Name":"DH Radio / Twizz","Image":"https___stream_rcs_revma_com_anew1ctrgzzuv.webp","Homepage":"https://www.dhnet.be/medias/dh-radio","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing.","Codec":"AAC","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/anew1ctrgzzuv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u":{"Genre":["Pop","Rock"],"Name":"Must FM","Image":"https___stream_rcs_revma_com_cm96zpmrmm0uv.webp","Homepage":"https://mustfm.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/cm96zpmrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_f31w7e0fveuvv.m3u":{"Genre":["Pop","Charts"],"Name":"Power Hit Radio","Image":"https___stream_rcs_revma_com_f31w7e0fveuvv.webp","Homepage":"https://powerhitradio.tv3.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":89,"StreamUri":"https://stream.rcs.revma.com/f31w7e0fveuvv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[89],"highestBitrate":89},"https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u":{"Genre":["Pop","Rock","Dance","Club"],"Name":"Maximum FM","Image":"https___stream_rcs_revma_com_vnmbzemrmm0uv.webp","Homepage":"https://www.maximumfm.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/vnmbzemrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_xh00fwuptg0uv.m3u":{"Genre":["Various"],"Name":"NRJ Belgique","Image":"https___stream_rcs_revma_com_xh00fwuptg0uv.webp","Homepage":"https://www.nrj.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/xh00fwuptg0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rockantenne_de_rockantenne_stream_mp3.m3u":{"Genre":["Rock"],"Name":"Rock Antenne","Image":"https___stream_rockantenne_de_rockantenne_stream_mp3.webp","Homepage":"https://www.rockantenne.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rockantenne.de/rockantenne/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_skylab-radio_com_live.m3u":{"Genre":["Ambient","Eclectic","Experimental","Hip-Hop","House","Rock","Techno"],"Name":"Skylab Radio","Image":"https___stream_skylab-radio_com_live.webp","Homepage":"http://skylab-radio.com/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.skylab-radio.com/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_zeno_fm_lf9upjop1gyuv.m3u":{"Genre":["General","News","Various"],"Name":"Kadicou FM","Image":"https___stream_zeno_fm_lf9upjop1gyuv.webp","Homepage":"https://zeno.fm/radio/kadicou-fm/","Country":"Nigeria","State":"","Languages":["English"],"Language":"English","Description":"Kadicou FM is dedicated to giving you quality broadcast and entertaining programs!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.zeno.fm/lf9upjop1gyuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Public Radio"],"Name":"Rádio Antena 1 99.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.webp","Homepage":"https://antena1.rtp.pt","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 99.4 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena180a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u":{"Genre":["News","Politics","Sport","Fado"],"Name":"Rádio Antena 1 Madeira 104.6 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.webp","Homepage":"http://www.rtp.pt/madeira","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 Madeira 104.6 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena1madeira80a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u":{"Genre":["Classical","Opera"],"Name":"Rádio Antena 2 94.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.webp","Homepage":"https://antena2.rtp.pt","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Arte que Toca","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena280a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Dance"],"Name":"Rádio Antena 3 105.2 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.webp","Homepage":"https://media.rtp.pt/antena3/","Country":"Portugal","State":"Lisboa","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Alternativa Pop","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena380a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.m3u":{"Genre":["Classical"],"Name":"Davide of MIMIC","Image":"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streaming04.liveboxstream.uk/proxy/davideof?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streaming_antipode_be_antipode_mp3.m3u":{"Genre":["Various"],"Name":"Antipode - La Radio du Brabant Wallon","Image":"https___streaming_antipode_be_antipode_mp3.webp","Homepage":"https://www.antipode.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streaming.antipode.be/antipode.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming_inweb_com_br_energia.m3u":{"Genre":["Pop-Rock","Dance","Trance","Pop"],"Name":"Rádio Energia 97 FM","Image":"https___streaming_inweb_com_br_energia.webp","Homepage":"https://www.97fm.com.br","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Energia que te move!","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming.inweb.com.br/energia","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming_radio_co_s3699c5e49_listen.m3u":{"Genre":["Ambient","Electronic","Experimental","Hip-Hop","House","Jazz","Pop"],"Name":"Refuge Worldwide","Image":"https___streaming_radio_co_s3699c5e49_listen.webp","Homepage":"https://refugeworldwide.com/","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Alternative community radio from Berlin","Codec":"MP3","Bitrate":192,"StreamUri":"https://streaming.radio.co/s3699c5e49/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___streaming_ufg_br_8443_radiouniversitaria.m3u":{"Genre":["MPB","News"],"Name":"Rádio Universitária UFG","Image":"https___streaming_ufg_br_8443_radiouniversitaria.webp","Homepage":"https://radio.ufg.br/p/aovivo","Country":"Brazil","State":"Goiás","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UFG","Codec":"MPEG","Bitrate":128,"StreamUri":"https://streaming.ufg.br:8443/radiouniversitaria","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["60's"],"Name":"FluxFM - 60s","Image":"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/60er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - ChillHop","Image":"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Chillhop/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Eclectic"],"Name":"FluxFM - Melides Art Radio","Image":"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Melides/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - Chillout Radio","Image":"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/chillout/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Clubsandwich","Image":"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/clubsandwich/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Pop"],"Name":"FluxFM - ElectroFlux","Image":"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/elektro/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.m3u":{"Genre":["Pop","Culture"],"Name":"FluxFM - Hamburg","Image":"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/flux-hamburg/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - FluxKompensator","Image":"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/fluxkompensator/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Disco","Dance"],"Name":"FluxFM - Indie Disco","Image":"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/indiedisco/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - Jazzradio Schwarzenstein","Image":"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/jazzschwarz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - John Reed Radio","Image":"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/john-reed/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Klubradio","Image":"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/klubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Lounge","Neo-Soul","Trip-Hop","Jazz"],"Name":"FluxFM - FluxLounge","Image":"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/lounge/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","House"],"Name":"FluxFM - Sound Of Berlin","Image":"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/soundofberlin/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Techno"],"Name":"FluxFM - Techno Underground","Image":"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/technoug/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_radio7_de_dab_mp3-192_web_.m3u":{"Genre":["Pop"],"Name":"Radio 7","Image":"https___streams_radio7_de_dab_mp3-192_web_.webp","Homepage":"https://www.radio7.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio7.de/dab/mp3-192/web/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u":{"Genre":["60's","70's"],"Name":"Joe 60's & 70's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_60s_70s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u":{"Genre":["80's","90's"],"Name":"Joe 80's & 90's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_80s_90s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u":{"Genre":["Various"],"Name":"Joe Easy","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u":{"Genre":["Various","70's","80's","90's"],"Name":"Joe FM","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u":{"Genre":["2000's"],"Name":"Joe Top 2000","Image":"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","70's"],"Name":"Radio BOB! 70s Rock","Image":"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/70errock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","Blues"],"Name":"Radio BOB! Blues","Image":"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"RADIO BOB!s neuer Blues Stream","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/blues/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Best of Rock","Image":"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/bob-bestofrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Newcomer","Image":"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Listen to the hottest new rockbands – nonstop.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/newcomer/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Oldies","Image":"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/rockoldies/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Summer Rock Hits","Image":"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/summerrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 610 AM","Image":"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-am-610-am610khz.html","Country":"Vietnam","State":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 610 AM","Codec":"AAC","Bitrate":320,"StreamUri":"https://strm.voh.com.vn/radio/channel2/chunklist_w2105781582.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 99.9 FM","Image":"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html","Country":"Vietnam","State":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 99.9 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://strm.voh.com.vn/radio/channel3/chunklist_w1232938254.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u":{"Genre":["News","Talk","Culture"],"Name":"SR P1","Image":"https___sverigesradio_se_topsy_direkt_132-hi-aac.webp","Homepage":"https://sverigesradio.se/p1","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/132-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u":{"Genre":["Pop","Culture"],"Name":"SR P3","Image":"https___sverigesradio_se_topsy_direkt_164-hi-aac.webp","Homepage":"https://sverigesradio.se/p3","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/164-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u":{"Genre":["News","Weather","Sport","Culture"],"Name":"SR P4 Jämtland","Image":"https___sverigesradio_se_topsy_direkt_200-hi-aac.webp","Homepage":"https://sverigesradio.se/jamtland","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"News, weather, sport, and culture from Jämtland","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/200-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___transliacija_rc_lt_rc128_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"Radijo Centras","Image":"https___transliacija_rc_lt_rc128_mp3.webp","Homepage":"https://rc.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.rc.lt/rc128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___transliacija_zipfm_lt_zipfm128_mp3.m3u":{"Genre":["Youth","Pop"],"Name":"ZIP FM","Image":"https___transliacija_zipfm_lt_zipfm128_mp3.webp","Homepage":"https://zipfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.zipfm.lt/zipfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u":{"Genre":["Jazz"],"Name":"TSF Jazz","Image":"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.webp","Homepage":"https://www.tsfjazz.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ».","Codec":"MP3","Bitrate":128,"StreamUri":"https://tsfjazz.ice.infomaniak.ch/tsfjazz-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tunein_cdnstream1_com_3519_96_mp3.m3u":{"Genre":["News","Tv News","World News"],"Name":"CNN International","Image":"https___tunein_cdnstream1_com_3519_96_mp3.webp","Homepage":"https://www.cnn.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"TV Audio for CNN International","Codec":"MP3","Bitrate":96,"StreamUri":"https://tunein.cdnstream1.com/3519_96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u":{"Genre":["News. MPB"],"Name":"Rádio UFMG Educativa 104.5 FM","Image":"https___ufmg_br_streamingradioaovivo_aovivo_mp3.webp","Homepage":"https://ufmg.br/comunicacao/radio-ufmg-educativa","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFMG Educativa 104.5 FM","Codec":"MP3","Bitrate":32,"StreamUri":"https://ufmg.br/streamingradioaovivo/aovivo.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___uk2_streamingpulse_com_ssl_vcr1.m3u":{"Genre":["Classical"],"Name":"Venice Classic Radio","Image":"https___uk2_streamingpulse_com_ssl_vcr1.webp","Homepage":"https://www.veniceclassicradio.eu/","Country":"Italy","State":"","Languages":["English"],"Language":"English","Description":"Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers.","Codec":"MP3","Bitrate":128,"StreamUri":"https://uk2.streamingpulse.com/ssl/vcr1","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___virtualtronics_net_proxy_zetafm_mp__stream.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"Zeta FM - 95.1 FM","Image":"https___virtualtronics_net_proxy_zetafm_mp__stream.webp","Homepage":"https://www.zetafmcr.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina.","Codec":"MP3","Bitrate":128,"StreamUri":"https://virtualtronics.net/proxy/zetafm?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"WDR 3","Image":"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr3/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Kulturradio","Codec":"MP3","Bitrate":256,"StreamUri":"https://wdr-wdr3-live.icecastssl.wdr.de/wdr/wdr3/live/mp3/256/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___wgbh-live_streamguys1_com_classical-hi.m3u":{"Genre":["Classical"],"Name":"WCRB Boston 99.5 - Classical","Image":"https___wgbh-live_streamguys1_com_classical-hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://wgbh-live.streamguys1.com/classical-hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___www_radioking_com_play_radio-doudou.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Doudou","Image":"https___www_radioking_com_play_radio-doudou.webp","Homepage":"https://www.radiodoudou.com","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radioking.com/play/radio-doudou","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_radiopommedapi_com_radio_mp3.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Pomme d'Api - La Radio des Petits","Image":"https___www_radiopommedapi_com_radio_mp3.webp","Homepage":"https://www.radiopommedapi.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radiopommedapi.com/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_ragya_com_prahar.m3u":{"Genre":["Indian Classical","Indian Instrumental"],"Name":"Ragya","Image":"https___www_ragya_com_prahar.webp","Homepage":"https://www.ragya.com/prahar","Country":"India","State":"Maharashtra","Languages":["Hindi","Urdu","Sanskrit"],"Language":"Hindi, Urdu, Sanskrit","Description":"Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition.","Codec":"MP3","Bitrate":32,"StreamUri":"https://www.ragya.com/prahar","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___www_wwoz_org_listen_hi.m3u":{"Genre":["Jazz","Blues","Latin","Cajun","Funk"],"Name":"WWOZ New Orleans FM 90.7 - Various Artists","Image":"https___www_wwoz_org_listen_hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.wwoz.org/listen/hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wz7_servidoresbrasil_com_8162_stream.m3u":{"Genre":["MPB","Flashback"],"Name":"Rádio Hits 98.9 FM (Campos/São João da Barra)","Image":"https___wz7_servidoresbrasil_com_8162_stream.webp","Homepage":"https://redehits.fm","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Dá gosto de ouvir!","Codec":"MP3","Bitrate":32,"StreamUri":"https://wz7.servidoresbrasil.com:8162/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"Radio Zet","Image":"https___zt03_cdn_eurozet_pl_zet-tun_mp3.webp","Homepage":"https://www.radiozet.pl","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://zt03.cdn.eurozet.pl/zet-tun.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128}},"totalWebradios":591,"webradioLanguages":["Arabic","Bengali","Brazilian Portuguese","Chinese","Corse","Czech","Danish","Dutch","English","Español","Francais","Français","French","German","Greek","Hebrew","Hindi","Indigenous Languages","Italian","Japanese","Kannada","Konkani","Korean","Lithuanian","Luxembourgish","Multilingual","Polish","Portugues","Portuguese","Romansh","Russian","Sanskrit","Spanish","Swedish","Tamil","Ukrainian","Urdu","Vietnamese/tiếng Việt","Welsh"],"totalWebradioLanguages":39,"webradioCountries":["Argentina","Australia","Austria","Bahamas","Belgium","Bermuda","Bolivia","Brazil","Canada","Chile","China","Colombia","Costa Rica","Cuba","Czech Republic","Denmark","Estonia","France","Germany","Ghana","Greece","Hungary","India","Israel","Italy","Japan","Korea, Democratic People's Republic Of","Kyrgyzstan","Lithuania","Luxembourg","Malaysia","Netherlands","New Zealand","Nigeria","Poland","Portugal","Republica Dominicana","Russia","Spain","Sweden","Switzerland","Syria","The Netherlands","USA","Ukraine","United Kingdom","United States","Vietnam","Wales"],"totalwebradioCountries":49,"webradioStates":{"Argentina":[],"Australia":[],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":[],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":[],"Denmark":[],"Estonia":["Tallinn"],"France":["Corse"],"Germany":["Baden-Württemberg","Bayern","Hesse"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":[],"New Zealand":["Dunedin"],"Nigeria":[],"Poland":[],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":[],"Syria":[],"The Netherlands":[],"USA":["Michigan"],"Ukraine":[],"United Kingdom":[],"United States":["North Carolina","Ohio"],"Vietnam":["Ho Chi Minh City"],"Wales":[]},"totalwebradioStates":90,"webradioCodecs":["AAC","AAC+","ADTS","FLAC","HE-AAC","HLS","MP3","MPEG","OGG","OPUS"],"totalwebradioCodecs":10,"webradioBitrates":["32","48","50","56","64","66","89","96","99","123","128","160","192","196","224","256","320","384","465"],"totalwebradioBitrates":19,"webradioGenres":["2000's","60's","70's","80's","90's","Acoustic","Adult","Adult Contemporary","AfroHouse","AfroJazz","Afrobeat","Ambient","Americana Roots Music","Anime","Anime Groove","Archive","Atmospheric","Atmospheric Texture","Avantgarde","Bachelor Pad","Baladas","Baroque","Bass","Bebop","Bhangra","Big Band","Black Metal","Blues","Bollywood","Bop","Bossanova","Brazilian Music","Breakbeat","Britpop","Cajun","Canada","Carnatic","Catholic","Celtic","Charts","Children","Chill Out","City Pop","Classic Hits","Classic Rock","Classical","Classical Music","Club","College Radio","Combos","Commercial","Community","Community Radio","Contemporary","Contemporary Jazz","Cool Jazz","Corse","Country","Cover Songs","Culture","Cumbia","Current Affairs","DJ Mixes","Dance","Dancehall","Debate","Deep","Deep Ambient","Deep Bass","Deep House","Deep Tech","Deportes","Desi-Influenced Asian","Digitally Affected Analog Rock","Disco","Discussion","Down-Tempo","Drum'n'Bass","Dub","Dubstep","Easy Listening","Easy-Tempo","Eclectic","Education","Educational","Eighties","Electro-Acoustic","Electro-Pop","Electronic","Entertainment","Entretenimiento","Entrevistas","Ethnic","Evergreens","Exotica","Experimental","Fado","Fight","Flashback","Flim","Folk","Folklore","Football","Free Jazz","Freeform","Funk","Fusion","Future Funk","Future Soul","Game","Garage","Garage Rock","General","German Rap","Golden Oldies","Gospel","Gothic","Grime","Groove","Hard Bop","Hard Drums","Hard Rock","Hard Trance","Hardcore","Heavy Metal","Hebrew Pop","Hip-Hop","House","IDM","Independent","Independent Music","Indian Classical","Indian Instrumental","Indie","Indie Folk","Indie Pop","Indie Rock","Indigenous","Industrial","Information","Instrumental","Instrumental Hiphop","International","Interviews","J-pop","J-rock","Jazz","Jeebanmukhi","Journalism","Juke","Jungle","Jungle Trap","Kids","Laidback","Latin","Latin Hits","Latino","Liquid Trap","Lithuanian","Live","Lo-Fi","Local News","Lokageeti","Lounge","Lullabies","MPB","Mainstream","Mainstream Jazz","Mashup","Math Rock","Mediaeval","Mediaset","Meditation","Mellow Rock","Mellow Vocals Mostly Female","Merengue","Metal","Metalcore","Mid-Tempo","Mild Pop","Minimal","Minimal Beats","Modern","Modern Big Band","Modern Rock","Montreal","Mp3","Musica Cristiana","Música Latina","Neo-Soul","New Age","New Country","New Jazz","New Wave","News","News Talk","News. MPB","Non-commercial","Non-profit","Noticias","Noticiero","Notícias","Nu Disco","Nu Grooves","Nu Metal","OST","Oldies","Oldschool","Opera","Pagode","Paranormal","Party","Past Time Favorites","Past Time Favs","Patriotic","Political Talk","Politics","Pop","Pop Rock","Pop-Rock","Post Punk","Post-Metal","Post-Punk","Post-Rock","Post-bop","Progressive","Progressive House","Progressive Rock","Progressive Trance","Psy","Psych Rock","Psytrance","Public Radio","Punk","R'n'B","Rabindrasangeet","Radio Universitaria","Rap","Rave","Reggae","Regional","Releases","Renaissance","Requests","Rock","Rockabilly","Rocksteady Classic","Romantique","Romántico","Roots Music","Roots Reggae","Salsa","Samba","Schlager Music","Scifi","Sertanejo","Shoegaze","Ska","Smooth Jazz","Smooth Lounge","Soccer","Soft Rock","Soul","Soundscape","Soundtrack","Southern Rock","Space Music","Special Events","Spiritual","Spoken Word","Sport","Straight-ahead","Student Radio","Synth-Pop","Talk","Tamil Movie Songs","Tamil Radio","Tech Trance","Techno","Tiki","Top 40","Top Hits","Trance","Trancestep","Trip-Hop","Tropical/Urbana","Tv News","Uk Funky","Underground","University","University Radio","Uplifting Trance","Urbain","Urbana","Vaporwave","Variedades","Variety","Various","Vintage Music","Vocal","Vocal Trance","Walm","Weather","World Music","World News","Yoga","Youth"],"totalWebradioGenres":307,"webradioStatus":{"http___200_128_65_57_8000_live.m3u":{"date":"2024-07-03","count":1,"error":"http://200.128.65.57:8000/live: Server returned 404 Not Found"},"http___livestreams_radioton_de_http_rt-live-bw_m3u.m3u.AAC.64":{"date":"2024-07-03","count":16,"error":"http://livestreams.radioton.de/http/rt-live-mobile-bw.m3u: Invalid data found when processing input"},"http___yumicoradio_net_8000_stream.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x55abeda30b80] Connection to tcp://yumicoradio.net:8000 failed: Connection timed out\nhttp://yumicoradio.net:8000/stream: Connection timed out"},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"date":"2024-07-03","count":5,"error":"https://18003.live.streamtheworld.com/RT_SPAAC.aac: Server returned 403 Forbidden (access denied)"},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://22653.live.streamtheworld.com/TOPZEN.mp3: Server returned 403 Forbidden (access denied)"},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"date":"2024-07-03","count":4,"error":"https://akashvani.gov.in/radio/live.php?channel=5: Invalid data found when processing input"},"https___chokostream_com_8010_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x56222dcf0200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8010/live: Input/output error"},"https___chokostream_com_8050_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x561584cc1200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8050/live: Input/output error"},"https___chokostream_com_8070_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x559b88d98200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8070/live: Input/output error"},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"date":"2024-07-03","count":6,"error":"[tls @ 0x55acbb6bfbc0] A TLS fatal alert has been received.\nhttps://emisoras.dip-badajoz.es:58062/stream: Input/output error"},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3: Server returned 5XX Server Error reply"},"https___myradio24_org_radiometal.m3u":{"date":"2024-07-03","count":7,"error":"https://myradio24.org/radiometal: Server returned 404 Not Found"},"https___www_ragya_com_prahar.m3u":{"date":"2024-07-03","count":4,"error":"https://www.ragya.com/prahar: Invalid data found when processing input"}}} +{"timestamp":1720306059,"webradios":{"http___158_69_74_203_80_.m3u":{"Genre":["Jazz","Funk","Soul","World Music","Latin","Lounge","Nu Grooves"],"Name":"SwissGroove","Image":"http___158_69_74_203_80_.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://158.69.74.203:80/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u":{"Genre":["Rock","Lokageeti","Rabindrasangeet","Jeebanmukhi"],"Name":"Radio Bangla Net","Image":"http___18163_live_streamtheworld_com_SP_R3563475_SC.webp","Homepage":"https://radiobanglanet.com/","Country":"India","State":"","Region":"","Languages":["Bengali"],"Language":"Bengali","Description":"A Radio Station for all Bengalis","Codec":"AAC","Bitrate":64,"StreamUri":"http://18163.live.streamtheworld.com/SP_R3563475_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___200_128_65_57_8000_live.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UESC","Image":"http___200_128_65_57_8000_live.webp","Homepage":"http://radio.uesc.br/3.html","Country":"Brazil","State":"Bahia","Region":"Bahia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Inovação, conhecimento e música de qualidade!","Codec":"MPEG","Bitrate":128,"StreamUri":"http://200.128.65.57:8000/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___200_129_35_230_8081_aovivo_ogg_m3u.m3u":{"Genre":["MPB","News","Educational"],"Name":"Universitária FM","Image":"http___200_129_35_230_8081_aovivo_ogg_m3u.webp","Homepage":"http://www.radiouniversitariafm.com.br/","Country":"Brazil","State":"Ceará","Region":"Ceará","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://200.129.35.230:8081/aovivo.ogg.m3u","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___200_136_219_172_8000_radioufscar96_mp3.m3u":{"Genre":["News","Various"],"Name":"Rádio UFSCar 95.3 FM","Image":"http___200_136_219_172_8000_radioufscar96_mp3.webp","Homepage":"http://radio.ufscar.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFSCar - Escute Diferente","Codec":"MP3","Bitrate":128,"StreamUri":"http://200.136.219.172:8000/radioufscar96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___206_189_117_157_8000_stream.m3u":{"Genre":["Electronic","Grime","Hip-Hop","House"],"Name":"Rinse FM","Image":"http___206_189_117_157_8000_stream.webp","Homepage":"https://rinse.fm/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC+","Bitrate":128,"StreamUri":"http://206.189.117.157:8000/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[128],"highestBitrate":128},"http___217_20_116_68_32032_stream.m3u":{"Genre":["International"],"Name":"Sohos FM 88.7","Image":"http___217_20_116_68_32032_stream.webp","Homepage":"http://sohosfm.gr/","Country":"Greece","State":"","Region":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://217.20.116.68:32032/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___5_135_183_124_8073_stream.m3u":{"Genre":["Dance","Pop","Latino","Rock","House","Techno"],"Name":"Onda Torrente Radio","Image":"http___5_135_183_124_8073_stream.webp","Homepage":"https://www.ondatorrenteradio.com","Country":"Spain","State":"Valencia","Region":"Valencia","Languages":["Spanish"],"Language":"Spanish","Description":"Somos la radio de todo el mundo","Codec":"MP3","Bitrate":128,"StreamUri":"http://5.135.183.124:8073/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___54_173_171_80_8000_6forty.m3u":{"Genre":["Indie","Post-Rock","Post-Metal","Modern","Experimental"],"Name":"6forty Radio","Image":"http___54_173_171_80_8000_6forty.webp","Homepage":"http://www.6fortyradio.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"a home for interesting music","Codec":"MP3","Bitrate":192,"StreamUri":"http://54.173.171.80:8000/6forty","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___7878_go2stream_fr_8000_stream.m3u":{"Genre":["Corse"],"Name":"Radio Balagne","Image":"http___7878_go2stream_fr_8000_stream.webp","Homepage":"http://www.radiobalagne.com/","Country":"France","State":"Corse","Region":"Corse","Languages":["Corse","Francais"],"Language":"Corse, Francais","Description":"A voce insulana","Codec":"MPEG","Bitrate":128,"StreamUri":"http://7878.go2stream.fr:8000/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___79_120_39_202_8002_mathrock.m3u":{"Genre":["Math Rock"],"Name":"Caprice Radio Math Rock","Image":"http___79_120_39_202_8002_mathrock.webp","Homepage":"http://radcap.ru/mathrock.html","Country":"Russia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"http://79.120.39.202:8002/mathrock","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___81_92_238_33_80.m3u":{"Genre":["Pop","Charts"],"Name":"Eldoradio","Image":"http___81_92_238_33_80.webp","Homepage":"","Country":"Luxembourg","State":"","Region":"","Languages":["Luxembourgish"],"Language":"Luxembourgish","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://81.92.238.33:80","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___82_135_234_195_8000_goldfm_mp3.m3u":{"Genre":["Adult Contemporary","Rock"],"Name":"Gold FM","Image":"http___82_135_234_195_8000_goldfm_mp3.webp","Homepage":"https://goldfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/goldfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Kaunas)","Image":"http___82_135_234_195_8000_kelyje_kaunas_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_kaunas.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Klaipėda, Vilnius)","Image":"http___82_135_234_195_8000_kelyje_klaipeda_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_klaipeda.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u":{"Genre":["Community","Indie","Experimental","Pop","Rock","Techno"],"Name":"L'Eko des Garrigues","Image":"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.webp","Homepage":"http://www.ekodesgarrigues.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"OGG","Bitrate":320,"StreamUri":"http://91.121.159.124:8000/eko-des-garrigues-256k.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[320],"highestBitrate":320},"http___91_218_212_67_8000_stream.m3u":{"Genre":["Spoken Word"],"Name":"Hromadske Radio","Image":"http___91_218_212_67_8000_stream.webp","Homepage":"https://hromadske.radio/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine Talk","Codec":"MP3","Bitrate":160,"StreamUri":"http://91.218.212.67:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u":{"Genre":["Various"],"Name":"BBC World Service","Image":"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_world_service","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___antena1_newradio_it_stream_ext__mp3.m3u":{"Genre":["Adult Contemporary","Jazz","Pop","Smooth Jazz"],"Name":"Antena 1 São Paulo, SP (ZYD823 94,7 MHz FM)","Image":"http___antena1_newradio_it_stream_ext__mp3.webp","Homepage":"http://antena1.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"ANTENA1 - 94 7 FM","Codec":"AAC+","Bitrate":64,"StreamUri":"http://antena1.newradio.it/stream?ext=.mp3","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Hip-Hop","R'n'B","Soul","Gospel","Electronic"],"Name":"BBC Radio 1Xtra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/1xtra","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Indie","Rock","Funk"],"Name":"BBC Radio 6 Music","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_6music/bbc_6music.isml/bbc_6music-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Contemporary","Bollywood","Bhangra","Pop","Urbain"],"Name":"BBC Asian Network","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.webp","Homepage":"","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_asian_network/bbc_asian_network.isml/bbc_asian_network-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio Cymru","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru","Country":"Wales","State":"","Region":"","Languages":["Welsh"],"Language":"Welsh","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_cymru/bbc_radio_cymru.isml/bbc_radio_cymru-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u":{"Genre":["News","Discussion","Sport","Interviews"],"Name":"BBC Radio 5 Live","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/programmes/b0070hx6","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The latest sport with coverage and debate, featuring commentaries on the big games and sporting events.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_five_live/bbc_radio_five_live.isml/bbc_radio_five_live-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Archive"],"Name":"BBC Radio 4 Extra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4extra","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_four_extra/bbc_radio_four_extra.isml/bbc_radio_four_extra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourfm/bbc_radio_fourfm.isml/bbc_radio_fourfm-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4 LW","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Longwave broadcast of BBC Radio 4.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourlw/bbc_radio_fourlw.isml/bbc_radio_fourlw-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Charts"],"Name":"BBC Radio 1","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Dance"],"Name":"BBC Radio 1 Dance","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1dance","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A mix of classic, current and future dance music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Meditation"],"Name":"BBC Radio 1 Relax","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1relax","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A mix of relaxing and meditating music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Classical","Jazz","World Music"],"Name":"BBC Radio 3","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio 2","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_two/bbc_radio_two.isml/bbc_radio_two-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___audio1_ideastream_org_wclv_mp3.m3u":{"Genre":["Classical"],"Name":"WCLV Cleveland 104.9 - Classical","Image":"http___audio1_ideastream_org_wclv_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://audio1.ideastream.org/wclv.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___centova_rockhost_com_8001_stream.m3u":{"Genre":["Ethnic","Eclectic"],"Name":"Hollow Earth Radio","Image":"http___centova_rockhost_com_8001_stream.webp","Homepage":"https://www.hollowearthradio.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Non-commercial DIY radio station for underrepresented music, sounds and perspectives","Codec":"MP3","Bitrate":128,"StreamUri":"http://centova.rockhost.com:8001/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u":{"Genre":["Indie Rock"],"Name":"WEQX 102.7 Manchester, VT","Image":"http___crystalout_surfernetwork_com_8001_WEQX_MP3.webp","Homepage":"http://www.weqx.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The real alternative","Codec":"MP3","Bitrate":128,"StreamUri":"http://crystalout.surfernetwork.com:8001/WEQX_MP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___current_stream_publicradio_org_kcmp_mp3.m3u":{"Genre":["Indie"],"Name":"KCMP 89.3 FM - The Current","Image":"http___current_stream_publicradio_org_kcmp_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://current.stream.publicradio.org/kcmp.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___dancewave_online_dance_mp3.m3u":{"Genre":["Dance","House","Trance"],"Name":"Dance Wave!","Image":"http___dancewave_online_dance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet!","Codec":"MP3","Bitrate":128,"StreamUri":"http://dancewave.online/dance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_fipradio_fr_live_fip-midfi_mp3.m3u":{"Genre":["Classical","Jazz","Rock","World Music"],"Name":"France Inter Paris (FIP)","Image":"http___direct_fipradio_fr_live_fip-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.fipradio.fr/live/fip-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_franceculture_fr_live_franceculture-midfi_mp3.m3u":{"Genre":["Spoken Word","Current Affairs"],"Name":"France Culture Live","Image":"http___direct_franceculture_fr_live_franceculture-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.franceculture.fr/live/franceculture-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.m3u":{"Genre":["Classical"],"Name":"France Musique Classique Plus","Image":"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiqueclassiqueplus-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.m3u":{"Genre":["Contemporary"],"Name":"France Musique La Contemporaine","Image":"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelacontemporaine-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.m3u":{"Genre":["Jazz"],"Name":"France Musique La Jazz","Image":"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelajazz-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusique-midfi_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"France Musique Live","Image":"http___direct_francemusique_fr_live_francemusique-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusique-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___eagle_streemlion_com_4040_stream_icy_http.m3u":{"Genre":["Progressive Rock"],"Name":"Prog Frog","Image":"http___eagle_streemlion_com_4040_stream_icy_http.webp","Homepage":"https://prog-frog.com/","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Progressive Rock Radio Worldwide","Codec":"MP3","Bitrate":128,"StreamUri":"http://eagle.streemlion.com:4040/stream?icy=http","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u":{"Genre":["Jazz","Blues","Soul"],"Name":"Jazz FM","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.webp","Homepage":"https://planetradio.co.uk/jazz-fm/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Listen in Colour","Codec":"AAC","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/jazzhigh.aac?aw_0_1st.skey=1650998937","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.m3u":{"Genre":["Classical","News","Classical","Requests"],"Name":"Scala Radio","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/scalahigh.aac?aw_0_1st.skey=1650896299","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u":{"Genre":["Metal"],"Name":"La Grosse Radio Métal","Image":"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/metal/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u":{"Genre":["Reggae"],"Name":"La Grosse Radio Reggae","Image":"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/reggae/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-reggae-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u":{"Genre":["Rock"],"Name":"La Grosse Radio Rock","Image":"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/rock/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced!","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_stream_frequence3_net_frequence3_flac.m3u":{"Genre":["Pop","Charts"],"Name":"frequence3","Image":"http___hd_stream_frequence3_net_frequence3_flac.webp","Homepage":"https://www.frequence3.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"FLAC","Bitrate":0,"StreamUri":"http://hd.stream.frequence3.net/frequence3.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[0],"highestBitrate":0},"http___hirschmilch_de_7000_electronic_mp3.m3u":{"Genre":["Electronic"],"Name":"Hirschmilch Electronic","Image":"http___hirschmilch_de_7000_electronic_mp3.webp","Homepage":"https://hirschmilch.de/","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7.","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/electronic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_prog-house_mp3.m3u":{"Genre":["Progressive House"],"Name":"Hirschmilch Prog-House","Image":"http___hirschmilch_de_7000_prog-house_mp3.webp","Homepage":"https://hirschmilch.de/prog-house","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Progressive House on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/prog-house.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_psytrance_mp3.m3u":{"Genre":["Psytrance"],"Name":"Hirschmilch Psytrance","Image":"http___hirschmilch_de_7000_psytrance_mp3.webp","Homepage":"https://hirschmilch.de/psytrance","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Psytrance on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/psytrance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_techno_mp3.m3u":{"Genre":["Techno"],"Name":"Hirschmilch Techno","Image":"http___hirschmilch_de_7000_techno_mp3.webp","Homepage":"https://hirschmilch.de/techno","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Techno on https://hirschmilch.de","Codec":"MP3","Bitrate":123,"StreamUri":"http://hirschmilch.de:7000/techno.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[123],"highestBitrate":123},"http___ice1_somafm_com_7soul-128-aac.m3u":{"Genre":["Soul","Vintage Music"],"Name":"Soma FM - Seven Inch Soul","Image":"http___ice1_somafm_com_7soul-128-aac.webp","Homepage":"https://somafm.com/7soul/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Vintage soul tracks from the original 45 RPM vinyl.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/7soul-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_beatblender-128-aac.m3u":{"Genre":["Electronic","Deep House","Down-Tempo"],"Name":"Soma FM - Beat Blender","Image":"http___ice1_somafm_com_beatblender-128-aac.webp","Homepage":"https://somafm.com/beatblender/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A late night blend of deep-house and downtempo chill.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/beatblender-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_bootliquor-128-aac.m3u":{"Genre":["Country","Americana Roots Music"],"Name":"Soma FM - Boot Liquor","Image":"http___ice1_somafm_com_bootliquor-128-aac.webp","Homepage":"https://somafm.com/bootliquor/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Americana Roots music for Cowhands, Cowpokes and Cowtippers.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/bootliquor-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_brfm-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - Black Rock FM","Image":"http___ice1_somafm_com_brfm-128-aac.webp","Homepage":"https://somafm.com/brfm/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"From the Playa to the world, for the annual Burning Man festival.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/brfm-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-128-aac.m3u":{"Genre":["Electronic","IDM"],"Name":"Soma FM - cliqhop idm","Image":"http___ice1_somafm_com_cliqhop-128-aac.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/cliqhop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-256-mp3.m3u":{"Genre":["IDM"],"Name":"cliqhop idm - SomaFM","Image":"http___ice1_somafm_com_cliqhop-256-mp3.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"MP3","Bitrate":256,"StreamUri":"http://ice1.somafm.com/cliqhop-256-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ice1_somafm_com_covers-128-mp3.m3u":{"Genre":["Pop","Cover Songs"],"Name":"Soma FM - Covers","Image":"http___ice1_somafm_com_covers-128-mp3.webp","Homepage":"https://somafm.com/covers/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Just covers. Songs you know by artists you don't. We've got you covered.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice1.somafm.com/covers-128-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_deepspaceone-128-aac.m3u":{"Genre":["Electronic","Ambient","Experimental","Space Music"],"Name":"Soma FM - Deep Space One","Image":"http___ice1_somafm_com_deepspaceone-128-aac.webp","Homepage":"https://somafm.com/deepspaceone/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Deep ambient electronic, experimental and space music. For inner and outer space exploration.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/deepspaceone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_defcon-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - DEF CON Radio","Image":"http___ice1_somafm_com_defcon-128-aac.webp","Homepage":"https://somafm.com/defcon/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Music for Hacking. The DEF CON Year-Round Channel.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/defcon-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_digitalis-128-aac.m3u":{"Genre":["Rock","Digitally Affected Analog Rock"],"Name":"Soma FM - Digitalis","Image":"http___ice1_somafm_com_digitalis-128-aac.webp","Homepage":"https://somafm.com/digitalis/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Digitally affected analog rock to calm the agitated heart.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/digitalis-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dronezone-128-aac.m3u":{"Genre":["Electronic","Ambient","Atmospheric Texture","Minimal Beats"],"Name":"Soma FM - Drone Zone","Image":"http___ice1_somafm_com_dronezone-128-aac.webp","Homepage":"https://somafm.com/dronezone/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Served best chilled, safe with most medications. Atmospheric textures with minimal beats.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dronezone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dubstep-128-aac.m3u":{"Genre":["Dub","Dubstep","Deep Bass"],"Name":"Soma FM - Dub Step Beyond","Image":"http___ice1_somafm_com_dubstep-128-aac.webp","Homepage":"https://somafm.com/dubstep/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Dubstep, Dub and Deep Bass. May damage speakers at high volume.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dubstep-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_fluid-128-aac.m3u":{"Genre":["Electronic","Instrumental Hiphop","Future Soul","Liquid Trap"],"Name":"Soma FM - Fluid","Image":"http___ice1_somafm_com_fluid-128-aac.webp","Homepage":"https://somafm.com/fluid/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Drown in the electronic sound of instrumental hiphop, future soul and liquid trap.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/fluid-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_folkfwd-128-aac.m3u":{"Genre":["Folk","Indie Folk"],"Name":"Soma FM - Folk Forward","Image":"http___ice1_somafm_com_folkfwd-128-aac.webp","Homepage":"https://somafm.com/folkfwd/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Indie Folk, Alt-folk and the occasional folk classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/folkfwd-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_groovesalad-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo"],"Name":"Soma FM - Groove Salad","Image":"http___ice1_somafm_com_groovesalad-128-aac.webp","Homepage":"https://somafm.com/groovesalad/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A nicely chilled plate of ambient/downtempo beats and grooves.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/groovesalad-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_illstreet-128-aac.m3u":{"Genre":["Lounge","Bachelor Pad","Exotica","Vintage Music"],"Name":"Soma FM - Illinois Street Lounge","Image":"http___ice1_somafm_com_illstreet-128-aac.webp","Homepage":"https://somafm.com/illstreet/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Classic bachelor pad, playful exotica and vintage music of tomorrow.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/illstreet-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_indiepop-128-aac.m3u":{"Genre":["Pop","Indie Pop"],"Name":"Soma FM - Indie Pop Rocks!","Image":"http___ice1_somafm_com_indiepop-128-aac.webp","Homepage":"https://somafm.com/indiepop/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"New and classic favorite indie pop tracks.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/indiepop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_live-128-aac.m3u":{"Genre":["Electronic","Live","Special Events"],"Name":"Soma FM - Live","Image":"http___ice1_somafm_com_live-128-aac.webp","Homepage":"https://somafm.com/live/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Special Live Events and rebroadcasts of past live events.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/live-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_lush-128-aac.m3u":{"Genre":["Electronic","Mellow Vocals Mostly Female"],"Name":"Soma FM - Lush","Image":"http___ice1_somafm_com_lush-128-aac.webp","Homepage":"https://somafm.com/lush/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Sensuous and mellow female vocals, many with an electronic influence.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/lush-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_metal-128-aac.m3u":{"Genre":["Metal"],"Name":"Soma FM - Metal Detector","Image":"http___ice1_somafm_com_metal-128-aac.webp","Homepage":"https://somafm.com/metal/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/metal-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_missioncontrol-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - Mission Control","Image":"http___ice1_somafm_com_missioncontrol-128-aac.webp","Homepage":"https://somafm.com/missioncontrol/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Celebrating NASA and Space Explorers everywhere.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/missioncontrol-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_poptron-128-aac.m3u":{"Genre":["Pop","Electro-Pop","Indie Rock"],"Name":"Soma FM - PopTron","Image":"http___ice1_somafm_com_poptron-128-aac.webp","Homepage":"https://somafm.com/poptron/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Electropop and indie dance rock with sparkle and pop.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/poptron-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_secretagent-128-aac.m3u":{"Genre":["Pop","Easy-Tempo","60's"],"Name":"Soma FM - Secret Agent","Image":"http___ice1_somafm_com_secretagent-128-aac.webp","Homepage":"https://somafm.com/secretagent/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/secretagent-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_seventies-128-aac.m3u":{"Genre":["Rock","70's","Mellow Rock"],"Name":"Soma FM - Left Coast 70s","Image":"http___ice1_somafm_com_seventies-128-aac.webp","Homepage":"https://somafm.com/seventies/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Mellow album rock from the Seventies. Yacht not required.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/seventies-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sf1033-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - SF 10-33","Image":"http___ice1_somafm_com_sf1033-128-aac.webp","Homepage":"https://somafm.com/sf1033/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Ambient music mixed with the sounds of San Francisco public safety radio traffic.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sf1033-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sonicuniverse-128-aac.m3u":{"Genre":["Jazz","Avantgarde"],"Name":"Soma FM - Sonic Universe","Image":"http___ice1_somafm_com_sonicuniverse-128-aac.webp","Homepage":"https://somafm.com/sonicuniverse/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Transcending the world of jazz with eclectic, avant-garde takes on tradition.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sonicuniverse-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_spacestation-128-aac.m3u":{"Genre":["Electronic","Mid-Tempo"],"Name":"Soma FM - Space Station Soma","Image":"http___ice1_somafm_com_spacestation-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/spacestation-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_suburbsofgoa-128-aac.m3u":{"Genre":["World Music","Desi-Influenced Asian","World Music"],"Name":"Soma FM - Suburbs of Goa","Image":"http___ice1_somafm_com_suburbsofgoa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/suburbsofgoa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thetrip-128-aac.m3u":{"Genre":["Pop","Progressive House","Trance"],"Name":"Soma FM - The Trip","Image":"http___ice1_somafm_com_thetrip-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thetrip-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thistle-128-aac.m3u":{"Genre":["Folk","Celtic","Roots Music"],"Name":"Soma FM - ThistleRadio","Image":"http___ice1_somafm_com_thistle-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thistle-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_u80s-128-aac.m3u":{"Genre":["Pop","80's","Synth-Pop","New Wave"],"Name":"Soma FM - Underground 80s","Image":"http___ice1_somafm_com_u80s-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/u80s-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice-1_streamhoster_com_lv_wqed--893.m3u":{"Genre":["Classical"],"Name":"WQED Pittsburgh 89.3 - Classical","Image":"http___ice-1_streamhoster_com_lv_wqed--893.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice-1.streamhoster.com/lv_wqed--893","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice2_somafm_com_gsclassic-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo","2000's"],"Name":"Soma FM - Groove Salad Classic","Image":"http___ice2_somafm_com_gsclassic-128-aac.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice2.somafm.com/gsclassic-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice4_somafm_com_reggae-128-aac.m3u":{"Genre":["Reggae","Ska","Rocksteady Classic","Deep"],"Name":"Soma FM - Heavyweight Reggae","Image":"http___ice4_somafm_com_reggae-128-aac.webp","Homepage":"https://somafm.com/reggae/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice4.somafm.com/reggae-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice5_securenetsystems_net_KCSM.m3u":{"Genre":["Jazz"],"Name":"KCSM","Image":"http___ice5_securenetsystems_net_KCSM.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://ice5.securenetsystems.net/KCSM","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___ice_bassdrive_net_80_stream.m3u":{"Genre":["Drum'n'Bass"],"Name":"Bassdrive Radio","Image":"http___ice_bassdrive_net_80_stream.webp","Homepage":"https://www.bassdrive.com/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice.bassdrive.net:80/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u":{"Genre":["Rock"],"Name":"SuperStereo 1","Image":"http___icecast_centaury_cl_7570_SuperStereoHiRes1.webp","Homepage":"https://www.hiresaudio.online/superstereo-1/","Country":"Chile","State":"","Region":"","Languages":["English"],"Language":"English","Description":"YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’","Codec":"OGG","Bitrate":48,"StreamUri":"http://icecast.centaury.cl:7570/SuperStereoHiRes1","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[48],"highestBitrate":48},"http___icecast_err_ee_80_raadio4korge_mp3.m3u":{"Genre":["News","Pop","Jazz","Classical"],"Name":"Raadio 4","Image":"http___icecast_err_ee_80_raadio4korge_mp3.webp","Homepage":"https://r4.err.ee/","Country":"Estonia","State":"Tallinn","Region":"Tallinn","Languages":["Russian"],"Language":"Russian","Description":"Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia","Codec":"MP3","Bitrate":320,"StreamUri":"http://icecast.err.ee:80/raadio4korge.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___icecast_omroep_nl_radio1-bb-aac.m3u":{"Genre":["News"],"Name":"NPO Radio 1","Image":"http___icecast_omroep_nl_radio1-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio1-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio2-bb-aac.m3u":{"Genre":["Pop","Dance","Oldies","Rock"],"Name":"NPO Radio 2","Image":"http___icecast_omroep_nl_radio2-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio2-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio4-bb-aac.m3u":{"Genre":["Classical"],"Name":"NPO Radio 4","Image":"http___icecast_omroep_nl_radio4-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio4-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_unitedradio_it_Virgin_mp3.m3u":{"Genre":["Mediaset","Pop Rock"],"Name":"Virgin Radio Italia","Image":"http___icecast_unitedradio_it_Virgin_mp3.webp","Homepage":"http://www.virginradio.it/","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.unitedradio.it/Virgin.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u":{"Genre":["Classical"],"Name":"VRT - Klara Continuo","Image":"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klaracontinuo-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klara-high_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"VRT - Klara","Image":"http___icecast_vrtcdn_be_klara-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klara-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm-high_mp3.m3u":{"Genre":["Pop"],"Name":"VRT - MNM","Image":"http___icecast_vrtcdn_be_mnm-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"VRT - MNM Hits","Image":"http___icecast_vrtcdn_be_mnm_hits-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm_hits-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u":{"Genre":["Eclectic"],"Name":"VRT - Radio 2","Image":"http___icecast_vrtcdn_be_ra2vlb-high_mp3.webp","Homepage":"https://radio2.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/ra2vlb-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio1-high_mp3.m3u":{"Genre":["Pop","Contemporary","Rock","News"],"Name":"VRT - Radio 1","Image":"http___icecast_vrtcdn_be_radio1-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio1-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Unwind","Image":"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-unwind","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio2_unwind-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru-high_mp3.m3u":{"Genre":["Indie"],"Name":"VRT - StuBru - Studio Brussels","Image":"http___icecast_vrtcdn_be_stubru-high_mp3.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u":{"Genre":["Pop","Rock"],"Name":"VRT Studio Brussel De Tijdloze","Image":"http___icecast_vrtcdn_be_stubru_tijdloze_aac.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru_tijdloze.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginHardRock_mp3.m3u":{"Genre":["Hard Rock","Mediaset"],"Name":"Virgin Radio Hard Rock","Image":"http___icy_unitedradio_it_VirginHardRock_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginHardRock.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginRockClassics_mp3.m3u":{"Genre":["Classic Rock","Mediaset"],"Name":"Virgin Radio Classic Rock","Image":"http___icy_unitedradio_it_VirginRockClassics_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginRockClassics.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___kdhx-ice_streamguys1_com_80_live.m3u":{"Genre":["Indie"],"Name":"KDHX 88.1 FM St. Louis","Image":"http___kdhx-ice_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://kdhx-ice.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___kuvo-ice_streamguys_org_kuvo-aac-128.m3u":{"Genre":["Jazz"],"Name":"KUVO 89.3 FM Denver","Image":"http___kuvo-ice_streamguys_org_kuvo-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvo-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.m3u":{"Genre":["Pop","R'n'B","Hip-Hop"],"Name":"KUVO HD2","Image":"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvohd2-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u":{"Genre":["Indie","Rock","Pop","New Age","Punk","Post-Punk","Electronic","Contemporary"],"Name":"KZradio הקצה","Image":"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.webp","Homepage":"https://kzradio.net/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Independent Internet-radio based in Tel Aviv","Codec":"HE-AAC","Bitrate":128,"StreamUri":"http://kzradio.mediacast.co.il/kzradio_live/kzradio/icecast.audio","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[128],"highestBitrate":128},"http___listen_jazz88_org_ksds_mp3.m3u":{"Genre":["Jazz"],"Name":"San Diego Jazz 88.3","Image":"http___listen_jazz88_org_ksds_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://listen.jazz88.org/ksds.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___listen-nme_sharp-stream_com_nme1high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 1 - Classic & New Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme1high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme1high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen-nme_sharp-stream_com_nme2high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 2 - New & Upfront Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme2high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme2high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___live-aacplus-64_kexp_org_kexp64_aac.m3u":{"Genre":["Indie"],"Name":"KEXP 90.3 FM Seattle","Image":"http___live-aacplus-64_kexp_org_kexp64_aac.webp","Homepage":"https://www.kexp.org/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://live-aacplus-64.kexp.org/kexp64.aac","alternativeStreams":{"http___live-mp3-128_kexp_org_":{"StreamUri":"http://live-mp3-128.kexp.org/","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[128,64],"highestBitrate":128},"http___live-icy_dr_dk_A_A03H_mp3.m3u":{"Genre":["News","Talk"],"Name":"DR P1","Image":"http___live-icy_dr_dk_A_A03H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A03H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A04H_mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"DR P2","Image":"http___live-icy_dr_dk_A_A04H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A04H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A05H_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"DR P3","Image":"http___live-icy_dr_dk_A_A05H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A05H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A08H_mp3.m3u":{"Genre":["Pop","News"],"Name":"DR P4","Image":"http___live-icy_dr_dk_A_A08H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A08H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A29H_mp3.m3u":{"Genre":["Indie","Indie Rock","Rock"],"Name":"DR P6 Beat","Image":"http___live-icy_dr_dk_A_A29H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A29H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J","Image":"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/2TJW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.m3u":{"Genre":["Country"],"Name":"ABC Country","Image":"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/CTRW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.m3u":{"Genre":["Jazz"],"Name":"ABC Jazz","Image":"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/JAZW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J Unearthed","Image":"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.webp","Homepage":"https://www.abc.net.au/triplejunearthed/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/UNEW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live_radioec_com_ua_8000_kiev.m3u":{"Genre":["Pop","Rock","Techno"],"Name":"KrainaFM","Image":"http___live_radioec_com_ua_8000_kiev.webp","Homepage":"http://krainafm.com.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine's first all-Ukrainian-language radio","Codec":"MP3","Bitrate":128,"StreamUri":"http://live.radioec.com.ua:8000/kiev","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live_radioton_de_rt-live-bw.m3u":{"Genre":["80's"],"Name":"Radioton","Image":"http___live_radioton_de_rt-live-bw.webp","Homepage":"https://www.radioton.de/","Country":"Germany","State":"Baden-Württemberg","Region":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"Lang leben die 80er.","Codec":"MP3","Bitrate":192,"StreamUri":"http://live.radioton.de/rt-live-bw","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mainstream_amazingradios_com_8000_blues128.m3u":{"Genre":["Blues"],"Name":"Amazing Blues","Image":"http___mainstream_amazingradios_com_8000_blues128.webp","Homepage":"https://amazingradios.com/","Country":"USA","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://mainstream.amazingradios.com:8000/blues128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.m3u":{"Genre":["Classical"],"Name":"MDR Klassik","Image":"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://mdr-284350-0.cast.mdr.de/mdr/284350/0/aac/high/stream.aac","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___media-ice_musicradio_com_ClassicFMMP3.m3u":{"Genre":["Classical"],"Name":"Classic FM","Image":"http___media-ice_musicradio_com_ClassicFMMP3.webp","Homepage":"https://www.classicfm.com/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://media-ice.musicradio.com/ClassicFMMP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___media_radio-libertaire_org_8080_radiolib_mp3.m3u":{"Genre":["Various","Talk"],"Name":"Radio Libertaire (France)","Image":"http___media_radio-libertaire_org_8080_radiolib_mp3.webp","Homepage":"https://www.radio-libertaire.net/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://media.radio-libertaire.org:8080/radiolib.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mediaserv21_live-streams_nl_8000_live.m3u":{"Genre":["Contemporary"],"Name":"Hi On Line - France","Image":"http___mediaserv21_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv21.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8000_live.m3u":{"Genre":["Pop","Golden Oldies"],"Name":"Hi On Line - Gold","Image":"http___mediaserv30_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8086_live.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop (320K)","Image":"http___mediaserv30_live-streams_nl_8086_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8086/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8088_live.m3u":{"Genre":["Classical"],"Name":"Hi On Line - Classical","Image":"http___mediaserv30_live-streams_nl_8088_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8088/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8034_live.m3u":{"Genre":["Latin"],"Name":"Hi On Line - Latin","Image":"http___mediaserv33_live-streams_nl_8034_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8034/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8036_live.m3u":{"Genre":["Lounge"],"Name":"Hi On Line - Lounge","Image":"http___mediaserv33_live-streams_nl_8036_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8036/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8006_live.m3u":{"Genre":["Jazz"],"Name":"Hi On Line - Jazz","Image":"http___mediaserv38_live-streams_nl_8006_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8006/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8027_live.m3u":{"Genre":["World Music"],"Name":"Hi On Line - World","Image":"http___mediaserv38_live-streams_nl_8027_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8027/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u":{"Genre":["Classical"],"Name":"Mother Earth Klassik","Image":"http___motherearth_streamserver24_com_18910_motherearth_klassik.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"http://motherearth.streamserver24.com:18910/motherearth.klassik","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u":{"Genre":["80's"],"Name":"harmony.fm","Image":"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.webp","Homepage":"https://www.harmonyfm.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Alles 80er!","Codec":"AAC","Bitrate":48,"StreamUri":"http://mp3.harmonyfm.de/harmonyfm/livestream.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u":{"Genre":["Pop","Dance","House","Hip-Hop","R'n'B"],"Name":"planet radio","Image":"http___mp3_planetradio_de_planetradio_hqlivestream_aac.webp","Homepage":"https://www.planetradio.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.aac","alternativeStreams":{"http___mp3_planetradio_de_planetradio_livestream_aac":{"StreamUri":"http://mp3.planetradio.de/planetradio/livestream.aac","Codec":"AAC","Bitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_mp3":{"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[48,128],"highestBitrate":128},"http___mscp2_live-streams_nl_8100_flac_flac.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop","Image":"http___mscp2_live-streams_nl_8100_flac_flac.webp","Homepage":"http://www.hionline.eu","Country":"Netherlands","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"FLAC","Bitrate":128,"StreamUri":"http://mscp2.live-streams.nl:8100/flac.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[128],"highestBitrate":128},"http___mscp3_live-streams_nl_8250_class-high_aac.m3u":{"Genre":["Classical"],"Name":"Naim Classical","Image":"http___mscp3_live-streams_nl_8250_class-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8250/class-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8340_jazz-high_aac.m3u":{"Genre":["Jazz"],"Name":"Naim Jazz","Image":"http___mscp3_live-streams_nl_8340_jazz-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8340/jazz-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8360_high_aac.m3u":{"Genre":["Eclectic"],"Name":"Naim Radio","Image":"http___mscp3_live-streams_nl_8360_high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8360/high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___msmn7_co_8018_stream.m3u":{"Genre":["Indie"],"Name":"CDNX","Image":"http___msmn7_co_8018_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://msmn7.co:8018/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ninarfm_grtvstream_com_8896__.m3u":{"Genre":["Various","News"],"Name":"Ninar FM نينار اف ام","Image":"http___ninarfm_grtvstream_com_8896__.webp","Homepage":"http://ninarfm.com/","Country":"Syria","State":"","Region":"","Languages":["Arabic"],"Language":"Arabic","Description":"Ninar FM نينار اف ام","Codec":"MP3","Bitrate":96,"StreamUri":"http://ninarfm.grtvstream.com:8896/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___npr-ice_streamguys1_com_live_mp3.m3u":{"Genre":["News","News Talk","Political Talk","Politics","Public Radio","Talk"],"Name":"NPR - 24 Hour Program Stream","Image":"http___npr-ice_streamguys1_com_live_mp3.webp","Homepage":"https://www.npr.org/about-npr/472557877/npr-program-stream","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"NPR Program Stream","Codec":"MP3","Bitrate":96,"StreamUri":"http://npr-ice.streamguys1.com/live.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___okradio_rtvhd_net_8130__.m3u":{"Genre":["Pop","Música Latina"],"Name":"Vox Radio - 105.5 FM","Image":"http___okradio_rtvhd_net_8130__.webp","Homepage":"http://www.voxradio.fm/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música.","Codec":"AAC","Bitrate":56,"StreamUri":"http://okradio.rtvhd.net:8130/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[56],"highestBitrate":56},"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u":{"Genre":["Brazilian Music","Contemporary","Pop","Rock"],"Name":"Rádio Cidade","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.webp","Homepage":"https://radiocidade.fm/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Cidade - Rio de Janeiro","Codec":"AAC+","Bitrate":48,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[48],"highestBitrate":48},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.m3u":{"Genre":["Classical"],"Name":"WRTI Philadelphia 90.1 - Classical","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_CLASSICAL.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.m3u":{"Genre":["Jazz"],"Name":"WRTI Philadelphia 90.1 - Jazz","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_JAZZ.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___play_organlive_com_8002_320.m3u":{"Genre":["Classical"],"Name":"OrganLive.com","Image":"http___play_organlive_com_8002_320.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320oe.m3u":{"Genre":["Classical"],"Name":"Organ Experience","Image":"http___play_organlive_com_8002_320oe.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320oe","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320pb.m3u":{"Genre":["Classical","Baroque"],"Name":"Positivly Baroque","Image":"http___play_organlive_com_8002_320pb.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320pb","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u":{"Genre":["News"],"Name":"VRT - NWS","Image":"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.webp","Homepage":"https://www.vrt.be/vrtnws/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://progressive-audio.lwc.vrtcdn.be/content/fixed/11_11niws-snip_hi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___q2stream_wqxr_org_q2.m3u":{"Genre":["Classical"],"Name":"WQXR Q2 - Living Music, Living Composers","Image":"http___q2stream_wqxr_org_q2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://q2stream.wqxr.org/q2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio80k_out_airtime_pro_8000_radio80k_a.m3u":{"Genre":["Community Radio","Freeform","Variety"],"Name":"Radio 80000 Munich, Germany","Image":"http___radio80k_out_airtime_pro_8000_radio80k_a.webp","Homepage":"http://www.radio80k.de/","Country":"Germany","State":"","Region":"","Languages":["English","German"],"Language":"English, German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio80k.out.airtime.pro:8000/radio80k_a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radioaovivo_senado_gov_br_canal2_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado Canal 2","Image":"http___radioaovivo_senado_gov_br_canal2_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado Canal 2","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.gov.br/canal2.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_senado_leg_br_fm_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado","Image":"http___radioaovivo_senado_leg_br_fm_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado 91.7 FM","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.leg.br/fm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u":{"Genre":["Classical","MPB"],"Name":"Rádio da Universidade 1080 AM (UFRGS)","Image":"http___radioaovivo_ufrgs_br_8000_stream_mp3.webp","Homepage":"https://www.ufrgs.br/radio/","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio da Universidade 1080 AM (UFRGS)","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.ufrgs.br:8000/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radio_comunica_ufrn_br_8000_live_aac.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária Natal 88.9 FM (UFRN)","Image":"http___radio_comunica_ufrn_br_8000_live_aac.webp","Homepage":"https://www.instagram.com/radiouniversitarianatal/","Country":"Brazil","State":"Rio Grande Do Norte","Region":"Rio Grande Do Norte","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Transforma Natal, transforma você!","Codec":"AAC","Bitrate":128,"StreamUri":"http://radio.comunica.ufrn.br:8000/live.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___radio_linn_co_uk_8000_autodj.m3u":{"Genre":["Jazz"],"Name":"Linn Jazz","Image":"http___radio_linn_co_uk_8000_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8000/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8003_autodj.m3u":{"Genre":["Eclectic"],"Name":"Linn Radio","Image":"http___radio_linn_co_uk_8003_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8003/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8004_autodj.m3u":{"Genre":["Classical"],"Name":"Linn Classical","Image":"http___radio_linn_co_uk_8004_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8004/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_m-1_fm_lietus_mp3.m3u":{"Genre":["Lithuanian","Various"],"Name":"Lietus","Image":"http___radio_m-1_fm_lietus_mp3.webp","Homepage":"https://www.lietus.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio.m-1.fm/lietus/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radionz-ice_streamguys_com_80_concert_mp3.m3u":{"Genre":["Classical"],"Name":"Radio New Zealand - Concert","Image":"http___radionz-ice_streamguys_com_80_concert_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/concert.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radionz-ice_streamguys_com_80_national_mp3.m3u":{"Genre":["Eclectic","Various","Current Affairs"],"Name":"Radio New Zealand - National","Image":"http___radionz-ice_streamguys_com_80_national_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/national.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radio_plaza_one_mp3.m3u":{"Genre":["Vaporwave","Future Funk","Chill Out"],"Name":"Nightwave Plaza","Image":"http___radio_plaza_one_mp3.webp","Homepage":"https://plaza.one/","Country":"Japan","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity.","Codec":"MP3","Bitrate":128,"StreamUri":"http://radio.plaza.one/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio_stereoscenic_com_ama-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"A.M. Ambient","Image":"http___radio_stereoscenic_com_ama-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/ama-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radio_stereoscenic_com_asp-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"Ambient Sleeping Pill","Image":"http___radio_stereoscenic_com_asp-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/asp-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___retro_dancewave_online_retrodance_mp3.m3u":{"Genre":["90's","Dance"],"Name":"Dance Wave Retro!","Image":"http___retro_dancewave_online_retrodance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All about Dance before 2000!","Codec":"MP3","Bitrate":128,"StreamUri":"http://retro.dancewave.online/retrodance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___rootslegacy_fr_8080__listen_mp3.m3u":{"Genre":["Dub","Roots Reggae"],"Name":"Roots Legacy Radio - Dub UK & Roots Reggae","Image":"http___rootslegacy_fr_8080__listen_mp3.webp","Homepage":"https://www.rootslegacy.fr/","Country":"France","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":224,"StreamUri":"http://rootslegacy.fr:8080/;listen.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[224],"highestBitrate":224},"http___rtvhd_net_9942__.m3u":{"Genre":["Rock","Baladas"],"Name":"IQ Radio - 93.9 FM","Image":"http___rtvhd_net_9942__.webp","Homepage":"http://www.iqmedios.com/","Country":"Costa Rica","State":"","Region":"","Languages":["English"],"Language":"English","Description":"IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más.","Codec":"AAC","Bitrate":64,"StreamUri":"http://rtvhd.net:9942/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u":{"Genre":["Classical","Classical Music"],"Name":"Rádio MEC FM","Image":"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecfmrio","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio MEC FM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://122722d.ha.azioncdn.net/ebc/radiomecfm/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u":{"Genre":["MPB"],"Name":"Rádio MEC AM","Image":"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecamrio","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio MEC AM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://132722d.ha.azioncdn.net/ebc/radiomec/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"Genre":["Soccer","News"],"Name":"Rádio Transamérica 100.1 FM (São Paulo)","Image":"https___18003_live_streamtheworld_com_RT_SPAAC_aac.webp","Homepage":"https://radiotransamerica.com.br","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio onde você estiver!","Codec":"AAC","Bitrate":32,"StreamUri":"https://18003.live.streamtheworld.com/RT_SPAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"http___s1_slotex_pl_7430_stream.m3u":{"Genre":["Indie","Pop","Rock"],"Name":"Mittendrin ALT!NEU Radio der deutschen Minderheit","Image":"http___s1_slotex_pl_7430_stream.webp","Homepage":"https://mittendrin.pl/de/radio-altneu.html","Country":"Poland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://s1.slotex.pl:7430/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u":{"Genre":["Community"],"Name":"2nurfm","Image":"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.webp","Homepage":"https://2nurfm.com.au","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Good times and great music","Codec":"MP3","Bitrate":96,"StreamUri":"https://21413.live.streamtheworld.com:443/2NURFMAAC_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"Genre":["Lounge"],"Name":"Zen FM","Image":"https___22653_live_streamtheworld_com_TOPZEN_mp3.webp","Homepage":"","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://22653.live.streamtheworld.com/TOPZEN.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u":{"Genre":["Gospel","Various"],"Name":"Rádio Melodia 97.5 FM","Image":"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.webp","Homepage":"https://melodia.com.br/player/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A voz que fala ao coração!","Codec":"AAC","Bitrate":32,"StreamUri":"https://24483.live.streamtheworld.com/MELODIAFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u":{"Genre":["Classic Hits","Indie"],"Name":"KINK 80's","Image":"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.webp","Homepage":"https://kink.nl","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"Alive and Kicking","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_DNA_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25293_live_streamtheworld_com_443_KINK_SC.m3u":{"Genre":["Modern Rock"],"Name":"KINK","Image":"https___25293_live_streamtheworld_com_443_KINK_SC.webp","Homepage":"https://www.kink.nl","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"No alternative","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u":{"Genre":["Hard Rock"],"Name":"KINK Distortion","Image":"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.webp","Homepage":"https://www.kink.nl/distortion","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"non-stop de beste metal, hardrock en metalcore","Codec":"MP3","Bitrate":192,"StreamUri":"https://25323.live.streamtheworld.com:443/KINK_DISTORTION_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u":{"Genre":["Pop","Flim"],"Name":"Radio Daijiworld","Image":"https___26453_live_streamtheworld_com_SAM08AAC013_SC.webp","Homepage":"http://www.radiodaijiworld.com/","Country":"India","State":"Mangalore","Region":"Mangalore","Languages":["Konkani"],"Language":"Konkani","Description":"Online RADIO station for konkani & Tulu music","Codec":"AAC","Bitrate":64,"StreamUri":"https://26453.live.streamtheworld.com/SAM08AAC013_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u":{"Genre":["Community Radio","Independent"],"Name":"PBS 106.7FM (Progressive Broadcasting Service)","Image":"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.webp","Homepage":"https://www.pbsfm.org.au","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"PBS 106.7FM (Progressive Broadcasting Service)","Codec":"AAC","Bitrate":128,"StreamUri":"https://27253.live.streamtheworld.com/3PBS_FMAAC128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u":{"Genre":["Journalism","Soccer","Football","News"],"Name":"Rádio CBN Rio 92.5 FM","Image":"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.webp","Homepage":"https://cbn.globoradio.globo.com","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que toca notícia!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27403.live.streamtheworld.com/CBN_RJAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u":{"Genre":["Pop-Rock","Sertanejo","Youth"],"Name":"Rádio Disney 91.3 FM","Image":"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.webp","Homepage":"https://radiodisney.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que te ouve","Codec":"AAC","Bitrate":320,"StreamUri":"https://27403.live.streamtheworld.com/DISNEY_BRA_SP_ADP/HLS/playlist.m3u8?dist=web-radiodisney","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u":{"Genre":["MPB","Pop","Flashback"],"Name":"Rádio JB 99.9 FM","Image":"https___27433_live_streamtheworld_com_JBFMAAC_aac.webp","Homepage":"https://jb.fm","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e Informação!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27433.live.streamtheworld.com/JBFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u":{"Genre":["Community","Catholic"],"Name":"Rádio Serra Verde 98.7 FM","Image":"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.webp","Homepage":"https://www.serraverde.fm.br/","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Aqui é o seu lugar!","Codec":"MP3","Bitrate":128,"StreamUri":"https://5a2b083e9f360.streamlock.net/serraverdefm/serraverdefm.stream/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___8016_brasilstream_com_br_stream.m3u":{"Genre":["Soccer","Various"],"Name":"Rádio Difusora 96.9 FM","Image":"https___8016_brasilstream_com_br_stream.webp","Homepage":"https://difusora24h.com","Country":"Brazil","State":"Amazonas","Region":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"O amor do Amazonas esta no ar!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://8016.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u":{"Genre":["News","MPB","Sport"],"Name":"Rádio Nacional do Rio de Janeiro","Image":"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalrioam","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional 87.1 FM 1130 AM","Codec":"HLS","Bitrate":99,"StreamUri":"https://82722d.ha.azioncdn.net/ebc/radionacionalriodejaneiro/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[99],"highestBitrate":99},"https___8923_brasilstream_com_br_stream.m3u":{"Genre":["Local News","News","Talk","Variety"],"Name":"Super Rádio Tupi 96.5 (Tupi FM)","Image":"https___8923_brasilstream_com_br_stream.webp","Homepage":"https://tupi.fm/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder","Codec":"AAC+","Bitrate":32,"StreamUri":"https://8923.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___99_mediacast_co_il_99fm_aac__m4a.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"eco99fm אקו99","Image":"https___99_mediacast_co_il_99fm_aac__m4a.webp","Homepage":"https://eco99fm.maariv.co.il","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HE-AAC","Bitrate":64,"StreamUri":"https://99.mediacast.co.il/99fm_aac?.m4a","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[64],"highestBitrate":64},"https___a2_asurahosting_com_8800_radio_mp3.m3u":{"Genre":["Political Talk","Patriotic"],"Name":"Multicanal Radio","Image":"https___a2_asurahosting_com_8800_radio_mp3.webp","Homepage":"https://multicanalradio.com","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://a2.asurahosting.com:8800/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u":{"Genre":["Pop","Releases","Oldies","Rock","Pop"],"Name":"Absolut music XL","Image":"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://absolut-musicxl.live-sm.absolutradio.de/absolut-musicxl/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u":{"Genre":["Electronic"],"Name":"Deep Space Radio","Image":"https___ais-edge102-live365-dal02_cdnstream_com_a71161.webp","Homepage":"https://deepspaceradio.com/","Country":"USA","State":"Michigan","Region":"Michigan","Languages":["English"],"Language":"English","Description":"Artists and DJs who are working to promote Detroit’s Electronic Music and Art.","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-edge102-live365-dal02.cdnstream.com/a71161","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u":{"Genre":["Indie","Rock","Post-Punk","Garage Rock","Psych Rock","New Wave","Gothic"],"Name":"BAGeL Radio","Image":"https___ais-sa3_cdnstream1_com_2606_128_mp3.webp","Homepage":"https://www.bagelradio.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Radio as it should be: commercial-free listener-supported live-hosted","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-sa3.cdnstream1.com/2606_128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"Genre":["Indian Classical","Carnatic"],"Name":"Raagam","Image":"https___akashvani_gov_in_radio_live_php_channel_5.webp","Homepage":"https://prasarbharati.gov.in/channel-raagam/","Country":"India","State":"Karnataka","Region":"Karnataka","Languages":["Multilingual","Kannada"],"Language":"Multilingual, Kannada","Description":"Raagam Radio is an online station from Bangalore (India), open since 26 January 2016.","Codec":"MP3","Bitrate":50,"StreamUri":"https://akashvani.gov.in/radio/live.php?channel=5","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[50],"highestBitrate":50},"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Mejor FM - 99.1 FM","Image":"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.lamejor.co.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-lamejor-lamejor.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Noticiero"],"Name":"Monumental - 93.5 FM","Image":"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.monumental.co.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-monumental-monumental.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u":{"Genre":["Schlager Music"],"Name":"Antenne Schlager","Image":"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.webp","Homepage":"https://www.antenne-schlager.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"German Schlager music station from Hannover, Lower Saxony, Germany","Codec":"MP3","Bitrate":192,"StreamUri":"https://antnds.streamabc.net/ands-antenneschlager-mp3-192-8742257","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u":{"Genre":["Commercial","Pop","Rock","Top Hits"],"Name":"RDL Radio Diffusione Libera","Image":"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.webp","Homepage":"https://www.radiodiffusionelibera.com","Country":"Italy","State":"Salerno","Region":"Salerno","Languages":["Italian"],"Language":"Italian","Description":"RDL Radio Diffusione Libera powered by RPIGroup","Codec":"MP3","Bitrate":192,"StreamUri":"https://asvradiostream.asvstudios.it/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___audio-mp3_ibiblio_org_wxyc_mp3.m3u":{"Genre":["College Radio","Various"],"Name":"WXYC Chapel Hill 89.3FM","Image":"https___audio-mp3_ibiblio_org_wxyc_mp3.webp","Homepage":"https://wxyc.org/","Country":"United States","State":"North Carolina","Region":"North Carolina","Languages":["English"],"Language":"English","Description":"UNC-Chapel Hill's student-run, freeform radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://audio-mp3.ibiblio.org/wxyc.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___audio_tv_unesp_br_unespfm.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária UNESP 105.7 FM","Image":"https___audio_tv_unesp_br_unespfm.webp","Homepage":"https://www.radio.unesp.br","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UNESP 105.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://audio.tv.unesp.br/unespfm","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Bel RTL","Image":"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.webp","Homepage":"https://www.rtl.be/belrtl/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Bel RTL est une station de radio généraliste privée du groupe RTL.","Codec":"MP3","Bitrate":192,"StreamUri":"https://belrtl.ice.infomaniak.ch/belrtl-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___bytefm_cast_addradio_de_bytefm_main_high_stream.m3u":{"Genre":["Eclectic"],"Name":"ByteFM","Image":"https___bytefm_cast_addradio_de_bytefm_main_high_stream.webp","Homepage":"https://www.byte.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://bytefm.cast.addradio.de/bytefm/main/high/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___sc3_radiocaroline_net_8030.m3u":{"Genre":["Rock","Classic Rock"],"Name":"Radio Caroline","Image":"http___sc3_radiocaroline_net_8030.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://sc3.radiocaroline.net:8030","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___c7_radioboss_fm_18205_stream.m3u":{"Genre":["Mashup"],"Name":"Bootie Mashup","Image":"https___c7_radioboss_fm_18205_stream.webp","Homepage":"https://bootiemashup.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The best bootleg mashups in the world ever.","Codec":"MP3","Bitrate":320,"StreamUri":"https://c7.radioboss.fm:18205/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___carajas2_jmvstream_com_live.m3u":{"Genre":["News","Sport","Football","Soccer"],"Name":"Rádio Clube do Pará 104.7 FM 690 AM","Image":"https___carajas2_jmvstream_com_live.webp","Homepage":"https://radioclube.dol.com.br/","Country":"Brazil","State":"Pará","Region":"Pará","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Equipe Bola de Ouro","Codec":"AAC","Bitrate":128,"StreamUri":"https://carajas2.jmvstream.com/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cast4_asurahosting_com_proxy_miles_stream.m3u":{"Genre":["Talk","Paranormal","Spiritual","70's","80's","90's"],"Name":"NYE Underground","Image":"https___cast4_asurahosting_com_proxy_miles_stream.webp","Homepage":"https://www.nyeug.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Streaming Art Bell classics and his favorite bumper music - ad free.","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.asurahosting.com/proxy/miles/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cast4_audiostream_com_br_2655_mp3.m3u":{"Genre":["Various","News"],"Name":"Rádio Liberdade","Image":"https___cast4_audiostream_com_br_2655_mp3.webp","Homepage":"https://www.redepampa.com.br/radios/radio-liberdade/","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"No campo e na cidade, Rádio Liberdade!","Codec":"MP3","Bitrate":32,"StreamUri":"https://cast4.audiostream.com.br:2655/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u":{"Genre":["News"],"Name":"Radio 98.4","Image":"https___cast4_my-control-panel_com_proxy_anastas2_stream.webp","Homepage":"https://www.radio984.gr/","Country":"Greece","State":"","Region":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.my-control-panel.com/proxy/anastas2/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cdn4_onstream_audio_9267_stream.m3u":{"Genre":["News"],"Name":"Radio Prensa Latina","Image":"https___cdn4_onstream_audio_9267_stream.webp","Homepage":"https://radio.prensa-latina.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://cdn4.onstream.audio:9267/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u":{"Genre":["News"],"Name":"Kan Bet כאן ב","Image":"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=3","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":256,"StreamUri":"https://cdnapisec.kaltura.com/p/2717431/sp/271743100/playManifest/entryId/1_eu4h60uh/format/applehttp/protocol/https/uiConfId/46986963/a.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[256],"highestBitrate":256},"https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u":{"Genre":["News","Talk","Pop"],"Name":"103FM","Image":"https___cdn_cybercdn_live_103FM_Live_icecast_audio.webp","Homepage":"https://103fm.maariv.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://cdn.cybercdn.live/103FM/Live/icecast.audio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u":{"Genre":["Rock","Hard Rock","Heavy Metal"],"Name":"UnDinamo","Image":"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.webp","Homepage":"https://undinamo.com/","Country":"Argentina","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"https://cdn.instream.audio/:9339/stream?in_device_id=WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"https___centova_svdns_com_br_20110_stream.m3u":{"Genre":["Pop"],"Name":"morena fm easy","Image":"https___centova_svdns_com_br_20110_stream.webp","Homepage":"https://www.morenafm.com.br","Country":"Brazil","State":"Mato Grosso","Region":"Mato Grosso","Languages":["Portugues"],"Language":"Portugues","Description":"boa mussica , boa programaçion","Codec":"AAC","Bitrate":128,"StreamUri":"https://centova.svdns.com.br:20110/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8010_live.m3u":{"Genre":["Tropical/Urbana"],"Name":"Ritmo Hits","Image":"https___chokostream_com_8010_live.webp","Homepage":"https://ritmohits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Donde El Ritmo No Tiene Fin!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8010/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8050_live.m3u":{"Genre":["Urbana"],"Name":"La Vaina Hits","Image":"https___chokostream_com_8050_live.webp","Homepage":"https://lavainahits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Detonando Hits!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8050/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8070_live.m3u":{"Genre":["Musica Cristiana"],"Name":"ExaltacionFM","Image":"https___chokostream_com_8070_live.webp","Homepage":"https://exaltacionfm.com/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Ondas De Avivamiento!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8070/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cloud_cdnseguro_com_2611_stream.m3u":{"Genre":["Ethnic","Indigenous"],"Name":"Rádio Yandê","Image":"https___cloud_cdnseguro_com_2611_stream.webp","Homepage":"https://radioyande.com","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Indigenous Languages","Brazilian Portuguese"],"Language":"Indigenous Languages, Brazilian Portuguese","Description":"Radio Yandê - Etnomidia Indígena","Codec":"MP3","Bitrate":128,"StreamUri":"https://cloud.cdnseguro.com:2611/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact 2000","Image":"https___contact2_ice_infomaniak_ch_contact2-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contact2.ice.infomaniak.ch/contact2-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u":{"Genre":["Children","Kids"],"Name":"Radio Contact Kids","Image":"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactkids.ice.infomaniak.ch/contactkids-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Mix","Image":"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactmix.ice.infomaniak.ch/contactmix-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Fresh","Image":"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactplus.ice.infomaniak.ch/contactplus-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Urban","Image":"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contacturban.ice.infomaniak.ch/contacturban-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u":{"Genre":["Pop"],"Name":"Omroep Zeeland","Image":"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.webp","Homepage":"https://www.omroepzeeland.nl/radio-zeeland","Country":"Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://d3isaxd2t6q8zm.cloudfront.net/icecast/omroepzeeland/omroepzeeland_radio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u":{"Genre":["80's","70's","60's","90's","Oldies","Classic Hits"],"Name":"KVKVI - Classic Hits","Image":"https___dc1_serverse_com_proxy_gjlrjfhp_stream.webp","Homepage":"https://www.kvkvi.com","Country":"United States","State":"Ohio","Region":"Ohio","Languages":["English"],"Language":"English","Description":"The Greatest Hits and The Songs You Missed","Codec":"MP3","Bitrate":160,"StreamUri":"https://dc1.serverse.com/proxy/gjlrjfhp/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u":{"Genre":["Adult Contemporary","News","Sport"],"Name":"Bayern 1","Image":"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern1/index.html","Country":"Germany","State":"Bayern","Region":"Bayern","Languages":["German"],"Language":"German","Description":"The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting.","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u":{"Genre":["Eclectic"],"Name":"Bayern 2","Image":"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern2/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br2/live/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u":{"Genre":["Classical"],"Name":"BR-Klassik","Image":"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.webp","Homepage":"https://www.br-klassik.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u":{"Genre":["Jazz"],"Name":"DR P8 Jazz","Image":"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.webp","Homepage":"https://www.dr.dk/lyd/p8jazz","Country":"Denmark","State":"","Region":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://DRliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8","alternativeStreams":{"http___live-icy_gss_dr_dk_8000_A_A22H_mp3":{"StreamUri":"http://live-icy.gss.dr.dk:8000/A/A22H.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[320,128],"highestBitrate":320},"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u":{"Genre":["Pop","80's","90's"],"Name":"Absolut Relax","Image":"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://edge56.live-sm.absolutradio.de/absolut-relax/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u":{"Genre":["Pop","Charts","Electronic","Hip-Hop"],"Name":"Absolut Hot","Image":"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://edge68.live-sm.absolutradio.de/absolut-hot/stream/aacp?aggregator=smk-m3u-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"Genre":["Pop","Rock","Latin"],"Name":"Radio Ciudad del Granito","Image":"https___emisoras_dip-badajoz_es_58062_stream.webp","Homepage":"https://quintanadelaserena.org/","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Quintana de la Serena (Badajoz, Spain) local radio","Codec":"OPUS","Bitrate":0,"StreamUri":"https://emisoras.dip-badajoz.es:58062/stream","alternativeStreams":{},"allCodecs":["OPUS"],"allBitrates":[0],"highestBitrate":0},"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u":{"Genre":["Indie","Rock","Pop","New Age","Disco","Electronic","Contemporary"],"Name":"EOL Essence of Life רדיו מהות החיים","Image":"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.webp","Homepage":"https://radio.eol.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"AAC","Bitrate":32,"StreamUri":"https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___everest_radionanet_com_8990_stream_1698969239317.m3u":{"Genre":["MPB","University Radio","News"],"Name":"Universitária FM 104.7 (UFES)","Image":"https___everest_radionanet_com_8990_stream_1698969239317.webp","Homepage":"https://universitariafm.ufes.br/","Country":"Brazil","State":"Espirito Santo","Region":"Espirito Santo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da UFES (Universitária FM 104.7)","Codec":"MPEG","Bitrate":32,"StreamUri":"https://everest.radionanet.com:8990/stream?1698969239317","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u":{"Genre":["MPB","News","University Radio"],"Name":"Rádio USP - São Paulo","Image":"https___flow_emm_usp_br_8008_radiousp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da USP (Universidade de São Paulo)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u":{"Genre":["Adult Contemporary","University Radio"],"Name":"Rádio USP - Ribeirão Preto","Image":"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da USP (USP Ribeirão Preto)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-rp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000er","Image":"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/2000er/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u":{"Genre":["90's"],"Name":"FluxFM - 90s","Image":"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben.","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/90s/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.m3u":{"Genre":["News","Various"],"Name":"FluxFM","Image":"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/FluxFM/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.m3u":{"Genre":["Electronic","Soundscape","Atmospheric"],"Name":"FluxFM - Hippie Trippy Garden Pretty","Image":"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/htgp/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.m3u":{"Genre":["Various"],"Name":"FluxFM - Mini Flux","Image":"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/mini-flux/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u":{"Genre":["Dance","Groove","R'n'B","Soul"],"Name":"Fun Radio Belgique","Image":"https___funradiobe_ice_infomaniak_ch_funradiobe-high.webp","Homepage":"https://www.funradio.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française.","Codec":"MP3","Bitrate":128,"StreamUri":"https://funradiobe.ice.infomaniak.ch/funradiobe-high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___gartenheimradio_sp_radio_fm_stream.m3u":{"Genre":["Various"],"Name":"Gartenheim-Radio","Image":"https___gartenheimradio_sp_radio_fm_stream.webp","Homepage":"https://gartenheim-radio.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"70er, 80er, 90er Schlager-Pop und die Hits von Heute","Codec":"MP3","Bitrate":192,"StreamUri":"https://gartenheimradio.sp.radio.fm/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u":{"Genre":["Pop","Top Hits","Past Time Favorites"],"Name":"Galgalatz גלגלצ","Image":"https___glzwizzlv_bynetcdn_com_glglz_mp3.webp","Homepage":"https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glglz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___glzwizzlv_bynetcdn_com_glz_mp3.m3u":{"Genre":["News","Talk","Current Affairs"],"Name":"Galei Zahal GLZ גלי צהל גלצ","Image":"https___glzwizzlv_bynetcdn_com_glz_mp3.webp","Homepage":"https://glz.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"IDF Radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___grenal_audiostream_com_br_20000_aac.m3u":{"Genre":["Sport"],"Name":"Rádio Grenal","Image":"https___grenal_audiostream_com_br_20000_aac.webp","Homepage":"https://www.radiogrenal.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Grenal","Codec":"AAC+","Bitrate":32,"StreamUri":"https://grenal.audiostream.com.br:20000/aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___happyrave-rex_radioca_st_stream.m3u":{"Genre":["Rave","Breakbeat","Hardcore","Jungle","Oldschool"],"Name":"Happy Rave Radio","Image":"https___happyrave-rex_radioca_st_stream.webp","Homepage":"happyraveradio.com","Country":"Netherlands","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Classic happy hardcore, rave, and breakbeat hardcore.","Codec":"MP3","Bitrate":320,"StreamUri":"https://happyrave-rex.radioca.st/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___shoutcastunlimited_com_8512.m3u":{"Genre":["Progressive Rock","Metal"],"Name":"PRM - Prog Rock & Metal","Image":"http___shoutcastunlimited_com_8512.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://shoutcastunlimited.com:8512","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___hts03_kshost_com_br_13392_live.m3u":{"Genre":["News","Various"],"Name":"Rádio Força Aérea 91.1 FM","Image":"https___hts03_kshost_com_br_13392_live.webp","Homepage":"https://www.fab.mil.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Força Aérea 91.1 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://hts03.kshost.com.br:13392/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___http-live_sr_se_p2musik-aac-320.m3u":{"Genre":["Classical","Jazz"],"Name":"SR P2","Image":"https___http-live_sr_se_p2musik-aac-320.webp","Homepage":"https://sverigesradio.se/p2","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://http-live.sr.se/p2musik-aac-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___ice1_somafm_com_vaporwaves-128-aac.m3u":{"Genre":["Electronic","Electro-Acoustic","IDM","Shoegaze","Post-Rock"],"Name":"Soma FM - Vaporwaves","Image":"https___ice1_somafm_com_vaporwaves-128-aac.webp","Homepage":"https://somafm.com/vaporwaves/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All Vaporwave. All the time.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice1.somafm.com/vaporwaves-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_bossa-128-aac.m3u":{"Genre":["Bossanova","World Music"],"Name":"Soma FM - Bossa Beyond","Image":"https___ice5_somafm_com_bossa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/bossa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_insound-128-aac.m3u":{"Genre":["Pop","Oldies"],"Name":"Soma FM - The In-Sound","Image":"https___ice5_somafm_com_insound-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/insound-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice64_securenetsystems_net_WBJC.m3u":{"Genre":["Classical"],"Name":"WBJC Baltimore 91.5 - Classical","Image":"https___ice64_securenetsystems_net_WBJC.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ice64.securenetsystems.net/WBJC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_darkzone-128-aac.m3u":{"Genre":["Electronic","Ambient","Deep Ambient"],"Name":"Soma FM - The Dark Zone","Image":"https___ice6_somafm_com_darkzone-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/darkzone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_n5md-128-aac.m3u":{"Genre":["Ambient","Post-Rock","Experimental","Electronic"],"Name":"Soma FM - n5MD Radio","Image":"https___ice6_somafm_com_n5md-128-aac.webp","Homepage":"https://somafm.com/n5md/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/n5md-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_synphaera-128-aac.m3u":{"Genre":["Electronic","Synth-Pop"],"Name":"Soma FM - Synphaera","Image":"https___ice6_somafm_com_synphaera-128-aac.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/synphaera-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_tikitime-128-aac.m3u":{"Genre":["Tiki","World Music"],"Name":"Soma FM - Tiki Time","Image":"https___ice6_somafm_com_tikitime-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/tikitime-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___icecasthd_net_proxy_abejorral_live.m3u":{"Genre":["Public Radio"],"Name":"Abejorral Stereo","Image":"https___icecasthd_net_proxy_abejorral_live.webp","Homepage":"https://www.asenred.com/abejorral/","Country":"Colombia","State":"Antioquia","Region":"Antioquia","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecasthd.net/proxy/abejorral/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___icecast_live_proxy_zerock_zerock.m3u":{"Genre":["Rock","Metal","Post Punk","Punk","Indie"],"Name":"Ze Rock Radio","Image":"https___icecast_live_proxy_zerock_zerock.webp","Homepage":"https://zerockradio.com/","Country":"Israel","State":"","Region":"","Languages":["Hebrew","English"],"Language":"Hebrew, English","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://icecast.live/proxy/zerock/zerock","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___icecast_lyl_live_live.m3u":{"Genre":["Ambient","Contemporary","Electronic","Electronic","Experimental","Independent"],"Name":"LYL Radio","Image":"https___icecast_lyl_live_live.webp","Homepage":"http://lyl.live/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://icecast.lyl.live/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u":{"Genre":["Various","Variety"],"Name":"France Inter","Image":"https___icecast_radiofrance_fr_franceinter-midfi_mp3.webp","Homepage":"https://www.franceinter.fr/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"France Inter est une station de radio généraliste nationale publique française du groupe Radio France.","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.radiofrance.fr/franceinter-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_teveo_cu_3MCwWg3V.m3u":{"Genre":["Latin Hits","Reggae"],"Name":"Radio Taíno 93.3 FM","Image":"https___icecast_teveo_cu_3MCwWg3V.webp","Homepage":"www.radiotaino.icrt.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Taíno, la FM de Cuba","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/3MCwWg3V","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_b3jbfThq.m3u":{"Genre":["News"],"Name":"Radio Reloj","Image":"https___icecast_teveo_cu_b3jbfThq.webp","Homepage":"https://www.radioreloj.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Canal de Informacíon Continua","Codec":"MP3","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/b3jbfThq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_kHKL7tWd.m3u":{"Genre":["Sport","News"],"Name":"Radio Rebelde AM","Image":"https___icecast_teveo_cu_kHKL7tWd.webp","Homepage":"https://www.radiorebelde.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"La emisora de la Revolución","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/kHKL7tWd","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_McW3fLhs.m3u":{"Genre":["News","Various"],"Name":"Radio Habana Cuba","Image":"https___icecast_teveo_cu_McW3fLhs.webp","Homepage":"www.radiohc.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Una voz de amistad que recorre el mundo","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/McW3fLhs","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_NqWrgw7j.m3u":{"Genre":["Variety"],"Name":"Radio Sancti Spíritus 1210 AM 106.3 FM","Image":"https___icecast_teveo_cu_NqWrgw7j.webp","Homepage":"https://www.radiosanctispiritus.cu/es/","Country":"Cuba","State":"Sancti Spíritus","Region":"Sancti Spíritus","Languages":["Spanish"],"Language":"Spanish","Description":"Contemporánea en su tradición","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/NqWrgw7j","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_X9XNRkW4.m3u":{"Genre":["Various","News"],"Name":"Radio Minas 104.9 FM","Image":"https___icecast_teveo_cu_X9XNRkW4.webp","Homepage":"https://www.radiominas.icrt.cu","Country":"Cuba","State":"Minas De Matahambre","Region":"Minas De Matahambre","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Minas 104.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/X9XNRkW4","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 1 Classics","Image":"https___icecast_vrtcdn_be_radio1_classics-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio1_classics-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Bene Bene","Image":"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-bene-bene","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio2_benebene-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_walmradio_com_8443_jazz.m3u":{"Genre":["Avantgarde","Bebop","Big Band","Bop","Combos","Contemporary","Contemporary Jazz","Cool Jazz","Free Jazz","Fusion","Hard Bop","Mainstream","Mainstream Jazz","Modern Big Band","Post-bop","Straight-ahead","Walm"],"Name":"Adroit Jazz Underground","Image":"https___icecast_walmradio_com_8443_jazz.webp","Homepage":"https://walmradio.com/jazz","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Real Jazz in HD","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecast.walmradio.com:8443/jazz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ice_coldstar_online_high_ogg.m3u":{"Genre":["Trance","Progressive","Psy","House","Deep House","Deep Tech"],"Name":"Coldstar Radio","Image":"https___ice_coldstar_online_high_ogg.webp","Homepage":"https://coldstar.online/","Country":"Kyrgyzstan","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"OGG","Bitrate":256,"StreamUri":"https://ice.coldstar.online/high.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[256],"highestBitrate":256},"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.m3u":{"Genre":["Classical"],"Name":"RCO Live","Image":"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice_fabricahost_com_br_radiomarinha.m3u":{"Genre":["News","Various"],"Name":"Rádio Marinha","Image":"https___ice_fabricahost_com_br_radiomarinha.webp","Homepage":"https://www.marinha.mil.br/radio-marinha","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Marinha FM: Navegando nas Ondas do Rádio","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice.fabricahost.com.br/radiomarinha","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ic_streann_com_disneycostarica.m3u":{"Genre":["Pop"],"Name":"Radio Disney - 101.1 FM","Image":"https___ic_streann_com_disneycostarica.webp","Homepage":"https://cr.radiodisney.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica.","Codec":"MP3","Bitrate":192,"StreamUri":"https://ic.streann.com/disneycostarica","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___iheart_4zzz_org_au_4zzz.m3u":{"Genre":["Indie"],"Name":"4ZZZ FM 102.1 - Alternative","Image":"https___iheart_4zzz_org_au_4zzz.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://iheart.4zzz.org.au/4zzz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u":{"Genre":["Adult Contemporary","Past Time Favs","Soft Rock","Mild Pop","Easy Listening"],"Name":"Kan 88 כאן","Image":"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=4","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kan88.media.kan.org.il/hls/live/2024812/2024812/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u":{"Genre":["Indie"],"Name":"Kanal K","Image":"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.webp","Homepage":"https://www.kanalk.ch/","Country":"Switzerland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream.","Codec":"MP3","Bitrate":160,"StreamUri":"https://kanalk.streamabc.net/91-kanalk-mp3-192-5146873","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u":{"Genre":["Hebrew Pop","Top Hits","Past Time Favorites"],"Name":"Kan Gimel רשת גימל","Image":"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/content/kan/kan-gimel/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":384,"StreamUri":"https://kangimmel.media.kan.org.il/hls/live/2024813/2024813/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[384],"highestBitrate":384},"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"Kol Hamusica קול המוסיקה","Image":"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=7","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kanliveicy.media.kan.org.il/icy/kankolhamusica_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___sk_cri_cn_915_m3u8.m3u":{"Genre":["World Music"],"Name":"CRI Radio EZFM 91.5 FM","Image":"http___sk_cri_cn_915_m3u8.webp","Homepage":"http://ezfm.cri.cn/live","Country":"China","State":"","Region":"","Languages":["English"],"Language":"English","Description":"CRI Radio EZFM 91.5 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"http://sk.cri.cn/915.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Bent 24","Image":"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.webp","Homepage":"https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com//kcrw_192k_mp3_bent24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Eclectic 24","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.webp","Homepage":"https://www.kcrw.com/music/shows/eclectic24/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_e24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u":{"Genre":["Eclectic","News"],"Name":"KCRW Live 89.9FM","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.webp","Homepage":"https://www.kcrw.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_on_air","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u":{"Genre":["DJ Mixes","Electronic","Independent"],"Name":"Kiosk Radio","Image":"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.webp","Homepage":"https://kioskradio.com/","Country":"Belgium","State":"","Region":"","Languages":["English","French"],"Language":"English, French","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Reggae","Classical","Eclectic"],"Name":"DjamRadio","Image":"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.webp","Homepage":"https://www.djamradio.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"The Eclectic French Radio","Codec":"MP3","Bitrate":128,"StreamUri":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___legacy_scahw_com_au_2buddha_32.m3u":{"Genre":["Chill Out"],"Name":"Buddha Radio","Image":"https___legacy_scahw_com_au_2buddha_32.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":32,"StreamUri":"https://legacy.scahw.com.au/2buddha_32","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u":{"Genre":["IDM"],"Name":"Limbik Frequencies","Image":"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.webp","Homepage":"https://limbikfreq.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A tasty mix of downtempo electronica","Codec":"MP3","Bitrate":128,"StreamUri":"https://limbikfreq.com/listen/limbik_frequencies/128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___listen7_myradio24_com_69366.m3u":{"Genre":["Various"],"Name":"Pyongyang FM","Image":"https___listen7_myradio24_com_69366.webp","Homepage":"https://korea-dpr.com","Country":"Korea, Democratic People's Republic Of","State":"Pyongyang","Region":"Pyongyang","Languages":["Korean"],"Language":"Korean","Description":"Pyongyang FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://listen7.myradio24.com/69366","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u":{"Genre":["Jazz"],"Name":"Jazz24","Image":"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.webp","Homepage":"https://www.jazz24.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"https://live.amperwave.net/direct/ppm-jazz24aac256-ibc1","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u":{"Genre":["Pop","Hip-Hop","Electronic"],"Name":"DASDING","Image":"https___liveradio_swr_de_sw282p3_dasding_play_mp3.webp","Homepage":"https://www.dasding.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Jugendradioprogramm des Südwestrundfunks","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/dasding/play.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 BW","Image":"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"Baden-Württemberg","Region":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"SWR1 Baden-Württemberg","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 RP","Image":"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR1 Rheinland-Pfalz","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"SWR2","Image":"https___liveradio_swr_de_sw282p3_swr2_play_mp3.webp","Homepage":"https://www.swr.de/swr2/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Kultur neu entdecken","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr2/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr2_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr2/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr2_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr2/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR3","Image":"https___liveradio_swr_de_sw282p3_swr3_play_mp3.webp","Homepage":"https://www.swr3.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der beste Musikmix. Einfach SWR3","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr3/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr3_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr3/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr3_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr3/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 BW","Image":"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 RP","Image":"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR Aktuell","Image":"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.webp","Homepage":"https://www.swr.de/swraktuell/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swraktuell/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swraktuell/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swraktuell/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___live_streams_klassikradio_de_klassikradio-deutschland.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Live","Image":"https___live_streams_klassikradio_de_klassikradio-deutschland.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-deutschland","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_streams_klassikradio_de_klassikradio-movie.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Movie","Image":"https___live_streams_klassikradio_de_klassikradio-movie.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-movie","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u":{"Genre":["Romántico"],"Name":"Musical - 97.5 FM","Image":"https___live_turadio_stream_7005_stream_type_http_nocache_596.webp","Homepage":"https://radiomusical.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Musical es uno de los principales medios de comunicación de Costa Rica.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7005/stream?type=http&nocache=596","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___live_turadio_stream_7006__.m3u":{"Genre":["Romántico"],"Name":"Sinfonola - 90.3 FM","Image":"https___live_turadio_stream_7006__.webp","Homepage":"https://radiosinfonola.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7006/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___livex_radiopopolare_it_radiopop_FLID_3.m3u":{"Genre":["Information","News","Culture","Talk"],"Name":"Radio Popolare","Image":"https___livex_radiopopolare_it_radiopop_FLID_3.webp","Homepage":"https://livex.radiopopolare.it","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"The radio who gives a voice to those who have not.","Codec":"MP3","Bitrate":64,"StreamUri":"https://livex.radiopopolare.it/radiopop?FLID=3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u":{"Genre":["Rock","Eclectic"],"Name":"Mad Music Asylum","Image":"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://madmusicasylum.radioca.st/stream?type=http&nocache=36907","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___maggie_torontocast_com_8076_aac.m3u":{"Genre":["Indie","Rock","Eclectic"],"Name":"JB Radio2 (320K)","Image":"https___maggie_torontocast_com_8076_aac.webp","Homepage":"https://jb-radio.net/","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"JB Radio is an alternative,non-commercial,web radio station.","Codec":"AAC","Bitrate":320,"StreamUri":"https://maggie.torontocast.com:8076/aac","alternativeStreams":{"https___maggie_torontocast_com_8076_flac":{"StreamUri":"https://maggie.torontocast.com:8076/flac","Codec":"FLAC","Bitrate":0}},"allCodecs":["AAC","FLAC"],"allBitrates":[0,320],"highestBitrate":320},"https___maximum_hostingradio_ru_maximum96_aacp.m3u":{"Genre":["Pop","Rock","Hard Rock"],"Name":"Radio Maximum","Image":"https___maximum_hostingradio_ru_maximum96_aacp.webp","Homepage":"https://maximum.ru/","Country":"Russia","State":"","Region":"","Languages":["Russian"],"Language":"Russian","Description":"Radio Maximum provides twenty four hour mix of several genres and styles of music.","Codec":"AAC","Bitrate":96,"StreamUri":"https://maximum.hostingradio.ru/maximum96.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"https___mediaserv73_live-streams_nl_18058_stream.m3u":{"Genre":["Classical","Mediaeval","Renaissance"],"Name":"Ancient FM - Mediaeval and Renaissance Music","Image":"https___mediaserv73_live-streams_nl_18058_stream.webp","Homepage":"","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://mediaserv73.live-streams.nl:18058/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u":{"Genre":["Rock"],"Name":"Radio Mega 98.3 Puro Rock Nacional","Image":"https___mega983_stweb_tv_mega983_live_playlist_m3u8.webp","Homepage":"https://radiomega.fm/","Country":"Argentina","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"HLS","Bitrate":66,"StreamUri":"https://mega983.stweb.tv/mega983/live/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[66],"highestBitrate":66},"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Mint (RTL)","Image":"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.webp","Homepage":"https://mint.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007.","Codec":"MP3","Bitrate":192,"StreamUri":"https://mint.ice.infomaniak.ch/mint-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u":{"Genre":["Jazz"],"Name":"Mother Earth Jazz","Image":"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u":{"Genre":["Various"],"Name":"Mother Earth Radio","Image":"https___motherearth_streamserver24_com_listen_motherearth_motherearth.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth/motherearth","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___myradio24_org_radiometal.m3u":{"Genre":["Metal"],"Name":"Radio Metal","Image":"https___myradio24_org_radiometal.webp","Homepage":"https://www.radio-metal.in.ua","Country":"Ukraine","State":"","Region":"","Languages":["English"],"Language":"English","Description":"First Metal Radio in Ukraine!","Codec":"MP3","Bitrate":128,"StreamUri":"https://myradio24.org/radiometal","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u":{"Genre":["Classical"],"Name":"malaysia","Image":"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.webp","Homepage":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","Country":"Malaysia","State":"Kuala Lumpur","Region":"Kuala Lumpur","Languages":["Chinese"],"Language":"Chinese","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u":{"Genre":["Indie"],"Name":"Ultra","Image":"https___nashe1_hostingradio_ru_80_ultra-128_mp3.webp","Homepage":"https://radioultra.ru/","Country":"Russia","State":"","Region":"","Languages":["Russian"],"Language":"Russian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://nashe1.hostingradio.ru:80/ultra-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___netradio_ziniur_lt_ziniur_64_mp3.m3u":{"Genre":["Talk","News"],"Name":"Žinių Radijas","Image":"https___netradio_ziniur_lt_ziniur_64_mp3.webp","Homepage":"https://www.ziniuradijas.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://netradio.ziniur.lt/ziniur_64.mp3","alternativeStreams":{"https___netradio_ziniuradijas_lt_ziniur_64_mp3":{"StreamUri":"https://netradio.ziniuradijas.lt/ziniur_64.mp3","Codec":"MP3","Bitrate":64}},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___online_extrafm_lt_8443_extrafm_mp3.m3u":{"Genre":["Pop","Talk","Folklore"],"Name":"Extra FM","Image":"https___online_extrafm_lt_8443_extrafm_mp3.webp","Homepage":"https://extrafm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://online.extrafm.lt:8443/extrafm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u":{"Genre":["Fight","Patriotic"],"Name":"Radio Bayraktar","Image":"https___online_radiobayraktar_ua_RadioBayraktar_HD.webp","Homepage":"https://www.radiobayraktar.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Radio Bayraktar is a radio station of unprecedented Ukrainian resistance","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radiobayraktar.ua/RadioBayraktar_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___online_radioroks_ua_RadioROKS_HD.m3u":{"Genre":["Rock","Hard Rock","Pop"],"Name":"Radio Roks Ukraine","Image":"https___online_radioroks_ua_RadioROKS_HD.webp","Homepage":"https://www.radioroks.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Рок. Тільки рок! (Rock, only rock !)","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radioroks.ua/RadioROKS_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___orelha_radiolivre_org_radiopaulofreire.m3u":{"Genre":["University Radio","MPB"],"Name":"Rádio Paulo Freire - UFPE","Image":"https___orelha_radiolivre_org_radiopaulofreire.webp","Homepage":"https://sites.ufpe.br/rpf/","Country":"Brazil","State":"Pernambuco","Region":"Pernambuco","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Paulo Freire - Rádio Universitária da UFPE","Codec":"MP3","Bitrate":64,"StreamUri":"https://orelha.radiolivre.org/radiopaulofreire","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___orf-live_ors-shoutcast_at_fm4-q2a.m3u":{"Genre":["Indie Rock","Electronic"],"Name":"Radio FM4","Image":"https___orf-live_ors-shoutcast_at_fm4-q2a.webp","Homepage":"https://fm4.orf.at/","Country":"Austria","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/fm4-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___orf-live_ors-shoutcast_at_oe1-q2a.m3u":{"Genre":["Classical","Information","Culture"],"Name":"Ö1","Image":"https___orf-live_ors-shoutcast_at_oe1-q2a.webp","Homepage":"https://oe1.orf.at/","Country":"Austria","State":"Vienna","Region":"Vienna","Languages":["German"],"Language":"German","Description":"Österreichischer Rundfunk, Stiftung öffentlichen Rechts","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/oe1-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u":{"Genre":["Acoustic","Rock"],"Name":"OUI FM ACOUSTIC","Image":"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.webp","Homepage":"https://www.ouifm.fr/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ouifmacoustic.ice.infomaniak.ch/ouifmacoustic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___paineldj5_com_br_20073_stream_1705993267781.m3u":{"Genre":["College Radio","Various"],"Name":"Universitária FM 100.7 (UFV)","Image":"https___paineldj5_com_br_20073_stream_1705993267781.webp","Homepage":"https://fratevi.org.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Para quem gosta de música e conteúdo!","Codec":"MP3","Bitrate":128,"StreamUri":"https://paineldj5.com.br:20073/stream?1705993267781","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u":{"Genre":["Indie"],"Name":"2BOB Radio 104.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.webp","Homepage":"http://www.2bobradio.org.au/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/2BOB.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u":{"Genre":["Romántico"],"Name":"Bésame - 89.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.webp","Homepage":"https://www.besame.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado.","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/BESAME_CR_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u":{"Genre":["Pop"],"Name":"Noventa y Cuatro Siete - 94.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.webp","Homepage":"https://www.crc.cr/crc947/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español.","Codec":"AAC","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/CRC_947AAC.aac?_=819140","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u":{"Genre":["Various"],"Name":"Q Music","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.webp","Homepage":"https://qmusic.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QMUSIC.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Caliente - 90.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.webp","Homepage":"https://www.lacaliente.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"La Caliente ofrece a sus oyentes una programación muy diversa.","Codec":"AAC","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QTEJA_CRAAC_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u":{"Genre":["News"],"Name":"Rádio Bandeirantes São Paulo 90.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (São Paulo)","Codec":"AAC+","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.m3u":{"Genre":["Jazz"],"Name":"WEMU Ypsilanti FM 89.1 - Jazz","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/WEMUFM.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___play_r1_co_nz_live.m3u":{"Genre":["Indie","Student Radio"],"Name":"Radio One 91FM","Image":"https___play_r1_co_nz_live.webp","Homepage":"https://r1.co.nz","Country":"New Zealand","State":"Dunedin","Region":"Dunedin","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://play.r1.co.nz/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___proic1_evspt_com_oxigenio_aac.m3u":{"Genre":["House","Hip-Hop","Jazz","Funk","Soul"],"Name":"OXIGÉNIO 102.6 FM","Image":"https___proic1_evspt_com_oxigenio_aac.webp","Homepage":"https://www.oxigenio.fm/","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Música para respirar","Codec":"AAC","Bitrate":192,"StreamUri":"https://proic1.evspt.com/oxigenio_aac","alternativeStreams":{"https___proic1_evspt_com_oxigenio_mp3":{"StreamUri":"https://proic1.evspt.com/oxigenio_mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["AAC","MP3"],"allBitrates":[192],"highestBitrate":192},"https___r1_comcities_com_proxy_emogddug_stream.m3u":{"Genre":["60's","70's","Oldies"],"Name":"Groovy Radio - 60's and 70's Oldies","Image":"https___r1_comcities_com_proxy_emogddug_stream.webp","Homepage":"https://www.groovyradio.us","Country":"United States","State":"Ohio","Region":"Ohio","Languages":["English"],"Language":"English","Description":"Non-Stop 60's and 70's All Hit Oldies","Codec":"MP3","Bitrate":160,"StreamUri":"https://r1.comcities.com/proxy/emogddug/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio10_pro-fhi_net_radio_9041_stream.m3u":{"Genre":["Afrobeat","Ambient","Bass","Breakbeat","Dancehall","Dub","Electronic","Experimental","Funk","Hard Drums","House","IDM","Jazz","Latin","R'n'B","Rap","Techno","Trance","Uk Funky"],"Name":"Rinse France","Image":"https___radio10_pro-fhi_net_radio_9041_stream.webp","Homepage":"https://rinse.fm/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio10.pro-fhi.net/radio/9041/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact \"Feel Good\"","Image":"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiocontact.ice.infomaniak.ch/radiocontact-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u":{"Genre":["Variety"],"Name":"Rai Radio 2 91.7 FM","Image":"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio2","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 2 91.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiodue-live.akamaized.net/hls/live/2032592/radiodue/radiodue/radio2_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiofunandmore_spcast_eu_dj03.m3u":{"Genre":["Various"],"Name":"RadioFunAndMore","Image":"https___radiofunandmore_spcast_eu_dj03.webp","Homepage":"https://radiofunandmore.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Dein Sender Deine Hits","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiofunandmore.spcast.eu/dj03","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_laluna_mp3.m3u":{"Genre":["Pop","Regional"],"Name":"Laluna","Image":"https___radio_m-1_fm_laluna_mp3.webp","Homepage":"https://www.laluna.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://radio.m-1.fm/laluna/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio_m-1_fm_m-1dance_aac.m3u":{"Genre":["Dance"],"Name":"M-1 Dance","Image":"https___radio_m-1_fm_m-1dance_aac.webp","Homepage":"https://m-1dance.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radio.m-1.fm/m-1dance/aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radio_m-1_fm_M-1H.m3u":{"Genre":["Pop","Charts"],"Name":"M-1","Image":"https___radio_m-1_fm_M-1H.webp","Homepage":"https://www.m-1.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/M-1H","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_m1plius_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Contemporary"],"Name":"M-1 Plius","Image":"https___radio_m-1_fm_m1plius_mp3.webp","Homepage":"https://www.pliusas.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/m1plius/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u":{"Genre":["News","Football","Soccer","MPB"],"Name":"Rádio Nacional do Alto Solimões","Image":"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalaltosolimoes","Country":"Brazil","State":"Amazonas","Region":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional do Alto Solimões - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://radionacionalaltosolimoes-stream.ebc.com.br/ebc/radionacionalaltosolimoes/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radio_promodj_com_fullmoon-192.m3u":{"Genre":["Hard Trance","Tech Trance","Progressive Trance","Uplifting Trance","Trance","Trancestep","Vocal Trance"],"Name":"Full Moon","Image":"https___radio_promodj_com_fullmoon-192.webp","Homepage":"https://promodj.com/radio#fullmoon","Country":"Russia","State":"","Region":"","Languages":["English","Russian"],"Language":"English, Russian","Description":"Trance always. Trance everywhere. Trance 24/7.","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.promodj.com/fullmoon-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_sec_unicamp_br_aovivo_1698904239205.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UNICAMP","Image":"https___radio_sec_unicamp_br_aovivo_1698904239205.webp","Homepage":"https://www.sec.unicamp.br/web-radio-2/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e informação de qualidade!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://radio.sec.unicamp.br/aovivo?1698904239205","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___radioshamfm_grtvstream_com_8400__.m3u":{"Genre":["Various","News"],"Name":"Sham FM","Image":"https___radioshamfm_grtvstream_com_8400__.webp","Homepage":"https://sham.fm/ar/index.html","Country":"Syria","State":"","Region":"","Languages":["Arabic"],"Language":"Arabic","Description":"Sham FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://radioshamfm.grtvstream.com:8400/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radio_sk8ter_org_8443_stream.m3u":{"Genre":["Electronic","Drum'n'Bass","Techno","House","Dance"],"Name":"Mémé dans les OrtiEs","Image":"https___radio_sk8ter_org_8443_stream.webp","Homepage":"https://memeradio.org","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Web radio électro","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.sk8ter.org:8443/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_classic21-128_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"RTBF - Classic 21","Image":"https___radios_rtbf_be_classic21-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/classic21-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_jam-128_mp3.m3u":{"Genre":["Urbain","Pop","Electronic","Rock","Folk","New Jazz","World Music"],"Name":"RTBF - Jam","Image":"https___radios_rtbf_be_jam-128_mp3.webp","Homepage":"https://www.rtbf.be/jam","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/jam-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_laprem1ere-128_mp3.m3u":{"Genre":["Various","Variety","News"],"Name":"RTBF - La Première","Image":"https___radios_rtbf_be_laprem1ere-128_mp3.webp","Homepage":"https://www.rtbf.be/lapremiere/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/laprem1ere-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_musiq3-128_aac.m3u":{"Genre":["Classical"],"Name":"RTBF - Musiq 3","Image":"https___radios_rtbf_be_musiq3-128_aac.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radios.rtbf.be/musiq3-128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_pure-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - Tipik / PureFM","Image":"https___radios_rtbf_be_pure-128_mp3.webp","Homepage":"https://www.rtbf.be/tipik/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"null","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/pure-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_rtbfmix-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - RTBF Mix","Image":"https___radios_rtbf_be_rtbfmix-128_mp3.webp","Homepage":"https://www.rtbf.be/rtbfmix","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/rtbfmix-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_tarmac-128_mp3.m3u":{"Genre":["Pop","Variety"],"Name":"RTBF - Tarmac","Image":"https___radios_rtbf_be_tarmac-128_mp3.webp","Homepage":"https://www.rtbf.be/Tarmac","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/tarmac-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaliege-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - VivaCité Liège","Image":"https___radios_rtbf_be_vivaliege-128_mp3.webp","Homepage":"https://www.rtbf.be/vivacite/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaliege-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaplus-128_mp3.m3u":{"Genre":["60's","70's"],"Name":"RTBF - Viva+","Image":"https___radios_rtbf_be_vivaplus-128_mp3.webp","Homepage":"https://www.rtbf.be/vivaplus","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaplus-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_wr-c21-60-128_mp3.m3u":{"Genre":["60's","Rock","Pop"],"Name":"RTBF - Classic 21 60's","Image":"https___radios_rtbf_be_wr-c21-60-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Le meilleur Rock'n'Pop des années 60","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-60-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-70-128_mp3.m3u":{"Genre":["70's","Classic Rock","Rock"],"Name":"RTBF - Classic 21 70's","Image":"https___radios_rtbf_be_wr-c21-70-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-70-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-80-128_mp3.m3u":{"Genre":["80's","Rock","Pop"],"Name":"RTBF - Classic 21 80's","Image":"https___radios_rtbf_be_wr-c21-80-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Rock'n'Pop of the 80's","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-80-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-90-128_mp3.m3u":{"Genre":["90's"],"Name":"RTBF - Classic 21 90's","Image":"https___radios_rtbf_be_wr-c21-90-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-90-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u":{"Genre":["Country"],"Name":"RTBF - Classic 21 Route 66","Image":"https___radios_rtbf_be_wr-c21-route66-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-route66-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u":{"Genre":["Renaissance","Baroque"],"Name":"RTBF - Musiq 3 Baroque","Image":"https___radios_rtbf_be_wr-m3-baroque-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Un voyage dans l'Europe musicale, de la Renaissance jusque 1750","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-baroque-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u":{"Genre":["Jazz"],"Name":"RTBF - Musiq 3 Jazz","Image":"https___radios_rtbf_be_wr-m3-jazz-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Du jazz belge et international pour tous, des années 20 à nos jours","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-jazz-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u":{"Genre":["Romantique"],"Name":"RTBF - Musiq 3 Romantique","Image":"https___radios_rtbf_be_wr-m3-romantique-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Les plus grandes pages de la musique romantique","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-romantique-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_streamgates_net_stream_oranim.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"Radion Oranim 103.6FM רדיו אורנים","Image":"https___radio_streamgates_net_stream_oranim.webp","Homepage":"https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.streamgates.net/stream/oranim","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u":{"Genre":["News","Sport"],"Name":"Guardian Radio 96.9 FM","Image":"https___radiostreams_streamcomedia_com_8000_969guardianradio.webp","Homepage":"https://guardiantalkradio.com","Country":"Bahamas","State":"Nassau","Region":"Nassau","Languages":["English"],"Language":"English","Description":"Guardian Radio 96.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://radiostreams.streamcomedia.com:8000/969guardianradio","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u":{"Genre":["Opera"],"Name":"Rai Radio 3 93.7 FM","Image":"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio3","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 3 93.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiotre-live.akamaized.net/hls/live/2032594/radiotre/radiotre/radio3_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u":{"Genre":["News","Sport"],"Name":"Rai Radio 1 89.7 FM","Image":"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio1","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 1 89.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiounoest-live.akamaized.net/hls/live/2032586/radiounoest/radiounoest/radio1est_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u":{"Genre":["Tamil Radio"],"Name":"IBC Tamil","Image":"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.webp","Homepage":"https://radio.ibctamil.com/","Country":"India","State":"","Region":"","Languages":["Tamil"],"Language":"Tamil","Description":"IBC Tamil offers an excellent line-up of regular and one-off shows","Codec":"MP3","Bitrate":128,"StreamUri":"https://rbx2.hnux.com/http://10454.cloudrad.io:6176/;stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u":{"Genre":["News"],"Name":"Ici Radio-Canada Premiere Montreal","Image":"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.webp","Homepage":"https://ici.radio-canada.ca/","Country":"Canada","State":"Montreal","Region":"Montreal","Languages":["French"],"Language":"French","Description":"","Codec":"HLS","Bitrate":465,"StreamUri":"https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[465],"highestBitrate":465},"https___relay2_bide-et-musique_com_9300_bm_mp3.m3u":{"Genre":["70's","80's"],"Name":"Bide et Musique - La radio de l'improbable et de l'inouï","Image":"https___relay2_bide-et-musique_com_9300_bm_mp3.webp","Homepage":"https://www.bide-et-musique.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et…","Codec":"MP3","Bitrate":128,"StreamUri":"https://relay2.bide-et-musique.com:9300/bm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rozhlas_stream_ddur_mp3_256_mp3.m3u":{"Genre":["Classical"],"Name":"Czech Radio Classical","Image":"https___rozhlas_stream_ddur_mp3_256_mp3.webp","Homepage":"","Country":"Czech Republic","State":"","Languages":["Czech"],"Language":"Czech","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"https://rozhlas.stream/ddur_mp3_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s02_brascast_com_7386_live.m3u":{"Genre":["Entrevistas","Interviews","News","News Talk","Notícias"],"Name":"Rádio Foco Livre","Image":"https___s02_brascast_com_7386_live.webp","Homepage":"https://www.focolivre.com.br/","Country":"Brazil","State":"Santa Catarina","Region":"Santa Catarina","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s02.brascast.com:7386/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s09_hstbr_net_8238_live_1514038524061.m3u":{"Genre":["News","Various"],"Name":"Brasil de Fato","Image":"https___s09_hstbr_net_8238_live_1514038524061.webp","Homepage":"https://www.brasildefato.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Brasil de Fato - Uma visão popular do Brasil e do mundo","Codec":"MP3","Bitrate":128,"StreamUri":"https://s09.hstbr.net:8238/live?1514038524061","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s1_knixx_fm_dein_webradio_256_mp3.m3u":{"Genre":["Variety","Adult Contemporary","New Country","Non-commercial","Non-profit","Oldies","Pop","Rock"],"Name":"knixx.fm","Image":"https___s1_knixx_fm_dein_webradio_256_mp3.webp","Homepage":"https://knixx.fm/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Musik von den 60ern bis heute.","Codec":"MP3","Bitrate":256,"StreamUri":"https://s1.knixx.fm/dein_webradio_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio P.Y.G.","Image":"https___s2_ssl-stream_com_radio_8160_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All the Best from Pink Floyd, Yes and Genesis","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8160/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio Progressive Rock","Image":"https___s2_ssl-stream_com_radio_8180_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8180/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u":{"Genre":["MPB","College Radio","University","Independent Music","Pop"],"Name":"Rádio Pop Goiaba UFF","Image":"https___s37_maxcast_com_br_8450_live_id_1698623926568.webp","Homepage":"https://radiopopgoiaba.uff.br/pop-goiaba-uff/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Pop Goiaba UFF","Codec":"MPEG","Bitrate":32,"StreamUri":"https://s37.maxcast.com.br:8450/live?id=1698623926568","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___s5_radio_co_s23b8ada46_listen.m3u":{"Genre":["Community Radio","Indie","Underground","Indie","AfroHouse","AfroJazz","Hip-Hop","Jazz"],"Name":"Oroko Radio","Image":"https___s5_radio_co_s23b8ada46_listen.webp","Homepage":"https://oroko.live/","Country":"Ghana","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/s23b8ada46/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s5_radio_co_sd515b7b34_listen.m3u":{"Genre":["Rock","Baladas"],"Name":"Radio 2 - 99.5 FM","Image":"https___s5_radio_co_sd515b7b34_listen.webp","Homepage":"https://radiodos.com/","Country":"Costa Rica","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Éxitos que fueron de UNO y ahora son de DOS 99.5 FM.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/sd515b7b34/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s61_radiolize_com_radio_8000_radio_mp3.m3u":{"Genre":["2000's","Dance","Rock","Pop","Hip-Hop"],"Name":"Smart Zeros","Image":"https___s61_radiolize_com_radio_8000_radio_mp3.webp","Homepage":"https://smart2000s.com/cool-songs-for-2000-theme-party/","Country":"Ukraine","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Cool Songs For 2000 Theme Party","Codec":"MP3","Bitrate":128,"StreamUri":"https://s61.radiolize.com/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___server1_fex_red_8366_stream.m3u":{"Genre":["Entretenimiento","Deportes","Noticias","Variedades"],"Name":"Radio Gente","Image":"https___server1_fex_red_8366_stream.webp","Homepage":"https://radiogentebol.com/","Country":"Bolivia","State":"","Region":"","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://server1.fex.red:8366/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___servidor21_brlogic_com_7712_live.m3u":{"Genre":["MPB","Radio Universitaria","University Radio"],"Name":"Rádio UFRJ","Image":"https___servidor21_brlogic_com_7712_live.webp","Homepage":"https://radio.ufrj.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da Universidade Federal do Rio de Janeiro","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor21.brlogic.com:7712/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor22-3_brlogic_com_7404_live.m3u":{"Genre":["MPB","News"],"Name":"Rádio UERJ","Image":"https___servidor22-3_brlogic_com_7404_live.webp","Homepage":"https://www.radiouerj.com/app/index.html","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Conectando você ao conhecimento!","Codec":"MP3","Bitrate":32,"StreamUri":"https://servidor22-3.brlogic.com:7404/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___servidor35-1_brlogic_com_8062_live.m3u":{"Genre":["Eclectic","Football"],"Name":"Rádio FERJ","Image":"https___servidor35-1_brlogic_com_8062_live.webp","Homepage":"https://www.fferj.com.br/radio","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio FERJ","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor35-1.brlogic.com:8062/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor38-2_brlogic_com_8134_live.m3u":{"Genre":["Various"],"Name":"Rádio UPF 99.9 FM","Image":"https___servidor38-2_brlogic_com_8134_live.webp","Homepage":"https://radioupf.minhawebradio.net/app/index.html","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UPF 99.9 FM","Codec":"MPEG","Bitrate":196,"StreamUri":"https://servidor38-2.brlogic.com:8134/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[196],"highestBitrate":196},"https___servidor39-3_brlogic_com_8180_live.m3u":{"Genre":["Various"],"Name":"Rádio Uniso","Image":"https___servidor39-3_brlogic_com_8180_live.webp","Homepage":"https://radiouniso.com","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano.","Codec":"MPEG","Bitrate":128,"StreamUri":"https://servidor39-3.brlogic.com:8180/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_am846_m3u8.m3u":{"Genre":["News","Education"],"Name":"China Plus (China Radio International) - English","Image":"https___sk_cri_cn_am846_m3u8.webp","Homepage":"https://chinaplus.cri.cn","Country":"China","State":"","Region":"","Languages":["English"],"Language":"English","Description":"China Plus (China Radio International) - English","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/am846.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___sk_cri_cn_frenchafrica_m3u8.m3u":{"Genre":["News","Debate"],"Name":"CGTN Radio Français","Image":"https___sk_cri_cn_frenchafrica_m3u8.webp","Homepage":"https://radio.cgtn.com/","Country":"China","State":"","Region":"","Languages":["French"],"Language":"French","Description":"CGTN Radio Français","Codec":"ADTS","Bitrate":128,"StreamUri":"https://sk.cri.cn/frenchafrica.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_nhzs_m3u8.m3u":{"Genre":["Various"],"Name":"CRI Voice of the South China Sea 89.1 FM","Image":"https___sk_cri_cn_nhzs_m3u8.webp","Homepage":"https://vscs.cri.cn","Country":"China","State":"","Region":"","Languages":["Chinese"],"Language":"Chinese","Description":"CRI Voice of the South China Sea 89.1 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/nhzs.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___smoothjazz_cdnstream1_com_2585_320_mp3.m3u":{"Genre":["Jazz","Smooth Jazz"],"Name":"SmoothJazz Global","Image":"https___smoothjazz_cdnstream1_com_2585_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2585_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___smoothjazz_cdnstream1_com_2586_320_mp3.m3u":{"Genre":["Lounge","Smooth Lounge"],"Name":"SmoothLounge Global","Image":"https___smoothjazz_cdnstream1_com_2586_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2586_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"Soho Radio London","Image":"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://sohoradiomusic.doughunt.co.uk:8010/320mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência AM 880","Image":"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Uma Rádio Para Todos e Todas!","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia2?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência 100.9 FM","Image":"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Inconfidência 100.9 FM","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u":{"Genre":["Electronic","Culture","House"],"Name":"La Urban Radio","Image":"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.webp","Homepage":"https://www.urbanrevolution.es","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Nuevos talentos y grandes artistas se dan la mano en La Urban Radio.","Codec":"MP3","Bitrate":160,"StreamUri":"https://st1.urbanrevolution.es:8443/laurbanfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___stm23_xcast_com_br_11284_stream_1705992834372.m3u":{"Genre":["News","Football"],"Name":"Rádio Bandeirantes Campinas 1170 AM","Image":"https___stm23_xcast_com_br_11284_stream_1705992834372.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/campinas","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (Campinas)","Codec":"MP3","Bitrate":128,"StreamUri":"https://stm23.xcast.com.br:11284/stream?1705992834372","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str1_castradios_com_br_10998_stream.m3u":{"Genre":["Flashback","Adult","Sport"],"Name":"Rádio 365","Image":"https___str1_castradios_com_br_10998_stream.webp","Homepage":"https://radio365.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio de todos os dias!","Codec":"MP3","Bitrate":128,"StreamUri":"https://str1.castradios.com.br:10998/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream128_kngi_org.m3u":{"Genre":["Game","Various"],"Name":"KNGI Network","Image":"https___stream128_kngi_org.webp","Homepage":"https://kngi.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream128.kngi.org","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-156_zeno_fm_22db1xmde2zuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Arumbu FM","Image":"https___stream-156_zeno_fm_22db1xmde2zuv.webp","Homepage":"https://tamilradios.net/arumbu-fm/","Country":"India","State":"Tamilnadu","Region":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream-156.zeno.fm/22db1xmde2zuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream1_svrdedicado_org_8028_stream.m3u":{"Genre":["Blues","Rock","Instrumental"],"Name":"Rádio Lam","Image":"https___stream1_svrdedicado_org_8028_stream.webp","Homepage":"https://radiolam.wixsite.com/24horas","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rock & Blues 24 horas!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream1.svrdedicado.org/8028/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_relaxfm_lt_relaxfm128_mp3.m3u":{"Genre":["Pop"],"Name":"Relax FM","Image":"https___stream2_relaxfm_lt_relaxfm128_mp3.webp","Homepage":"https://relaxfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.relaxfm.lt/relaxfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_rockfm_lt_crf128_mp3.m3u":{"Genre":["Rock"],"Name":"Rock FM","Image":"https___stream2_rockfm_lt_crf128_mp3.webp","Homepage":"https://rockfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.rockfm.lt/crf128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u":{"Genre":["MPB","News"],"Name":"Rádio Câmara 96.9 FM","Image":"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.webp","Homepage":"https://www.camara.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Câmara 96.9 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://stream3.camara.gov.br/radiocamara1t64/manifest.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___stream_animeradio_de_animeradio_mp3.m3u":{"Genre":["Anime","J-pop","J-rock","OST","Party","Rock"],"Name":"AnimeRadio.de","Image":"https___stream_animeradio_de_animeradio_mp3.webp","Homepage":"https://www.animeradio.de/","Country":"Germany","State":"","Region":"","Languages":["German","Japanese"],"Language":"German, Japanese","Description":"Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen.","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.animeradio.de/animeradio.mp3","alternativeStreams":{"https___stream_animeradio_de_animeradio_aac":{"StreamUri":"https://stream.animeradio.de/animeradio.aac","Codec":"AAC","Bitrate":32}},"allCodecs":["AAC","MP3"],"allBitrates":[32,192],"highestBitrate":192},"https___stream_artsound_fm_mp3.m3u":{"Genre":["Classical","Jazz","Folk","World Music"],"Name":"ArtSound FM 92.7","Image":"https___stream_artsound_fm_mp3.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.artsound.fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_ceit_be_sudradio-hainaut.m3u":{"Genre":["Various"],"Name":"Sud Radio Hainaut","Image":"https___stream_ceit_be_sudradio-hainaut.webp","Homepage":"https://sudradio.net","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://stream.ceit.be/sudradio-hainaut","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___stream_ehr_lt_8443_ehr.m3u":{"Genre":["Charts","Pop"],"Name":"European Hit Radio","Image":"https___stream_ehr_lt_8443_ehr.webp","Homepage":"https://www.europeanhitradio.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian","English"],"Language":"Lithuanian, English","Description":"","Codec":"HE-AAC","Bitrate":96,"StreamUri":"https://stream.ehr.lt:8443/ehr","alternativeStreams":{"https___82_135_234_195_8443_ehr_mp3":{"StreamUri":"https://82.135.234.195:8443/ehr.mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["HE-AAC","MP3"],"allBitrates":[96,192],"highestBitrate":192},"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.m3u":{"Genre":["Classical"],"Name":"Davide of MIMIC","Image":"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streaming04.liveboxstream.uk/proxy/davideof?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streaming_antipode_be_antipode_mp3.m3u":{"Genre":["Various"],"Name":"Antipode - La Radio du Brabant Wallon","Image":"https___streaming_antipode_be_antipode_mp3.webp","Homepage":"https://www.antipode.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streaming.antipode.be/antipode.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming_inweb_com_br_energia.m3u":{"Genre":["Pop-Rock","Dance","Trance","Pop"],"Name":"Rádio Energia 97 FM","Image":"https___streaming_inweb_com_br_energia.webp","Homepage":"https://www.97fm.com.br","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Energia que te move!","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming.inweb.com.br/energia","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Public Radio"],"Name":"Rádio Antena 1 99.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.webp","Homepage":"https://antena1.rtp.pt","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 99.4 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena180a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u":{"Genre":["News","Politics","Sport","Fado"],"Name":"Rádio Antena 1 Madeira 104.6 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.webp","Homepage":"http://www.rtp.pt/madeira","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 Madeira 104.6 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena1madeira80a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u":{"Genre":["Classical","Opera"],"Name":"Rádio Antena 2 94.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.webp","Homepage":"https://antena2.rtp.pt","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Arte que Toca","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena280a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Dance"],"Name":"Rádio Antena 3 105.2 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.webp","Homepage":"https://media.rtp.pt/antena3/","Country":"Portugal","State":"Lisboa","Region":"Lisboa","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Alternativa Pop","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena380a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming_radio_co_s3699c5e49_listen.m3u":{"Genre":["Ambient","Electronic","Experimental","Hip-Hop","House","Jazz","Pop"],"Name":"Refuge Worldwide","Image":"https___streaming_radio_co_s3699c5e49_listen.webp","Homepage":"https://refugeworldwide.com/","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Alternative community radio from Berlin","Codec":"MP3","Bitrate":192,"StreamUri":"https://streaming.radio.co/s3699c5e49/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___streaming_ufg_br_8443_radiouniversitaria.m3u":{"Genre":["MPB","News"],"Name":"Rádio Universitária UFG","Image":"https___streaming_ufg_br_8443_radiouniversitaria.webp","Homepage":"https://radio.ufg.br/p/aovivo","Country":"Brazil","State":"Goiás","Region":"Goiás","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UFG","Codec":"MPEG","Bitrate":128,"StreamUri":"https://streaming.ufg.br:8443/radiouniversitaria","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Classical","Talk","Culture"],"Name":"LRT Klasika","Image":"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/klasika/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Modern","Contemporary","Indie"],"Name":"LRT Opus","Image":"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/opus/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Various","News","Talk"],"Name":"LRT Radijas","Image":"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/radijas/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream_nowyswiat_online_mp3.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio Nowy Swiat","Image":"https___stream_nowyswiat_online_mp3.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.nowyswiat.online/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_radiomustathens_com_must-hero.m3u":{"Genre":["Adult Contemporary","Top 40"],"Name":"Hero","Image":"https___stream_radiomustathens_com_must-hero.webp","Homepage":"https://app.radiomustathens.com/#/must-hero","Country":"Greece","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.radiomustathens.com/must-hero","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___stream_radioparadise_com_aac-320.m3u":{"Genre":["Eclectic"],"Name":"Radio Paradise - Main Mix","Image":"https___stream_radioparadise_com_aac-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/aac-320","alternativeStreams":{"https___stream_radioparadise_com_flacm":{"StreamUri":"https://stream.radioparadise.com/flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_mellow-320.m3u":{"Genre":["Rock","Mellow Rock"],"Name":"Radio Paradise - Mellow","Image":"https___stream_radioparadise_com_mellow-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/mellow-320","alternativeStreams":{"https___stream_radioparadise_com_mellow-flacm":{"StreamUri":"https://stream.radioparadise.com/mellow-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_rock-320.m3u":{"Genre":["Rock"],"Name":"Radio Paradise - Rock","Image":"https___stream_radioparadise_com_rock-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/rock-320","alternativeStreams":{"https___stream_radioparadise_com_rock-flacm":{"StreamUri":"https://stream.radioparadise.com/rock-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_world-etc-320.m3u":{"Genre":["World Music"],"Name":"Radio Paradise - World","Image":"https___stream_radioparadise_com_world-etc-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/world-etc-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___stream_rcs_revma_com_an1ugyygzk8uv.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio 357","Image":"https___stream_rcs_revma_com_an1ugyygzk8uv.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/an1ugyygzk8uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_anew1ctrgzzuv.m3u":{"Genre":["Pop","Rock"],"Name":"DH Radio / Twizz","Image":"https___stream_rcs_revma_com_anew1ctrgzzuv.webp","Homepage":"https://www.dhnet.be/medias/dh-radio","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing.","Codec":"AAC","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/anew1ctrgzzuv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u":{"Genre":["Pop","Rock"],"Name":"Must FM","Image":"https___stream_rcs_revma_com_cm96zpmrmm0uv.webp","Homepage":"https://mustfm.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/cm96zpmrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_f31w7e0fveuvv.m3u":{"Genre":["Pop","Charts"],"Name":"Power Hit Radio","Image":"https___stream_rcs_revma_com_f31w7e0fveuvv.webp","Homepage":"https://powerhitradio.tv3.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":89,"StreamUri":"https://stream.rcs.revma.com/f31w7e0fveuvv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[89],"highestBitrate":89},"https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u":{"Genre":["Pop","Rock","Dance","Club"],"Name":"Maximum FM","Image":"https___stream_rcs_revma_com_vnmbzemrmm0uv.webp","Homepage":"https://www.maximumfm.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/vnmbzemrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_xh00fwuptg0uv.m3u":{"Genre":["Various"],"Name":"NRJ Belgique","Image":"https___stream_rcs_revma_com_xh00fwuptg0uv.webp","Homepage":"https://www.nrj.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/xh00fwuptg0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rockantenne_de_rockantenne_stream_mp3.m3u":{"Genre":["Rock"],"Name":"Rock Antenne","Image":"https___stream_rockantenne_de_rockantenne_stream_mp3.webp","Homepage":"https://www.rockantenne.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rockantenne.de/rockantenne/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["60's"],"Name":"FluxFM - 60s","Image":"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/60er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - ChillHop","Image":"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Chillhop/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - Chillout Radio","Image":"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/chillout/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Clubsandwich","Image":"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/clubsandwich/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Pop"],"Name":"FluxFM - ElectroFlux","Image":"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/elektro/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.m3u":{"Genre":["Pop","Culture"],"Name":"FluxFM - Hamburg","Image":"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/flux-hamburg/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - FluxKompensator","Image":"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/fluxkompensator/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Disco","Dance"],"Name":"FluxFM - Indie Disco","Image":"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/indiedisco/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - Jazzradio Schwarzenstein","Image":"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/jazzschwarz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - John Reed Radio","Image":"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/john-reed/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Klubradio","Image":"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/klubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Lounge","Neo-Soul","Trip-Hop","Jazz"],"Name":"FluxFM - FluxLounge","Image":"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/lounge/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Eclectic"],"Name":"FluxFM - Melides Art Radio","Image":"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Melides/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","House"],"Name":"FluxFM - Sound Of Berlin","Image":"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/soundofberlin/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Techno"],"Name":"FluxFM - Techno Underground","Image":"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/technoug/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___stream_skylab-radio_com_live.m3u":{"Genre":["Ambient","Eclectic","Experimental","Hip-Hop","House","Rock","Techno"],"Name":"Skylab Radio","Image":"https___stream_skylab-radio_com_live.webp","Homepage":"http://skylab-radio.com/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.skylab-radio.com/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio7_de_dab_mp3-192_web_.m3u":{"Genre":["Pop"],"Name":"Radio 7","Image":"https___streams_radio7_de_dab_mp3-192_web_.webp","Homepage":"https://www.radio7.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio7.de/dab/mp3-192/web/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","70's"],"Name":"Radio BOB! 70s Rock","Image":"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/70errock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","Blues"],"Name":"Radio BOB! Blues","Image":"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"RADIO BOB!s neuer Blues Stream","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/blues/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Best of Rock","Image":"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/bob-bestofrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Newcomer","Image":"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Listen to the hottest new rockbands – nonstop.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/newcomer/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Oldies","Image":"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/rockoldies/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Summer Rock Hits","Image":"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/summerrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u":{"Genre":["60's","70's"],"Name":"Joe 60's & 70's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_60s_70s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u":{"Genre":["80's","90's"],"Name":"Joe 80's & 90's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_80s_90s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u":{"Genre":["Various"],"Name":"Joe Easy","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u":{"Genre":["Various","70's","80's","90's"],"Name":"Joe FM","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u":{"Genre":["2000's"],"Name":"Joe Top 2000","Image":"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_zeno_fm_lf9upjop1gyuv.m3u":{"Genre":["General","News","Various"],"Name":"Kadicou FM","Image":"https___stream_zeno_fm_lf9upjop1gyuv.webp","Homepage":"https://zeno.fm/radio/kadicou-fm/","Country":"Nigeria","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Kadicou FM is dedicated to giving you quality broadcast and entertaining programs!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.zeno.fm/lf9upjop1gyuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 610 AM","Image":"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-am-610-am610khz.html","Country":"Vietnam","State":"Ho Chi Minh City","Region":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 610 AM","Codec":"AAC","Bitrate":320,"StreamUri":"https://strm.voh.com.vn/radio/channel2/chunklist_w2105781582.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 99.9 FM","Image":"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html","Country":"Vietnam","State":"Ho Chi Minh City","Region":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 99.9 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://strm.voh.com.vn/radio/channel3/chunklist_w1232938254.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___str_topradio_be_topradio_mp3.m3u":{"Genre":["Various"],"Name":"Top Radio","Image":"https___str_topradio_be_topradio_mp3.webp","Homepage":"https://www.topradio.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://str.topradio.be/topradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u":{"Genre":["News","Talk","Culture"],"Name":"SR P1","Image":"https___sverigesradio_se_topsy_direkt_132-hi-aac.webp","Homepage":"https://sverigesradio.se/p1","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/132-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u":{"Genre":["Pop","Culture"],"Name":"SR P3","Image":"https___sverigesradio_se_topsy_direkt_164-hi-aac.webp","Homepage":"https://sverigesradio.se/p3","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/164-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u":{"Genre":["News","Weather","Sport","Culture"],"Name":"SR P4 Jämtland","Image":"https___sverigesradio_se_topsy_direkt_200-hi-aac.webp","Homepage":"https://sverigesradio.se/jamtland","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"News, weather, sport, and culture from Jämtland","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/200-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___transliacija_rc_lt_rc128_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"Radijo Centras","Image":"https___transliacija_rc_lt_rc128_mp3.webp","Homepage":"https://rc.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.rc.lt/rc128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___transliacija_zipfm_lt_zipfm128_mp3.m3u":{"Genre":["Youth","Pop"],"Name":"ZIP FM","Image":"https___transliacija_zipfm_lt_zipfm128_mp3.webp","Homepage":"https://zipfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.zipfm.lt/zipfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream0_wfmu_org_freeform-best-available.m3u":{"Genre":["Classical"],"Name":"WFMU 91.1 FM","Image":"http___stream0_wfmu_org_freeform-best-available.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream0.wfmu.org/freeform-best-available","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream1_opb_org_kmhd_mp3.m3u":{"Genre":["Jazz"],"Name":"KMHD Portland FM 89.1 - Jazz","Image":"http___stream1_opb_org_kmhd_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream1.opb.org/kmhd.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream2_radioquantica_com_8000_stream.m3u":{"Genre":["Underground","Urbain"],"Name":"Rádio Quântica","Image":"http___stream2_radioquantica_com_8000_stream.webp","Homepage":"https://www.radioquantica.com/","Country":"Portugal","State":"","Region":"","Languages":["English","Portuguese"],"Language":"English, Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream2.radioquantica.com:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-33_zeno_fm_nkdugu37twzuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Raja Radio HD","Image":"http___stream-33_zeno_fm_nkdugu37twzuv.webp","Homepage":"https://tamilradios.net/raja-radio-hd/","Country":"India","State":"Tamilnadu","Region":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-33.zeno.fm/nkdugu37twzuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_dandelionradio_com_9414.m3u":{"Genre":["Indie"],"Name":"Dandelion Radio","Image":"http___stream_dandelionradio_com_9414.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.dandelionradio.com:9414","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u":{"Genre":["Dub","Reggae"],"Name":"Dr. Dick’s Dub Shack","Image":"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.webp","Homepage":"http://drdicksdubshack.com/","Country":"Bermuda","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Bermuda-based online radio station playing all species of dub, downtempo and bass music","Codec":"MP3","Bitrate":192,"StreamUri":"http://streamer.radio.co/s0635c8b0d/listen?fbclid=IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_fr_morow_com_8080_morow_hi_aacp.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Morow - Retro Progressive Rock","Image":"http___stream_fr_morow_com_8080_morow_hi_aacp.webp","Homepage":"","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://stream.fr.morow.com:8080/morow_hi.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___stream-icy_bauermedia_pt_m80_mp3.m3u":{"Genre":["70's","80's","90's","2000's"],"Name":"M80 Rádio","Image":"http___stream-icy_bauermedia_pt_m80_mp3.webp","Homepage":"https://m80.pt/","Country":"Portugal","State":"Lisbon","Region":"Lisbon","Languages":["Portuguese"],"Language":"Portuguese","Description":"Se a sua vida tem uma música, ela passa na M80","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-icy.bauermedia.pt/m80.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u":{"Genre":["Jazz","Classical","Soul"],"Name":"Apollo Radio","Image":"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.webp","Homepage":"https://www.apolloradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Bleiben sie entspannt","Codec":"MP3","Bitrate":192,"StreamUri":"http://streaming.apolloradio.de/apolloradio_simulcast_192k_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u":{"Genre":["Indie","Indie Rock","Canada","Commercial","Montreal","Mp3","Pop Rock"],"Name":"WKND 91,9","Image":"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.webp","Homepage":"http://quebec.wknd.fm/","Country":"Canada","State":"Québec","Region":"Québec","Languages":["Français"],"Language":"Français","Description":"WKND FM 91,9","Codec":"MP3","Bitrate":96,"StreamUri":"http://streaming.cjec.leclerccommunication.ca:8000/cjec.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___streaming_livespanel_com_20000_live.m3u":{"Genre":["Samba","Pagode","Pop"],"Name":"Rádio FM O DIA","Image":"http___streaming_livespanel_com_20000_live.webp","Homepage":"http://www.fmodia.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"FM O Dia","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.livespanel.com:20000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u":{"Genre":["News","Entertainment"],"Name":"Radio SRF 1","Image":"http___streaming_swisstxt_ch_m_drs1_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs1/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs2_mp3_128.m3u":{"Genre":["Classical","Jazz"],"Name":"Radio SRF 2 Kultur","Image":"http___streaming_swisstxt_ch_m_drs2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"Radio SRF 3","Image":"http___streaming_swisstxt_ch_m_drs3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs4news_mp3_128.m3u":{"Genre":["News"],"Name":"Radio SRF 4 News","Image":"http___streaming_swisstxt_ch_m_drs4news_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs4news/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsmw_mp3_128.m3u":{"Genre":["Pop","Schlager Music"],"Name":"Radio SRF Musikwelle","Image":"http___streaming_swisstxt_ch_m_drsmw_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsmw/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.m3u":{"Genre":["Indie"],"Name":"Radio SRF Virus","Image":"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsvirus/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_klassikradio_de_chor_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Chor","Image":"http___stream_klassikradio_de_chor_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/chor/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_dreams_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Dreams","Image":"http___stream_klassikradio_de_dreams_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/dreams/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_relax_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Relax","Image":"http___stream_klassikradio_de_relax_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/relax/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_laut_fm_alternativeworld.m3u":{"Genre":["Indie","Punk","New Wave","Britpop"],"Name":"Alternativeworld","Image":"http___stream_laut_fm_alternativeworld.webp","Homepage":"https://laut.fm/alternativeworld","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/alternativeworld","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_anderswelt.m3u":{"Genre":["New Wave","Gothic","Minimal","80's"],"Name":"Anderswelt","Image":"http___stream_laut_fm_anderswelt.webp","Homepage":"https://laut.fm/anderswelt","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Stuttgarter Wave-Klänge wie zu den guten alten Zeiten...","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/anderswelt","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_deutschrap.m3u":{"Genre":["Hip-Hop","Rap","German Rap","Urbain"],"Name":"Deutschrap","Image":"http___stream_laut_fm_deutschrap.webp","Homepage":"www.laut.fm/deutschrap","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Schluss mit Deutschrap Einheitsbrei!","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/deutschrap","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_kakerlakenradio.m3u":{"Genre":["Rock","Pop","Indie","New Wave","Punk","Britpop","Garage"],"Name":"Kakerlaken Radio","Image":"http___stream_laut_fm_kakerlakenradio.webp","Homepage":"http://indie-rock-radio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/kakerlakenradio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nightshift_alternative.m3u":{"Genre":["Gothic","Mediaeval","Nu Metal","80's","90's","Industrial","Metal","Metalcore"],"Name":"Nightshift Alternativ","Image":"http___stream_laut_fm_nightshift_alternative.webp","Homepage":"https://nightshift-alternativ.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nightshift_alternative","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nonpop.m3u":{"Genre":["Ambient","Avantgarde","Black Metal","Folk","Industrial","Lo-Fi","Minimal","Indie"],"Name":"NONPOP","Image":"http___stream_laut_fm_nonpop.webp","Homepage":"https://laut.fm/nonpop","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der Name ist Programm. Alles außer Massenware.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nonpop","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_scifi.m3u":{"Genre":["Vocal","Pop","Scifi"],"Name":"SciFi Radio","Image":"http___stream_laut_fm_scifi.webp","Homepage":"https://laut.fm/scifi","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Ein Online Radio für den Bereich Science Fiction.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/scifi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-relay-geo_ntslive_net_stream2.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live International","Image":"http___stream-relay-geo_ntslive_net_stream2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream-relay-geo_ntslive_net_stream.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live London - Don't Assume","Image":"http___stream-relay-geo_ntslive_net_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream_resonance_fm_resonance.m3u":{"Genre":["Eclectic"],"Name":"Resonance Radio 104.4 FM","Image":"http___stream_resonance_fm_resonance.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.resonance.fm/resonance","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u":{"Genre":["Eighties"],"Name":"80s80s","Image":"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.webp","Homepage":"https://www.80s80s.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.80s80s.de/web/mp3-192/streams.80s80s.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_egofm_de_egoCHILLOUT-hq.m3u":{"Genre":["Indie"],"Name":"egoFM CHILLOUT","Image":"http___streams_egofm_de_egoCHILLOUT-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die beruhigende Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoCHILLOUT-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFLASH-hq.m3u":{"Genre":["Indie","Electronic"],"Name":"egoFM FLASH","Image":"http___streams_egofm_de_egoFLASH-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die elektronische Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFLASH-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMBW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Baden-Württemberg","Image":"http___streams_egofm_de_egoFMBW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMBW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMHallOfFame-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM HallOfFame","Image":"http___streams_egofm_de_egoFMHallOfFame-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die legendäre Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMHallOfFame-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFM-hq.m3u":{"Genre":["Indie"],"Name":"egoFM live","Image":"http___streams_egofm_de_egoFM-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFM-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMKavka-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Kavka","Image":"http___streams_egofm_de_egoFMKavka-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die kavkaeske Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMKavka-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMNRW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM NRW","Image":"http___streams_egofm_de_egoFMNRW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMNRW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMRNB-hq.m3u":{"Genre":["R'n'B"],"Name":"egoFM R&B","Image":"http___streams_egofm_de_egoFMRNB-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die smoothe Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMRNB-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSEEWALD-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SEEWALD","Image":"http___streams_egofm_de_egoFMSEEWALD-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die Vermessung der Musik.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSEEWALD-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSoundtrack-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM Soundtrack","Image":"http___streams_egofm_de_egoFMSoundtrack-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die cineastische Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSoundtrack-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoJAZZ-hq.m3u":{"Genre":["Jazz"],"Name":"egoFM JAZZ","Image":"http___streams_egofm_de_egoJAZZ-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die jazzige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoJAZZ-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoPURE-hq.m3u":{"Genre":["Indie"],"Name":"egoFM PURE","Image":"http___streams_egofm_de_egoPURE-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Ohne Punkt und Komma.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoPURE-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRAP-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RAP","Image":"http___streams_egofm_de_egoRAP-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die lässige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRAP-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRIFF-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RIFF","Image":"http___streams_egofm_de_egoRIFF-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die rockige Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRIFF-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSNOW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SNOW","Image":"http___streams_egofm_de_egoSNOW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die winterliche Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSNOW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSOUL-hq.m3u":{"Genre":["Indie","Soul"],"Name":"egoFM SOUL","Image":"http___streams_egofm_de_egoSOUL-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die gefühlvolle Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSOUL-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSUN-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SUN","Image":"http___streams_egofm_de_egoSUN-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die sommerliche Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSUN-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_fluxfm_de_70er_mp3-320_audio_.m3u":{"Genre":["70's"],"Name":"FluxFM - 70s","Image":"http___streams_fluxfm_de_70er_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/70er/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["80's"],"Name":"FluxFM - 80s","Image":"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/80er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Berlin Beach House Radio","Image":"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/bbeachhouse/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.m3u":{"Genre":["Hip-Hop","Oldschool"],"Name":"FluxFM - BoomFM Classics","Image":"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfmclassics/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfm_mp3-320_audio_.m3u":{"Genre":["Hip-Hop"],"Name":"FluxFM - BoomFM","Image":"http___streams_fluxfm_de_boomfm_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfm/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Dub","Reggae"],"Name":"FluxFM - Dub Radio","Image":"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/dubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Funk"],"Name":"FluxFM - B-Funk","Image":"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/event01/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000's Naughty","Image":"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/flx_2000/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_forward_mp3-320_audio_.m3u":{"Genre":["Various","Releases"],"Name":"FluxFM - FluxForward","Image":"http___streams_fluxfm_de_forward_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/flux-forward/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward.","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/forward/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Rock","Hard Rock"],"Name":"FluxFM - Hard Rock FM","Image":"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/hardrock/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Metal"],"Name":"FluxFM - MetalFM","Image":"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/metalfm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Classical","Contemporary"],"Name":"FluxFM - neoFM","Image":"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/neofm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_passport_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - Passport Approved","Image":"http___streams_fluxfm_de_passport_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/passport/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie"],"Name":"FluxFM - Radio Alternative","Image":"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/radioalt/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Reggae"],"Name":"FluxFM - Rasta Radio","Image":"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/rastaradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_studio56_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - JaegerMusic Radio","Image":"http___streams_fluxfm_de_studio56_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/studio56/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - XJAZZ","Image":"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/xjazz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Ambient","Yoga"],"Name":"FluxFM - Yoga Sounds","Image":"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/yogasounds/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_norbert_de_8000_zappa_aac.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Zappa Stream Radio","Image":"http___streams_norbert_de_8000_zappa_aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"http://streams.norbert.de:8000/zappa.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 2000s Rock","Image":"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/2000er/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 80s Rock","Image":"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-80srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio Bob! 90s Rock","Image":"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-90srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u":{"Genre":["Indie Rock"],"Name":"Radio BOB! Alternative","Image":"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-alternative/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Christmas Rock","Image":"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-christmas/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u":{"Genre":["Classic Rock"],"Name":"Radio BOB! Classic Rock","Image":"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-classicrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u":{"Genre":["Hard Rock"],"Name":"Radio BOB! Hardrock","Image":"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Wenn Rock, dann BOB! Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-hardrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Kuschelrock","Image":"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-kuschelrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u":{"Genre":["Metal"],"Name":"Radio BOB! Metal","Image":"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-metal/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB!","Image":"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-national/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u":{"Genre":["Punk"],"Name":"Radio BOB! Punk","Image":"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-punk/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u":{"Genre":["Rockabilly"],"Name":"Radio BOB! Rockabilly","Image":"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockabilly/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Hits","Image":"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockhits/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u":{"Genre":["Country"],"Name":"Radio BOB! Country","Image":"http___streams_radiobob_de_country_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/country/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_country_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/country/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_roadtrip_mp3-192_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Roadtrip","Image":"http___streams_radiobob_de_roadtrip_mp3-192_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"BOBs Road Trip-Stream","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/roadtrip/mp3-192/","alternativeStreams":{"https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rockparty","Image":"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/rockparty/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u":{"Genre":["Southern Rock"],"Name":"Radio BOB! Southern Rock","Image":"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/southernrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___stream_srg-ssr_ch_m_couleur3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"RTS - Couleur 3","Image":"http___stream_srg-ssr_ch_m_couleur3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/couleur3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_espace-2_mp3_128.m3u":{"Genre":["Classical"],"Name":"RTS - Espace 2","Image":"http___stream_srg-ssr_ch_m_espace-2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/espace-2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTS - La Premiere","Image":"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/la-1ere/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u":{"Genre":["Indie"],"Name":"RTS - option musique","Image":"http___stream_srg-ssr_ch_m_option-musique_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/option-musique/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retedue_mp3_128.m3u":{"Genre":["Classical","Various","Culture"],"Name":"RSI - Rete Due","Image":"http___stream_srg-ssr_ch_m_retedue_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retedue/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retetre_mp3_128.m3u":{"Genre":["Indie","Pop"],"Name":"RSI - Rete Tre","Image":"http___stream_srg-ssr_ch_m_retetre_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retetre/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_reteuno_mp3_128.m3u":{"Genre":["News","Entertainment","News"],"Name":"RSI - Rete Uno","Image":"http___stream_srg-ssr_ch_m_reteuno_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/reteuno/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rr_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTR Radio","Image":"http___stream_srg-ssr_ch_m_rr_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Romansh"],"Language":"Romansh","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/rr/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.m3u":{"Genre":["Classical"],"Name":"Radio Swiss Classic","Image":"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsc_de/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsj_aacp_96.m3u":{"Genre":["Jazz"],"Name":"Radio Swiss Jazz","Image":"http___stream_srg-ssr_ch_m_rsj_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsj/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsp_aacp_96.m3u":{"Genre":["Pop"],"Name":"Radio Swiss Pop","Image":"http___stream_srg-ssr_ch_m_rsp_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsp/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_wfmt_com_main.m3u":{"Genre":["Classical"],"Name":"WFMT Chicago 98.7 - Classical","Image":"http___stream_wfmt_com_main.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wfmt.com/main","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_wqxr_org_wqxr.m3u":{"Genre":["Classical"],"Name":"WQXR New York - Classical Music","Image":"http___stream_wqxr_org_wqxr.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wqxr.org/wqxr","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___strm112_1_fm_blues_mobile_mp3.m3u":{"Genre":["Blues"],"Name":"1.FM - Blues Radio","Image":"http___strm112_1_fm_blues_mobile_mp3.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://strm112.1.fm/blues_mobile_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u":{"Genre":["Jazz"],"Name":"TSF Jazz","Image":"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.webp","Homepage":"https://www.tsfjazz.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ».","Codec":"MP3","Bitrate":128,"StreamUri":"https://tsfjazz.ice.infomaniak.ch/tsfjazz-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tunein_cdnstream1_com_3519_96_mp3.m3u":{"Genre":["News","Tv News","World News"],"Name":"CNN International","Image":"https___tunein_cdnstream1_com_3519_96_mp3.webp","Homepage":"https://www.cnn.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"TV Audio for CNN International","Codec":"MP3","Bitrate":96,"StreamUri":"https://tunein.cdnstream1.com/3519_96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___subfm_radioca_st_Sub_FM.m3u":{"Genre":["Dub","Dubstep","Garage","Grime","Deep House","Techno","Juke","Jungle Trap"],"Name":"SUB.FM - Where Bass Matters","Image":"http___subfm_radioca_st_Sub_FM.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://subfm.radioca.st/Sub.FM","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u":{"Genre":["News. MPB"],"Name":"Rádio UFMG Educativa 104.5 FM","Image":"https___ufmg_br_streamingradioaovivo_aovivo_mp3.webp","Homepage":"https://ufmg.br/comunicacao/radio-ufmg-educativa","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFMG Educativa 104.5 FM","Codec":"MP3","Bitrate":32,"StreamUri":"https://ufmg.br/streamingradioaovivo/aovivo.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___uk2_streamingpulse_com_ssl_vcr1.m3u":{"Genre":["Classical"],"Name":"Venice Classic Radio","Image":"https___uk2_streamingpulse_com_ssl_vcr1.webp","Homepage":"https://www.veniceclassicradio.eu/","Country":"Italy","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers.","Codec":"MP3","Bitrate":128,"StreamUri":"https://uk2.streamingpulse.com/ssl/vcr1","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___virtualtronics_net_proxy_zetafm_mp__stream.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"Zeta FM - 95.1 FM","Image":"https___virtualtronics_net_proxy_zetafm_mp__stream.webp","Homepage":"https://www.zetafmcr.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina.","Codec":"MP3","Bitrate":128,"StreamUri":"https://virtualtronics.net/proxy/zetafm?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"WDR 3","Image":"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr3/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Kulturradio","Codec":"MP3","Bitrate":256,"StreamUri":"https://wdr-wdr3-live.icecastssl.wdr.de/wdr/wdr3/live/mp3/256/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___wgbh-live_streamguys1_com_classical-hi.m3u":{"Genre":["Classical"],"Name":"WCRB Boston 99.5 - Classical","Image":"https___wgbh-live_streamguys1_com_classical-hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://wgbh-live.streamguys1.com/classical-hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___www_radioking_com_play_radio-doudou.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Doudou","Image":"https___www_radioking_com_play_radio-doudou.webp","Homepage":"https://www.radiodoudou.com","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radioking.com/play/radio-doudou","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_radiopommedapi_com_radio_mp3.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Pomme d'Api - La Radio des Petits","Image":"https___www_radiopommedapi_com_radio_mp3.webp","Homepage":"https://www.radiopommedapi.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radiopommedapi.com/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_ragya_com_prahar.m3u":{"Genre":["Indian Classical","Indian Instrumental"],"Name":"Ragya","Image":"https___www_ragya_com_prahar.webp","Homepage":"https://www.ragya.com/prahar","Country":"India","State":"Maharashtra","Region":"Maharashtra","Languages":["Hindi","Urdu","Sanskrit"],"Language":"Hindi, Urdu, Sanskrit","Description":"Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition.","Codec":"MP3","Bitrate":32,"StreamUri":"https://www.ragya.com/prahar","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___www_wwoz_org_listen_hi.m3u":{"Genre":["Jazz","Blues","Latin","Cajun","Funk"],"Name":"WWOZ New Orleans FM 90.7 - Various Artists","Image":"https___www_wwoz_org_listen_hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.wwoz.org/listen/hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wz7_servidoresbrasil_com_8162_stream.m3u":{"Genre":["MPB","Flashback"],"Name":"Rádio Hits 98.9 FM (Campos/São João da Barra)","Image":"https___wz7_servidoresbrasil_com_8162_stream.webp","Homepage":"https://redehits.fm","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Dá gosto de ouvir!","Codec":"MP3","Bitrate":32,"StreamUri":"https://wz7.servidoresbrasil.com:8162/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"Radio Zet","Image":"https___zt03_cdn_eurozet_pl_zet-tun_mp3.webp","Homepage":"https://www.radiozet.pl","Country":"Poland","State":"","Region":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://zt03.cdn.eurozet.pl/zet-tun.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdcb-ice_streamguys_org_80_wdcb128.m3u":{"Genre":["Blues","Jazz"],"Name":"WDCB Chicago FM 90.9 - Jazz & Blues","Image":"http___wdcb-ice_streamguys_org_80_wdcb128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdcb-ice.streamguys.org:80/wdcb128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.m3u":{"Genre":["Pop"],"Name":"WDR 1LIVE","Image":"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u":{"Genre":["Spoken Word"],"Name":"WDR 5","Image":"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr5/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-wdr5-live.icecast.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___west-aac-64_streamthejazzgroove_com_stream.m3u":{"Genre":["Jazz"],"Name":"The Jazz Groove","Image":"http___west-aac-64_streamthejazzgroove_com_stream.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://west-aac-64.streamthejazzgroove.com/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___wkcr_streamguys1_com_80_live.m3u":{"Genre":["Jazz","Classical"],"Name":"WKCR 89.9 FM","Image":"http___wkcr_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://wkcr.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___yumicoradio_net_8000_stream.m3u":{"Genre":["Future Funk","City Pop","Anime Groove","Vaporwave","Nu Disco","Electronic"],"Name":"Yumi Co. Radio","Image":"http___yumicoradio_net_8000_stream.webp","Homepage":"http://yumicoradio.net","Country":"France","State":"","Region":"","Languages":["English"],"Language":"English","Description":"24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived.","Codec":"MP3","Bitrate":256,"StreamUri":"http://yumicoradio.net:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256}},"totalWebradios":591,"webradioLanguages":["Arabic","Bengali","Brazilian Portuguese","Chinese","Corse","Czech","Danish","Dutch","English","Español","Francais","Français","French","German","Greek","Hebrew","Hindi","Indigenous Languages","Italian","Japanese","Kannada","Konkani","Korean","Lithuanian","Luxembourgish","Multilingual","Polish","Portugues","Portuguese","Romansh","Russian","Sanskrit","Spanish","Swedish","Tamil","Ukrainian","Urdu","Vietnamese/tiếng Việt","Welsh"],"totalWebradioLanguages":39,"webradioCountries":["Argentina","Australia","Austria","Bahamas","Belgium","Bermuda","Bolivia","Brazil","Canada","Chile","China","Colombia","Costa Rica","Cuba","Czech Republic","Denmark","Estonia","France","Germany","Ghana","Greece","Hungary","India","Israel","Italy","Japan","Korea, Democratic People's Republic Of","Kyrgyzstan","Lithuania","Luxembourg","Malaysia","Netherlands","New Zealand","Nigeria","Poland","Portugal","Republica Dominicana","Russia","Spain","Sweden","Switzerland","Syria","The Netherlands","Ukraine","United Kingdom","United States","USA","Vietnam","Wales"],"totalwebradioCountries":49,"webradioStates":{"Argentina":[],"Australia":["null"],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":["null"],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","null","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":["null"],"Denmark":["null"],"Estonia":["Tallinn"],"France":["Corse","null"],"Germany":["Baden-Württemberg","Bayern","Hesse","null"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":["null"],"New Zealand":["Dunedin","null"],"Nigeria":[],"Poland":["null"],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":["null"],"Syria":[],"The Netherlands":[],"Ukraine":[],"United Kingdom":["null"],"United States":["North Carolina","null","Ohio"],"USA":["Michigan"],"Vietnam":["Ho Chi Minh City"],"Wales":[]},"totalwebradioStates":238,"webradioRegions":{"Argentina":[],"Australia":["null"],"Austria":["Vienna"],"Bahamas":["Nassau"],"Belgium":["null"],"Bermuda":[],"Bolivia":[],"Brazil":["Amazonas","Bahia","Brasilia","Ceará","Espirito Santo","Goiás","Mato Grosso","Minas Gerais","Pará","Pernambuco","Rio De Janeiro","Rio Grande Do Norte","Rio Grande Do Sul","Santa Catarina","São Paulo"],"Canada":["Montreal","null","Québec"],"Chile":[],"China":[],"Colombia":["Antioquia"],"Costa Rica":[],"Cuba":["Havana/Habana","Minas De Matahambre","Sancti Spíritus"],"Czech Republic":["null"],"Denmark":["null"],"Estonia":["Tallinn"],"France":["Corse","null"],"Germany":["Baden-Württemberg","Bayern","Hesse","null"],"Ghana":[],"Greece":[],"Hungary":[],"India":["Karnataka","Maharashtra","Mangalore","Tamilnadu"],"Israel":[],"Italy":["Roma","Salerno"],"Japan":[],"Korea, Democratic People's Republic Of":["Pyongyang"],"Kyrgyzstan":[],"Lithuania":[],"Luxembourg":[],"Malaysia":["Kuala Lumpur"],"Netherlands":["null"],"New Zealand":["Dunedin","null"],"Nigeria":[],"Poland":["null"],"Portugal":["Lisboa","Lisbon"],"Republica Dominicana":["San Pedro De Macoris"],"Russia":[],"Spain":["Valencia"],"Sweden":[],"Switzerland":["null"],"Syria":[],"The Netherlands":[],"Ukraine":[],"United Kingdom":["null"],"United States":["North Carolina","null","Ohio"],"USA":["Michigan"],"Vietnam":["Ho Chi Minh City"],"Wales":[]},"totalwebradioRegions":238,"webradioCodecs":["AAC","AAC+","ADTS","FLAC","HE-AAC","HLS","MP3","MPEG","OGG","OPUS"],"totalwebradioCodecs":10,"webradioBitrates":["32","48","50","56","64","66","89","96","99","123","128","160","192","196","224","256","320","384","465"],"totalwebradioBitrates":19,"webradioGenres":["2000's","60's","70's","80's","90's","Acoustic","Adult","Adult Contemporary","Afrobeat","AfroHouse","AfroJazz","Ambient","Americana Roots Music","Anime","Anime Groove","Archive","Atmospheric","Atmospheric Texture","Avantgarde","Bachelor Pad","Baladas","Baroque","Bass","Bebop","Bhangra","Big Band","Black Metal","Blues","Bollywood","Bop","Bossanova","Brazilian Music","Breakbeat","Britpop","Cajun","Canada","Carnatic","Catholic","Celtic","Charts","Children","Chill Out","City Pop","Classical","Classical Music","Classic Hits","Classic Rock","Club","College Radio","Combos","Commercial","Community","Community Radio","Contemporary","Contemporary Jazz","Cool Jazz","Corse","Country","Cover Songs","Culture","Cumbia","Current Affairs","Dance","Dancehall","Debate","Deep","Deep Ambient","Deep Bass","Deep House","Deep Tech","Deportes","Desi-Influenced Asian","Digitally Affected Analog Rock","Disco","Discussion","DJ Mixes","Down-Tempo","Drum'n'Bass","Dub","Dubstep","Easy Listening","Easy-Tempo","Eclectic","Education","Educational","Eighties","Electro-Acoustic","Electronic","Electro-Pop","Entertainment","Entretenimiento","Entrevistas","Ethnic","Evergreens","Exotica","Experimental","Fado","Fight","Flashback","Flim","Folk","Folklore","Football","Freeform","Free Jazz","Funk","Fusion","Future Funk","Future Soul","Game","Garage","Garage Rock","General","German Rap","Golden Oldies","Gospel","Gothic","Grime","Groove","Hard Bop","Hardcore","Hard Drums","Hard Rock","Hard Trance","Heavy Metal","Hebrew Pop","Hip-Hop","House","IDM","Independent","Independent Music","Indian Classical","Indian Instrumental","Indie","Indie Folk","Indie Pop","Indie Rock","Indigenous","Industrial","Information","Instrumental","Instrumental Hiphop","International","Interviews","Jazz","Jeebanmukhi","Journalism","J-pop","J-rock","Juke","Jungle","Jungle Trap","Kids","Laidback","Latin","Latin Hits","Latino","Liquid Trap","Lithuanian","Live","Local News","Lo-Fi","Lokageeti","Lounge","Lullabies","Mainstream","Mainstream Jazz","Mashup","Math Rock","Mediaeval","Mediaset","Meditation","Mellow Rock","Mellow Vocals Mostly Female","Merengue","Metal","Metalcore","Mid-Tempo","Mild Pop","Minimal","Minimal Beats","Modern","Modern Big Band","Modern Rock","Montreal","Mp3","MPB","Musica Cristiana","Música Latina","Neo-Soul","New Age","New Country","New Jazz","News","News. MPB","News Talk","New Wave","Non-commercial","Non-profit","Noticias","Notícias","Noticiero","Nu Disco","Nu Grooves","Nu Metal","Oldies","Oldschool","Opera","OST","Pagode","Paranormal","Party","Past Time Favorites","Past Time Favs","Patriotic","Political Talk","Politics","Pop","Pop Rock","Pop-Rock","Post-bop","Post-Metal","Post Punk","Post-Punk","Post-Rock","Progressive","Progressive House","Progressive Rock","Progressive Trance","Psy","Psych Rock","Psytrance","Public Radio","Punk","Rabindrasangeet","Radio Universitaria","Rap","Rave","Reggae","Regional","Releases","Renaissance","Requests","R'n'B","Rock","Rockabilly","Rocksteady Classic","Romántico","Romantique","Roots Music","Roots Reggae","Salsa","Samba","Schlager Music","Scifi","Sertanejo","Shoegaze","Ska","Smooth Jazz","Smooth Lounge","Soccer","Soft Rock","Soul","Soundscape","Soundtrack","Southern Rock","Space Music","Special Events","Spiritual","Spoken Word","Sport","Straight-ahead","Student Radio","Synth-Pop","Talk","Tamil Movie Songs","Tamil Radio","Techno","Tech Trance","Tiki","Top 40","Top Hits","Trance","Trancestep","Trip-Hop","Tropical/Urbana","Tv News","Uk Funky","Underground","University","University Radio","Uplifting Trance","Urbain","Urbana","Vaporwave","Variedades","Variety","Various","Vintage Music","Vocal","Vocal Trance","Walm","Weather","World Music","World News","Yoga","Youth"],"totalWebradioGenres":307,"webradioStatus":{"http___200_128_65_57_8000_live.m3u":{"date":"2024-07-03","count":1,"error":"http://200.128.65.57:8000/live: Server returned 404 Not Found"},"http___livestreams_radioton_de_http_rt-live-bw_m3u.m3u.AAC.64":{"date":"2024-07-03","count":16,"error":"http://livestreams.radioton.de/http/rt-live-mobile-bw.m3u: Invalid data found when processing input"},"http___yumicoradio_net_8000_stream.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x55abeda30b80] Connection to tcp://yumicoradio.net:8000 failed: Connection timed out\nhttp://yumicoradio.net:8000/stream: Connection timed out"},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"date":"2024-07-03","count":5,"error":"https://18003.live.streamtheworld.com/RT_SPAAC.aac: Server returned 403 Forbidden (access denied)"},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://22653.live.streamtheworld.com/TOPZEN.mp3: Server returned 403 Forbidden (access denied)"},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"date":"2024-07-03","count":4,"error":"https://akashvani.gov.in/radio/live.php?channel=5: Invalid data found when processing input"},"https___chokostream_com_8010_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x56222dcf0200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8010/live: Input/output error"},"https___chokostream_com_8050_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x561584cc1200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8050/live: Input/output error"},"https___chokostream_com_8070_live.m3u":{"date":"2024-07-03","count":3,"error":"[tcp @ 0x559b88d98200] Failed to resolve hostname chokostream.com: Temporary failure in name resolution\nhttps://chokostream.com:8070/live: Input/output error"},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"date":"2024-07-03","count":6,"error":"[tls @ 0x55acbb6bfbc0] A TLS fatal alert has been received.\nhttps://emisoras.dip-badajoz.es:58062/stream: Input/output error"},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"date":"2024-07-03","count":7,"error":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3: Server returned 5XX Server Error reply"},"https___myradio24_org_radiometal.m3u":{"date":"2024-07-03","count":7,"error":"https://myradio24.org/radiometal: Server returned 404 Not Found"},"https___www_ragya_com_prahar.m3u":{"date":"2024-07-03","count":4,"error":"https://www.ragya.com/prahar: Invalid data found when processing input"}}} diff --git a/docs/db/index/webradiodb-combined.min.json.gz b/docs/db/index/webradiodb-combined.min.json.gz index d764e09d..d505e7d0 100644 Binary files a/docs/db/index/webradiodb-combined.min.json.gz and b/docs/db/index/webradiodb-combined.min.json.gz differ diff --git a/docs/db/index/webradios.min.json b/docs/db/index/webradios.min.json index ca8423c0..36264495 100644 --- a/docs/db/index/webradios.min.json +++ b/docs/db/index/webradios.min.json @@ -1 +1 @@ -{"http___158_69_74_203_80_.m3u":{"Genre":["Jazz","Funk","Soul","World Music","Latin","Lounge","Nu Grooves"],"Name":"SwissGroove","Image":"http___158_69_74_203_80_.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://158.69.74.203:80/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u":{"Genre":["Rock","Lokageeti","Rabindrasangeet","Jeebanmukhi"],"Name":"Radio Bangla Net","Image":"http___18163_live_streamtheworld_com_SP_R3563475_SC.webp","Homepage":"https://radiobanglanet.com/","Country":"India","State":"","Languages":["Bengali"],"Language":"Bengali","Description":"A Radio Station for all Bengalis","Codec":"AAC","Bitrate":64,"StreamUri":"http://18163.live.streamtheworld.com/SP_R3563475_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___200_128_65_57_8000_live.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UESC","Image":"http___200_128_65_57_8000_live.webp","Homepage":"http://radio.uesc.br/3.html","Country":"Brazil","State":"Bahia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Inovação, conhecimento e música de qualidade!","Codec":"MPEG","Bitrate":128,"StreamUri":"http://200.128.65.57:8000/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___200_129_35_230_8081_aovivo_ogg_m3u.m3u":{"Genre":["MPB","News","Educational"],"Name":"Universitária FM","Image":"http___200_129_35_230_8081_aovivo_ogg_m3u.webp","Homepage":"http://www.radiouniversitariafm.com.br/","Country":"Brazil","State":"Ceará","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://200.129.35.230:8081/aovivo.ogg.m3u","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___200_136_219_172_8000_radioufscar96_mp3.m3u":{"Genre":["News","Various"],"Name":"Rádio UFSCar 95.3 FM","Image":"http___200_136_219_172_8000_radioufscar96_mp3.webp","Homepage":"http://radio.ufscar.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFSCar - Escute Diferente","Codec":"MP3","Bitrate":128,"StreamUri":"http://200.136.219.172:8000/radioufscar96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___206_189_117_157_8000_stream.m3u":{"Genre":["Electronic","Grime","Hip-Hop","House"],"Name":"Rinse FM","Image":"http___206_189_117_157_8000_stream.webp","Homepage":"https://rinse.fm/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC+","Bitrate":128,"StreamUri":"http://206.189.117.157:8000/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[128],"highestBitrate":128},"http___217_20_116_68_32032_stream.m3u":{"Genre":["International"],"Name":"Sohos FM 88.7","Image":"http___217_20_116_68_32032_stream.webp","Homepage":"http://sohosfm.gr/","Country":"Greece","State":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://217.20.116.68:32032/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___54_173_171_80_8000_6forty.m3u":{"Genre":["Indie","Post-Rock","Post-Metal","Modern","Experimental"],"Name":"6forty Radio","Image":"http___54_173_171_80_8000_6forty.webp","Homepage":"http://www.6fortyradio.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"a home for interesting music","Codec":"MP3","Bitrate":192,"StreamUri":"http://54.173.171.80:8000/6forty","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___5_135_183_124_8073_stream.m3u":{"Genre":["Dance","Pop","Latino","Rock","House","Techno"],"Name":"Onda Torrente Radio","Image":"http___5_135_183_124_8073_stream.webp","Homepage":"https://www.ondatorrenteradio.com","Country":"Spain","State":"Valencia","Languages":["Spanish"],"Language":"Spanish","Description":"Somos la radio de todo el mundo","Codec":"MP3","Bitrate":128,"StreamUri":"http://5.135.183.124:8073/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___7878_go2stream_fr_8000_stream.m3u":{"Genre":["Corse"],"Name":"Radio Balagne","Image":"http___7878_go2stream_fr_8000_stream.webp","Homepage":"http://www.radiobalagne.com/","Country":"France","State":"Corse","Languages":["Corse","Francais"],"Language":"Corse, Francais","Description":"A voce insulana","Codec":"MPEG","Bitrate":128,"StreamUri":"http://7878.go2stream.fr:8000/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___79_120_39_202_8002_mathrock.m3u":{"Genre":["Math Rock"],"Name":"Caprice Radio Math Rock","Image":"http___79_120_39_202_8002_mathrock.webp","Homepage":"http://radcap.ru/mathrock.html","Country":"Russia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"http://79.120.39.202:8002/mathrock","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___81_92_238_33_80.m3u":{"Genre":["Pop","Charts"],"Name":"Eldoradio","Image":"http___81_92_238_33_80.webp","Homepage":"","Country":"Luxembourg","State":"","Languages":["Luxembourgish"],"Language":"Luxembourgish","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://81.92.238.33:80","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___82_135_234_195_8000_goldfm_mp3.m3u":{"Genre":["Adult Contemporary","Rock"],"Name":"Gold FM","Image":"http___82_135_234_195_8000_goldfm_mp3.webp","Homepage":"https://goldfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/goldfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Kaunas)","Image":"http___82_135_234_195_8000_kelyje_kaunas_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_kaunas.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Klaipėda, Vilnius)","Image":"http___82_135_234_195_8000_kelyje_klaipeda_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_klaipeda.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u":{"Genre":["Community","Indie","Experimental","Pop","Rock","Techno"],"Name":"L'Eko des Garrigues","Image":"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.webp","Homepage":"http://www.ekodesgarrigues.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"OGG","Bitrate":320,"StreamUri":"http://91.121.159.124:8000/eko-des-garrigues-256k.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[320],"highestBitrate":320},"http___91_218_212_67_8000_stream.m3u":{"Genre":["Spoken Word"],"Name":"Hromadske Radio","Image":"http___91_218_212_67_8000_stream.webp","Homepage":"https://hromadske.radio/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine Talk","Codec":"MP3","Bitrate":160,"StreamUri":"http://91.218.212.67:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u":{"Genre":["Various"],"Name":"BBC World Service","Image":"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_world_service","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___antena1_newradio_it_stream_ext__mp3.m3u":{"Genre":["Adult Contemporary","Jazz","Pop","Smooth Jazz"],"Name":"Antena 1 São Paulo, SP (ZYD823 94,7 MHz FM)","Image":"http___antena1_newradio_it_stream_ext__mp3.webp","Homepage":"http://antena1.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"ANTENA1 - 94 7 FM","Codec":"AAC+","Bitrate":64,"StreamUri":"http://antena1.newradio.it/stream?ext=.mp3","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Hip-Hop","R'n'B","Soul","Gospel","Electronic"],"Name":"BBC Radio 1Xtra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/1xtra","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Indie","Rock","Funk"],"Name":"BBC Radio 6 Music","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_6music/bbc_6music.isml/bbc_6music-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Contemporary","Bollywood","Bhangra","Pop","Urbain"],"Name":"BBC Asian Network","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_asian_network/bbc_asian_network.isml/bbc_asian_network-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio Cymru","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru","Country":"Wales","State":"","Languages":["Welsh"],"Language":"Welsh","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_cymru/bbc_radio_cymru.isml/bbc_radio_cymru-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u":{"Genre":["News","Discussion","Sport","Interviews"],"Name":"BBC Radio 5 Live","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/programmes/b0070hx6","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"The latest sport with coverage and debate, featuring commentaries on the big games and sporting events.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_five_live/bbc_radio_five_live.isml/bbc_radio_five_live-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Archive"],"Name":"BBC Radio 4 Extra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4extra","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_four_extra/bbc_radio_four_extra.isml/bbc_radio_four_extra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourfm/bbc_radio_fourfm.isml/bbc_radio_fourfm-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4 LW","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"Longwave broadcast of BBC Radio 4.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourlw/bbc_radio_fourlw.isml/bbc_radio_fourlw-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Charts"],"Name":"BBC Radio 1","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Dance"],"Name":"BBC Radio 1 Dance","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1dance","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"A mix of classic, current and future dance music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Meditation"],"Name":"BBC Radio 1 Relax","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1relax","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"A mix of relaxing and meditating music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Classical","Jazz","World Music"],"Name":"BBC Radio 3","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio 2","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_two/bbc_radio_two.isml/bbc_radio_two-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___audio1_ideastream_org_wclv_mp3.m3u":{"Genre":["Classical"],"Name":"WCLV Cleveland 104.9 - Classical","Image":"http___audio1_ideastream_org_wclv_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://audio1.ideastream.org/wclv.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___centova_rockhost_com_8001_stream.m3u":{"Genre":["Ethnic","Eclectic"],"Name":"Hollow Earth Radio","Image":"http___centova_rockhost_com_8001_stream.webp","Homepage":"https://www.hollowearthradio.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Non-commercial DIY radio station for underrepresented music, sounds and perspectives","Codec":"MP3","Bitrate":128,"StreamUri":"http://centova.rockhost.com:8001/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u":{"Genre":["Indie Rock"],"Name":"WEQX 102.7 Manchester, VT","Image":"http___crystalout_surfernetwork_com_8001_WEQX_MP3.webp","Homepage":"http://www.weqx.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The real alternative","Codec":"MP3","Bitrate":128,"StreamUri":"http://crystalout.surfernetwork.com:8001/WEQX_MP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___current_stream_publicradio_org_kcmp_mp3.m3u":{"Genre":["Indie"],"Name":"KCMP 89.3 FM - The Current","Image":"http___current_stream_publicradio_org_kcmp_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://current.stream.publicradio.org/kcmp.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___dancewave_online_dance_mp3.m3u":{"Genre":["Dance","House","Trance"],"Name":"Dance Wave!","Image":"http___dancewave_online_dance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Languages":["English"],"Language":"English","Description":"All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet!","Codec":"MP3","Bitrate":128,"StreamUri":"http://dancewave.online/dance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_fipradio_fr_live_fip-midfi_mp3.m3u":{"Genre":["Classical","Jazz","Rock","World Music"],"Name":"France Inter Paris (FIP)","Image":"http___direct_fipradio_fr_live_fip-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.fipradio.fr/live/fip-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_franceculture_fr_live_franceculture-midfi_mp3.m3u":{"Genre":["Spoken Word","Current Affairs"],"Name":"France Culture Live","Image":"http___direct_franceculture_fr_live_franceculture-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.franceculture.fr/live/franceculture-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusique-midfi_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"France Musique Live","Image":"http___direct_francemusique_fr_live_francemusique-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusique-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.m3u":{"Genre":["Classical"],"Name":"France Musique Classique Plus","Image":"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiqueclassiqueplus-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.m3u":{"Genre":["Contemporary"],"Name":"France Musique La Contemporaine","Image":"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelacontemporaine-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.m3u":{"Genre":["Jazz"],"Name":"France Musique La Jazz","Image":"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelajazz-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___eagle_streemlion_com_4040_stream_icy_http.m3u":{"Genre":["Progressive Rock"],"Name":"Prog Frog","Image":"http___eagle_streemlion_com_4040_stream_icy_http.webp","Homepage":"https://prog-frog.com/","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"Progressive Rock Radio Worldwide","Codec":"MP3","Bitrate":128,"StreamUri":"http://eagle.streemlion.com:4040/stream?icy=http","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u":{"Genre":["Jazz","Blues","Soul"],"Name":"Jazz FM","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.webp","Homepage":"https://planetradio.co.uk/jazz-fm/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"Listen in Colour","Codec":"AAC","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/jazzhigh.aac?aw_0_1st.skey=1650998937","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.m3u":{"Genre":["Classical","News","Classical","Requests"],"Name":"Scala Radio","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/scalahigh.aac?aw_0_1st.skey=1650896299","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u":{"Genre":["Metal"],"Name":"La Grosse Radio Métal","Image":"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/metal/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u":{"Genre":["Reggae"],"Name":"La Grosse Radio Reggae","Image":"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/reggae/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-reggae-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u":{"Genre":["Rock"],"Name":"La Grosse Radio Rock","Image":"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/rock/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced!","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_stream_frequence3_net_frequence3_flac.m3u":{"Genre":["Pop","Charts"],"Name":"frequence3","Image":"http___hd_stream_frequence3_net_frequence3_flac.webp","Homepage":"https://www.frequence3.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"FLAC","Bitrate":0,"StreamUri":"http://hd.stream.frequence3.net/frequence3.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[0],"highestBitrate":0},"http___hirschmilch_de_7000_electronic_mp3.m3u":{"Genre":["Electronic"],"Name":"Hirschmilch Electronic","Image":"http___hirschmilch_de_7000_electronic_mp3.webp","Homepage":"https://hirschmilch.de/","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7.","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/electronic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_prog-house_mp3.m3u":{"Genre":["Progressive House"],"Name":"Hirschmilch Prog-House","Image":"http___hirschmilch_de_7000_prog-house_mp3.webp","Homepage":"https://hirschmilch.de/prog-house","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Progressive House on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/prog-house.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_psytrance_mp3.m3u":{"Genre":["Psytrance"],"Name":"Hirschmilch Psytrance","Image":"http___hirschmilch_de_7000_psytrance_mp3.webp","Homepage":"https://hirschmilch.de/psytrance","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Psytrance on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/psytrance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_techno_mp3.m3u":{"Genre":["Techno"],"Name":"Hirschmilch Techno","Image":"http___hirschmilch_de_7000_techno_mp3.webp","Homepage":"https://hirschmilch.de/techno","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Techno on https://hirschmilch.de","Codec":"MP3","Bitrate":123,"StreamUri":"http://hirschmilch.de:7000/techno.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[123],"highestBitrate":123},"http___ice-1_streamhoster_com_lv_wqed--893.m3u":{"Genre":["Classical"],"Name":"WQED Pittsburgh 89.3 - Classical","Image":"http___ice-1_streamhoster_com_lv_wqed--893.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice-1.streamhoster.com/lv_wqed--893","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_7soul-128-aac.m3u":{"Genre":["Soul","Vintage Music"],"Name":"Soma FM - Seven Inch Soul","Image":"http___ice1_somafm_com_7soul-128-aac.webp","Homepage":"https://somafm.com/7soul/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Vintage soul tracks from the original 45 RPM vinyl.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/7soul-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_beatblender-128-aac.m3u":{"Genre":["Electronic","Deep House","Down-Tempo"],"Name":"Soma FM - Beat Blender","Image":"http___ice1_somafm_com_beatblender-128-aac.webp","Homepage":"https://somafm.com/beatblender/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A late night blend of deep-house and downtempo chill.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/beatblender-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_bootliquor-128-aac.m3u":{"Genre":["Country","Americana Roots Music"],"Name":"Soma FM - Boot Liquor","Image":"http___ice1_somafm_com_bootliquor-128-aac.webp","Homepage":"https://somafm.com/bootliquor/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Americana Roots music for Cowhands, Cowpokes and Cowtippers.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/bootliquor-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_brfm-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - Black Rock FM","Image":"http___ice1_somafm_com_brfm-128-aac.webp","Homepage":"https://somafm.com/brfm/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"From the Playa to the world, for the annual Burning Man festival.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/brfm-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-128-aac.m3u":{"Genre":["Electronic","IDM"],"Name":"Soma FM - cliqhop idm","Image":"http___ice1_somafm_com_cliqhop-128-aac.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/cliqhop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-256-mp3.m3u":{"Genre":["IDM"],"Name":"cliqhop idm - SomaFM","Image":"http___ice1_somafm_com_cliqhop-256-mp3.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"MP3","Bitrate":256,"StreamUri":"http://ice1.somafm.com/cliqhop-256-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ice1_somafm_com_covers-128-mp3.m3u":{"Genre":["Pop","Cover Songs"],"Name":"Soma FM - Covers","Image":"http___ice1_somafm_com_covers-128-mp3.webp","Homepage":"https://somafm.com/covers/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Just covers. Songs you know by artists you don't. We've got you covered.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice1.somafm.com/covers-128-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_deepspaceone-128-aac.m3u":{"Genre":["Electronic","Ambient","Experimental","Space Music"],"Name":"Soma FM - Deep Space One","Image":"http___ice1_somafm_com_deepspaceone-128-aac.webp","Homepage":"https://somafm.com/deepspaceone/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Deep ambient electronic, experimental and space music. For inner and outer space exploration.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/deepspaceone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_defcon-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - DEF CON Radio","Image":"http___ice1_somafm_com_defcon-128-aac.webp","Homepage":"https://somafm.com/defcon/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Music for Hacking. The DEF CON Year-Round Channel.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/defcon-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_digitalis-128-aac.m3u":{"Genre":["Rock","Digitally Affected Analog Rock"],"Name":"Soma FM - Digitalis","Image":"http___ice1_somafm_com_digitalis-128-aac.webp","Homepage":"https://somafm.com/digitalis/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Digitally affected analog rock to calm the agitated heart.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/digitalis-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dronezone-128-aac.m3u":{"Genre":["Electronic","Ambient","Atmospheric Texture","Minimal Beats"],"Name":"Soma FM - Drone Zone","Image":"http___ice1_somafm_com_dronezone-128-aac.webp","Homepage":"https://somafm.com/dronezone/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Served best chilled, safe with most medications. Atmospheric textures with minimal beats.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dronezone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dubstep-128-aac.m3u":{"Genre":["Dub","Dubstep","Deep Bass"],"Name":"Soma FM - Dub Step Beyond","Image":"http___ice1_somafm_com_dubstep-128-aac.webp","Homepage":"https://somafm.com/dubstep/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Dubstep, Dub and Deep Bass. May damage speakers at high volume.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dubstep-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_fluid-128-aac.m3u":{"Genre":["Electronic","Instrumental Hiphop","Future Soul","Liquid Trap"],"Name":"Soma FM - Fluid","Image":"http___ice1_somafm_com_fluid-128-aac.webp","Homepage":"https://somafm.com/fluid/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Drown in the electronic sound of instrumental hiphop, future soul and liquid trap.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/fluid-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_folkfwd-128-aac.m3u":{"Genre":["Folk","Indie Folk"],"Name":"Soma FM - Folk Forward","Image":"http___ice1_somafm_com_folkfwd-128-aac.webp","Homepage":"https://somafm.com/folkfwd/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Indie Folk, Alt-folk and the occasional folk classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/folkfwd-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_groovesalad-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo"],"Name":"Soma FM - Groove Salad","Image":"http___ice1_somafm_com_groovesalad-128-aac.webp","Homepage":"https://somafm.com/groovesalad/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A nicely chilled plate of ambient/downtempo beats and grooves.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/groovesalad-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_illstreet-128-aac.m3u":{"Genre":["Lounge","Bachelor Pad","Exotica","Vintage Music"],"Name":"Soma FM - Illinois Street Lounge","Image":"http___ice1_somafm_com_illstreet-128-aac.webp","Homepage":"https://somafm.com/illstreet/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Classic bachelor pad, playful exotica and vintage music of tomorrow.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/illstreet-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_indiepop-128-aac.m3u":{"Genre":["Pop","Indie Pop"],"Name":"Soma FM - Indie Pop Rocks!","Image":"http___ice1_somafm_com_indiepop-128-aac.webp","Homepage":"https://somafm.com/indiepop/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"New and classic favorite indie pop tracks.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/indiepop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_live-128-aac.m3u":{"Genre":["Electronic","Live","Special Events"],"Name":"Soma FM - Live","Image":"http___ice1_somafm_com_live-128-aac.webp","Homepage":"https://somafm.com/live/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Special Live Events and rebroadcasts of past live events.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/live-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_lush-128-aac.m3u":{"Genre":["Electronic","Mellow Vocals Mostly Female"],"Name":"Soma FM - Lush","Image":"http___ice1_somafm_com_lush-128-aac.webp","Homepage":"https://somafm.com/lush/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Sensuous and mellow female vocals, many with an electronic influence.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/lush-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_metal-128-aac.m3u":{"Genre":["Metal"],"Name":"Soma FM - Metal Detector","Image":"http___ice1_somafm_com_metal-128-aac.webp","Homepage":"https://somafm.com/metal/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/metal-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_missioncontrol-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - Mission Control","Image":"http___ice1_somafm_com_missioncontrol-128-aac.webp","Homepage":"https://somafm.com/missioncontrol/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Celebrating NASA and Space Explorers everywhere.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/missioncontrol-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_poptron-128-aac.m3u":{"Genre":["Pop","Electro-Pop","Indie Rock"],"Name":"Soma FM - PopTron","Image":"http___ice1_somafm_com_poptron-128-aac.webp","Homepage":"https://somafm.com/poptron/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Electropop and indie dance rock with sparkle and pop.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/poptron-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_secretagent-128-aac.m3u":{"Genre":["Pop","Easy-Tempo","60's"],"Name":"Soma FM - Secret Agent","Image":"http___ice1_somafm_com_secretagent-128-aac.webp","Homepage":"https://somafm.com/secretagent/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/secretagent-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_seventies-128-aac.m3u":{"Genre":["Rock","70's","Mellow Rock"],"Name":"Soma FM - Left Coast 70s","Image":"http___ice1_somafm_com_seventies-128-aac.webp","Homepage":"https://somafm.com/seventies/index.html","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Mellow album rock from the Seventies. Yacht not required.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/seventies-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sf1033-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - SF 10-33","Image":"http___ice1_somafm_com_sf1033-128-aac.webp","Homepage":"https://somafm.com/sf1033/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Ambient music mixed with the sounds of San Francisco public safety radio traffic.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sf1033-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sonicuniverse-128-aac.m3u":{"Genre":["Jazz","Avantgarde"],"Name":"Soma FM - Sonic Universe","Image":"http___ice1_somafm_com_sonicuniverse-128-aac.webp","Homepage":"https://somafm.com/sonicuniverse/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Transcending the world of jazz with eclectic, avant-garde takes on tradition.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sonicuniverse-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_spacestation-128-aac.m3u":{"Genre":["Electronic","Mid-Tempo"],"Name":"Soma FM - Space Station Soma","Image":"http___ice1_somafm_com_spacestation-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/spacestation-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_suburbsofgoa-128-aac.m3u":{"Genre":["World Music","Desi-Influenced Asian","World Music"],"Name":"Soma FM - Suburbs of Goa","Image":"http___ice1_somafm_com_suburbsofgoa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/suburbsofgoa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thetrip-128-aac.m3u":{"Genre":["Pop","Progressive House","Trance"],"Name":"Soma FM - The Trip","Image":"http___ice1_somafm_com_thetrip-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thetrip-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thistle-128-aac.m3u":{"Genre":["Folk","Celtic","Roots Music"],"Name":"Soma FM - ThistleRadio","Image":"http___ice1_somafm_com_thistle-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thistle-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_u80s-128-aac.m3u":{"Genre":["Pop","80's","Synth-Pop","New Wave"],"Name":"Soma FM - Underground 80s","Image":"http___ice1_somafm_com_u80s-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/u80s-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice2_somafm_com_gsclassic-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo","2000's"],"Name":"Soma FM - Groove Salad Classic","Image":"http___ice2_somafm_com_gsclassic-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice2.somafm.com/gsclassic-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice4_somafm_com_reggae-128-aac.m3u":{"Genre":["Reggae","Ska","Rocksteady Classic","Deep"],"Name":"Soma FM - Heavyweight Reggae","Image":"http___ice4_somafm_com_reggae-128-aac.webp","Homepage":"https://somafm.com/reggae/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice4.somafm.com/reggae-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice5_securenetsystems_net_KCSM.m3u":{"Genre":["Jazz"],"Name":"KCSM","Image":"http___ice5_securenetsystems_net_KCSM.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://ice5.securenetsystems.net/KCSM","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___ice_bassdrive_net_80_stream.m3u":{"Genre":["Drum'n'Bass"],"Name":"Bassdrive Radio","Image":"http___ice_bassdrive_net_80_stream.webp","Homepage":"https://www.bassdrive.com/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice.bassdrive.net:80/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u":{"Genre":["Rock"],"Name":"SuperStereo 1","Image":"http___icecast_centaury_cl_7570_SuperStereoHiRes1.webp","Homepage":"https://www.hiresaudio.online/superstereo-1/","Country":"Chile","State":"","Languages":["English"],"Language":"English","Description":"YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’","Codec":"OGG","Bitrate":48,"StreamUri":"http://icecast.centaury.cl:7570/SuperStereoHiRes1","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[48],"highestBitrate":48},"http___icecast_err_ee_80_raadio4korge_mp3.m3u":{"Genre":["News","Pop","Jazz","Classical"],"Name":"Raadio 4","Image":"http___icecast_err_ee_80_raadio4korge_mp3.webp","Homepage":"https://r4.err.ee/","Country":"Estonia","State":"Tallinn","Languages":["Russian"],"Language":"Russian","Description":"Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia","Codec":"MP3","Bitrate":320,"StreamUri":"http://icecast.err.ee:80/raadio4korge.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___icecast_omroep_nl_radio1-bb-aac.m3u":{"Genre":["News"],"Name":"NPO Radio 1","Image":"http___icecast_omroep_nl_radio1-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio1-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio2-bb-aac.m3u":{"Genre":["Pop","Dance","Oldies","Rock"],"Name":"NPO Radio 2","Image":"http___icecast_omroep_nl_radio2-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio2-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio4-bb-aac.m3u":{"Genre":["Classical"],"Name":"NPO Radio 4","Image":"http___icecast_omroep_nl_radio4-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio4-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_unitedradio_it_Virgin_mp3.m3u":{"Genre":["Mediaset","Pop Rock"],"Name":"Virgin Radio Italia","Image":"http___icecast_unitedradio_it_Virgin_mp3.webp","Homepage":"http://www.virginradio.it/","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.unitedradio.it/Virgin.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klara-high_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"VRT - Klara","Image":"http___icecast_vrtcdn_be_klara-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klara-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u":{"Genre":["Classical"],"Name":"VRT - Klara Continuo","Image":"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klaracontinuo-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm-high_mp3.m3u":{"Genre":["Pop"],"Name":"VRT - MNM","Image":"http___icecast_vrtcdn_be_mnm-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"VRT - MNM Hits","Image":"http___icecast_vrtcdn_be_mnm_hits-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm_hits-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u":{"Genre":["Eclectic"],"Name":"VRT - Radio 2","Image":"http___icecast_vrtcdn_be_ra2vlb-high_mp3.webp","Homepage":"https://radio2.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/ra2vlb-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio1-high_mp3.m3u":{"Genre":["Pop","Contemporary","Rock","News"],"Name":"VRT - Radio 1","Image":"http___icecast_vrtcdn_be_radio1-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio1-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Unwind","Image":"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-unwind","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio2_unwind-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru-high_mp3.m3u":{"Genre":["Indie"],"Name":"VRT - StuBru - Studio Brussels","Image":"http___icecast_vrtcdn_be_stubru-high_mp3.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u":{"Genre":["Pop","Rock"],"Name":"VRT Studio Brussel De Tijdloze","Image":"http___icecast_vrtcdn_be_stubru_tijdloze_aac.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru_tijdloze.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginHardRock_mp3.m3u":{"Genre":["Hard Rock","Mediaset"],"Name":"Virgin Radio Hard Rock","Image":"http___icy_unitedradio_it_VirginHardRock_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginHardRock.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginRockClassics_mp3.m3u":{"Genre":["Classic Rock","Mediaset"],"Name":"Virgin Radio Classic Rock","Image":"http___icy_unitedradio_it_VirginRockClassics_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginRockClassics.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___kdhx-ice_streamguys1_com_80_live.m3u":{"Genre":["Indie"],"Name":"KDHX 88.1 FM St. Louis","Image":"http___kdhx-ice_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://kdhx-ice.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___kuvo-ice_streamguys_org_kuvo-aac-128.m3u":{"Genre":["Jazz"],"Name":"KUVO 89.3 FM Denver","Image":"http___kuvo-ice_streamguys_org_kuvo-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvo-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.m3u":{"Genre":["Pop","R'n'B","Hip-Hop"],"Name":"KUVO HD2","Image":"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvohd2-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u":{"Genre":["Indie","Rock","Pop","New Age","Punk","Post-Punk","Electronic","Contemporary"],"Name":"KZradio הקצה","Image":"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.webp","Homepage":"https://kzradio.net/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Independent Internet-radio based in Tel Aviv","Codec":"HE-AAC","Bitrate":128,"StreamUri":"http://kzradio.mediacast.co.il/kzradio_live/kzradio/icecast.audio","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[128],"highestBitrate":128},"http___listen-nme_sharp-stream_com_nme1high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 1 - Classic & New Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme1high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme1high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen-nme_sharp-stream_com_nme2high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 2 - New & Upfront Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme2high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme2high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen_jazz88_org_ksds_mp3.m3u":{"Genre":["Jazz"],"Name":"San Diego Jazz 88.3","Image":"http___listen_jazz88_org_ksds_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://listen.jazz88.org/ksds.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live-aacplus-64_kexp_org_kexp64_aac.m3u":{"Genre":["Indie"],"Name":"KEXP 90.3 FM Seattle","Image":"http___live-aacplus-64_kexp_org_kexp64_aac.webp","Homepage":"https://www.kexp.org/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://live-aacplus-64.kexp.org/kexp64.aac","alternativeStreams":{"http___live-mp3-128_kexp_org_":{"StreamUri":"http://live-mp3-128.kexp.org/","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[128,64],"highestBitrate":128},"http___live-icy_dr_dk_A_A03H_mp3.m3u":{"Genre":["News","Talk"],"Name":"DR P1","Image":"http___live-icy_dr_dk_A_A03H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A03H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A04H_mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"DR P2","Image":"http___live-icy_dr_dk_A_A04H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A04H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A05H_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"DR P3","Image":"http___live-icy_dr_dk_A_A05H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A05H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A08H_mp3.m3u":{"Genre":["Pop","News"],"Name":"DR P4","Image":"http___live-icy_dr_dk_A_A08H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A08H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A29H_mp3.m3u":{"Genre":["Indie","Indie Rock","Rock"],"Name":"DR P6 Beat","Image":"http___live-icy_dr_dk_A_A29H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A29H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J","Image":"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/2TJW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.m3u":{"Genre":["Country"],"Name":"ABC Country","Image":"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/CTRW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.m3u":{"Genre":["Jazz"],"Name":"ABC Jazz","Image":"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/JAZW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J Unearthed","Image":"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.webp","Homepage":"https://www.abc.net.au/triplejunearthed/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/UNEW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live_radioec_com_ua_8000_kiev.m3u":{"Genre":["Pop","Rock","Techno"],"Name":"KrainaFM","Image":"http___live_radioec_com_ua_8000_kiev.webp","Homepage":"http://krainafm.com.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine's first all-Ukrainian-language radio","Codec":"MP3","Bitrate":128,"StreamUri":"http://live.radioec.com.ua:8000/kiev","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live_radioton_de_rt-live-bw.m3u":{"Genre":["80's"],"Name":"Radioton","Image":"http___live_radioton_de_rt-live-bw.webp","Homepage":"https://www.radioton.de/","Country":"Germany","State":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"Lang leben die 80er.","Codec":"MP3","Bitrate":192,"StreamUri":"http://live.radioton.de/rt-live-bw","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mainstream_amazingradios_com_8000_blues128.m3u":{"Genre":["Blues"],"Name":"Amazing Blues","Image":"http___mainstream_amazingradios_com_8000_blues128.webp","Homepage":"https://amazingradios.com/","Country":"USA","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://mainstream.amazingradios.com:8000/blues128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.m3u":{"Genre":["Classical"],"Name":"MDR Klassik","Image":"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://mdr-284350-0.cast.mdr.de/mdr/284350/0/aac/high/stream.aac","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___media-ice_musicradio_com_ClassicFMMP3.m3u":{"Genre":["Classical"],"Name":"Classic FM","Image":"http___media-ice_musicradio_com_ClassicFMMP3.webp","Homepage":"https://www.classicfm.com/","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://media-ice.musicradio.com/ClassicFMMP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___media_radio-libertaire_org_8080_radiolib_mp3.m3u":{"Genre":["Various","Talk"],"Name":"Radio Libertaire (France)","Image":"http___media_radio-libertaire_org_8080_radiolib_mp3.webp","Homepage":"https://www.radio-libertaire.net/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://media.radio-libertaire.org:8080/radiolib.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mediaserv21_live-streams_nl_8000_live.m3u":{"Genre":["Contemporary"],"Name":"Hi On Line - France","Image":"http___mediaserv21_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv21.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8000_live.m3u":{"Genre":["Pop","Golden Oldies"],"Name":"Hi On Line - Gold","Image":"http___mediaserv30_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8086_live.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop (320K)","Image":"http___mediaserv30_live-streams_nl_8086_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8086/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8088_live.m3u":{"Genre":["Classical"],"Name":"Hi On Line - Classical","Image":"http___mediaserv30_live-streams_nl_8088_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8088/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8034_live.m3u":{"Genre":["Latin"],"Name":"Hi On Line - Latin","Image":"http___mediaserv33_live-streams_nl_8034_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8034/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8036_live.m3u":{"Genre":["Lounge"],"Name":"Hi On Line - Lounge","Image":"http___mediaserv33_live-streams_nl_8036_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8036/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8006_live.m3u":{"Genre":["Jazz"],"Name":"Hi On Line - Jazz","Image":"http___mediaserv38_live-streams_nl_8006_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8006/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8027_live.m3u":{"Genre":["World Music"],"Name":"Hi On Line - World","Image":"http___mediaserv38_live-streams_nl_8027_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8027/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u":{"Genre":["Classical"],"Name":"Mother Earth Klassik","Image":"http___motherearth_streamserver24_com_18910_motherearth_klassik.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"http://motherearth.streamserver24.com:18910/motherearth.klassik","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u":{"Genre":["80's"],"Name":"harmony.fm","Image":"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.webp","Homepage":"https://www.harmonyfm.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Alles 80er!","Codec":"AAC","Bitrate":48,"StreamUri":"http://mp3.harmonyfm.de/harmonyfm/livestream.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u":{"Genre":["Pop","Dance","House","Hip-Hop","R'n'B"],"Name":"planet radio","Image":"http___mp3_planetradio_de_planetradio_hqlivestream_aac.webp","Homepage":"https://www.planetradio.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.aac","alternativeStreams":{"http___mp3_planetradio_de_planetradio_livestream_aac":{"StreamUri":"http://mp3.planetradio.de/planetradio/livestream.aac","Codec":"AAC","Bitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_mp3":{"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[48,128],"highestBitrate":128},"http___mscp2_live-streams_nl_8100_flac_flac.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop","Image":"http___mscp2_live-streams_nl_8100_flac_flac.webp","Homepage":"http://www.hionline.eu","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"FLAC","Bitrate":128,"StreamUri":"http://mscp2.live-streams.nl:8100/flac.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[128],"highestBitrate":128},"http___mscp3_live-streams_nl_8250_class-high_aac.m3u":{"Genre":["Classical"],"Name":"Naim Classical","Image":"http___mscp3_live-streams_nl_8250_class-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8250/class-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8340_jazz-high_aac.m3u":{"Genre":["Jazz"],"Name":"Naim Jazz","Image":"http___mscp3_live-streams_nl_8340_jazz-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8340/jazz-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8360_high_aac.m3u":{"Genre":["Eclectic"],"Name":"Naim Radio","Image":"http___mscp3_live-streams_nl_8360_high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8360/high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___msmn7_co_8018_stream.m3u":{"Genre":["Indie"],"Name":"CDNX","Image":"http___msmn7_co_8018_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://msmn7.co:8018/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ninarfm_grtvstream_com_8896__.m3u":{"Genre":["Various","News"],"Name":"Ninar FM نينار اف ام","Image":"http___ninarfm_grtvstream_com_8896__.webp","Homepage":"http://ninarfm.com/","Country":"Syria","State":"","Languages":["Arabic"],"Language":"Arabic","Description":"Ninar FM نينار اف ام","Codec":"MP3","Bitrate":96,"StreamUri":"http://ninarfm.grtvstream.com:8896/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___npr-ice_streamguys1_com_live_mp3.m3u":{"Genre":["News","News Talk","Political Talk","Politics","Public Radio","Talk"],"Name":"NPR - 24 Hour Program Stream","Image":"http___npr-ice_streamguys1_com_live_mp3.webp","Homepage":"https://www.npr.org/about-npr/472557877/npr-program-stream","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"NPR Program Stream","Codec":"MP3","Bitrate":96,"StreamUri":"http://npr-ice.streamguys1.com/live.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___okradio_rtvhd_net_8130__.m3u":{"Genre":["Pop","Música Latina"],"Name":"Vox Radio - 105.5 FM","Image":"http___okradio_rtvhd_net_8130__.webp","Homepage":"http://www.voxradio.fm/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música.","Codec":"AAC","Bitrate":56,"StreamUri":"http://okradio.rtvhd.net:8130/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[56],"highestBitrate":56},"http___play_organlive_com_8002_320.m3u":{"Genre":["Classical"],"Name":"OrganLive.com","Image":"http___play_organlive_com_8002_320.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320oe.m3u":{"Genre":["Classical"],"Name":"Organ Experience","Image":"http___play_organlive_com_8002_320oe.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320oe","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320pb.m3u":{"Genre":["Classical","Baroque"],"Name":"Positivly Baroque","Image":"http___play_organlive_com_8002_320pb.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320pb","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u":{"Genre":["Brazilian Music","Contemporary","Pop","Rock"],"Name":"Rádio Cidade","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.webp","Homepage":"https://radiocidade.fm/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Cidade - Rio de Janeiro","Codec":"AAC+","Bitrate":48,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[48],"highestBitrate":48},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.m3u":{"Genre":["Classical"],"Name":"WRTI Philadelphia 90.1 - Classical","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_CLASSICAL.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.m3u":{"Genre":["Jazz"],"Name":"WRTI Philadelphia 90.1 - Jazz","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_JAZZ.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u":{"Genre":["News"],"Name":"VRT - NWS","Image":"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.webp","Homepage":"https://www.vrt.be/vrtnws/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://progressive-audio.lwc.vrtcdn.be/content/fixed/11_11niws-snip_hi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___q2stream_wqxr_org_q2.m3u":{"Genre":["Classical"],"Name":"WQXR Q2 - Living Music, Living Composers","Image":"http___q2stream_wqxr_org_q2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://q2stream.wqxr.org/q2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio80k_out_airtime_pro_8000_radio80k_a.m3u":{"Genre":["Community Radio","Freeform","Variety"],"Name":"Radio 80000 Munich, Germany","Image":"http___radio80k_out_airtime_pro_8000_radio80k_a.webp","Homepage":"http://www.radio80k.de/","Country":"Germany","State":"","Languages":["English","German"],"Language":"English, German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio80k.out.airtime.pro:8000/radio80k_a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radio_comunica_ufrn_br_8000_live_aac.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária Natal 88.9 FM (UFRN)","Image":"http___radio_comunica_ufrn_br_8000_live_aac.webp","Homepage":"https://www.instagram.com/radiouniversitarianatal/","Country":"Brazil","State":"Rio Grande Do Norte","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Transforma Natal, transforma você!","Codec":"AAC","Bitrate":128,"StreamUri":"http://radio.comunica.ufrn.br:8000/live.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___radio_linn_co_uk_8000_autodj.m3u":{"Genre":["Jazz"],"Name":"Linn Jazz","Image":"http___radio_linn_co_uk_8000_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8000/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8003_autodj.m3u":{"Genre":["Eclectic"],"Name":"Linn Radio","Image":"http___radio_linn_co_uk_8003_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8003/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8004_autodj.m3u":{"Genre":["Classical"],"Name":"Linn Classical","Image":"http___radio_linn_co_uk_8004_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8004/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_m-1_fm_lietus_mp3.m3u":{"Genre":["Lithuanian","Various"],"Name":"Lietus","Image":"http___radio_m-1_fm_lietus_mp3.webp","Homepage":"https://www.lietus.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio.m-1.fm/lietus/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radio_plaza_one_mp3.m3u":{"Genre":["Vaporwave","Future Funk","Chill Out"],"Name":"Nightwave Plaza","Image":"http___radio_plaza_one_mp3.webp","Homepage":"https://plaza.one/","Country":"Japan","State":"","Languages":["English"],"Language":"English","Description":"Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity.","Codec":"MP3","Bitrate":128,"StreamUri":"http://radio.plaza.one/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio_stereoscenic_com_ama-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"A.M. Ambient","Image":"http___radio_stereoscenic_com_ama-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/ama-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radio_stereoscenic_com_asp-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"Ambient Sleeping Pill","Image":"http___radio_stereoscenic_com_asp-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/asp-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radioaovivo_senado_gov_br_canal2_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado Canal 2","Image":"http___radioaovivo_senado_gov_br_canal2_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado Canal 2","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.gov.br/canal2.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_senado_leg_br_fm_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado","Image":"http___radioaovivo_senado_leg_br_fm_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado 91.7 FM","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.leg.br/fm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u":{"Genre":["Classical","MPB"],"Name":"Rádio da Universidade 1080 AM (UFRGS)","Image":"http___radioaovivo_ufrgs_br_8000_stream_mp3.webp","Homepage":"https://www.ufrgs.br/radio/","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio da Universidade 1080 AM (UFRGS)","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.ufrgs.br:8000/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radionz-ice_streamguys_com_80_concert_mp3.m3u":{"Genre":["Classical"],"Name":"Radio New Zealand - Concert","Image":"http___radionz-ice_streamguys_com_80_concert_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/concert.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radionz-ice_streamguys_com_80_national_mp3.m3u":{"Genre":["Eclectic","Various","Current Affairs"],"Name":"Radio New Zealand - National","Image":"http___radionz-ice_streamguys_com_80_national_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/national.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___retro_dancewave_online_retrodance_mp3.m3u":{"Genre":["90's","Dance"],"Name":"Dance Wave Retro!","Image":"http___retro_dancewave_online_retrodance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Languages":["English"],"Language":"English","Description":"All about Dance before 2000!","Codec":"MP3","Bitrate":128,"StreamUri":"http://retro.dancewave.online/retrodance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___rootslegacy_fr_8080__listen_mp3.m3u":{"Genre":["Dub","Roots Reggae"],"Name":"Roots Legacy Radio - Dub UK & Roots Reggae","Image":"http___rootslegacy_fr_8080__listen_mp3.webp","Homepage":"https://www.rootslegacy.fr/","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":224,"StreamUri":"http://rootslegacy.fr:8080/;listen.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[224],"highestBitrate":224},"http___rtvhd_net_9942__.m3u":{"Genre":["Rock","Baladas"],"Name":"IQ Radio - 93.9 FM","Image":"http___rtvhd_net_9942__.webp","Homepage":"http://www.iqmedios.com/","Country":"Costa Rica","State":"","Languages":["English"],"Language":"English","Description":"IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más.","Codec":"AAC","Bitrate":64,"StreamUri":"http://rtvhd.net:9942/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___s1_slotex_pl_7430_stream.m3u":{"Genre":["Indie","Pop","Rock"],"Name":"Mittendrin ALT!NEU Radio der deutschen Minderheit","Image":"http___s1_slotex_pl_7430_stream.webp","Homepage":"https://mittendrin.pl/de/radio-altneu.html","Country":"Poland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://s1.slotex.pl:7430/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___sc3_radiocaroline_net_8030.m3u":{"Genre":["Rock","Classic Rock"],"Name":"Radio Caroline","Image":"http___sc3_radiocaroline_net_8030.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://sc3.radiocaroline.net:8030","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___shoutcastunlimited_com_8512.m3u":{"Genre":["Progressive Rock","Metal"],"Name":"PRM - Prog Rock & Metal","Image":"http___shoutcastunlimited_com_8512.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://shoutcastunlimited.com:8512","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___sk_cri_cn_915_m3u8.m3u":{"Genre":["World Music"],"Name":"CRI Radio EZFM 91.5 FM","Image":"http___sk_cri_cn_915_m3u8.webp","Homepage":"http://ezfm.cri.cn/live","Country":"China","State":"","Languages":["English"],"Language":"English","Description":"CRI Radio EZFM 91.5 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"http://sk.cri.cn/915.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"http___stream-33_zeno_fm_nkdugu37twzuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Raja Radio HD","Image":"http___stream-33_zeno_fm_nkdugu37twzuv.webp","Homepage":"https://tamilradios.net/raja-radio-hd/","Country":"India","State":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-33.zeno.fm/nkdugu37twzuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-icy_bauermedia_pt_m80_mp3.m3u":{"Genre":["70's","80's","90's","2000's"],"Name":"M80 Rádio","Image":"http___stream-icy_bauermedia_pt_m80_mp3.webp","Homepage":"https://m80.pt/","Country":"Portugal","State":"Lisbon","Languages":["Portuguese"],"Language":"Portuguese","Description":"Se a sua vida tem uma música, ela passa na M80","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-icy.bauermedia.pt/m80.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-relay-geo_ntslive_net_stream.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live London - Don't Assume","Image":"http___stream-relay-geo_ntslive_net_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream-relay-geo_ntslive_net_stream2.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live International","Image":"http___stream-relay-geo_ntslive_net_stream2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream0_wfmu_org_freeform-best-available.m3u":{"Genre":["Classical"],"Name":"WFMU 91.1 FM","Image":"http___stream0_wfmu_org_freeform-best-available.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream0.wfmu.org/freeform-best-available","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream1_opb_org_kmhd_mp3.m3u":{"Genre":["Jazz"],"Name":"KMHD Portland FM 89.1 - Jazz","Image":"http___stream1_opb_org_kmhd_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream1.opb.org/kmhd.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream2_radioquantica_com_8000_stream.m3u":{"Genre":["Underground","Urbain"],"Name":"Rádio Quântica","Image":"http___stream2_radioquantica_com_8000_stream.webp","Homepage":"https://www.radioquantica.com/","Country":"Portugal","State":"","Languages":["English","Portuguese"],"Language":"English, Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream2.radioquantica.com:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_dandelionradio_com_9414.m3u":{"Genre":["Indie"],"Name":"Dandelion Radio","Image":"http___stream_dandelionradio_com_9414.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.dandelionradio.com:9414","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_fr_morow_com_8080_morow_hi_aacp.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Morow - Retro Progressive Rock","Image":"http___stream_fr_morow_com_8080_morow_hi_aacp.webp","Homepage":"","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://stream.fr.morow.com:8080/morow_hi.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___stream_klassikradio_de_chor_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Chor","Image":"http___stream_klassikradio_de_chor_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/chor/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_dreams_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Dreams","Image":"http___stream_klassikradio_de_dreams_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/dreams/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_relax_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Relax","Image":"http___stream_klassikradio_de_relax_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/relax/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_laut_fm_alternativeworld.m3u":{"Genre":["Indie","Punk","New Wave","Britpop"],"Name":"Alternativeworld","Image":"http___stream_laut_fm_alternativeworld.webp","Homepage":"https://laut.fm/alternativeworld","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/alternativeworld","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_anderswelt.m3u":{"Genre":["New Wave","Gothic","Minimal","80's"],"Name":"Anderswelt","Image":"http___stream_laut_fm_anderswelt.webp","Homepage":"https://laut.fm/anderswelt","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Stuttgarter Wave-Klänge wie zu den guten alten Zeiten...","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/anderswelt","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_deutschrap.m3u":{"Genre":["Hip-Hop","Rap","German Rap","Urbain"],"Name":"Deutschrap","Image":"http___stream_laut_fm_deutschrap.webp","Homepage":"www.laut.fm/deutschrap","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Schluss mit Deutschrap Einheitsbrei!","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/deutschrap","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_kakerlakenradio.m3u":{"Genre":["Rock","Pop","Indie","New Wave","Punk","Britpop","Garage"],"Name":"Kakerlaken Radio","Image":"http___stream_laut_fm_kakerlakenradio.webp","Homepage":"http://indie-rock-radio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/kakerlakenradio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nightshift_alternative.m3u":{"Genre":["Gothic","Mediaeval","Nu Metal","80's","90's","Industrial","Metal","Metalcore"],"Name":"Nightshift Alternativ","Image":"http___stream_laut_fm_nightshift_alternative.webp","Homepage":"https://nightshift-alternativ.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nightshift_alternative","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nonpop.m3u":{"Genre":["Ambient","Avantgarde","Black Metal","Folk","Industrial","Lo-Fi","Minimal","Indie"],"Name":"NONPOP","Image":"http___stream_laut_fm_nonpop.webp","Homepage":"https://laut.fm/nonpop","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der Name ist Programm. Alles außer Massenware.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nonpop","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_scifi.m3u":{"Genre":["Vocal","Pop","Scifi"],"Name":"SciFi Radio","Image":"http___stream_laut_fm_scifi.webp","Homepage":"https://laut.fm/scifi","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Ein Online Radio für den Bereich Science Fiction.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/scifi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_resonance_fm_resonance.m3u":{"Genre":["Eclectic"],"Name":"Resonance Radio 104.4 FM","Image":"http___stream_resonance_fm_resonance.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.resonance.fm/resonance","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_srg-ssr_ch_m_couleur3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"RTS - Couleur 3","Image":"http___stream_srg-ssr_ch_m_couleur3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/couleur3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_espace-2_mp3_128.m3u":{"Genre":["Classical"],"Name":"RTS - Espace 2","Image":"http___stream_srg-ssr_ch_m_espace-2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/espace-2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTS - La Premiere","Image":"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/la-1ere/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u":{"Genre":["Indie"],"Name":"RTS - option musique","Image":"http___stream_srg-ssr_ch_m_option-musique_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/option-musique/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retedue_mp3_128.m3u":{"Genre":["Classical","Various","Culture"],"Name":"RSI - Rete Due","Image":"http___stream_srg-ssr_ch_m_retedue_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retedue/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retetre_mp3_128.m3u":{"Genre":["Indie","Pop"],"Name":"RSI - Rete Tre","Image":"http___stream_srg-ssr_ch_m_retetre_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retetre/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_reteuno_mp3_128.m3u":{"Genre":["News","Entertainment","News"],"Name":"RSI - Rete Uno","Image":"http___stream_srg-ssr_ch_m_reteuno_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/reteuno/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rr_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTR Radio","Image":"http___stream_srg-ssr_ch_m_rr_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Romansh"],"Language":"Romansh","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/rr/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.m3u":{"Genre":["Classical"],"Name":"Radio Swiss Classic","Image":"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsc_de/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsj_aacp_96.m3u":{"Genre":["Jazz"],"Name":"Radio Swiss Jazz","Image":"http___stream_srg-ssr_ch_m_rsj_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsj/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsp_aacp_96.m3u":{"Genre":["Pop"],"Name":"Radio Swiss Pop","Image":"http___stream_srg-ssr_ch_m_rsp_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsp/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_wfmt_com_main.m3u":{"Genre":["Classical"],"Name":"WFMT Chicago 98.7 - Classical","Image":"http___stream_wfmt_com_main.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wfmt.com/main","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_wqxr_org_wqxr.m3u":{"Genre":["Classical"],"Name":"WQXR New York - Classical Music","Image":"http___stream_wqxr_org_wqxr.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wqxr.org/wqxr","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u":{"Genre":["Dub","Reggae"],"Name":"Dr. Dick’s Dub Shack","Image":"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.webp","Homepage":"http://drdicksdubshack.com/","Country":"Bermuda","State":"","Languages":["English"],"Language":"English","Description":"Bermuda-based online radio station playing all species of dub, downtempo and bass music","Codec":"MP3","Bitrate":192,"StreamUri":"http://streamer.radio.co/s0635c8b0d/listen?fbclid=IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u":{"Genre":["Jazz","Classical","Soul"],"Name":"Apollo Radio","Image":"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.webp","Homepage":"https://www.apolloradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Bleiben sie entspannt","Codec":"MP3","Bitrate":192,"StreamUri":"http://streaming.apolloradio.de/apolloradio_simulcast_192k_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u":{"Genre":["Indie","Indie Rock","Canada","Commercial","Montreal","Mp3","Pop Rock"],"Name":"WKND 91,9","Image":"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.webp","Homepage":"http://quebec.wknd.fm/","Country":"Canada","State":"Québec","Languages":["Français"],"Language":"Français","Description":"WKND FM 91,9","Codec":"MP3","Bitrate":96,"StreamUri":"http://streaming.cjec.leclerccommunication.ca:8000/cjec.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___streaming_livespanel_com_20000_live.m3u":{"Genre":["Samba","Pagode","Pop"],"Name":"Rádio FM O DIA","Image":"http___streaming_livespanel_com_20000_live.webp","Homepage":"http://www.fmodia.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"FM O Dia","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.livespanel.com:20000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u":{"Genre":["News","Entertainment"],"Name":"Radio SRF 1","Image":"http___streaming_swisstxt_ch_m_drs1_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs1/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs2_mp3_128.m3u":{"Genre":["Classical","Jazz"],"Name":"Radio SRF 2 Kultur","Image":"http___streaming_swisstxt_ch_m_drs2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"Radio SRF 3","Image":"http___streaming_swisstxt_ch_m_drs3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs4news_mp3_128.m3u":{"Genre":["News"],"Name":"Radio SRF 4 News","Image":"http___streaming_swisstxt_ch_m_drs4news_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs4news/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsmw_mp3_128.m3u":{"Genre":["Pop","Schlager Music"],"Name":"Radio SRF Musikwelle","Image":"http___streaming_swisstxt_ch_m_drsmw_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsmw/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.m3u":{"Genre":["Indie"],"Name":"Radio SRF Virus","Image":"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsvirus/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u":{"Genre":["Eighties"],"Name":"80s80s","Image":"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.webp","Homepage":"https://www.80s80s.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.80s80s.de/web/mp3-192/streams.80s80s.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_egofm_de_egoCHILLOUT-hq.m3u":{"Genre":["Indie"],"Name":"egoFM CHILLOUT","Image":"http___streams_egofm_de_egoCHILLOUT-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die beruhigende Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoCHILLOUT-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFLASH-hq.m3u":{"Genre":["Indie","Electronic"],"Name":"egoFM FLASH","Image":"http___streams_egofm_de_egoFLASH-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die elektronische Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFLASH-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFM-hq.m3u":{"Genre":["Indie"],"Name":"egoFM live","Image":"http___streams_egofm_de_egoFM-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFM-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMBW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Baden-Württemberg","Image":"http___streams_egofm_de_egoFMBW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMBW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMHallOfFame-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM HallOfFame","Image":"http___streams_egofm_de_egoFMHallOfFame-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die legendäre Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMHallOfFame-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMKavka-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Kavka","Image":"http___streams_egofm_de_egoFMKavka-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die kavkaeske Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMKavka-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMNRW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM NRW","Image":"http___streams_egofm_de_egoFMNRW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMNRW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMRNB-hq.m3u":{"Genre":["R'n'B"],"Name":"egoFM R&B","Image":"http___streams_egofm_de_egoFMRNB-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die smoothe Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMRNB-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSEEWALD-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SEEWALD","Image":"http___streams_egofm_de_egoFMSEEWALD-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die Vermessung der Musik.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSEEWALD-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSoundtrack-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM Soundtrack","Image":"http___streams_egofm_de_egoFMSoundtrack-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die cineastische Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSoundtrack-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoJAZZ-hq.m3u":{"Genre":["Jazz"],"Name":"egoFM JAZZ","Image":"http___streams_egofm_de_egoJAZZ-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die jazzige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoJAZZ-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoPURE-hq.m3u":{"Genre":["Indie"],"Name":"egoFM PURE","Image":"http___streams_egofm_de_egoPURE-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Ohne Punkt und Komma.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoPURE-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRAP-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RAP","Image":"http___streams_egofm_de_egoRAP-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die lässige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRAP-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRIFF-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RIFF","Image":"http___streams_egofm_de_egoRIFF-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die rockige Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRIFF-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSNOW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SNOW","Image":"http___streams_egofm_de_egoSNOW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die winterliche Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSNOW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSOUL-hq.m3u":{"Genre":["Indie","Soul"],"Name":"egoFM SOUL","Image":"http___streams_egofm_de_egoSOUL-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die gefühlvolle Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSOUL-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSUN-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SUN","Image":"http___streams_egofm_de_egoSUN-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Die sommerliche Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSUN-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_fluxfm_de_70er_mp3-320_audio_.m3u":{"Genre":["70's"],"Name":"FluxFM - 70s","Image":"http___streams_fluxfm_de_70er_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/70er/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["80's"],"Name":"FluxFM - 80s","Image":"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/80er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Berlin Beach House Radio","Image":"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/bbeachhouse/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfm_mp3-320_audio_.m3u":{"Genre":["Hip-Hop"],"Name":"FluxFM - BoomFM","Image":"http___streams_fluxfm_de_boomfm_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfm/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.m3u":{"Genre":["Hip-Hop","Oldschool"],"Name":"FluxFM - BoomFM Classics","Image":"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfmclassics/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Dub","Reggae"],"Name":"FluxFM - Dub Radio","Image":"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/dubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Funk"],"Name":"FluxFM - B-Funk","Image":"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/event01/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000's Naughty","Image":"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/flx_2000/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_forward_mp3-320_audio_.m3u":{"Genre":["Various","Releases"],"Name":"FluxFM - FluxForward","Image":"http___streams_fluxfm_de_forward_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/flux-forward/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward.","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/forward/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Rock","Hard Rock"],"Name":"FluxFM - Hard Rock FM","Image":"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/hardrock/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Metal"],"Name":"FluxFM - MetalFM","Image":"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/metalfm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Classical","Contemporary"],"Name":"FluxFM - neoFM","Image":"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/neofm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_passport_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - Passport Approved","Image":"http___streams_fluxfm_de_passport_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/passport/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie"],"Name":"FluxFM - Radio Alternative","Image":"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/radioalt/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Reggae"],"Name":"FluxFM - Rasta Radio","Image":"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/rastaradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_studio56_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - JaegerMusic Radio","Image":"http___streams_fluxfm_de_studio56_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/studio56/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - XJAZZ","Image":"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/xjazz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Ambient","Yoga"],"Name":"FluxFM - Yoga Sounds","Image":"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/yogasounds/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_norbert_de_8000_zappa_aac.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Zappa Stream Radio","Image":"http___streams_norbert_de_8000_zappa_aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"http://streams.norbert.de:8000/zappa.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 2000s Rock","Image":"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/2000er/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 80s Rock","Image":"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-80srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio Bob! 90s Rock","Image":"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-90srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u":{"Genre":["Indie Rock"],"Name":"Radio BOB! Alternative","Image":"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-alternative/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Christmas Rock","Image":"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-christmas/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u":{"Genre":["Classic Rock"],"Name":"Radio BOB! Classic Rock","Image":"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-classicrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u":{"Genre":["Hard Rock"],"Name":"Radio BOB! Hardrock","Image":"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Wenn Rock, dann BOB! Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-hardrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Kuschelrock","Image":"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-kuschelrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u":{"Genre":["Metal"],"Name":"Radio BOB! Metal","Image":"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-metal/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB!","Image":"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-national/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u":{"Genre":["Punk"],"Name":"Radio BOB! Punk","Image":"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-punk/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u":{"Genre":["Rockabilly"],"Name":"Radio BOB! Rockabilly","Image":"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockabilly/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Hits","Image":"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockhits/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u":{"Genre":["Country"],"Name":"Radio BOB! Country","Image":"http___streams_radiobob_de_country_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/country/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_country_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/country/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_roadtrip_mp3-192_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Roadtrip","Image":"http___streams_radiobob_de_roadtrip_mp3-192_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"BOBs Road Trip-Stream","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/roadtrip/mp3-192/","alternativeStreams":{"https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rockparty","Image":"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/rockparty/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u":{"Genre":["Southern Rock"],"Name":"Radio BOB! Southern Rock","Image":"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/southernrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___strm112_1_fm_blues_mobile_mp3.m3u":{"Genre":["Blues"],"Name":"1.FM - Blues Radio","Image":"http___strm112_1_fm_blues_mobile_mp3.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://strm112.1.fm/blues_mobile_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___subfm_radioca_st_Sub_FM.m3u":{"Genre":["Dub","Dubstep","Garage","Grime","Deep House","Techno","Juke","Jungle Trap"],"Name":"SUB.FM - Where Bass Matters","Image":"http___subfm_radioca_st_Sub_FM.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://subfm.radioca.st/Sub.FM","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___wdcb-ice_streamguys_org_80_wdcb128.m3u":{"Genre":["Blues","Jazz"],"Name":"WDCB Chicago FM 90.9 - Jazz & Blues","Image":"http___wdcb-ice_streamguys_org_80_wdcb128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdcb-ice.streamguys.org:80/wdcb128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.m3u":{"Genre":["Pop"],"Name":"WDR 1LIVE","Image":"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u":{"Genre":["Spoken Word"],"Name":"WDR 5","Image":"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr5/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-wdr5-live.icecast.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___west-aac-64_streamthejazzgroove_com_stream.m3u":{"Genre":["Jazz"],"Name":"The Jazz Groove","Image":"http___west-aac-64_streamthejazzgroove_com_stream.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://west-aac-64.streamthejazzgroove.com/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___wkcr_streamguys1_com_80_live.m3u":{"Genre":["Jazz","Classical"],"Name":"WKCR 89.9 FM","Image":"http___wkcr_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://wkcr.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___yumicoradio_net_8000_stream.m3u":{"Genre":["Future Funk","City Pop","Anime Groove","Vaporwave","Nu Disco","Electronic"],"Name":"Yumi Co. Radio","Image":"http___yumicoradio_net_8000_stream.webp","Homepage":"http://yumicoradio.net","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived.","Codec":"MP3","Bitrate":256,"StreamUri":"http://yumicoradio.net:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u":{"Genre":["Classical","Classical Music"],"Name":"Rádio MEC FM","Image":"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecfmrio","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio MEC FM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://122722d.ha.azioncdn.net/ebc/radiomecfm/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u":{"Genre":["MPB"],"Name":"Rádio MEC AM","Image":"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecamrio","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio MEC AM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://132722d.ha.azioncdn.net/ebc/radiomec/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"Genre":["Soccer","News"],"Name":"Rádio Transamérica 100.1 FM (São Paulo)","Image":"https___18003_live_streamtheworld_com_RT_SPAAC_aac.webp","Homepage":"https://radiotransamerica.com.br","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio onde você estiver!","Codec":"AAC","Bitrate":32,"StreamUri":"https://18003.live.streamtheworld.com/RT_SPAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u":{"Genre":["Community"],"Name":"2nurfm","Image":"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.webp","Homepage":"https://2nurfm.com.au","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"Good times and great music","Codec":"MP3","Bitrate":96,"StreamUri":"https://21413.live.streamtheworld.com:443/2NURFMAAC_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"Genre":["Lounge"],"Name":"Zen FM","Image":"https___22653_live_streamtheworld_com_TOPZEN_mp3.webp","Homepage":"","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://22653.live.streamtheworld.com/TOPZEN.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u":{"Genre":["Gospel","Various"],"Name":"Rádio Melodia 97.5 FM","Image":"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.webp","Homepage":"https://melodia.com.br/player/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A voz que fala ao coração!","Codec":"AAC","Bitrate":32,"StreamUri":"https://24483.live.streamtheworld.com/MELODIAFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u":{"Genre":["Classic Hits","Indie"],"Name":"KINK 80's","Image":"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.webp","Homepage":"https://kink.nl","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"Alive and Kicking","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_DNA_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25293_live_streamtheworld_com_443_KINK_SC.m3u":{"Genre":["Modern Rock"],"Name":"KINK","Image":"https___25293_live_streamtheworld_com_443_KINK_SC.webp","Homepage":"https://www.kink.nl","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"No alternative","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u":{"Genre":["Hard Rock"],"Name":"KINK Distortion","Image":"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.webp","Homepage":"https://www.kink.nl/distortion","Country":"The Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"non-stop de beste metal, hardrock en metalcore","Codec":"MP3","Bitrate":192,"StreamUri":"https://25323.live.streamtheworld.com:443/KINK_DISTORTION_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u":{"Genre":["Pop","Flim"],"Name":"Radio Daijiworld","Image":"https___26453_live_streamtheworld_com_SAM08AAC013_SC.webp","Homepage":"http://www.radiodaijiworld.com/","Country":"India","State":"Mangalore","Languages":["Konkani"],"Language":"Konkani","Description":"Online RADIO station for konkani & Tulu music","Codec":"AAC","Bitrate":64,"StreamUri":"https://26453.live.streamtheworld.com/SAM08AAC013_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u":{"Genre":["Community Radio","Independent"],"Name":"PBS 106.7FM (Progressive Broadcasting Service)","Image":"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.webp","Homepage":"https://www.pbsfm.org.au","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"PBS 106.7FM (Progressive Broadcasting Service)","Codec":"AAC","Bitrate":128,"StreamUri":"https://27253.live.streamtheworld.com/3PBS_FMAAC128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u":{"Genre":["Journalism","Soccer","Football","News"],"Name":"Rádio CBN Rio 92.5 FM","Image":"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.webp","Homepage":"https://cbn.globoradio.globo.com","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que toca notícia!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27403.live.streamtheworld.com/CBN_RJAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u":{"Genre":["Pop-Rock","Sertanejo","Youth"],"Name":"Rádio Disney 91.3 FM","Image":"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.webp","Homepage":"https://radiodisney.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que te ouve","Codec":"AAC","Bitrate":320,"StreamUri":"https://27403.live.streamtheworld.com/DISNEY_BRA_SP_ADP/HLS/playlist.m3u8?dist=web-radiodisney","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u":{"Genre":["MPB","Pop","Flashback"],"Name":"Rádio JB 99.9 FM","Image":"https___27433_live_streamtheworld_com_JBFMAAC_aac.webp","Homepage":"https://jb.fm","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e Informação!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27433.live.streamtheworld.com/JBFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u":{"Genre":["Community","Catholic"],"Name":"Rádio Serra Verde 98.7 FM","Image":"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.webp","Homepage":"https://www.serraverde.fm.br/","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Aqui é o seu lugar!","Codec":"MP3","Bitrate":128,"StreamUri":"https://5a2b083e9f360.streamlock.net/serraverdefm/serraverdefm.stream/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___8016_brasilstream_com_br_stream.m3u":{"Genre":["Soccer","Various"],"Name":"Rádio Difusora 96.9 FM","Image":"https___8016_brasilstream_com_br_stream.webp","Homepage":"https://difusora24h.com","Country":"Brazil","State":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"O amor do Amazonas esta no ar!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://8016.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u":{"Genre":["News","MPB","Sport"],"Name":"Rádio Nacional do Rio de Janeiro","Image":"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalrioam","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional 87.1 FM 1130 AM","Codec":"HLS","Bitrate":99,"StreamUri":"https://82722d.ha.azioncdn.net/ebc/radionacionalriodejaneiro/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[99],"highestBitrate":99},"https___8923_brasilstream_com_br_stream.m3u":{"Genre":["Local News","News","Talk","Variety"],"Name":"Super Rádio Tupi 96.5 (Tupi FM)","Image":"https___8923_brasilstream_com_br_stream.webp","Homepage":"https://tupi.fm/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder","Codec":"AAC+","Bitrate":32,"StreamUri":"https://8923.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___99_mediacast_co_il_99fm_aac__m4a.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"eco99fm אקו99","Image":"https___99_mediacast_co_il_99fm_aac__m4a.webp","Homepage":"https://eco99fm.maariv.co.il","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HE-AAC","Bitrate":64,"StreamUri":"https://99.mediacast.co.il/99fm_aac?.m4a","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[64],"highestBitrate":64},"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u":{"Genre":["Jazz"],"Name":"DR P8 Jazz","Image":"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.webp","Homepage":"https://www.dr.dk/lyd/p8jazz","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://DRliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8","alternativeStreams":{"http___live-icy_gss_dr_dk_8000_A_A22H_mp3":{"StreamUri":"http://live-icy.gss.dr.dk:8000/A/A22H.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[320,128],"highestBitrate":320},"https___a2_asurahosting_com_8800_radio_mp3.m3u":{"Genre":["Political Talk","Patriotic"],"Name":"Multicanal Radio","Image":"https___a2_asurahosting_com_8800_radio_mp3.webp","Homepage":"https://multicanalradio.com","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://a2.asurahosting.com:8800/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u":{"Genre":["Pop","Releases","Oldies","Rock","Pop"],"Name":"Absolut music XL","Image":"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://absolut-musicxl.live-sm.absolutradio.de/absolut-musicxl/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u":{"Genre":["Electronic"],"Name":"Deep Space Radio","Image":"https___ais-edge102-live365-dal02_cdnstream_com_a71161.webp","Homepage":"https://deepspaceradio.com/","Country":"USA","State":"Michigan","Languages":["English"],"Language":"English","Description":"Artists and DJs who are working to promote Detroit’s Electronic Music and Art.","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-edge102-live365-dal02.cdnstream.com/a71161","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u":{"Genre":["Indie","Rock","Post-Punk","Garage Rock","Psych Rock","New Wave","Gothic"],"Name":"BAGeL Radio","Image":"https___ais-sa3_cdnstream1_com_2606_128_mp3.webp","Homepage":"https://www.bagelradio.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Radio as it should be: commercial-free listener-supported live-hosted","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-sa3.cdnstream1.com/2606_128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"Genre":["Indian Classical","Carnatic"],"Name":"Raagam","Image":"https___akashvani_gov_in_radio_live_php_channel_5.webp","Homepage":"https://prasarbharati.gov.in/channel-raagam/","Country":"India","State":"Karnataka","Languages":["Multilingual","Kannada"],"Language":"Multilingual, Kannada","Description":"Raagam Radio is an online station from Bangalore (India), open since 26 January 2016.","Codec":"MP3","Bitrate":50,"StreamUri":"https://akashvani.gov.in/radio/live.php?channel=5","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[50],"highestBitrate":50},"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Mejor FM - 99.1 FM","Image":"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.lamejor.co.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-lamejor-lamejor.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Noticiero"],"Name":"Monumental - 93.5 FM","Image":"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.monumental.co.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-monumental-monumental.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u":{"Genre":["Schlager Music"],"Name":"Antenne Schlager","Image":"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.webp","Homepage":"https://www.antenne-schlager.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"German Schlager music station from Hannover, Lower Saxony, Germany","Codec":"MP3","Bitrate":192,"StreamUri":"https://antnds.streamabc.net/ands-antenneschlager-mp3-192-8742257","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u":{"Genre":["Commercial","Pop","Rock","Top Hits"],"Name":"RDL Radio Diffusione Libera","Image":"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.webp","Homepage":"https://www.radiodiffusionelibera.com","Country":"Italy","State":"Salerno","Languages":["Italian"],"Language":"Italian","Description":"RDL Radio Diffusione Libera powered by RPIGroup","Codec":"MP3","Bitrate":192,"StreamUri":"https://asvradiostream.asvstudios.it/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___audio-mp3_ibiblio_org_wxyc_mp3.m3u":{"Genre":["College Radio","Various"],"Name":"WXYC Chapel Hill 89.3FM","Image":"https___audio-mp3_ibiblio_org_wxyc_mp3.webp","Homepage":"https://wxyc.org/","Country":"United States","State":"North Carolina","Languages":["English"],"Language":"English","Description":"UNC-Chapel Hill's student-run, freeform radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://audio-mp3.ibiblio.org/wxyc.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___audio_tv_unesp_br_unespfm.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária UNESP 105.7 FM","Image":"https___audio_tv_unesp_br_unespfm.webp","Homepage":"https://www.radio.unesp.br","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UNESP 105.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://audio.tv.unesp.br/unespfm","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Bel RTL","Image":"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.webp","Homepage":"https://www.rtl.be/belrtl/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Bel RTL est une station de radio généraliste privée du groupe RTL.","Codec":"MP3","Bitrate":192,"StreamUri":"https://belrtl.ice.infomaniak.ch/belrtl-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___bytefm_cast_addradio_de_bytefm_main_high_stream.m3u":{"Genre":["Eclectic"],"Name":"ByteFM","Image":"https___bytefm_cast_addradio_de_bytefm_main_high_stream.webp","Homepage":"https://www.byte.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://bytefm.cast.addradio.de/bytefm/main/high/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___c7_radioboss_fm_18205_stream.m3u":{"Genre":["Mashup"],"Name":"Bootie Mashup","Image":"https___c7_radioboss_fm_18205_stream.webp","Homepage":"https://bootiemashup.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The best bootleg mashups in the world ever.","Codec":"MP3","Bitrate":320,"StreamUri":"https://c7.radioboss.fm:18205/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___carajas2_jmvstream_com_live.m3u":{"Genre":["News","Sport","Football","Soccer"],"Name":"Rádio Clube do Pará 104.7 FM 690 AM","Image":"https___carajas2_jmvstream_com_live.webp","Homepage":"https://radioclube.dol.com.br/","Country":"Brazil","State":"Pará","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Equipe Bola de Ouro","Codec":"AAC","Bitrate":128,"StreamUri":"https://carajas2.jmvstream.com/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cast4_asurahosting_com_proxy_miles_stream.m3u":{"Genre":["Talk","Paranormal","Spiritual","70's","80's","90's"],"Name":"NYE Underground","Image":"https___cast4_asurahosting_com_proxy_miles_stream.webp","Homepage":"https://www.nyeug.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Streaming Art Bell classics and his favorite bumper music - ad free.","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.asurahosting.com/proxy/miles/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cast4_audiostream_com_br_2655_mp3.m3u":{"Genre":["Various","News"],"Name":"Rádio Liberdade","Image":"https___cast4_audiostream_com_br_2655_mp3.webp","Homepage":"https://www.redepampa.com.br/radios/radio-liberdade/","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"No campo e na cidade, Rádio Liberdade!","Codec":"MP3","Bitrate":32,"StreamUri":"https://cast4.audiostream.com.br:2655/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u":{"Genre":["News"],"Name":"Radio 98.4","Image":"https___cast4_my-control-panel_com_proxy_anastas2_stream.webp","Homepage":"https://www.radio984.gr/","Country":"Greece","State":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.my-control-panel.com/proxy/anastas2/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cdn4_onstream_audio_9267_stream.m3u":{"Genre":["News"],"Name":"Radio Prensa Latina","Image":"https___cdn4_onstream_audio_9267_stream.webp","Homepage":"https://radio.prensa-latina.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://cdn4.onstream.audio:9267/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u":{"Genre":["News","Talk","Pop"],"Name":"103FM","Image":"https___cdn_cybercdn_live_103FM_Live_icecast_audio.webp","Homepage":"https://103fm.maariv.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://cdn.cybercdn.live/103FM/Live/icecast.audio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u":{"Genre":["Rock","Hard Rock","Heavy Metal"],"Name":"UnDinamo","Image":"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.webp","Homepage":"https://undinamo.com/","Country":"Argentina","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"https://cdn.instream.audio/:9339/stream?in_device_id=WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u":{"Genre":["News"],"Name":"Kan Bet כאן ב","Image":"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=3","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":256,"StreamUri":"https://cdnapisec.kaltura.com/p/2717431/sp/271743100/playManifest/entryId/1_eu4h60uh/format/applehttp/protocol/https/uiConfId/46986963/a.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[256],"highestBitrate":256},"https___centova_svdns_com_br_20110_stream.m3u":{"Genre":["Pop"],"Name":"morena fm easy","Image":"https___centova_svdns_com_br_20110_stream.webp","Homepage":"https://www.morenafm.com.br","Country":"Brazil","State":"Mato Grosso","Languages":["Portugues"],"Language":"Portugues","Description":"boa mussica , boa programaçion","Codec":"AAC","Bitrate":128,"StreamUri":"https://centova.svdns.com.br:20110/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8010_live.m3u":{"Genre":["Tropical/Urbana"],"Name":"Ritmo Hits","Image":"https___chokostream_com_8010_live.webp","Homepage":"https://ritmohits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Donde El Ritmo No Tiene Fin!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8010/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8050_live.m3u":{"Genre":["Urbana"],"Name":"La Vaina Hits","Image":"https___chokostream_com_8050_live.webp","Homepage":"https://lavainahits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Detonando Hits!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8050/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8070_live.m3u":{"Genre":["Musica Cristiana"],"Name":"ExaltacionFM","Image":"https___chokostream_com_8070_live.webp","Homepage":"https://exaltacionfm.com/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Ondas De Avivamiento!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8070/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cloud_cdnseguro_com_2611_stream.m3u":{"Genre":["Ethnic","Indigenous"],"Name":"Rádio Yandê","Image":"https___cloud_cdnseguro_com_2611_stream.webp","Homepage":"https://radioyande.com","Country":"Brazil","State":"Rio De Janeiro","Languages":["Indigenous Languages","Brazilian Portuguese"],"Language":"Indigenous Languages, Brazilian Portuguese","Description":"Radio Yandê - Etnomidia Indígena","Codec":"MP3","Bitrate":128,"StreamUri":"https://cloud.cdnseguro.com:2611/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact 2000","Image":"https___contact2_ice_infomaniak_ch_contact2-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contact2.ice.infomaniak.ch/contact2-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u":{"Genre":["Children","Kids"],"Name":"Radio Contact Kids","Image":"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactkids.ice.infomaniak.ch/contactkids-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Mix","Image":"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactmix.ice.infomaniak.ch/contactmix-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Fresh","Image":"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactplus.ice.infomaniak.ch/contactplus-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Urban","Image":"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contacturban.ice.infomaniak.ch/contacturban-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u":{"Genre":["Pop"],"Name":"Omroep Zeeland","Image":"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.webp","Homepage":"https://www.omroepzeeland.nl/radio-zeeland","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://d3isaxd2t6q8zm.cloudfront.net/icecast/omroepzeeland/omroepzeeland_radio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u":{"Genre":["80's","70's","60's","90's","Oldies","Classic Hits"],"Name":"KVKVI - Classic Hits","Image":"https___dc1_serverse_com_proxy_gjlrjfhp_stream.webp","Homepage":"https://www.kvkvi.com","Country":"United States","State":"Ohio","Languages":["English"],"Language":"English","Description":"The Greatest Hits and The Songs You Missed","Codec":"MP3","Bitrate":160,"StreamUri":"https://dc1.serverse.com/proxy/gjlrjfhp/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u":{"Genre":["Adult Contemporary","News","Sport"],"Name":"Bayern 1","Image":"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern1/index.html","Country":"Germany","State":"Bayern","Languages":["German"],"Language":"German","Description":"The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting.","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u":{"Genre":["Eclectic"],"Name":"Bayern 2","Image":"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern2/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br2/live/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u":{"Genre":["Classical"],"Name":"BR-Klassik","Image":"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.webp","Homepage":"https://www.br-klassik.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u":{"Genre":["Pop","80's","90's"],"Name":"Absolut Relax","Image":"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://edge56.live-sm.absolutradio.de/absolut-relax/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u":{"Genre":["Pop","Charts","Electronic","Hip-Hop"],"Name":"Absolut Hot","Image":"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://edge68.live-sm.absolutradio.de/absolut-hot/stream/aacp?aggregator=smk-m3u-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"Genre":["Pop","Rock","Latin"],"Name":"Radio Ciudad del Granito","Image":"https___emisoras_dip-badajoz_es_58062_stream.webp","Homepage":"https://quintanadelaserena.org/","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Quintana de la Serena (Badajoz, Spain) local radio","Codec":"OPUS","Bitrate":0,"StreamUri":"https://emisoras.dip-badajoz.es:58062/stream","alternativeStreams":{},"allCodecs":["OPUS"],"allBitrates":[0],"highestBitrate":0},"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u":{"Genre":["Indie","Rock","Pop","New Age","Disco","Electronic","Contemporary"],"Name":"EOL Essence of Life רדיו מהות החיים","Image":"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.webp","Homepage":"https://radio.eol.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"AAC","Bitrate":32,"StreamUri":"https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___everest_radionanet_com_8990_stream_1698969239317.m3u":{"Genre":["MPB","University Radio","News"],"Name":"Universitária FM 104.7 (UFES)","Image":"https___everest_radionanet_com_8990_stream_1698969239317.webp","Homepage":"https://universitariafm.ufes.br/","Country":"Brazil","State":"Espirito Santo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da UFES (Universitária FM 104.7)","Codec":"MPEG","Bitrate":32,"StreamUri":"https://everest.radionanet.com:8990/stream?1698969239317","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u":{"Genre":["MPB","News","University Radio"],"Name":"Rádio USP - São Paulo","Image":"https___flow_emm_usp_br_8008_radiousp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da USP (Universidade de São Paulo)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u":{"Genre":["Adult Contemporary","University Radio"],"Name":"Rádio USP - Ribeirão Preto","Image":"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da USP (USP Ribeirão Preto)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-rp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000er","Image":"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/2000er/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u":{"Genre":["90's"],"Name":"FluxFM - 90s","Image":"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben.","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/90s/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.m3u":{"Genre":["News","Various"],"Name":"FluxFM","Image":"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/FluxFM/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.m3u":{"Genre":["Electronic","Soundscape","Atmospheric"],"Name":"FluxFM - Hippie Trippy Garden Pretty","Image":"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/htgp/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.m3u":{"Genre":["Various"],"Name":"FluxFM - Mini Flux","Image":"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/mini-flux/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u":{"Genre":["Dance","Groove","R'n'B","Soul"],"Name":"Fun Radio Belgique","Image":"https___funradiobe_ice_infomaniak_ch_funradiobe-high.webp","Homepage":"https://www.funradio.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française.","Codec":"MP3","Bitrate":128,"StreamUri":"https://funradiobe.ice.infomaniak.ch/funradiobe-high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___gartenheimradio_sp_radio_fm_stream.m3u":{"Genre":["Various"],"Name":"Gartenheim-Radio","Image":"https___gartenheimradio_sp_radio_fm_stream.webp","Homepage":"https://gartenheim-radio.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"70er, 80er, 90er Schlager-Pop und die Hits von Heute","Codec":"MP3","Bitrate":192,"StreamUri":"https://gartenheimradio.sp.radio.fm/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u":{"Genre":["Pop","Top Hits","Past Time Favorites"],"Name":"Galgalatz גלגלצ","Image":"https___glzwizzlv_bynetcdn_com_glglz_mp3.webp","Homepage":"https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glglz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___glzwizzlv_bynetcdn_com_glz_mp3.m3u":{"Genre":["News","Talk","Current Affairs"],"Name":"Galei Zahal GLZ גלי צהל גלצ","Image":"https___glzwizzlv_bynetcdn_com_glz_mp3.webp","Homepage":"https://glz.co.il/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"IDF Radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___grenal_audiostream_com_br_20000_aac.m3u":{"Genre":["Sport"],"Name":"Rádio Grenal","Image":"https___grenal_audiostream_com_br_20000_aac.webp","Homepage":"https://www.radiogrenal.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Grenal","Codec":"AAC+","Bitrate":32,"StreamUri":"https://grenal.audiostream.com.br:20000/aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___happyrave-rex_radioca_st_stream.m3u":{"Genre":["Rave","Breakbeat","Hardcore","Jungle","Oldschool"],"Name":"Happy Rave Radio","Image":"https___happyrave-rex_radioca_st_stream.webp","Homepage":"happyraveradio.com","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"Classic happy hardcore, rave, and breakbeat hardcore.","Codec":"MP3","Bitrate":320,"StreamUri":"https://happyrave-rex.radioca.st/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___hts03_kshost_com_br_13392_live.m3u":{"Genre":["News","Various"],"Name":"Rádio Força Aérea 91.1 FM","Image":"https___hts03_kshost_com_br_13392_live.webp","Homepage":"https://www.fab.mil.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Força Aérea 91.1 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://hts03.kshost.com.br:13392/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___http-live_sr_se_p2musik-aac-320.m3u":{"Genre":["Classical","Jazz"],"Name":"SR P2","Image":"https___http-live_sr_se_p2musik-aac-320.webp","Homepage":"https://sverigesradio.se/p2","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://http-live.sr.se/p2musik-aac-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___ic_streann_com_disneycostarica.m3u":{"Genre":["Pop"],"Name":"Radio Disney - 101.1 FM","Image":"https___ic_streann_com_disneycostarica.webp","Homepage":"https://cr.radiodisney.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica.","Codec":"MP3","Bitrate":192,"StreamUri":"https://ic.streann.com/disneycostarica","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice1_somafm_com_vaporwaves-128-aac.m3u":{"Genre":["Electronic","Electro-Acoustic","IDM","Shoegaze","Post-Rock"],"Name":"Soma FM - Vaporwaves","Image":"https___ice1_somafm_com_vaporwaves-128-aac.webp","Homepage":"https://somafm.com/vaporwaves/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"All Vaporwave. All the time.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice1.somafm.com/vaporwaves-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_bossa-128-aac.m3u":{"Genre":["Bossanova","World Music"],"Name":"Soma FM - Bossa Beyond","Image":"https___ice5_somafm_com_bossa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/bossa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_insound-128-aac.m3u":{"Genre":["Pop","Oldies"],"Name":"Soma FM - The In-Sound","Image":"https___ice5_somafm_com_insound-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/insound-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice64_securenetsystems_net_WBJC.m3u":{"Genre":["Classical"],"Name":"WBJC Baltimore 91.5 - Classical","Image":"https___ice64_securenetsystems_net_WBJC.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ice64.securenetsystems.net/WBJC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_darkzone-128-aac.m3u":{"Genre":["Electronic","Ambient","Deep Ambient"],"Name":"Soma FM - The Dark Zone","Image":"https___ice6_somafm_com_darkzone-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/darkzone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_n5md-128-aac.m3u":{"Genre":["Ambient","Post-Rock","Experimental","Electronic"],"Name":"Soma FM - n5MD Radio","Image":"https___ice6_somafm_com_n5md-128-aac.webp","Homepage":"https://somafm.com/n5md/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/n5md-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_synphaera-128-aac.m3u":{"Genre":["Electronic","Synth-Pop"],"Name":"Soma FM - Synphaera","Image":"https___ice6_somafm_com_synphaera-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/synphaera-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_tikitime-128-aac.m3u":{"Genre":["Tiki","World Music"],"Name":"Soma FM - Tiki Time","Image":"https___ice6_somafm_com_tikitime-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/tikitime-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice_coldstar_online_high_ogg.m3u":{"Genre":["Trance","Progressive","Psy","House","Deep House","Deep Tech"],"Name":"Coldstar Radio","Image":"https___ice_coldstar_online_high_ogg.webp","Homepage":"https://coldstar.online/","Country":"Kyrgyzstan","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"OGG","Bitrate":256,"StreamUri":"https://ice.coldstar.online/high.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[256],"highestBitrate":256},"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.m3u":{"Genre":["Classical"],"Name":"RCO Live","Image":"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice_fabricahost_com_br_radiomarinha.m3u":{"Genre":["News","Various"],"Name":"Rádio Marinha","Image":"https___ice_fabricahost_com_br_radiomarinha.webp","Homepage":"https://www.marinha.mil.br/radio-marinha","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Marinha FM: Navegando nas Ondas do Rádio","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice.fabricahost.com.br/radiomarinha","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___icecast_live_proxy_zerock_zerock.m3u":{"Genre":["Rock","Metal","Post Punk","Punk","Indie"],"Name":"Ze Rock Radio","Image":"https___icecast_live_proxy_zerock_zerock.webp","Homepage":"https://zerockradio.com/","Country":"Israel","State":"","Languages":["Hebrew","English"],"Language":"Hebrew, English","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://icecast.live/proxy/zerock/zerock","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___icecast_lyl_live_live.m3u":{"Genre":["Ambient","Contemporary","Electronic","Electronic","Experimental","Independent"],"Name":"LYL Radio","Image":"https___icecast_lyl_live_live.webp","Homepage":"http://lyl.live/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://icecast.lyl.live/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u":{"Genre":["Various","Variety"],"Name":"France Inter","Image":"https___icecast_radiofrance_fr_franceinter-midfi_mp3.webp","Homepage":"https://www.franceinter.fr/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"France Inter est une station de radio généraliste nationale publique française du groupe Radio France.","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.radiofrance.fr/franceinter-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_teveo_cu_3MCwWg3V.m3u":{"Genre":["Latin Hits","Reggae"],"Name":"Radio Taíno 93.3 FM","Image":"https___icecast_teveo_cu_3MCwWg3V.webp","Homepage":"www.radiotaino.icrt.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Taíno, la FM de Cuba","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/3MCwWg3V","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_McW3fLhs.m3u":{"Genre":["News","Various"],"Name":"Radio Habana Cuba","Image":"https___icecast_teveo_cu_McW3fLhs.webp","Homepage":"www.radiohc.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Una voz de amistad que recorre el mundo","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/McW3fLhs","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_NqWrgw7j.m3u":{"Genre":["Variety"],"Name":"Radio Sancti Spíritus 1210 AM 106.3 FM","Image":"https___icecast_teveo_cu_NqWrgw7j.webp","Homepage":"https://www.radiosanctispiritus.cu/es/","Country":"Cuba","State":"Sancti Spíritus","Languages":["Spanish"],"Language":"Spanish","Description":"Contemporánea en su tradición","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/NqWrgw7j","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_X9XNRkW4.m3u":{"Genre":["Various","News"],"Name":"Radio Minas 104.9 FM","Image":"https___icecast_teveo_cu_X9XNRkW4.webp","Homepage":"https://www.radiominas.icrt.cu","Country":"Cuba","State":"Minas De Matahambre","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Minas 104.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/X9XNRkW4","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_b3jbfThq.m3u":{"Genre":["News"],"Name":"Radio Reloj","Image":"https___icecast_teveo_cu_b3jbfThq.webp","Homepage":"https://www.radioreloj.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Canal de Informacíon Continua","Codec":"MP3","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/b3jbfThq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_kHKL7tWd.m3u":{"Genre":["Sport","News"],"Name":"Radio Rebelde AM","Image":"https___icecast_teveo_cu_kHKL7tWd.webp","Homepage":"https://www.radiorebelde.cu","Country":"Cuba","State":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"La emisora de la Revolución","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/kHKL7tWd","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 1 Classics","Image":"https___icecast_vrtcdn_be_radio1_classics-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio1_classics-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Bene Bene","Image":"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-bene-bene","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio2_benebene-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_walmradio_com_8443_jazz.m3u":{"Genre":["Avantgarde","Bebop","Big Band","Bop","Combos","Contemporary","Contemporary Jazz","Cool Jazz","Free Jazz","Fusion","Hard Bop","Mainstream","Mainstream Jazz","Modern Big Band","Post-bop","Straight-ahead","Walm"],"Name":"Adroit Jazz Underground","Image":"https___icecast_walmradio_com_8443_jazz.webp","Homepage":"https://walmradio.com/jazz","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"Real Jazz in HD","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecast.walmradio.com:8443/jazz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___icecasthd_net_proxy_abejorral_live.m3u":{"Genre":["Public Radio"],"Name":"Abejorral Stereo","Image":"https___icecasthd_net_proxy_abejorral_live.webp","Homepage":"https://www.asenred.com/abejorral/","Country":"Colombia","State":"Antioquia","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecasthd.net/proxy/abejorral/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___iheart_4zzz_org_au_4zzz.m3u":{"Genre":["Indie"],"Name":"4ZZZ FM 102.1 - Alternative","Image":"https___iheart_4zzz_org_au_4zzz.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://iheart.4zzz.org.au/4zzz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u":{"Genre":["Adult Contemporary","Past Time Favs","Soft Rock","Mild Pop","Easy Listening"],"Name":"Kan 88 כאן","Image":"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=4","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kan88.media.kan.org.il/hls/live/2024812/2024812/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u":{"Genre":["Indie"],"Name":"Kanal K","Image":"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.webp","Homepage":"https://www.kanalk.ch/","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream.","Codec":"MP3","Bitrate":160,"StreamUri":"https://kanalk.streamabc.net/91-kanalk-mp3-192-5146873","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u":{"Genre":["Hebrew Pop","Top Hits","Past Time Favorites"],"Name":"Kan Gimel רשת גימל","Image":"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/content/kan/kan-gimel/","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":384,"StreamUri":"https://kangimmel.media.kan.org.il/hls/live/2024813/2024813/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[384],"highestBitrate":384},"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"Kol Hamusica קול המוסיקה","Image":"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=7","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kanliveicy.media.kan.org.il/icy/kankolhamusica_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Bent 24","Image":"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.webp","Homepage":"https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com//kcrw_192k_mp3_bent24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Eclectic 24","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.webp","Homepage":"https://www.kcrw.com/music/shows/eclectic24/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_e24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u":{"Genre":["Eclectic","News"],"Name":"KCRW Live 89.9FM","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.webp","Homepage":"https://www.kcrw.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_on_air","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u":{"Genre":["DJ Mixes","Electronic","Independent"],"Name":"Kiosk Radio","Image":"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.webp","Homepage":"https://kioskradio.com/","Country":"Belgium","State":"","Languages":["English","French"],"Language":"English, French","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Reggae","Classical","Eclectic"],"Name":"DjamRadio","Image":"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.webp","Homepage":"https://www.djamradio.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"The Eclectic French Radio","Codec":"MP3","Bitrate":128,"StreamUri":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___legacy_scahw_com_au_2buddha_32.m3u":{"Genre":["Chill Out"],"Name":"Buddha Radio","Image":"https___legacy_scahw_com_au_2buddha_32.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":32,"StreamUri":"https://legacy.scahw.com.au/2buddha_32","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u":{"Genre":["IDM"],"Name":"Limbik Frequencies","Image":"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.webp","Homepage":"https://limbikfreq.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"A tasty mix of downtempo electronica","Codec":"MP3","Bitrate":128,"StreamUri":"https://limbikfreq.com/listen/limbik_frequencies/128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___listen7_myradio24_com_69366.m3u":{"Genre":["Various"],"Name":"Pyongyang FM","Image":"https___listen7_myradio24_com_69366.webp","Homepage":"https://korea-dpr.com","Country":"Korea, Democratic People's Republic Of","State":"Pyongyang","Languages":["Korean"],"Language":"Korean","Description":"Pyongyang FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://listen7.myradio24.com/69366","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u":{"Genre":["Jazz"],"Name":"Jazz24","Image":"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.webp","Homepage":"https://www.jazz24.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"https://live.amperwave.net/direct/ppm-jazz24aac256-ibc1","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"https___live_streams_klassikradio_de_klassikradio-deutschland.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Live","Image":"https___live_streams_klassikradio_de_klassikradio-deutschland.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-deutschland","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_streams_klassikradio_de_klassikradio-movie.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Movie","Image":"https___live_streams_klassikradio_de_klassikradio-movie.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-movie","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u":{"Genre":["Romántico"],"Name":"Musical - 97.5 FM","Image":"https___live_turadio_stream_7005_stream_type_http_nocache_596.webp","Homepage":"https://radiomusical.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Musical es uno de los principales medios de comunicación de Costa Rica.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7005/stream?type=http&nocache=596","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___live_turadio_stream_7006__.m3u":{"Genre":["Romántico"],"Name":"Sinfonola - 90.3 FM","Image":"https___live_turadio_stream_7006__.webp","Homepage":"https://radiosinfonola.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7006/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u":{"Genre":["Pop","Hip-Hop","Electronic"],"Name":"DASDING","Image":"https___liveradio_swr_de_sw282p3_dasding_play_mp3.webp","Homepage":"https://www.dasding.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Jugendradioprogramm des Südwestrundfunks","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/dasding/play.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 BW","Image":"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"SWR1 Baden-Württemberg","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 RP","Image":"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR1 Rheinland-Pfalz","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"SWR2","Image":"https___liveradio_swr_de_sw282p3_swr2_play_mp3.webp","Homepage":"https://www.swr.de/swr2/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Kultur neu entdecken","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr2/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr2_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr2/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr2_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr2/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR3","Image":"https___liveradio_swr_de_sw282p3_swr3_play_mp3.webp","Homepage":"https://www.swr3.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Der beste Musikmix. Einfach SWR3","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr3/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr3_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr3/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr3_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr3/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 BW","Image":"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 RP","Image":"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR Aktuell","Image":"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.webp","Homepage":"https://www.swr.de/swraktuell/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swraktuell/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swraktuell/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swraktuell/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___livex_radiopopolare_it_radiopop_FLID_3.m3u":{"Genre":["Information","News","Culture","Talk"],"Name":"Radio Popolare","Image":"https___livex_radiopopolare_it_radiopop_FLID_3.webp","Homepage":"https://livex.radiopopolare.it","Country":"Italy","State":"","Languages":["Italian"],"Language":"Italian","Description":"The radio who gives a voice to those who have not.","Codec":"MP3","Bitrate":64,"StreamUri":"https://livex.radiopopolare.it/radiopop?FLID=3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u":{"Genre":["Rock","Eclectic"],"Name":"Mad Music Asylum","Image":"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://madmusicasylum.radioca.st/stream?type=http&nocache=36907","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___maggie_torontocast_com_8076_aac.m3u":{"Genre":["Indie","Rock","Eclectic"],"Name":"JB Radio2 (320K)","Image":"https___maggie_torontocast_com_8076_aac.webp","Homepage":"https://jb-radio.net/","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"JB Radio is an alternative,non-commercial,web radio station.","Codec":"AAC","Bitrate":320,"StreamUri":"https://maggie.torontocast.com:8076/aac","alternativeStreams":{"https___maggie_torontocast_com_8076_flac":{"StreamUri":"https://maggie.torontocast.com:8076/flac","Codec":"FLAC","Bitrate":0}},"allCodecs":["AAC","FLAC"],"allBitrates":[0,320],"highestBitrate":320},"https___maximum_hostingradio_ru_maximum96_aacp.m3u":{"Genre":["Pop","Rock","Hard Rock"],"Name":"Radio Maximum","Image":"https___maximum_hostingradio_ru_maximum96_aacp.webp","Homepage":"https://maximum.ru/","Country":"Russia","State":"","Languages":["Russian"],"Language":"Russian","Description":"Radio Maximum provides twenty four hour mix of several genres and styles of music.","Codec":"AAC","Bitrate":96,"StreamUri":"https://maximum.hostingradio.ru/maximum96.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"https___mediaserv73_live-streams_nl_18058_stream.m3u":{"Genre":["Classical","Mediaeval","Renaissance"],"Name":"Ancient FM - Mediaeval and Renaissance Music","Image":"https___mediaserv73_live-streams_nl_18058_stream.webp","Homepage":"","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://mediaserv73.live-streams.nl:18058/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u":{"Genre":["Rock"],"Name":"Radio Mega 98.3 Puro Rock Nacional","Image":"https___mega983_stweb_tv_mega983_live_playlist_m3u8.webp","Homepage":"https://radiomega.fm/","Country":"Argentina","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"HLS","Bitrate":66,"StreamUri":"https://mega983.stweb.tv/mega983/live/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[66],"highestBitrate":66},"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Mint (RTL)","Image":"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.webp","Homepage":"https://mint.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007.","Codec":"MP3","Bitrate":192,"StreamUri":"https://mint.ice.infomaniak.ch/mint-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u":{"Genre":["Jazz"],"Name":"Mother Earth Jazz","Image":"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u":{"Genre":["Various"],"Name":"Mother Earth Radio","Image":"https___motherearth_streamserver24_com_listen_motherearth_motherearth.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth/motherearth","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___myradio24_org_radiometal.m3u":{"Genre":["Metal"],"Name":"Radio Metal","Image":"https___myradio24_org_radiometal.webp","Homepage":"https://www.radio-metal.in.ua","Country":"Ukraine","State":"","Languages":["English"],"Language":"English","Description":"First Metal Radio in Ukraine!","Codec":"MP3","Bitrate":128,"StreamUri":"https://myradio24.org/radiometal","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u":{"Genre":["Classical"],"Name":"malaysia","Image":"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.webp","Homepage":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","Country":"Malaysia","State":"Kuala Lumpur","Languages":["Chinese"],"Language":"Chinese","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u":{"Genre":["Indie"],"Name":"Ultra","Image":"https___nashe1_hostingradio_ru_80_ultra-128_mp3.webp","Homepage":"https://radioultra.ru/","Country":"Russia","State":"","Languages":["Russian"],"Language":"Russian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://nashe1.hostingradio.ru:80/ultra-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___netradio_ziniur_lt_ziniur_64_mp3.m3u":{"Genre":["Talk","News"],"Name":"Žinių Radijas","Image":"https___netradio_ziniur_lt_ziniur_64_mp3.webp","Homepage":"https://www.ziniuradijas.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://netradio.ziniur.lt/ziniur_64.mp3","alternativeStreams":{"https___netradio_ziniuradijas_lt_ziniur_64_mp3":{"StreamUri":"https://netradio.ziniuradijas.lt/ziniur_64.mp3","Codec":"MP3","Bitrate":64}},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___online_extrafm_lt_8443_extrafm_mp3.m3u":{"Genre":["Pop","Talk","Folklore"],"Name":"Extra FM","Image":"https___online_extrafm_lt_8443_extrafm_mp3.webp","Homepage":"https://extrafm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://online.extrafm.lt:8443/extrafm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u":{"Genre":["Fight","Patriotic"],"Name":"Radio Bayraktar","Image":"https___online_radiobayraktar_ua_RadioBayraktar_HD.webp","Homepage":"https://www.radiobayraktar.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Radio Bayraktar is a radio station of unprecedented Ukrainian resistance","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radiobayraktar.ua/RadioBayraktar_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___online_radioroks_ua_RadioROKS_HD.m3u":{"Genre":["Rock","Hard Rock","Pop"],"Name":"Radio Roks Ukraine","Image":"https___online_radioroks_ua_RadioROKS_HD.webp","Homepage":"https://www.radioroks.ua/","Country":"Ukraine","State":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Рок. Тільки рок! (Rock, only rock !)","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radioroks.ua/RadioROKS_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___orelha_radiolivre_org_radiopaulofreire.m3u":{"Genre":["University Radio","MPB"],"Name":"Rádio Paulo Freire - UFPE","Image":"https___orelha_radiolivre_org_radiopaulofreire.webp","Homepage":"https://sites.ufpe.br/rpf/","Country":"Brazil","State":"Pernambuco","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Paulo Freire - Rádio Universitária da UFPE","Codec":"MP3","Bitrate":64,"StreamUri":"https://orelha.radiolivre.org/radiopaulofreire","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___orf-live_ors-shoutcast_at_fm4-q2a.m3u":{"Genre":["Indie Rock","Electronic"],"Name":"Radio FM4","Image":"https___orf-live_ors-shoutcast_at_fm4-q2a.webp","Homepage":"https://fm4.orf.at/","Country":"Austria","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/fm4-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___orf-live_ors-shoutcast_at_oe1-q2a.m3u":{"Genre":["Classical","Information","Culture"],"Name":"Ö1","Image":"https___orf-live_ors-shoutcast_at_oe1-q2a.webp","Homepage":"https://oe1.orf.at/","Country":"Austria","State":"Vienna","Languages":["German"],"Language":"German","Description":"Österreichischer Rundfunk, Stiftung öffentlichen Rechts","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/oe1-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u":{"Genre":["Acoustic","Rock"],"Name":"OUI FM ACOUSTIC","Image":"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.webp","Homepage":"https://www.ouifm.fr/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ouifmacoustic.ice.infomaniak.ch/ouifmacoustic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___paineldj5_com_br_20073_stream_1705993267781.m3u":{"Genre":["College Radio","Various"],"Name":"Universitária FM 100.7 (UFV)","Image":"https___paineldj5_com_br_20073_stream_1705993267781.webp","Homepage":"https://fratevi.org.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Para quem gosta de música e conteúdo!","Codec":"MP3","Bitrate":128,"StreamUri":"https://paineldj5.com.br:20073/stream?1705993267781","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___play_r1_co_nz_live.m3u":{"Genre":["Indie","Student Radio"],"Name":"Radio One 91FM","Image":"https___play_r1_co_nz_live.webp","Homepage":"https://r1.co.nz","Country":"New Zealand","State":"Dunedin","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://play.r1.co.nz/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u":{"Genre":["Indie"],"Name":"2BOB Radio 104.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.webp","Homepage":"http://www.2bobradio.org.au/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/2BOB.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u":{"Genre":["Romántico"],"Name":"Bésame - 89.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.webp","Homepage":"https://www.besame.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado.","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/BESAME_CR_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u":{"Genre":["Pop"],"Name":"Noventa y Cuatro Siete - 94.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.webp","Homepage":"https://www.crc.cr/crc947/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español.","Codec":"AAC","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/CRC_947AAC.aac?_=819140","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u":{"Genre":["Various"],"Name":"Q Music","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.webp","Homepage":"https://qmusic.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QMUSIC.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Caliente - 90.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.webp","Homepage":"https://www.lacaliente.cr/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"La Caliente ofrece a sus oyentes una programación muy diversa.","Codec":"AAC","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QTEJA_CRAAC_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u":{"Genre":["News"],"Name":"Rádio Bandeirantes São Paulo 90.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (São Paulo)","Codec":"AAC+","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.m3u":{"Genre":["Jazz"],"Name":"WEMU Ypsilanti FM 89.1 - Jazz","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/WEMUFM.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___proic1_evspt_com_oxigenio_aac.m3u":{"Genre":["House","Hip-Hop","Jazz","Funk","Soul"],"Name":"OXIGÉNIO 102.6 FM","Image":"https___proic1_evspt_com_oxigenio_aac.webp","Homepage":"https://www.oxigenio.fm/","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Música para respirar","Codec":"AAC","Bitrate":192,"StreamUri":"https://proic1.evspt.com/oxigenio_aac","alternativeStreams":{"https___proic1_evspt_com_oxigenio_mp3":{"StreamUri":"https://proic1.evspt.com/oxigenio_mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["AAC","MP3"],"allBitrates":[192],"highestBitrate":192},"https___r1_comcities_com_proxy_emogddug_stream.m3u":{"Genre":["60's","70's","Oldies"],"Name":"Groovy Radio - 60's and 70's Oldies","Image":"https___r1_comcities_com_proxy_emogddug_stream.webp","Homepage":"https://www.groovyradio.us","Country":"United States","State":"Ohio","Languages":["English"],"Language":"English","Description":"Non-Stop 60's and 70's All Hit Oldies","Codec":"MP3","Bitrate":160,"StreamUri":"https://r1.comcities.com/proxy/emogddug/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio10_pro-fhi_net_radio_9041_stream.m3u":{"Genre":["Afrobeat","Ambient","Bass","Breakbeat","Dancehall","Dub","Electronic","Experimental","Funk","Hard Drums","House","IDM","Jazz","Latin","R'n'B","Rap","Techno","Trance","Uk Funky"],"Name":"Rinse France","Image":"https___radio10_pro-fhi_net_radio_9041_stream.webp","Homepage":"https://rinse.fm/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio10.pro-fhi.net/radio/9041/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_M-1H.m3u":{"Genre":["Pop","Charts"],"Name":"M-1","Image":"https___radio_m-1_fm_M-1H.webp","Homepage":"https://www.m-1.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/M-1H","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_laluna_mp3.m3u":{"Genre":["Pop","Regional"],"Name":"Laluna","Image":"https___radio_m-1_fm_laluna_mp3.webp","Homepage":"https://www.laluna.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://radio.m-1.fm/laluna/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio_m-1_fm_m-1dance_aac.m3u":{"Genre":["Dance"],"Name":"M-1 Dance","Image":"https___radio_m-1_fm_m-1dance_aac.webp","Homepage":"https://m-1dance.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radio.m-1.fm/m-1dance/aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radio_m-1_fm_m1plius_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Contemporary"],"Name":"M-1 Plius","Image":"https___radio_m-1_fm_m1plius_mp3.webp","Homepage":"https://www.pliusas.fm","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/m1plius/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_promodj_com_fullmoon-192.m3u":{"Genre":["Hard Trance","Tech Trance","Progressive Trance","Uplifting Trance","Trance","Trancestep","Vocal Trance"],"Name":"Full Moon","Image":"https___radio_promodj_com_fullmoon-192.webp","Homepage":"https://promodj.com/radio#fullmoon","Country":"Russia","State":"","Languages":["English","Russian"],"Language":"English, Russian","Description":"Trance always. Trance everywhere. Trance 24/7.","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.promodj.com/fullmoon-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_sec_unicamp_br_aovivo_1698904239205.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UNICAMP","Image":"https___radio_sec_unicamp_br_aovivo_1698904239205.webp","Homepage":"https://www.sec.unicamp.br/web-radio-2/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e informação de qualidade!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://radio.sec.unicamp.br/aovivo?1698904239205","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___radio_sk8ter_org_8443_stream.m3u":{"Genre":["Electronic","Drum'n'Bass","Techno","House","Dance"],"Name":"Mémé dans les OrtiEs","Image":"https___radio_sk8ter_org_8443_stream.webp","Homepage":"https://memeradio.org","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Web radio électro","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.sk8ter.org:8443/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radio_streamgates_net_stream_oranim.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"Radion Oranim 103.6FM רדיו אורנים","Image":"https___radio_streamgates_net_stream_oranim.webp","Homepage":"https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx","Country":"Israel","State":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.streamgates.net/stream/oranim","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact \"Feel Good\"","Image":"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiocontact.ice.infomaniak.ch/radiocontact-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u":{"Genre":["Variety"],"Name":"Rai Radio 2 91.7 FM","Image":"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio2","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 2 91.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiodue-live.akamaized.net/hls/live/2032592/radiodue/radiodue/radio2_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiofunandmore_spcast_eu_dj03.m3u":{"Genre":["Various"],"Name":"RadioFunAndMore","Image":"https___radiofunandmore_spcast_eu_dj03.webp","Homepage":"https://radiofunandmore.de","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Dein Sender Deine Hits","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiofunandmore.spcast.eu/dj03","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u":{"Genre":["News","Football","Soccer","MPB"],"Name":"Rádio Nacional do Alto Solimões","Image":"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalaltosolimoes","Country":"Brazil","State":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional do Alto Solimões - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://radionacionalaltosolimoes-stream.ebc.com.br/ebc/radionacionalaltosolimoes/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radios_rtbf_be_classic21-128_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"RTBF - Classic 21","Image":"https___radios_rtbf_be_classic21-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/classic21-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_jam-128_mp3.m3u":{"Genre":["Urbain","Pop","Electronic","Rock","Folk","New Jazz","World Music"],"Name":"RTBF - Jam","Image":"https___radios_rtbf_be_jam-128_mp3.webp","Homepage":"https://www.rtbf.be/jam","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/jam-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_laprem1ere-128_mp3.m3u":{"Genre":["Various","Variety","News"],"Name":"RTBF - La Première","Image":"https___radios_rtbf_be_laprem1ere-128_mp3.webp","Homepage":"https://www.rtbf.be/lapremiere/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/laprem1ere-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_musiq3-128_aac.m3u":{"Genre":["Classical"],"Name":"RTBF - Musiq 3","Image":"https___radios_rtbf_be_musiq3-128_aac.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radios.rtbf.be/musiq3-128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_pure-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - Tipik / PureFM","Image":"https___radios_rtbf_be_pure-128_mp3.webp","Homepage":"https://www.rtbf.be/tipik/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"null","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/pure-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_rtbfmix-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - RTBF Mix","Image":"https___radios_rtbf_be_rtbfmix-128_mp3.webp","Homepage":"https://www.rtbf.be/rtbfmix","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/rtbfmix-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_tarmac-128_mp3.m3u":{"Genre":["Pop","Variety"],"Name":"RTBF - Tarmac","Image":"https___radios_rtbf_be_tarmac-128_mp3.webp","Homepage":"https://www.rtbf.be/Tarmac","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/tarmac-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaliege-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - VivaCité Liège","Image":"https___radios_rtbf_be_vivaliege-128_mp3.webp","Homepage":"https://www.rtbf.be/vivacite/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaliege-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaplus-128_mp3.m3u":{"Genre":["60's","70's"],"Name":"RTBF - Viva+","Image":"https___radios_rtbf_be_vivaplus-128_mp3.webp","Homepage":"https://www.rtbf.be/vivaplus","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaplus-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_wr-c21-60-128_mp3.m3u":{"Genre":["60's","Rock","Pop"],"Name":"RTBF - Classic 21 60's","Image":"https___radios_rtbf_be_wr-c21-60-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Le meilleur Rock'n'Pop des années 60","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-60-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-70-128_mp3.m3u":{"Genre":["70's","Classic Rock","Rock"],"Name":"RTBF - Classic 21 70's","Image":"https___radios_rtbf_be_wr-c21-70-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-70-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-80-128_mp3.m3u":{"Genre":["80's","Rock","Pop"],"Name":"RTBF - Classic 21 80's","Image":"https___radios_rtbf_be_wr-c21-80-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Rock'n'Pop of the 80's","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-80-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-90-128_mp3.m3u":{"Genre":["90's"],"Name":"RTBF - Classic 21 90's","Image":"https___radios_rtbf_be_wr-c21-90-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-90-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u":{"Genre":["Country"],"Name":"RTBF - Classic 21 Route 66","Image":"https___radios_rtbf_be_wr-c21-route66-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-route66-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u":{"Genre":["Renaissance","Baroque"],"Name":"RTBF - Musiq 3 Baroque","Image":"https___radios_rtbf_be_wr-m3-baroque-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Un voyage dans l'Europe musicale, de la Renaissance jusque 1750","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-baroque-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u":{"Genre":["Jazz"],"Name":"RTBF - Musiq 3 Jazz","Image":"https___radios_rtbf_be_wr-m3-jazz-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Du jazz belge et international pour tous, des années 20 à nos jours","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-jazz-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u":{"Genre":["Romantique"],"Name":"RTBF - Musiq 3 Romantique","Image":"https___radios_rtbf_be_wr-m3-romantique-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Les plus grandes pages de la musique romantique","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-romantique-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radioshamfm_grtvstream_com_8400__.m3u":{"Genre":["Various","News"],"Name":"Sham FM","Image":"https___radioshamfm_grtvstream_com_8400__.webp","Homepage":"https://sham.fm/ar/index.html","Country":"Syria","State":"","Languages":["Arabic"],"Language":"Arabic","Description":"Sham FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://radioshamfm.grtvstream.com:8400/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u":{"Genre":["News","Sport"],"Name":"Guardian Radio 96.9 FM","Image":"https___radiostreams_streamcomedia_com_8000_969guardianradio.webp","Homepage":"https://guardiantalkradio.com","Country":"Bahamas","State":"Nassau","Languages":["English"],"Language":"English","Description":"Guardian Radio 96.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://radiostreams.streamcomedia.com:8000/969guardianradio","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u":{"Genre":["Opera"],"Name":"Rai Radio 3 93.7 FM","Image":"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio3","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 3 93.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiotre-live.akamaized.net/hls/live/2032594/radiotre/radiotre/radio3_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u":{"Genre":["News","Sport"],"Name":"Rai Radio 1 89.7 FM","Image":"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio1","Country":"Italy","State":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 1 89.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiounoest-live.akamaized.net/hls/live/2032586/radiounoest/radiounoest/radio1est_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u":{"Genre":["Tamil Radio"],"Name":"IBC Tamil","Image":"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.webp","Homepage":"https://radio.ibctamil.com/","Country":"India","State":"","Languages":["Tamil"],"Language":"Tamil","Description":"IBC Tamil offers an excellent line-up of regular and one-off shows","Codec":"MP3","Bitrate":128,"StreamUri":"https://rbx2.hnux.com/http://10454.cloudrad.io:6176/;stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u":{"Genre":["News"],"Name":"Ici Radio-Canada Premiere Montreal","Image":"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.webp","Homepage":"https://ici.radio-canada.ca/","Country":"Canada","State":"Montreal","Languages":["French"],"Language":"French","Description":"","Codec":"HLS","Bitrate":465,"StreamUri":"https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[465],"highestBitrate":465},"https___relay2_bide-et-musique_com_9300_bm_mp3.m3u":{"Genre":["70's","80's"],"Name":"Bide et Musique - La radio de l'improbable et de l'inouï","Image":"https___relay2_bide-et-musique_com_9300_bm_mp3.webp","Homepage":"https://www.bide-et-musique.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et…","Codec":"MP3","Bitrate":128,"StreamUri":"https://relay2.bide-et-musique.com:9300/bm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rozhlas_stream_ddur_mp3_256_mp3.m3u":{"Genre":["Classical"],"Name":"Czech Radio Classical","Image":"https___rozhlas_stream_ddur_mp3_256_mp3.webp","Homepage":"","Country":"Czech Republic","State":"","Languages":["Czech"],"Language":"Czech","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"https://rozhlas.stream/ddur_mp3_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s02_brascast_com_7386_live.m3u":{"Genre":["Entrevistas","Interviews","News","News Talk","Notícias"],"Name":"Rádio Foco Livre","Image":"https___s02_brascast_com_7386_live.webp","Homepage":"https://www.focolivre.com.br/","Country":"Brazil","State":"Santa Catarina","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s02.brascast.com:7386/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s09_hstbr_net_8238_live_1514038524061.m3u":{"Genre":["News","Various"],"Name":"Brasil de Fato","Image":"https___s09_hstbr_net_8238_live_1514038524061.webp","Homepage":"https://www.brasildefato.com.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Brasil de Fato - Uma visão popular do Brasil e do mundo","Codec":"MP3","Bitrate":128,"StreamUri":"https://s09.hstbr.net:8238/live?1514038524061","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s1_knixx_fm_dein_webradio_256_mp3.m3u":{"Genre":["Variety","Adult Contemporary","New Country","Non-commercial","Non-profit","Oldies","Pop","Rock"],"Name":"knixx.fm","Image":"https___s1_knixx_fm_dein_webradio_256_mp3.webp","Homepage":"https://knixx.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Musik von den 60ern bis heute.","Codec":"MP3","Bitrate":256,"StreamUri":"https://s1.knixx.fm/dein_webradio_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio P.Y.G.","Image":"https___s2_ssl-stream_com_radio_8160_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"All the Best from Pink Floyd, Yes and Genesis","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8160/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio Progressive Rock","Image":"https___s2_ssl-stream_com_radio_8180_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8180/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u":{"Genre":["MPB","College Radio","University","Independent Music","Pop"],"Name":"Rádio Pop Goiaba UFF","Image":"https___s37_maxcast_com_br_8450_live_id_1698623926568.webp","Homepage":"https://radiopopgoiaba.uff.br/pop-goiaba-uff/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Pop Goiaba UFF","Codec":"MPEG","Bitrate":32,"StreamUri":"https://s37.maxcast.com.br:8450/live?id=1698623926568","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___s5_radio_co_s23b8ada46_listen.m3u":{"Genre":["Community Radio","Indie","Underground","Indie","AfroHouse","AfroJazz","Hip-Hop","Jazz"],"Name":"Oroko Radio","Image":"https___s5_radio_co_s23b8ada46_listen.webp","Homepage":"https://oroko.live/","Country":"Ghana","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/s23b8ada46/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s5_radio_co_sd515b7b34_listen.m3u":{"Genre":["Rock","Baladas"],"Name":"Radio 2 - 99.5 FM","Image":"https___s5_radio_co_sd515b7b34_listen.webp","Homepage":"https://radiodos.com/","Country":"Costa Rica","State":"","Languages":["English"],"Language":"English","Description":"Éxitos que fueron de UNO y ahora son de DOS 99.5 FM.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/sd515b7b34/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s61_radiolize_com_radio_8000_radio_mp3.m3u":{"Genre":["2000's","Dance","Rock","Pop","Hip-Hop"],"Name":"Smart Zeros","Image":"https___s61_radiolize_com_radio_8000_radio_mp3.webp","Homepage":"https://smart2000s.com/cool-songs-for-2000-theme-party/","Country":"Ukraine","State":"","Languages":["English"],"Language":"English","Description":"Cool Songs For 2000 Theme Party","Codec":"MP3","Bitrate":128,"StreamUri":"https://s61.radiolize.com/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___server1_fex_red_8366_stream.m3u":{"Genre":["Entretenimiento","Deportes","Noticias","Variedades"],"Name":"Radio Gente","Image":"https___server1_fex_red_8366_stream.webp","Homepage":"https://radiogentebol.com/","Country":"Bolivia","State":"","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://server1.fex.red:8366/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___servidor21_brlogic_com_7712_live.m3u":{"Genre":["MPB","Radio Universitaria","University Radio"],"Name":"Rádio UFRJ","Image":"https___servidor21_brlogic_com_7712_live.webp","Homepage":"https://radio.ufrj.br/","Country":"Brazil","State":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da Universidade Federal do Rio de Janeiro","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor21.brlogic.com:7712/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor22-3_brlogic_com_7404_live.m3u":{"Genre":["MPB","News"],"Name":"Rádio UERJ","Image":"https___servidor22-3_brlogic_com_7404_live.webp","Homepage":"https://www.radiouerj.com/app/index.html","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Conectando você ao conhecimento!","Codec":"MP3","Bitrate":32,"StreamUri":"https://servidor22-3.brlogic.com:7404/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___servidor35-1_brlogic_com_8062_live.m3u":{"Genre":["Eclectic","Football"],"Name":"Rádio FERJ","Image":"https___servidor35-1_brlogic_com_8062_live.webp","Homepage":"https://www.fferj.com.br/radio","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio FERJ","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor35-1.brlogic.com:8062/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor38-2_brlogic_com_8134_live.m3u":{"Genre":["Various"],"Name":"Rádio UPF 99.9 FM","Image":"https___servidor38-2_brlogic_com_8134_live.webp","Homepage":"https://radioupf.minhawebradio.net/app/index.html","Country":"Brazil","State":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UPF 99.9 FM","Codec":"MPEG","Bitrate":196,"StreamUri":"https://servidor38-2.brlogic.com:8134/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[196],"highestBitrate":196},"https___servidor39-3_brlogic_com_8180_live.m3u":{"Genre":["Various"],"Name":"Rádio Uniso","Image":"https___servidor39-3_brlogic_com_8180_live.webp","Homepage":"https://radiouniso.com","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano.","Codec":"MPEG","Bitrate":128,"StreamUri":"https://servidor39-3.brlogic.com:8180/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_am846_m3u8.m3u":{"Genre":["News","Education"],"Name":"China Plus (China Radio International) - English","Image":"https___sk_cri_cn_am846_m3u8.webp","Homepage":"https://chinaplus.cri.cn","Country":"China","State":"","Languages":["English"],"Language":"English","Description":"China Plus (China Radio International) - English","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/am846.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___sk_cri_cn_frenchafrica_m3u8.m3u":{"Genre":["News","Debate"],"Name":"CGTN Radio Français","Image":"https___sk_cri_cn_frenchafrica_m3u8.webp","Homepage":"https://radio.cgtn.com/","Country":"China","State":"","Languages":["French"],"Language":"French","Description":"CGTN Radio Français","Codec":"ADTS","Bitrate":128,"StreamUri":"https://sk.cri.cn/frenchafrica.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_nhzs_m3u8.m3u":{"Genre":["Various"],"Name":"CRI Voice of the South China Sea 89.1 FM","Image":"https___sk_cri_cn_nhzs_m3u8.webp","Homepage":"https://vscs.cri.cn","Country":"China","State":"","Languages":["Chinese"],"Language":"Chinese","Description":"CRI Voice of the South China Sea 89.1 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/nhzs.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___smoothjazz_cdnstream1_com_2585_320_mp3.m3u":{"Genre":["Jazz","Smooth Jazz"],"Name":"SmoothJazz Global","Image":"https___smoothjazz_cdnstream1_com_2585_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2585_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___smoothjazz_cdnstream1_com_2586_320_mp3.m3u":{"Genre":["Lounge","Smooth Lounge"],"Name":"SmoothLounge Global","Image":"https___smoothjazz_cdnstream1_com_2586_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2586_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"Soho Radio London","Image":"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://sohoradiomusic.doughunt.co.uk:8010/320mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência AM 880","Image":"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Uma Rádio Para Todos e Todas!","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia2?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência 100.9 FM","Image":"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Inconfidência 100.9 FM","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u":{"Genre":["Electronic","Culture","House"],"Name":"La Urban Radio","Image":"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.webp","Homepage":"https://www.urbanrevolution.es","Country":"Spain","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Nuevos talentos y grandes artistas se dan la mano en La Urban Radio.","Codec":"MP3","Bitrate":160,"StreamUri":"https://st1.urbanrevolution.es:8443/laurbanfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___stm23_xcast_com_br_11284_stream_1705992834372.m3u":{"Genre":["News","Football"],"Name":"Rádio Bandeirantes Campinas 1170 AM","Image":"https___stm23_xcast_com_br_11284_stream_1705992834372.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/campinas","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (Campinas)","Codec":"MP3","Bitrate":128,"StreamUri":"https://stm23.xcast.com.br:11284/stream?1705992834372","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str1_castradios_com_br_10998_stream.m3u":{"Genre":["Flashback","Adult","Sport"],"Name":"Rádio 365","Image":"https___str1_castradios_com_br_10998_stream.webp","Homepage":"https://radio365.com.br/","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio de todos os dias!","Codec":"MP3","Bitrate":128,"StreamUri":"https://str1.castradios.com.br:10998/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str_topradio_be_topradio_mp3.m3u":{"Genre":["Various"],"Name":"Top Radio","Image":"https___str_topradio_be_topradio_mp3.webp","Homepage":"https://www.topradio.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://str.topradio.be/topradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-156_zeno_fm_22db1xmde2zuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Arumbu FM","Image":"https___stream-156_zeno_fm_22db1xmde2zuv.webp","Homepage":"https://tamilradios.net/arumbu-fm/","Country":"India","State":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream-156.zeno.fm/22db1xmde2zuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Classical","Talk","Culture"],"Name":"LRT Klasika","Image":"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/klasika/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Modern","Contemporary","Indie"],"Name":"LRT Opus","Image":"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/opus/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Various","News","Talk"],"Name":"LRT Radijas","Image":"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/radijas/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream128_kngi_org.m3u":{"Genre":["Game","Various"],"Name":"KNGI Network","Image":"https___stream128_kngi_org.webp","Homepage":"https://kngi.org","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream128.kngi.org","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream1_svrdedicado_org_8028_stream.m3u":{"Genre":["Blues","Rock","Instrumental"],"Name":"Rádio Lam","Image":"https___stream1_svrdedicado_org_8028_stream.webp","Homepage":"https://radiolam.wixsite.com/24horas","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rock & Blues 24 horas!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream1.svrdedicado.org/8028/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_relaxfm_lt_relaxfm128_mp3.m3u":{"Genre":["Pop"],"Name":"Relax FM","Image":"https___stream2_relaxfm_lt_relaxfm128_mp3.webp","Homepage":"https://relaxfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.relaxfm.lt/relaxfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_rockfm_lt_crf128_mp3.m3u":{"Genre":["Rock"],"Name":"Rock FM","Image":"https___stream2_rockfm_lt_crf128_mp3.webp","Homepage":"https://rockfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.rockfm.lt/crf128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u":{"Genre":["MPB","News"],"Name":"Rádio Câmara 96.9 FM","Image":"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.webp","Homepage":"https://www.camara.leg.br/radio","Country":"Brazil","State":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Câmara 96.9 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://stream3.camara.gov.br/radiocamara1t64/manifest.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___stream_animeradio_de_animeradio_mp3.m3u":{"Genre":["Anime","J-pop","J-rock","OST","Party","Rock"],"Name":"AnimeRadio.de","Image":"https___stream_animeradio_de_animeradio_mp3.webp","Homepage":"https://www.animeradio.de/","Country":"Germany","State":"","Languages":["German","Japanese"],"Language":"German, Japanese","Description":"Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen.","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.animeradio.de/animeradio.mp3","alternativeStreams":{"https___stream_animeradio_de_animeradio_aac":{"StreamUri":"https://stream.animeradio.de/animeradio.aac","Codec":"AAC","Bitrate":32}},"allCodecs":["AAC","MP3"],"allBitrates":[32,192],"highestBitrate":192},"https___stream_artsound_fm_mp3.m3u":{"Genre":["Classical","Jazz","Folk","World Music"],"Name":"ArtSound FM 92.7","Image":"https___stream_artsound_fm_mp3.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.artsound.fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_ceit_be_sudradio-hainaut.m3u":{"Genre":["Various"],"Name":"Sud Radio Hainaut","Image":"https___stream_ceit_be_sudradio-hainaut.webp","Homepage":"https://sudradio.net","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://stream.ceit.be/sudradio-hainaut","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___stream_ehr_lt_8443_ehr.m3u":{"Genre":["Charts","Pop"],"Name":"European Hit Radio","Image":"https___stream_ehr_lt_8443_ehr.webp","Homepage":"https://www.europeanhitradio.lt","Country":"Lithuania","State":"","Languages":["Lithuanian","English"],"Language":"Lithuanian, English","Description":"","Codec":"HE-AAC","Bitrate":96,"StreamUri":"https://stream.ehr.lt:8443/ehr","alternativeStreams":{"https___82_135_234_195_8443_ehr_mp3":{"StreamUri":"https://82.135.234.195:8443/ehr.mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["HE-AAC","MP3"],"allBitrates":[96,192],"highestBitrate":192},"https___stream_nowyswiat_online_mp3.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio Nowy Swiat","Image":"https___stream_nowyswiat_online_mp3.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.nowyswiat.online/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_radiomustathens_com_must-hero.m3u":{"Genre":["Adult Contemporary","Top 40"],"Name":"Hero","Image":"https___stream_radiomustathens_com_must-hero.webp","Homepage":"https://app.radiomustathens.com/#/must-hero","Country":"Greece","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.radiomustathens.com/must-hero","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___stream_radioparadise_com_aac-320.m3u":{"Genre":["Eclectic"],"Name":"Radio Paradise - Main Mix","Image":"https___stream_radioparadise_com_aac-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/aac-320","alternativeStreams":{"https___stream_radioparadise_com_flacm":{"StreamUri":"https://stream.radioparadise.com/flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_mellow-320.m3u":{"Genre":["Rock","Mellow Rock"],"Name":"Radio Paradise - Mellow","Image":"https___stream_radioparadise_com_mellow-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/mellow-320","alternativeStreams":{"https___stream_radioparadise_com_mellow-flacm":{"StreamUri":"https://stream.radioparadise.com/mellow-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_rock-320.m3u":{"Genre":["Rock"],"Name":"Radio Paradise - Rock","Image":"https___stream_radioparadise_com_rock-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/rock-320","alternativeStreams":{"https___stream_radioparadise_com_rock-flacm":{"StreamUri":"https://stream.radioparadise.com/rock-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_world-etc-320.m3u":{"Genre":["World Music"],"Name":"Radio Paradise - World","Image":"https___stream_radioparadise_com_world-etc-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/world-etc-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___stream_rcs_revma_com_an1ugyygzk8uv.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio 357","Image":"https___stream_rcs_revma_com_an1ugyygzk8uv.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/an1ugyygzk8uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_anew1ctrgzzuv.m3u":{"Genre":["Pop","Rock"],"Name":"DH Radio / Twizz","Image":"https___stream_rcs_revma_com_anew1ctrgzzuv.webp","Homepage":"https://www.dhnet.be/medias/dh-radio","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing.","Codec":"AAC","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/anew1ctrgzzuv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u":{"Genre":["Pop","Rock"],"Name":"Must FM","Image":"https___stream_rcs_revma_com_cm96zpmrmm0uv.webp","Homepage":"https://mustfm.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/cm96zpmrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_f31w7e0fveuvv.m3u":{"Genre":["Pop","Charts"],"Name":"Power Hit Radio","Image":"https___stream_rcs_revma_com_f31w7e0fveuvv.webp","Homepage":"https://powerhitradio.tv3.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":89,"StreamUri":"https://stream.rcs.revma.com/f31w7e0fveuvv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[89],"highestBitrate":89},"https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u":{"Genre":["Pop","Rock","Dance","Club"],"Name":"Maximum FM","Image":"https___stream_rcs_revma_com_vnmbzemrmm0uv.webp","Homepage":"https://www.maximumfm.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/vnmbzemrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_xh00fwuptg0uv.m3u":{"Genre":["Various"],"Name":"NRJ Belgique","Image":"https___stream_rcs_revma_com_xh00fwuptg0uv.webp","Homepage":"https://www.nrj.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/xh00fwuptg0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rockantenne_de_rockantenne_stream_mp3.m3u":{"Genre":["Rock"],"Name":"Rock Antenne","Image":"https___stream_rockantenne_de_rockantenne_stream_mp3.webp","Homepage":"https://www.rockantenne.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rockantenne.de/rockantenne/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_skylab-radio_com_live.m3u":{"Genre":["Ambient","Eclectic","Experimental","Hip-Hop","House","Rock","Techno"],"Name":"Skylab Radio","Image":"https___stream_skylab-radio_com_live.webp","Homepage":"http://skylab-radio.com/","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.skylab-radio.com/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_zeno_fm_lf9upjop1gyuv.m3u":{"Genre":["General","News","Various"],"Name":"Kadicou FM","Image":"https___stream_zeno_fm_lf9upjop1gyuv.webp","Homepage":"https://zeno.fm/radio/kadicou-fm/","Country":"Nigeria","State":"","Languages":["English"],"Language":"English","Description":"Kadicou FM is dedicated to giving you quality broadcast and entertaining programs!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.zeno.fm/lf9upjop1gyuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Public Radio"],"Name":"Rádio Antena 1 99.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.webp","Homepage":"https://antena1.rtp.pt","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 99.4 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena180a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u":{"Genre":["News","Politics","Sport","Fado"],"Name":"Rádio Antena 1 Madeira 104.6 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.webp","Homepage":"http://www.rtp.pt/madeira","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 Madeira 104.6 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena1madeira80a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u":{"Genre":["Classical","Opera"],"Name":"Rádio Antena 2 94.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.webp","Homepage":"https://antena2.rtp.pt","Country":"Portugal","State":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Arte que Toca","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena280a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Dance"],"Name":"Rádio Antena 3 105.2 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.webp","Homepage":"https://media.rtp.pt/antena3/","Country":"Portugal","State":"Lisboa","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Alternativa Pop","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena380a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.m3u":{"Genre":["Classical"],"Name":"Davide of MIMIC","Image":"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streaming04.liveboxstream.uk/proxy/davideof?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streaming_antipode_be_antipode_mp3.m3u":{"Genre":["Various"],"Name":"Antipode - La Radio du Brabant Wallon","Image":"https___streaming_antipode_be_antipode_mp3.webp","Homepage":"https://www.antipode.be/","Country":"Belgium","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streaming.antipode.be/antipode.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming_inweb_com_br_energia.m3u":{"Genre":["Pop-Rock","Dance","Trance","Pop"],"Name":"Rádio Energia 97 FM","Image":"https___streaming_inweb_com_br_energia.webp","Homepage":"https://www.97fm.com.br","Country":"Brazil","State":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Energia que te move!","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming.inweb.com.br/energia","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming_radio_co_s3699c5e49_listen.m3u":{"Genre":["Ambient","Electronic","Experimental","Hip-Hop","House","Jazz","Pop"],"Name":"Refuge Worldwide","Image":"https___streaming_radio_co_s3699c5e49_listen.webp","Homepage":"https://refugeworldwide.com/","Country":"Germany","State":"","Languages":["English"],"Language":"English","Description":"Alternative community radio from Berlin","Codec":"MP3","Bitrate":192,"StreamUri":"https://streaming.radio.co/s3699c5e49/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___streaming_ufg_br_8443_radiouniversitaria.m3u":{"Genre":["MPB","News"],"Name":"Rádio Universitária UFG","Image":"https___streaming_ufg_br_8443_radiouniversitaria.webp","Homepage":"https://radio.ufg.br/p/aovivo","Country":"Brazil","State":"Goiás","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UFG","Codec":"MPEG","Bitrate":128,"StreamUri":"https://streaming.ufg.br:8443/radiouniversitaria","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["60's"],"Name":"FluxFM - 60s","Image":"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/60er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - ChillHop","Image":"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Chillhop/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Eclectic"],"Name":"FluxFM - Melides Art Radio","Image":"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Melides/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - Chillout Radio","Image":"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/chillout/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Clubsandwich","Image":"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/clubsandwich/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Pop"],"Name":"FluxFM - ElectroFlux","Image":"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/elektro/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.m3u":{"Genre":["Pop","Culture"],"Name":"FluxFM - Hamburg","Image":"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/flux-hamburg/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - FluxKompensator","Image":"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/fluxkompensator/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Disco","Dance"],"Name":"FluxFM - Indie Disco","Image":"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/indiedisco/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - Jazzradio Schwarzenstein","Image":"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/jazzschwarz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - John Reed Radio","Image":"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/john-reed/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Klubradio","Image":"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/klubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Lounge","Neo-Soul","Trip-Hop","Jazz"],"Name":"FluxFM - FluxLounge","Image":"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/lounge/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","House"],"Name":"FluxFM - Sound Of Berlin","Image":"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/soundofberlin/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Techno"],"Name":"FluxFM - Techno Underground","Image":"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/technoug/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_radio7_de_dab_mp3-192_web_.m3u":{"Genre":["Pop"],"Name":"Radio 7","Image":"https___streams_radio7_de_dab_mp3-192_web_.webp","Homepage":"https://www.radio7.de/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio7.de/dab/mp3-192/web/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u":{"Genre":["60's","70's"],"Name":"Joe 60's & 70's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_60s_70s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u":{"Genre":["80's","90's"],"Name":"Joe 80's & 90's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_80s_90s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u":{"Genre":["Various"],"Name":"Joe Easy","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u":{"Genre":["Various","70's","80's","90's"],"Name":"Joe FM","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u":{"Genre":["2000's"],"Name":"Joe Top 2000","Image":"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","70's"],"Name":"Radio BOB! 70s Rock","Image":"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/70errock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","Blues"],"Name":"Radio BOB! Blues","Image":"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"RADIO BOB!s neuer Blues Stream","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/blues/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Best of Rock","Image":"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/bob-bestofrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Newcomer","Image":"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Listen to the hottest new rockbands – nonstop.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/newcomer/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Oldies","Image":"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/rockoldies/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Summer Rock Hits","Image":"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Languages":["German"],"Language":"German","Description":"Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/summerrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 610 AM","Image":"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-am-610-am610khz.html","Country":"Vietnam","State":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 610 AM","Codec":"AAC","Bitrate":320,"StreamUri":"https://strm.voh.com.vn/radio/channel2/chunklist_w2105781582.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 99.9 FM","Image":"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html","Country":"Vietnam","State":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 99.9 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://strm.voh.com.vn/radio/channel3/chunklist_w1232938254.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u":{"Genre":["News","Talk","Culture"],"Name":"SR P1","Image":"https___sverigesradio_se_topsy_direkt_132-hi-aac.webp","Homepage":"https://sverigesradio.se/p1","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/132-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u":{"Genre":["Pop","Culture"],"Name":"SR P3","Image":"https___sverigesradio_se_topsy_direkt_164-hi-aac.webp","Homepage":"https://sverigesradio.se/p3","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/164-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u":{"Genre":["News","Weather","Sport","Culture"],"Name":"SR P4 Jämtland","Image":"https___sverigesradio_se_topsy_direkt_200-hi-aac.webp","Homepage":"https://sverigesradio.se/jamtland","Country":"Sweden","State":"","Languages":["Swedish"],"Language":"Swedish","Description":"News, weather, sport, and culture from Jämtland","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/200-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___transliacija_rc_lt_rc128_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"Radijo Centras","Image":"https___transliacija_rc_lt_rc128_mp3.webp","Homepage":"https://rc.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.rc.lt/rc128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___transliacija_zipfm_lt_zipfm128_mp3.m3u":{"Genre":["Youth","Pop"],"Name":"ZIP FM","Image":"https___transliacija_zipfm_lt_zipfm128_mp3.webp","Homepage":"https://zipfm.lt","Country":"Lithuania","State":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.zipfm.lt/zipfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u":{"Genre":["Jazz"],"Name":"TSF Jazz","Image":"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.webp","Homepage":"https://www.tsfjazz.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ».","Codec":"MP3","Bitrate":128,"StreamUri":"https://tsfjazz.ice.infomaniak.ch/tsfjazz-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tunein_cdnstream1_com_3519_96_mp3.m3u":{"Genre":["News","Tv News","World News"],"Name":"CNN International","Image":"https___tunein_cdnstream1_com_3519_96_mp3.webp","Homepage":"https://www.cnn.com/","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"TV Audio for CNN International","Codec":"MP3","Bitrate":96,"StreamUri":"https://tunein.cdnstream1.com/3519_96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u":{"Genre":["News. MPB"],"Name":"Rádio UFMG Educativa 104.5 FM","Image":"https___ufmg_br_streamingradioaovivo_aovivo_mp3.webp","Homepage":"https://ufmg.br/comunicacao/radio-ufmg-educativa","Country":"Brazil","State":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFMG Educativa 104.5 FM","Codec":"MP3","Bitrate":32,"StreamUri":"https://ufmg.br/streamingradioaovivo/aovivo.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___uk2_streamingpulse_com_ssl_vcr1.m3u":{"Genre":["Classical"],"Name":"Venice Classic Radio","Image":"https___uk2_streamingpulse_com_ssl_vcr1.webp","Homepage":"https://www.veniceclassicradio.eu/","Country":"Italy","State":"","Languages":["English"],"Language":"English","Description":"Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers.","Codec":"MP3","Bitrate":128,"StreamUri":"https://uk2.streamingpulse.com/ssl/vcr1","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___virtualtronics_net_proxy_zetafm_mp__stream.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"Zeta FM - 95.1 FM","Image":"https___virtualtronics_net_proxy_zetafm_mp__stream.webp","Homepage":"https://www.zetafmcr.com/","Country":"Costa Rica","State":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina.","Codec":"MP3","Bitrate":128,"StreamUri":"https://virtualtronics.net/proxy/zetafm?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"WDR 3","Image":"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr3/index.html","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"Das Kulturradio","Codec":"MP3","Bitrate":256,"StreamUri":"https://wdr-wdr3-live.icecastssl.wdr.de/wdr/wdr3/live/mp3/256/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___wgbh-live_streamguys1_com_classical-hi.m3u":{"Genre":["Classical"],"Name":"WCRB Boston 99.5 - Classical","Image":"https___wgbh-live_streamguys1_com_classical-hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://wgbh-live.streamguys1.com/classical-hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___www_radioking_com_play_radio-doudou.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Doudou","Image":"https___www_radioking_com_play_radio-doudou.webp","Homepage":"https://www.radiodoudou.com","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radioking.com/play/radio-doudou","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_radiopommedapi_com_radio_mp3.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Pomme d'Api - La Radio des Petits","Image":"https___www_radiopommedapi_com_radio_mp3.webp","Homepage":"https://www.radiopommedapi.com/","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radiopommedapi.com/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_ragya_com_prahar.m3u":{"Genre":["Indian Classical","Indian Instrumental"],"Name":"Ragya","Image":"https___www_ragya_com_prahar.webp","Homepage":"https://www.ragya.com/prahar","Country":"India","State":"Maharashtra","Languages":["Hindi","Urdu","Sanskrit"],"Language":"Hindi, Urdu, Sanskrit","Description":"Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition.","Codec":"MP3","Bitrate":32,"StreamUri":"https://www.ragya.com/prahar","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___www_wwoz_org_listen_hi.m3u":{"Genre":["Jazz","Blues","Latin","Cajun","Funk"],"Name":"WWOZ New Orleans FM 90.7 - Various Artists","Image":"https___www_wwoz_org_listen_hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.wwoz.org/listen/hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wz7_servidoresbrasil_com_8162_stream.m3u":{"Genre":["MPB","Flashback"],"Name":"Rádio Hits 98.9 FM (Campos/São João da Barra)","Image":"https___wz7_servidoresbrasil_com_8162_stream.webp","Homepage":"https://redehits.fm","Country":"Brazil","State":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Dá gosto de ouvir!","Codec":"MP3","Bitrate":32,"StreamUri":"https://wz7.servidoresbrasil.com:8162/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"Radio Zet","Image":"https___zt03_cdn_eurozet_pl_zet-tun_mp3.webp","Homepage":"https://www.radiozet.pl","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://zt03.cdn.eurozet.pl/zet-tun.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128}} \ No newline at end of file +{"http___158_69_74_203_80_.m3u":{"Genre":["Jazz","Funk","Soul","World Music","Latin","Lounge","Nu Grooves"],"Name":"SwissGroove","Image":"http___158_69_74_203_80_.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://158.69.74.203:80/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u":{"Genre":["Rock","Lokageeti","Rabindrasangeet","Jeebanmukhi"],"Name":"Radio Bangla Net","Image":"http___18163_live_streamtheworld_com_SP_R3563475_SC.webp","Homepage":"https://radiobanglanet.com/","Country":"India","State":"","Region":"","Languages":["Bengali"],"Language":"Bengali","Description":"A Radio Station for all Bengalis","Codec":"AAC","Bitrate":64,"StreamUri":"http://18163.live.streamtheworld.com/SP_R3563475_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___200_128_65_57_8000_live.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UESC","Image":"http___200_128_65_57_8000_live.webp","Homepage":"http://radio.uesc.br/3.html","Country":"Brazil","State":"Bahia","Region":"Bahia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Inovação, conhecimento e música de qualidade!","Codec":"MPEG","Bitrate":128,"StreamUri":"http://200.128.65.57:8000/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___200_129_35_230_8081_aovivo_ogg_m3u.m3u":{"Genre":["MPB","News","Educational"],"Name":"Universitária FM","Image":"http___200_129_35_230_8081_aovivo_ogg_m3u.webp","Homepage":"http://www.radiouniversitariafm.com.br/","Country":"Brazil","State":"Ceará","Region":"Ceará","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://200.129.35.230:8081/aovivo.ogg.m3u","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___200_136_219_172_8000_radioufscar96_mp3.m3u":{"Genre":["News","Various"],"Name":"Rádio UFSCar 95.3 FM","Image":"http___200_136_219_172_8000_radioufscar96_mp3.webp","Homepage":"http://radio.ufscar.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFSCar - Escute Diferente","Codec":"MP3","Bitrate":128,"StreamUri":"http://200.136.219.172:8000/radioufscar96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___206_189_117_157_8000_stream.m3u":{"Genre":["Electronic","Grime","Hip-Hop","House"],"Name":"Rinse FM","Image":"http___206_189_117_157_8000_stream.webp","Homepage":"https://rinse.fm/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC+","Bitrate":128,"StreamUri":"http://206.189.117.157:8000/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[128],"highestBitrate":128},"http___217_20_116_68_32032_stream.m3u":{"Genre":["International"],"Name":"Sohos FM 88.7","Image":"http___217_20_116_68_32032_stream.webp","Homepage":"http://sohosfm.gr/","Country":"Greece","State":"","Region":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://217.20.116.68:32032/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___5_135_183_124_8073_stream.m3u":{"Genre":["Dance","Pop","Latino","Rock","House","Techno"],"Name":"Onda Torrente Radio","Image":"http___5_135_183_124_8073_stream.webp","Homepage":"https://www.ondatorrenteradio.com","Country":"Spain","State":"Valencia","Region":"Valencia","Languages":["Spanish"],"Language":"Spanish","Description":"Somos la radio de todo el mundo","Codec":"MP3","Bitrate":128,"StreamUri":"http://5.135.183.124:8073/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___54_173_171_80_8000_6forty.m3u":{"Genre":["Indie","Post-Rock","Post-Metal","Modern","Experimental"],"Name":"6forty Radio","Image":"http___54_173_171_80_8000_6forty.webp","Homepage":"http://www.6fortyradio.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"a home for interesting music","Codec":"MP3","Bitrate":192,"StreamUri":"http://54.173.171.80:8000/6forty","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___7878_go2stream_fr_8000_stream.m3u":{"Genre":["Corse"],"Name":"Radio Balagne","Image":"http___7878_go2stream_fr_8000_stream.webp","Homepage":"http://www.radiobalagne.com/","Country":"France","State":"Corse","Region":"Corse","Languages":["Corse","Francais"],"Language":"Corse, Francais","Description":"A voce insulana","Codec":"MPEG","Bitrate":128,"StreamUri":"http://7878.go2stream.fr:8000/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"http___79_120_39_202_8002_mathrock.m3u":{"Genre":["Math Rock"],"Name":"Caprice Radio Math Rock","Image":"http___79_120_39_202_8002_mathrock.webp","Homepage":"http://radcap.ru/mathrock.html","Country":"Russia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"http://79.120.39.202:8002/mathrock","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___81_92_238_33_80.m3u":{"Genre":["Pop","Charts"],"Name":"Eldoradio","Image":"http___81_92_238_33_80.webp","Homepage":"","Country":"Luxembourg","State":"","Region":"","Languages":["Luxembourgish"],"Language":"Luxembourgish","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://81.92.238.33:80","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___82_135_234_195_8000_goldfm_mp3.m3u":{"Genre":["Adult Contemporary","Rock"],"Name":"Gold FM","Image":"http___82_135_234_195_8000_goldfm_mp3.webp","Homepage":"https://goldfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/goldfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Kaunas)","Image":"http___82_135_234_195_8000_kelyje_kaunas_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_kaunas.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Kelyje (Klaipėda, Vilnius)","Image":"http___82_135_234_195_8000_kelyje_klaipeda_mp3.webp","Homepage":"https://www.radijaskelyje.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://82.135.234.195:8000/kelyje_klaipeda.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u":{"Genre":["Community","Indie","Experimental","Pop","Rock","Techno"],"Name":"L'Eko des Garrigues","Image":"http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.webp","Homepage":"http://www.ekodesgarrigues.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"OGG","Bitrate":320,"StreamUri":"http://91.121.159.124:8000/eko-des-garrigues-256k.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[320],"highestBitrate":320},"http___91_218_212_67_8000_stream.m3u":{"Genre":["Spoken Word"],"Name":"Hromadske Radio","Image":"http___91_218_212_67_8000_stream.webp","Homepage":"https://hromadske.radio/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine Talk","Codec":"MP3","Bitrate":160,"StreamUri":"http://91.218.212.67:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u":{"Genre":["Various"],"Name":"BBC World Service","Image":"http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_world_service","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_low/ak/bbc_world_service.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___antena1_newradio_it_stream_ext__mp3.m3u":{"Genre":["Adult Contemporary","Jazz","Pop","Smooth Jazz"],"Name":"Antena 1 São Paulo, SP (ZYD823 94,7 MHz FM)","Image":"http___antena1_newradio_it_stream_ext__mp3.webp","Homepage":"http://antena1.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"ANTENA1 - 94 7 FM","Codec":"AAC+","Bitrate":64,"StreamUri":"http://antena1.newradio.it/stream?ext=.mp3","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Hip-Hop","R'n'B","Soul","Gospel","Electronic"],"Name":"BBC Radio 1Xtra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/1xtra","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Indie","Rock","Funk"],"Name":"BBC Radio 6 Music","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_6music/bbc_6music.isml/bbc_6music-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Contemporary","Bollywood","Bhangra","Pop","Urbain"],"Name":"BBC Asian Network","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.webp","Homepage":"","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_asian_network/bbc_asian_network.isml/bbc_asian_network-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio Cymru","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru","Country":"Wales","State":"","Region":"","Languages":["Welsh"],"Language":"Welsh","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_cymru/bbc_radio_cymru.isml/bbc_radio_cymru-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u":{"Genre":["News","Discussion","Sport","Interviews"],"Name":"BBC Radio 5 Live","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/programmes/b0070hx6","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The latest sport with coverage and debate, featuring commentaries on the big games and sporting events.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_five_live/bbc_radio_five_live.isml/bbc_radio_five_live-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Archive"],"Name":"BBC Radio 4 Extra","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4extra","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_four_extra/bbc_radio_four_extra.isml/bbc_radio_four_extra-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourfm/bbc_radio_fourfm.isml/bbc_radio_fourfm-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Spoken Word"],"Name":"BBC Radio 4 LW","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio4","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Longwave broadcast of BBC Radio 4.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_fourlw/bbc_radio_fourlw.isml/bbc_radio_fourlw-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Charts"],"Name":"BBC Radio 1","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Dance"],"Name":"BBC Radio 1 Dance","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1dance","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A mix of classic, current and future dance music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Meditation"],"Name":"BBC Radio 1 Relax","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/radio1relax","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A mix of relaxing and meditating music.","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_one_relax/bbc_radio_one_relax.isml/bbc_radio_one_relax-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Classical","Jazz","World Music"],"Name":"BBC Radio 3","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_three/bbc_radio_three.isml/bbc_radio_three-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u":{"Genre":["Pop","Contemporary"],"Name":"BBC Radio 2","Image":"http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.webp","Homepage":"https://www.bbc.co.uk/sounds","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"http://as-hls-ww-live.akamaized.net/pool_904/live/ww/bbc_radio_two/bbc_radio_two.isml/bbc_radio_two-audio%3d96000.norewind.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"http___audio1_ideastream_org_wclv_mp3.m3u":{"Genre":["Classical"],"Name":"WCLV Cleveland 104.9 - Classical","Image":"http___audio1_ideastream_org_wclv_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://audio1.ideastream.org/wclv.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___centova_rockhost_com_8001_stream.m3u":{"Genre":["Ethnic","Eclectic"],"Name":"Hollow Earth Radio","Image":"http___centova_rockhost_com_8001_stream.webp","Homepage":"https://www.hollowearthradio.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Non-commercial DIY radio station for underrepresented music, sounds and perspectives","Codec":"MP3","Bitrate":128,"StreamUri":"http://centova.rockhost.com:8001/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u":{"Genre":["Indie Rock"],"Name":"WEQX 102.7 Manchester, VT","Image":"http___crystalout_surfernetwork_com_8001_WEQX_MP3.webp","Homepage":"http://www.weqx.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The real alternative","Codec":"MP3","Bitrate":128,"StreamUri":"http://crystalout.surfernetwork.com:8001/WEQX_MP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___current_stream_publicradio_org_kcmp_mp3.m3u":{"Genre":["Indie"],"Name":"KCMP 89.3 FM - The Current","Image":"http___current_stream_publicradio_org_kcmp_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://current.stream.publicradio.org/kcmp.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___dancewave_online_dance_mp3.m3u":{"Genre":["Dance","House","Trance"],"Name":"Dance Wave!","Image":"http___dancewave_online_dance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet!","Codec":"MP3","Bitrate":128,"StreamUri":"http://dancewave.online/dance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_fipradio_fr_live_fip-midfi_mp3.m3u":{"Genre":["Classical","Jazz","Rock","World Music"],"Name":"France Inter Paris (FIP)","Image":"http___direct_fipradio_fr_live_fip-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.fipradio.fr/live/fip-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_franceculture_fr_live_franceculture-midfi_mp3.m3u":{"Genre":["Spoken Word","Current Affairs"],"Name":"France Culture Live","Image":"http___direct_franceculture_fr_live_franceculture-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.franceculture.fr/live/franceculture-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.m3u":{"Genre":["Classical"],"Name":"France Musique Classique Plus","Image":"http___direct_francemusique_fr_live_francemusiqueclassiqueplus-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiqueclassiqueplus-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.m3u":{"Genre":["Contemporary"],"Name":"France Musique La Contemporaine","Image":"http___direct_francemusique_fr_live_francemusiquelacontemporaine-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelacontemporaine-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.m3u":{"Genre":["Jazz"],"Name":"France Musique La Jazz","Image":"http___direct_francemusique_fr_live_francemusiquelajazz-hifi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusiquelajazz-hifi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___direct_francemusique_fr_live_francemusique-midfi_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"France Musique Live","Image":"http___direct_francemusique_fr_live_francemusique-midfi_mp3.webp","Homepage":"","Country":"France","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://direct.francemusique.fr/live/francemusique-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___eagle_streemlion_com_4040_stream_icy_http.m3u":{"Genre":["Progressive Rock"],"Name":"Prog Frog","Image":"http___eagle_streemlion_com_4040_stream_icy_http.webp","Homepage":"https://prog-frog.com/","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Progressive Rock Radio Worldwide","Codec":"MP3","Bitrate":128,"StreamUri":"http://eagle.streemlion.com:4040/stream?icy=http","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u":{"Genre":["Jazz","Blues","Soul"],"Name":"Jazz FM","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.webp","Homepage":"https://planetradio.co.uk/jazz-fm/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Listen in Colour","Codec":"AAC","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/jazzhigh.aac?aw_0_1st.skey=1650998937","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.m3u":{"Genre":["Classical","News","Classical","Requests"],"Name":"Scala Radio","Image":"http___edge-bauerall-01-gos2_sharp-stream_com_scalahigh_aac_aw_0_1st_skey_1650896299.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://edge-bauerall-01-gos2.sharp-stream.com/scalahigh.aac?aw_0_1st.skey=1650896299","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u":{"Genre":["Metal"],"Name":"La Grosse Radio Métal","Image":"http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/metal/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u":{"Genre":["Reggae"],"Name":"La Grosse Radio Reggae","Image":"http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/reggae/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement.","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-reggae-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u":{"Genre":["Rock"],"Name":"La Grosse Radio Rock","Image":"http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.webp","Homepage":"https://www.lagrosseradio.com/rock/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced!","Codec":"MP3","Bitrate":192,"StreamUri":"http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___hd_stream_frequence3_net_frequence3_flac.m3u":{"Genre":["Pop","Charts"],"Name":"frequence3","Image":"http___hd_stream_frequence3_net_frequence3_flac.webp","Homepage":"https://www.frequence3.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"FLAC","Bitrate":0,"StreamUri":"http://hd.stream.frequence3.net/frequence3.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[0],"highestBitrate":0},"http___hirschmilch_de_7000_electronic_mp3.m3u":{"Genre":["Electronic"],"Name":"Hirschmilch Electronic","Image":"http___hirschmilch_de_7000_electronic_mp3.webp","Homepage":"https://hirschmilch.de/","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7.","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/electronic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_prog-house_mp3.m3u":{"Genre":["Progressive House"],"Name":"Hirschmilch Prog-House","Image":"http___hirschmilch_de_7000_prog-house_mp3.webp","Homepage":"https://hirschmilch.de/prog-house","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Progressive House on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/prog-house.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_psytrance_mp3.m3u":{"Genre":["Psytrance"],"Name":"Hirschmilch Psytrance","Image":"http___hirschmilch_de_7000_psytrance_mp3.webp","Homepage":"https://hirschmilch.de/psytrance","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Psytrance on https://hirschmilch.de","Codec":"MP3","Bitrate":128,"StreamUri":"http://hirschmilch.de:7000/psytrance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___hirschmilch_de_7000_techno_mp3.m3u":{"Genre":["Techno"],"Name":"Hirschmilch Techno","Image":"http___hirschmilch_de_7000_techno_mp3.webp","Homepage":"https://hirschmilch.de/techno","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Techno on https://hirschmilch.de","Codec":"MP3","Bitrate":123,"StreamUri":"http://hirschmilch.de:7000/techno.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[123],"highestBitrate":123},"http___ice1_somafm_com_7soul-128-aac.m3u":{"Genre":["Soul","Vintage Music"],"Name":"Soma FM - Seven Inch Soul","Image":"http___ice1_somafm_com_7soul-128-aac.webp","Homepage":"https://somafm.com/7soul/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Vintage soul tracks from the original 45 RPM vinyl.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/7soul-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_beatblender-128-aac.m3u":{"Genre":["Electronic","Deep House","Down-Tempo"],"Name":"Soma FM - Beat Blender","Image":"http___ice1_somafm_com_beatblender-128-aac.webp","Homepage":"https://somafm.com/beatblender/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A late night blend of deep-house and downtempo chill.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/beatblender-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_bootliquor-128-aac.m3u":{"Genre":["Country","Americana Roots Music"],"Name":"Soma FM - Boot Liquor","Image":"http___ice1_somafm_com_bootliquor-128-aac.webp","Homepage":"https://somafm.com/bootliquor/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Americana Roots music for Cowhands, Cowpokes and Cowtippers.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/bootliquor-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_brfm-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - Black Rock FM","Image":"http___ice1_somafm_com_brfm-128-aac.webp","Homepage":"https://somafm.com/brfm/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"From the Playa to the world, for the annual Burning Man festival.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/brfm-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-128-aac.m3u":{"Genre":["Electronic","IDM"],"Name":"Soma FM - cliqhop idm","Image":"http___ice1_somafm_com_cliqhop-128-aac.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/cliqhop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_cliqhop-256-mp3.m3u":{"Genre":["IDM"],"Name":"cliqhop idm - SomaFM","Image":"http___ice1_somafm_com_cliqhop-256-mp3.webp","Homepage":"https://somafm.com/cliqhop/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Blips'n'beeps backed mostly w/beats. Intelligent Dance Music.","Codec":"MP3","Bitrate":256,"StreamUri":"http://ice1.somafm.com/cliqhop-256-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ice1_somafm_com_covers-128-mp3.m3u":{"Genre":["Pop","Cover Songs"],"Name":"Soma FM - Covers","Image":"http___ice1_somafm_com_covers-128-mp3.webp","Homepage":"https://somafm.com/covers/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Just covers. Songs you know by artists you don't. We've got you covered.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice1.somafm.com/covers-128-mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_deepspaceone-128-aac.m3u":{"Genre":["Electronic","Ambient","Experimental","Space Music"],"Name":"Soma FM - Deep Space One","Image":"http___ice1_somafm_com_deepspaceone-128-aac.webp","Homepage":"https://somafm.com/deepspaceone/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Deep ambient electronic, experimental and space music. For inner and outer space exploration.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/deepspaceone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_defcon-128-aac.m3u":{"Genre":["Electronic"],"Name":"Soma FM - DEF CON Radio","Image":"http___ice1_somafm_com_defcon-128-aac.webp","Homepage":"https://somafm.com/defcon/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Music for Hacking. The DEF CON Year-Round Channel.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/defcon-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_digitalis-128-aac.m3u":{"Genre":["Rock","Digitally Affected Analog Rock"],"Name":"Soma FM - Digitalis","Image":"http___ice1_somafm_com_digitalis-128-aac.webp","Homepage":"https://somafm.com/digitalis/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Digitally affected analog rock to calm the agitated heart.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/digitalis-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dronezone-128-aac.m3u":{"Genre":["Electronic","Ambient","Atmospheric Texture","Minimal Beats"],"Name":"Soma FM - Drone Zone","Image":"http___ice1_somafm_com_dronezone-128-aac.webp","Homepage":"https://somafm.com/dronezone/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Served best chilled, safe with most medications. Atmospheric textures with minimal beats.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dronezone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_dubstep-128-aac.m3u":{"Genre":["Dub","Dubstep","Deep Bass"],"Name":"Soma FM - Dub Step Beyond","Image":"http___ice1_somafm_com_dubstep-128-aac.webp","Homepage":"https://somafm.com/dubstep/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Dubstep, Dub and Deep Bass. May damage speakers at high volume.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/dubstep-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_fluid-128-aac.m3u":{"Genre":["Electronic","Instrumental Hiphop","Future Soul","Liquid Trap"],"Name":"Soma FM - Fluid","Image":"http___ice1_somafm_com_fluid-128-aac.webp","Homepage":"https://somafm.com/fluid/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Drown in the electronic sound of instrumental hiphop, future soul and liquid trap.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/fluid-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_folkfwd-128-aac.m3u":{"Genre":["Folk","Indie Folk"],"Name":"Soma FM - Folk Forward","Image":"http___ice1_somafm_com_folkfwd-128-aac.webp","Homepage":"https://somafm.com/folkfwd/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Indie Folk, Alt-folk and the occasional folk classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/folkfwd-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_groovesalad-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo"],"Name":"Soma FM - Groove Salad","Image":"http___ice1_somafm_com_groovesalad-128-aac.webp","Homepage":"https://somafm.com/groovesalad/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A nicely chilled plate of ambient/downtempo beats and grooves.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/groovesalad-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_illstreet-128-aac.m3u":{"Genre":["Lounge","Bachelor Pad","Exotica","Vintage Music"],"Name":"Soma FM - Illinois Street Lounge","Image":"http___ice1_somafm_com_illstreet-128-aac.webp","Homepage":"https://somafm.com/illstreet/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Classic bachelor pad, playful exotica and vintage music of tomorrow.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/illstreet-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_indiepop-128-aac.m3u":{"Genre":["Pop","Indie Pop"],"Name":"Soma FM - Indie Pop Rocks!","Image":"http___ice1_somafm_com_indiepop-128-aac.webp","Homepage":"https://somafm.com/indiepop/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"New and classic favorite indie pop tracks.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/indiepop-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_live-128-aac.m3u":{"Genre":["Electronic","Live","Special Events"],"Name":"Soma FM - Live","Image":"http___ice1_somafm_com_live-128-aac.webp","Homepage":"https://somafm.com/live/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Special Live Events and rebroadcasts of past live events.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/live-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_lush-128-aac.m3u":{"Genre":["Electronic","Mellow Vocals Mostly Female"],"Name":"Soma FM - Lush","Image":"http___ice1_somafm_com_lush-128-aac.webp","Homepage":"https://somafm.com/lush/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Sensuous and mellow female vocals, many with an electronic influence.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/lush-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_metal-128-aac.m3u":{"Genre":["Metal"],"Name":"Soma FM - Metal Detector","Image":"http___ice1_somafm_com_metal-128-aac.webp","Homepage":"https://somafm.com/metal/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/metal-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_missioncontrol-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - Mission Control","Image":"http___ice1_somafm_com_missioncontrol-128-aac.webp","Homepage":"https://somafm.com/missioncontrol/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Celebrating NASA and Space Explorers everywhere.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/missioncontrol-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_poptron-128-aac.m3u":{"Genre":["Pop","Electro-Pop","Indie Rock"],"Name":"Soma FM - PopTron","Image":"http___ice1_somafm_com_poptron-128-aac.webp","Homepage":"https://somafm.com/poptron/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Electropop and indie dance rock with sparkle and pop.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/poptron-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_secretagent-128-aac.m3u":{"Genre":["Pop","Easy-Tempo","60's"],"Name":"Soma FM - Secret Agent","Image":"http___ice1_somafm_com_secretagent-128-aac.webp","Homepage":"https://somafm.com/secretagent/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/secretagent-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_seventies-128-aac.m3u":{"Genre":["Rock","70's","Mellow Rock"],"Name":"Soma FM - Left Coast 70s","Image":"http___ice1_somafm_com_seventies-128-aac.webp","Homepage":"https://somafm.com/seventies/index.html","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Mellow album rock from the Seventies. Yacht not required.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/seventies-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sf1033-128-aac.m3u":{"Genre":["Electronic","Ambient"],"Name":"Soma FM - SF 10-33","Image":"http___ice1_somafm_com_sf1033-128-aac.webp","Homepage":"https://somafm.com/sf1033/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Ambient music mixed with the sounds of San Francisco public safety radio traffic.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sf1033-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_sonicuniverse-128-aac.m3u":{"Genre":["Jazz","Avantgarde"],"Name":"Soma FM - Sonic Universe","Image":"http___ice1_somafm_com_sonicuniverse-128-aac.webp","Homepage":"https://somafm.com/sonicuniverse/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Transcending the world of jazz with eclectic, avant-garde takes on tradition.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/sonicuniverse-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_spacestation-128-aac.m3u":{"Genre":["Electronic","Mid-Tempo"],"Name":"Soma FM - Space Station Soma","Image":"http___ice1_somafm_com_spacestation-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/spacestation-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_suburbsofgoa-128-aac.m3u":{"Genre":["World Music","Desi-Influenced Asian","World Music"],"Name":"Soma FM - Suburbs of Goa","Image":"http___ice1_somafm_com_suburbsofgoa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/suburbsofgoa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thetrip-128-aac.m3u":{"Genre":["Pop","Progressive House","Trance"],"Name":"Soma FM - The Trip","Image":"http___ice1_somafm_com_thetrip-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thetrip-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_thistle-128-aac.m3u":{"Genre":["Folk","Celtic","Roots Music"],"Name":"Soma FM - ThistleRadio","Image":"http___ice1_somafm_com_thistle-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/thistle-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice1_somafm_com_u80s-128-aac.m3u":{"Genre":["Pop","80's","Synth-Pop","New Wave"],"Name":"Soma FM - Underground 80s","Image":"http___ice1_somafm_com_u80s-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice1.somafm.com/u80s-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice-1_streamhoster_com_lv_wqed--893.m3u":{"Genre":["Classical"],"Name":"WQED Pittsburgh 89.3 - Classical","Image":"http___ice-1_streamhoster_com_lv_wqed--893.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice-1.streamhoster.com/lv_wqed--893","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___ice2_somafm_com_gsclassic-128-aac.m3u":{"Genre":["Electronic","Ambient","Down-Tempo","2000's"],"Name":"Soma FM - Groove Salad Classic","Image":"http___ice2_somafm_com_gsclassic-128-aac.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice2.somafm.com/gsclassic-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice4_somafm_com_reggae-128-aac.m3u":{"Genre":["Reggae","Ska","Rocksteady Classic","Deep"],"Name":"Soma FM - Heavyweight Reggae","Image":"http___ice4_somafm_com_reggae-128-aac.webp","Homepage":"https://somafm.com/reggae/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics.","Codec":"AAC","Bitrate":128,"StreamUri":"http://ice4.somafm.com/reggae-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___ice5_securenetsystems_net_KCSM.m3u":{"Genre":["Jazz"],"Name":"KCSM","Image":"http___ice5_securenetsystems_net_KCSM.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://ice5.securenetsystems.net/KCSM","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___ice_bassdrive_net_80_stream.m3u":{"Genre":["Drum'n'Bass"],"Name":"Bassdrive Radio","Image":"http___ice_bassdrive_net_80_stream.webp","Homepage":"https://www.bassdrive.com/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe.","Codec":"MP3","Bitrate":128,"StreamUri":"http://ice.bassdrive.net:80/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u":{"Genre":["Rock"],"Name":"SuperStereo 1","Image":"http___icecast_centaury_cl_7570_SuperStereoHiRes1.webp","Homepage":"https://www.hiresaudio.online/superstereo-1/","Country":"Chile","State":"","Region":"","Languages":["English"],"Language":"English","Description":"YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’","Codec":"OGG","Bitrate":48,"StreamUri":"http://icecast.centaury.cl:7570/SuperStereoHiRes1","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[48],"highestBitrate":48},"http___icecast_err_ee_80_raadio4korge_mp3.m3u":{"Genre":["News","Pop","Jazz","Classical"],"Name":"Raadio 4","Image":"http___icecast_err_ee_80_raadio4korge_mp3.webp","Homepage":"https://r4.err.ee/","Country":"Estonia","State":"Tallinn","Region":"Tallinn","Languages":["Russian"],"Language":"Russian","Description":"Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia","Codec":"MP3","Bitrate":320,"StreamUri":"http://icecast.err.ee:80/raadio4korge.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___icecast_omroep_nl_radio1-bb-aac.m3u":{"Genre":["News"],"Name":"NPO Radio 1","Image":"http___icecast_omroep_nl_radio1-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio1-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio2-bb-aac.m3u":{"Genre":["Pop","Dance","Oldies","Rock"],"Name":"NPO Radio 2","Image":"http___icecast_omroep_nl_radio2-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio2-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_omroep_nl_radio4-bb-aac.m3u":{"Genre":["Classical"],"Name":"NPO Radio 4","Image":"http___icecast_omroep_nl_radio4-bb-aac.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://icecast.omroep.nl/radio4-bb-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___icecast_unitedradio_it_Virgin_mp3.m3u":{"Genre":["Mediaset","Pop Rock"],"Name":"Virgin Radio Italia","Image":"http___icecast_unitedradio_it_Virgin_mp3.webp","Homepage":"http://www.virginradio.it/","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.unitedradio.it/Virgin.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u":{"Genre":["Classical"],"Name":"VRT - Klara Continuo","Image":"http___icecast_vrtcdn_be_klaracontinuo-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klaracontinuo-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_klara-high_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"VRT - Klara","Image":"http___icecast_vrtcdn_be_klara-high_mp3.webp","Homepage":"https://klara.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/klara-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm-high_mp3.m3u":{"Genre":["Pop"],"Name":"VRT - MNM","Image":"http___icecast_vrtcdn_be_mnm-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"VRT - MNM Hits","Image":"http___icecast_vrtcdn_be_mnm_hits-high_mp3.webp","Homepage":"https://mnm.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/mnm_hits-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u":{"Genre":["Eclectic"],"Name":"VRT - Radio 2","Image":"http___icecast_vrtcdn_be_ra2vlb-high_mp3.webp","Homepage":"https://radio2.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/ra2vlb-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio1-high_mp3.m3u":{"Genre":["Pop","Contemporary","Rock","News"],"Name":"VRT - Radio 1","Image":"http___icecast_vrtcdn_be_radio1-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio1-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Unwind","Image":"http___icecast_vrtcdn_be_radio2_unwind-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-unwind","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/radio2_unwind-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru-high_mp3.m3u":{"Genre":["Indie"],"Name":"VRT - StuBru - Studio Brussels","Image":"http___icecast_vrtcdn_be_stubru-high_mp3.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u":{"Genre":["Pop","Rock"],"Name":"VRT Studio Brussel De Tijdloze","Image":"http___icecast_vrtcdn_be_stubru_tijdloze_aac.webp","Homepage":"https://stubru.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://icecast.vrtcdn.be/stubru_tijdloze.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginHardRock_mp3.m3u":{"Genre":["Hard Rock","Mediaset"],"Name":"Virgin Radio Hard Rock","Image":"http___icy_unitedradio_it_VirginHardRock_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginHardRock.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___icy_unitedradio_it_VirginRockClassics_mp3.m3u":{"Genre":["Classic Rock","Mediaset"],"Name":"Virgin Radio Classic Rock","Image":"http___icy_unitedradio_it_VirginRockClassics_mp3.webp","Homepage":"http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://icy.unitedradio.it/VirginRockClassics.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___kdhx-ice_streamguys1_com_80_live.m3u":{"Genre":["Indie"],"Name":"KDHX 88.1 FM St. Louis","Image":"http___kdhx-ice_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://kdhx-ice.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___kuvo-ice_streamguys_org_kuvo-aac-128.m3u":{"Genre":["Jazz"],"Name":"KUVO 89.3 FM Denver","Image":"http___kuvo-ice_streamguys_org_kuvo-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvo-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.m3u":{"Genre":["Pop","R'n'B","Hip-Hop"],"Name":"KUVO HD2","Image":"http___kuvo-ice_streamguys_org_kuvohd2-aac-128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://kuvo-ice.streamguys.org/kuvohd2-aac-128","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u":{"Genre":["Indie","Rock","Pop","New Age","Punk","Post-Punk","Electronic","Contemporary"],"Name":"KZradio הקצה","Image":"http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.webp","Homepage":"https://kzradio.net/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Independent Internet-radio based in Tel Aviv","Codec":"HE-AAC","Bitrate":128,"StreamUri":"http://kzradio.mediacast.co.il/kzradio_live/kzradio/icecast.audio","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[128],"highestBitrate":128},"http___listen_jazz88_org_ksds_mp3.m3u":{"Genre":["Jazz"],"Name":"San Diego Jazz 88.3","Image":"http___listen_jazz88_org_ksds_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://listen.jazz88.org/ksds.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___listen-nme_sharp-stream_com_nme1high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 1 - Classic & New Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme1high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme1high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___listen-nme_sharp-stream_com_nme2high_mp3.m3u":{"Genre":["Indie"],"Name":"NME 2 - New & Upfront Indie Alt","Image":"http___listen-nme_sharp-stream_com_nme2high_mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://listen-nme.sharp-stream.com/nme2high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___live-aacplus-64_kexp_org_kexp64_aac.m3u":{"Genre":["Indie"],"Name":"KEXP 90.3 FM Seattle","Image":"http___live-aacplus-64_kexp_org_kexp64_aac.webp","Homepage":"https://www.kexp.org/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://live-aacplus-64.kexp.org/kexp64.aac","alternativeStreams":{"http___live-mp3-128_kexp_org_":{"StreamUri":"http://live-mp3-128.kexp.org/","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[128,64],"highestBitrate":128},"http___live-icy_dr_dk_A_A03H_mp3.m3u":{"Genre":["News","Talk"],"Name":"DR P1","Image":"http___live-icy_dr_dk_A_A03H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A03H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A04H_mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"DR P2","Image":"http___live-icy_dr_dk_A_A04H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A04H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A05H_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"DR P3","Image":"http___live-icy_dr_dk_A_A05H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A05H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A08H_mp3.m3u":{"Genre":["Pop","News"],"Name":"DR P4","Image":"http___live-icy_dr_dk_A_A08H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A08H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-icy_dr_dk_A_A29H_mp3.m3u":{"Genre":["Indie","Indie Rock","Rock"],"Name":"DR P6 Beat","Image":"http___live-icy_dr_dk_A_A29H_mp3.webp","Homepage":"","Country":"Denmark","State":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://live-icy.dr.dk/A/A29H.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J","Image":"http___live-radio01_mediahubaustralia_com_2TJW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/2TJW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.m3u":{"Genre":["Country"],"Name":"ABC Country","Image":"http___live-radio01_mediahubaustralia_com_CTRW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/CTRW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.m3u":{"Genre":["Jazz"],"Name":"ABC Jazz","Image":"http___live-radio01_mediahubaustralia_com_JAZW_mp3_.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/JAZW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u":{"Genre":["Indie"],"Name":"Triple J Unearthed","Image":"http___live-radio01_mediahubaustralia_com_UNEW_mp3_.webp","Homepage":"https://www.abc.net.au/triplejunearthed/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://live-radio01.mediahubaustralia.com/UNEW/mp3/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___live_radioec_com_ua_8000_kiev.m3u":{"Genre":["Pop","Rock","Techno"],"Name":"KrainaFM","Image":"http___live_radioec_com_ua_8000_kiev.webp","Homepage":"http://krainafm.com.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Ukraine's first all-Ukrainian-language radio","Codec":"MP3","Bitrate":128,"StreamUri":"http://live.radioec.com.ua:8000/kiev","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___live_radioton_de_rt-live-bw.m3u":{"Genre":["80's"],"Name":"Radioton","Image":"http___live_radioton_de_rt-live-bw.webp","Homepage":"https://www.radioton.de/","Country":"Germany","State":"Baden-Württemberg","Region":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"Lang leben die 80er.","Codec":"MP3","Bitrate":192,"StreamUri":"http://live.radioton.de/rt-live-bw","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mainstream_amazingradios_com_8000_blues128.m3u":{"Genre":["Blues"],"Name":"Amazing Blues","Image":"http___mainstream_amazingradios_com_8000_blues128.webp","Homepage":"https://amazingradios.com/","Country":"USA","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://mainstream.amazingradios.com:8000/blues128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.m3u":{"Genre":["Classical"],"Name":"MDR Klassik","Image":"http___mdr-284350-0_cast_mdr_de_mdr_284350_0_aac_high_stream_aac.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://mdr-284350-0.cast.mdr.de/mdr/284350/0/aac/high/stream.aac","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___media-ice_musicradio_com_ClassicFMMP3.m3u":{"Genre":["Classical"],"Name":"Classic FM","Image":"http___media-ice_musicradio_com_ClassicFMMP3.webp","Homepage":"https://www.classicfm.com/","Country":"United Kingdom","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://media-ice.musicradio.com/ClassicFMMP3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___media_radio-libertaire_org_8080_radiolib_mp3.m3u":{"Genre":["Various","Talk"],"Name":"Radio Libertaire (France)","Image":"http___media_radio-libertaire_org_8080_radiolib_mp3.webp","Homepage":"https://www.radio-libertaire.net/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://media.radio-libertaire.org:8080/radiolib.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___mediaserv21_live-streams_nl_8000_live.m3u":{"Genre":["Contemporary"],"Name":"Hi On Line - France","Image":"http___mediaserv21_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv21.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8000_live.m3u":{"Genre":["Pop","Golden Oldies"],"Name":"Hi On Line - Gold","Image":"http___mediaserv30_live-streams_nl_8000_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8086_live.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop (320K)","Image":"http___mediaserv30_live-streams_nl_8086_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8086/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv30_live-streams_nl_8088_live.m3u":{"Genre":["Classical"],"Name":"Hi On Line - Classical","Image":"http___mediaserv30_live-streams_nl_8088_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv30.live-streams.nl:8088/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8034_live.m3u":{"Genre":["Latin"],"Name":"Hi On Line - Latin","Image":"http___mediaserv33_live-streams_nl_8034_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8034/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv33_live-streams_nl_8036_live.m3u":{"Genre":["Lounge"],"Name":"Hi On Line - Lounge","Image":"http___mediaserv33_live-streams_nl_8036_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv33.live-streams.nl:8036/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8006_live.m3u":{"Genre":["Jazz"],"Name":"Hi On Line - Jazz","Image":"http___mediaserv38_live-streams_nl_8006_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8006/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___mediaserv38_live-streams_nl_8027_live.m3u":{"Genre":["World Music"],"Name":"Hi On Line - World","Image":"http___mediaserv38_live-streams_nl_8027_live.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://mediaserv38.live-streams.nl:8027/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u":{"Genre":["Classical"],"Name":"Mother Earth Klassik","Image":"http___motherearth_streamserver24_com_18910_motherearth_klassik.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"http://motherearth.streamserver24.com:18910/motherearth.klassik","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u":{"Genre":["80's"],"Name":"harmony.fm","Image":"http___mp3_harmonyfm_de_harmonyfm_livestream_aac.webp","Homepage":"https://www.harmonyfm.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Alles 80er!","Codec":"AAC","Bitrate":48,"StreamUri":"http://mp3.harmonyfm.de/harmonyfm/livestream.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u":{"Genre":["Pop","Dance","House","Hip-Hop","R'n'B"],"Name":"planet radio","Image":"http___mp3_planetradio_de_planetradio_hqlivestream_aac.webp","Homepage":"https://www.planetradio.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.aac","alternativeStreams":{"http___mp3_planetradio_de_planetradio_livestream_aac":{"StreamUri":"http://mp3.planetradio.de/planetradio/livestream.aac","Codec":"AAC","Bitrate":48},"http___mp3_planetradio_de_planetradio_hqlivestream_mp3":{"StreamUri":"http://mp3.planetradio.de/planetradio/hqlivestream.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[48,128],"highestBitrate":128},"http___mscp2_live-streams_nl_8100_flac_flac.m3u":{"Genre":["Pop"],"Name":"Hi On Line - Pop","Image":"http___mscp2_live-streams_nl_8100_flac_flac.webp","Homepage":"http://www.hionline.eu","Country":"Netherlands","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"FLAC","Bitrate":128,"StreamUri":"http://mscp2.live-streams.nl:8100/flac.flac","alternativeStreams":{},"allCodecs":["FLAC"],"allBitrates":[128],"highestBitrate":128},"http___mscp3_live-streams_nl_8250_class-high_aac.m3u":{"Genre":["Classical"],"Name":"Naim Classical","Image":"http___mscp3_live-streams_nl_8250_class-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8250/class-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8340_jazz-high_aac.m3u":{"Genre":["Jazz"],"Name":"Naim Jazz","Image":"http___mscp3_live-streams_nl_8340_jazz-high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8340/jazz-high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___mscp3_live-streams_nl_8360_high_aac.m3u":{"Genre":["Eclectic"],"Name":"Naim Radio","Image":"http___mscp3_live-streams_nl_8360_high_aac.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"http://mscp3.live-streams.nl:8360/high.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"http___msmn7_co_8018_stream.m3u":{"Genre":["Indie"],"Name":"CDNX","Image":"http___msmn7_co_8018_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://msmn7.co:8018/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___ninarfm_grtvstream_com_8896__.m3u":{"Genre":["Various","News"],"Name":"Ninar FM نينار اف ام","Image":"http___ninarfm_grtvstream_com_8896__.webp","Homepage":"http://ninarfm.com/","Country":"Syria","State":"","Region":"","Languages":["Arabic"],"Language":"Arabic","Description":"Ninar FM نينار اف ام","Codec":"MP3","Bitrate":96,"StreamUri":"http://ninarfm.grtvstream.com:8896/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___npr-ice_streamguys1_com_live_mp3.m3u":{"Genre":["News","News Talk","Political Talk","Politics","Public Radio","Talk"],"Name":"NPR - 24 Hour Program Stream","Image":"http___npr-ice_streamguys1_com_live_mp3.webp","Homepage":"https://www.npr.org/about-npr/472557877/npr-program-stream","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"NPR Program Stream","Codec":"MP3","Bitrate":96,"StreamUri":"http://npr-ice.streamguys1.com/live.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___okradio_rtvhd_net_8130__.m3u":{"Genre":["Pop","Música Latina"],"Name":"Vox Radio - 105.5 FM","Image":"http___okradio_rtvhd_net_8130__.webp","Homepage":"http://www.voxradio.fm/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música.","Codec":"AAC","Bitrate":56,"StreamUri":"http://okradio.rtvhd.net:8130/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[56],"highestBitrate":56},"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u":{"Genre":["Brazilian Music","Contemporary","Pop","Rock"],"Name":"Rádio Cidade","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.webp","Homepage":"https://radiocidade.fm/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Cidade - Rio de Janeiro","Codec":"AAC+","Bitrate":48,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[48],"highestBitrate":48},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.m3u":{"Genre":["Classical"],"Name":"WRTI Philadelphia 90.1 - Classical","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_CLASSICAL_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_CLASSICAL.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.m3u":{"Genre":["Jazz"],"Name":"WRTI Philadelphia 90.1 - Jazz","Image":"http___playerservices_streamtheworld_com_api_livestream-redirect_WRTI_JAZZ_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://playerservices.streamtheworld.com/api/livestream-redirect/WRTI_JAZZ.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___play_organlive_com_8002_320.m3u":{"Genre":["Classical"],"Name":"OrganLive.com","Image":"http___play_organlive_com_8002_320.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320oe.m3u":{"Genre":["Classical"],"Name":"Organ Experience","Image":"http___play_organlive_com_8002_320oe.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320oe","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___play_organlive_com_8002_320pb.m3u":{"Genre":["Classical","Baroque"],"Name":"Positivly Baroque","Image":"http___play_organlive_com_8002_320pb.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://play.organlive.com:8002/320pb","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u":{"Genre":["News"],"Name":"VRT - NWS","Image":"http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.webp","Homepage":"https://www.vrt.be/vrtnws/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://progressive-audio.lwc.vrtcdn.be/content/fixed/11_11niws-snip_hi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___q2stream_wqxr_org_q2.m3u":{"Genre":["Classical"],"Name":"WQXR Q2 - Living Music, Living Composers","Image":"http___q2stream_wqxr_org_q2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://q2stream.wqxr.org/q2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio80k_out_airtime_pro_8000_radio80k_a.m3u":{"Genre":["Community Radio","Freeform","Variety"],"Name":"Radio 80000 Munich, Germany","Image":"http___radio80k_out_airtime_pro_8000_radio80k_a.webp","Homepage":"http://www.radio80k.de/","Country":"Germany","State":"","Region":"","Languages":["English","German"],"Language":"English, German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio80k.out.airtime.pro:8000/radio80k_a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radioaovivo_senado_gov_br_canal2_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado Canal 2","Image":"http___radioaovivo_senado_gov_br_canal2_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado Canal 2","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.gov.br/canal2.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_senado_leg_br_fm_mp3.m3u":{"Genre":["MPB","News"],"Name":"Rádio Senado","Image":"http___radioaovivo_senado_leg_br_fm_mp3.webp","Homepage":"https://www12.senado.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Senado 91.7 FM","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.senado.leg.br/fm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u":{"Genre":["Classical","MPB"],"Name":"Rádio da Universidade 1080 AM (UFRGS)","Image":"http___radioaovivo_ufrgs_br_8000_stream_mp3.webp","Homepage":"https://www.ufrgs.br/radio/","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio da Universidade 1080 AM (UFRGS)","Codec":"MP3","Bitrate":32,"StreamUri":"http://radioaovivo.ufrgs.br:8000/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"http___radio_comunica_ufrn_br_8000_live_aac.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária Natal 88.9 FM (UFRN)","Image":"http___radio_comunica_ufrn_br_8000_live_aac.webp","Homepage":"https://www.instagram.com/radiouniversitarianatal/","Country":"Brazil","State":"Rio Grande Do Norte","Region":"Rio Grande Do Norte","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Transforma Natal, transforma você!","Codec":"AAC","Bitrate":128,"StreamUri":"http://radio.comunica.ufrn.br:8000/live.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___radio_linn_co_uk_8000_autodj.m3u":{"Genre":["Jazz"],"Name":"Linn Jazz","Image":"http___radio_linn_co_uk_8000_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8000/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8003_autodj.m3u":{"Genre":["Eclectic"],"Name":"Linn Radio","Image":"http___radio_linn_co_uk_8003_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8003/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_linn_co_uk_8004_autodj.m3u":{"Genre":["Classical"],"Name":"Linn Classical","Image":"http___radio_linn_co_uk_8004_autodj.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://radio.linn.co.uk:8004/autodj","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___radio_m-1_fm_lietus_mp3.m3u":{"Genre":["Lithuanian","Various"],"Name":"Lietus","Image":"http___radio_m-1_fm_lietus_mp3.webp","Homepage":"https://www.lietus.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://radio.m-1.fm/lietus/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___radionz-ice_streamguys_com_80_concert_mp3.m3u":{"Genre":["Classical"],"Name":"Radio New Zealand - Concert","Image":"http___radionz-ice_streamguys_com_80_concert_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/concert.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radionz-ice_streamguys_com_80_national_mp3.m3u":{"Genre":["Eclectic","Various","Current Affairs"],"Name":"Radio New Zealand - National","Image":"http___radionz-ice_streamguys_com_80_national_mp3.webp","Homepage":"","Country":"New Zealand","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"http://radionz-ice.streamguys.com:80/national.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"http___radio_plaza_one_mp3.m3u":{"Genre":["Vaporwave","Future Funk","Chill Out"],"Name":"Nightwave Plaza","Image":"http___radio_plaza_one_mp3.webp","Homepage":"https://plaza.one/","Country":"Japan","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity.","Codec":"MP3","Bitrate":128,"StreamUri":"http://radio.plaza.one/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___radio_stereoscenic_com_ama-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"A.M. Ambient","Image":"http___radio_stereoscenic_com_ama-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/ama-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___radio_stereoscenic_com_asp-h.m3u":{"Genre":["Electronic","Ambient"],"Name":"Ambient Sleeping Pill","Image":"http___radio_stereoscenic_com_asp-h.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://radio.stereoscenic.com/asp-h","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___retro_dancewave_online_retrodance_mp3.m3u":{"Genre":["90's","Dance"],"Name":"Dance Wave Retro!","Image":"http___retro_dancewave_online_retrodance_mp3.webp","Homepage":"https://dancewave.online","Country":"Hungary","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All about Dance before 2000!","Codec":"MP3","Bitrate":128,"StreamUri":"http://retro.dancewave.online/retrodance.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___rootslegacy_fr_8080__listen_mp3.m3u":{"Genre":["Dub","Roots Reggae"],"Name":"Roots Legacy Radio - Dub UK & Roots Reggae","Image":"http___rootslegacy_fr_8080__listen_mp3.webp","Homepage":"https://www.rootslegacy.fr/","Country":"France","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":224,"StreamUri":"http://rootslegacy.fr:8080/;listen.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[224],"highestBitrate":224},"http___rtvhd_net_9942__.m3u":{"Genre":["Rock","Baladas"],"Name":"IQ Radio - 93.9 FM","Image":"http___rtvhd_net_9942__.webp","Homepage":"http://www.iqmedios.com/","Country":"Costa Rica","State":"","Region":"","Languages":["English"],"Language":"English","Description":"IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más.","Codec":"AAC","Bitrate":64,"StreamUri":"http://rtvhd.net:9942/;","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u":{"Genre":["Classical","Classical Music"],"Name":"Rádio MEC FM","Image":"https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecfmrio","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio MEC FM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://122722d.ha.azioncdn.net/ebc/radiomecfm/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u":{"Genre":["MPB"],"Name":"Rádio MEC AM","Image":"https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/mecamrio","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio MEC AM - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://132722d.ha.azioncdn.net/ebc/radiomec/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u":{"Genre":["Soccer","News"],"Name":"Rádio Transamérica 100.1 FM (São Paulo)","Image":"https___18003_live_streamtheworld_com_RT_SPAAC_aac.webp","Homepage":"https://radiotransamerica.com.br","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio onde você estiver!","Codec":"AAC","Bitrate":32,"StreamUri":"https://18003.live.streamtheworld.com/RT_SPAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"http___s1_slotex_pl_7430_stream.m3u":{"Genre":["Indie","Pop","Rock"],"Name":"Mittendrin ALT!NEU Radio der deutschen Minderheit","Image":"http___s1_slotex_pl_7430_stream.webp","Homepage":"https://mittendrin.pl/de/radio-altneu.html","Country":"Poland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://s1.slotex.pl:7430/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u":{"Genre":["Community"],"Name":"2nurfm","Image":"https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.webp","Homepage":"https://2nurfm.com.au","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Good times and great music","Codec":"MP3","Bitrate":96,"StreamUri":"https://21413.live.streamtheworld.com:443/2NURFMAAC_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___22653_live_streamtheworld_com_TOPZEN_mp3.m3u":{"Genre":["Lounge"],"Name":"Zen FM","Image":"https___22653_live_streamtheworld_com_TOPZEN_mp3.webp","Homepage":"","Country":"Belgium","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://22653.live.streamtheworld.com/TOPZEN.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u":{"Genre":["Gospel","Various"],"Name":"Rádio Melodia 97.5 FM","Image":"https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.webp","Homepage":"https://melodia.com.br/player/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A voz que fala ao coração!","Codec":"AAC","Bitrate":32,"StreamUri":"https://24483.live.streamtheworld.com/MELODIAFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u":{"Genre":["Classic Hits","Indie"],"Name":"KINK 80's","Image":"https___25293_live_streamtheworld_com_443_KINK_DNA_SC.webp","Homepage":"https://kink.nl","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"Alive and Kicking","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_DNA_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25293_live_streamtheworld_com_443_KINK_SC.m3u":{"Genre":["Modern Rock"],"Name":"KINK","Image":"https___25293_live_streamtheworld_com_443_KINK_SC.webp","Homepage":"https://www.kink.nl","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"No alternative","Codec":"MP3","Bitrate":192,"StreamUri":"https://25293.live.streamtheworld.com:443/KINK_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u":{"Genre":["Hard Rock"],"Name":"KINK Distortion","Image":"https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.webp","Homepage":"https://www.kink.nl/distortion","Country":"The Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"non-stop de beste metal, hardrock en metalcore","Codec":"MP3","Bitrate":192,"StreamUri":"https://25323.live.streamtheworld.com:443/KINK_DISTORTION_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u":{"Genre":["Pop","Flim"],"Name":"Radio Daijiworld","Image":"https___26453_live_streamtheworld_com_SAM08AAC013_SC.webp","Homepage":"http://www.radiodaijiworld.com/","Country":"India","State":"Mangalore","Region":"Mangalore","Languages":["Konkani"],"Language":"Konkani","Description":"Online RADIO station for konkani & Tulu music","Codec":"AAC","Bitrate":64,"StreamUri":"https://26453.live.streamtheworld.com/SAM08AAC013_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u":{"Genre":["Community Radio","Independent"],"Name":"PBS 106.7FM (Progressive Broadcasting Service)","Image":"https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.webp","Homepage":"https://www.pbsfm.org.au","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"PBS 106.7FM (Progressive Broadcasting Service)","Codec":"AAC","Bitrate":128,"StreamUri":"https://27253.live.streamtheworld.com/3PBS_FMAAC128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u":{"Genre":["Journalism","Soccer","Football","News"],"Name":"Rádio CBN Rio 92.5 FM","Image":"https___27403_live_streamtheworld_com_CBN_RJAAC_aac.webp","Homepage":"https://cbn.globoradio.globo.com","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que toca notícia!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27403.live.streamtheworld.com/CBN_RJAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u":{"Genre":["Pop-Rock","Sertanejo","Youth"],"Name":"Rádio Disney 91.3 FM","Image":"https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.webp","Homepage":"https://radiodisney.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A rádio que te ouve","Codec":"AAC","Bitrate":320,"StreamUri":"https://27403.live.streamtheworld.com/DISNEY_BRA_SP_ADP/HLS/playlist.m3u8?dist=web-radiodisney","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u":{"Genre":["MPB","Pop","Flashback"],"Name":"Rádio JB 99.9 FM","Image":"https___27433_live_streamtheworld_com_JBFMAAC_aac.webp","Homepage":"https://jb.fm","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e Informação!","Codec":"AAC","Bitrate":32,"StreamUri":"https://27433.live.streamtheworld.com/JBFMAAC.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u":{"Genre":["Community","Catholic"],"Name":"Rádio Serra Verde 98.7 FM","Image":"https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.webp","Homepage":"https://www.serraverde.fm.br/","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Aqui é o seu lugar!","Codec":"MP3","Bitrate":128,"StreamUri":"https://5a2b083e9f360.streamlock.net/serraverdefm/serraverdefm.stream/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___8016_brasilstream_com_br_stream.m3u":{"Genre":["Soccer","Various"],"Name":"Rádio Difusora 96.9 FM","Image":"https___8016_brasilstream_com_br_stream.webp","Homepage":"https://difusora24h.com","Country":"Brazil","State":"Amazonas","Region":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"O amor do Amazonas esta no ar!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://8016.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u":{"Genre":["News","MPB","Sport"],"Name":"Rádio Nacional do Rio de Janeiro","Image":"https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalrioam","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional 87.1 FM 1130 AM","Codec":"HLS","Bitrate":99,"StreamUri":"https://82722d.ha.azioncdn.net/ebc/radionacionalriodejaneiro/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[99],"highestBitrate":99},"https___8923_brasilstream_com_br_stream.m3u":{"Genre":["Local News","News","Talk","Variety"],"Name":"Super Rádio Tupi 96.5 (Tupi FM)","Image":"https___8923_brasilstream_com_br_stream.webp","Homepage":"https://tupi.fm/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder","Codec":"AAC+","Bitrate":32,"StreamUri":"https://8923.brasilstream.com.br/stream","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___99_mediacast_co_il_99fm_aac__m4a.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"eco99fm אקו99","Image":"https___99_mediacast_co_il_99fm_aac__m4a.webp","Homepage":"https://eco99fm.maariv.co.il","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HE-AAC","Bitrate":64,"StreamUri":"https://99.mediacast.co.il/99fm_aac?.m4a","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[64],"highestBitrate":64},"https___a2_asurahosting_com_8800_radio_mp3.m3u":{"Genre":["Political Talk","Patriotic"],"Name":"Multicanal Radio","Image":"https___a2_asurahosting_com_8800_radio_mp3.webp","Homepage":"https://multicanalradio.com","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://a2.asurahosting.com:8800/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u":{"Genre":["Pop","Releases","Oldies","Rock","Pop"],"Name":"Absolut music XL","Image":"https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://absolut-musicxl.live-sm.absolutradio.de/absolut-musicxl/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u":{"Genre":["Electronic"],"Name":"Deep Space Radio","Image":"https___ais-edge102-live365-dal02_cdnstream_com_a71161.webp","Homepage":"https://deepspaceradio.com/","Country":"USA","State":"Michigan","Region":"Michigan","Languages":["English"],"Language":"English","Description":"Artists and DJs who are working to promote Detroit’s Electronic Music and Art.","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-edge102-live365-dal02.cdnstream.com/a71161","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u":{"Genre":["Indie","Rock","Post-Punk","Garage Rock","Psych Rock","New Wave","Gothic"],"Name":"BAGeL Radio","Image":"https___ais-sa3_cdnstream1_com_2606_128_mp3.webp","Homepage":"https://www.bagelradio.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Radio as it should be: commercial-free listener-supported live-hosted","Codec":"MP3","Bitrate":128,"StreamUri":"https://ais-sa3.cdnstream1.com/2606_128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___akashvani_gov_in_radio_live_php_channel_5.m3u":{"Genre":["Indian Classical","Carnatic"],"Name":"Raagam","Image":"https___akashvani_gov_in_radio_live_php_channel_5.webp","Homepage":"https://prasarbharati.gov.in/channel-raagam/","Country":"India","State":"Karnataka","Region":"Karnataka","Languages":["Multilingual","Kannada"],"Language":"Multilingual, Kannada","Description":"Raagam Radio is an online station from Bangalore (India), open since 26 January 2016.","Codec":"MP3","Bitrate":50,"StreamUri":"https://akashvani.gov.in/radio/live.php?channel=5","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[50],"highestBitrate":50},"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Mejor FM - 99.1 FM","Image":"https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.lamejor.co.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-lamejor-lamejor.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u":{"Genre":["Noticiero"],"Name":"Monumental - 93.5 FM","Image":"https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.webp","Homepage":"https://www.monumental.co.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista.","Codec":"HLS","Bitrate":0,"StreamUri":"https://alba-cr-monumental-monumental.stream.mediatiquestream.com/chunks.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u":{"Genre":["Schlager Music"],"Name":"Antenne Schlager","Image":"https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.webp","Homepage":"https://www.antenne-schlager.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"German Schlager music station from Hannover, Lower Saxony, Germany","Codec":"MP3","Bitrate":192,"StreamUri":"https://antnds.streamabc.net/ands-antenneschlager-mp3-192-8742257","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u":{"Genre":["Commercial","Pop","Rock","Top Hits"],"Name":"RDL Radio Diffusione Libera","Image":"https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.webp","Homepage":"https://www.radiodiffusionelibera.com","Country":"Italy","State":"Salerno","Region":"Salerno","Languages":["Italian"],"Language":"Italian","Description":"RDL Radio Diffusione Libera powered by RPIGroup","Codec":"MP3","Bitrate":192,"StreamUri":"https://asvradiostream.asvstudios.it/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___audio-mp3_ibiblio_org_wxyc_mp3.m3u":{"Genre":["College Radio","Various"],"Name":"WXYC Chapel Hill 89.3FM","Image":"https___audio-mp3_ibiblio_org_wxyc_mp3.webp","Homepage":"https://wxyc.org/","Country":"United States","State":"North Carolina","Region":"North Carolina","Languages":["English"],"Language":"English","Description":"UNC-Chapel Hill's student-run, freeform radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://audio-mp3.ibiblio.org/wxyc.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___audio_tv_unesp_br_unespfm.m3u":{"Genre":["MPB"],"Name":"Rádio Universitária UNESP 105.7 FM","Image":"https___audio_tv_unesp_br_unespfm.webp","Homepage":"https://www.radio.unesp.br","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UNESP 105.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://audio.tv.unesp.br/unespfm","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Bel RTL","Image":"https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.webp","Homepage":"https://www.rtl.be/belrtl/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Bel RTL est une station de radio généraliste privée du groupe RTL.","Codec":"MP3","Bitrate":192,"StreamUri":"https://belrtl.ice.infomaniak.ch/belrtl-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___bytefm_cast_addradio_de_bytefm_main_high_stream.m3u":{"Genre":["Eclectic"],"Name":"ByteFM","Image":"https___bytefm_cast_addradio_de_bytefm_main_high_stream.webp","Homepage":"https://www.byte.fm/","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://bytefm.cast.addradio.de/bytefm/main/high/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___sc3_radiocaroline_net_8030.m3u":{"Genre":["Rock","Classic Rock"],"Name":"Radio Caroline","Image":"http___sc3_radiocaroline_net_8030.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://sc3.radiocaroline.net:8030","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___c7_radioboss_fm_18205_stream.m3u":{"Genre":["Mashup"],"Name":"Bootie Mashup","Image":"https___c7_radioboss_fm_18205_stream.webp","Homepage":"https://bootiemashup.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The best bootleg mashups in the world ever.","Codec":"MP3","Bitrate":320,"StreamUri":"https://c7.radioboss.fm:18205/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___carajas2_jmvstream_com_live.m3u":{"Genre":["News","Sport","Football","Soccer"],"Name":"Rádio Clube do Pará 104.7 FM 690 AM","Image":"https___carajas2_jmvstream_com_live.webp","Homepage":"https://radioclube.dol.com.br/","Country":"Brazil","State":"Pará","Region":"Pará","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Equipe Bola de Ouro","Codec":"AAC","Bitrate":128,"StreamUri":"https://carajas2.jmvstream.com/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cast4_asurahosting_com_proxy_miles_stream.m3u":{"Genre":["Talk","Paranormal","Spiritual","70's","80's","90's"],"Name":"NYE Underground","Image":"https___cast4_asurahosting_com_proxy_miles_stream.webp","Homepage":"https://www.nyeug.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Streaming Art Bell classics and his favorite bumper music - ad free.","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.asurahosting.com/proxy/miles/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cast4_audiostream_com_br_2655_mp3.m3u":{"Genre":["Various","News"],"Name":"Rádio Liberdade","Image":"https___cast4_audiostream_com_br_2655_mp3.webp","Homepage":"https://www.redepampa.com.br/radios/radio-liberdade/","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"No campo e na cidade, Rádio Liberdade!","Codec":"MP3","Bitrate":32,"StreamUri":"https://cast4.audiostream.com.br:2655/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u":{"Genre":["News"],"Name":"Radio 98.4","Image":"https___cast4_my-control-panel_com_proxy_anastas2_stream.webp","Homepage":"https://www.radio984.gr/","Country":"Greece","State":"","Region":"","Languages":["Greek"],"Language":"Greek","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://cast4.my-control-panel.com/proxy/anastas2/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___cdn4_onstream_audio_9267_stream.m3u":{"Genre":["News"],"Name":"Radio Prensa Latina","Image":"https___cdn4_onstream_audio_9267_stream.webp","Homepage":"https://radio.prensa-latina.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://cdn4.onstream.audio:9267/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u":{"Genre":["News"],"Name":"Kan Bet כאן ב","Image":"https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=3","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":256,"StreamUri":"https://cdnapisec.kaltura.com/p/2717431/sp/271743100/playManifest/entryId/1_eu4h60uh/format/applehttp/protocol/https/uiConfId/46986963/a.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[256],"highestBitrate":256},"https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u":{"Genre":["News","Talk","Pop"],"Name":"103FM","Image":"https___cdn_cybercdn_live_103FM_Live_icecast_audio.webp","Homepage":"https://103fm.maariv.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://cdn.cybercdn.live/103FM/Live/icecast.audio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u":{"Genre":["Rock","Hard Rock","Heavy Metal"],"Name":"UnDinamo","Image":"https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.webp","Homepage":"https://undinamo.com/","Country":"Argentina","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"AAC","Bitrate":48,"StreamUri":"https://cdn.instream.audio/:9339/stream?in_device_id=WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[48],"highestBitrate":48},"https___centova_svdns_com_br_20110_stream.m3u":{"Genre":["Pop"],"Name":"morena fm easy","Image":"https___centova_svdns_com_br_20110_stream.webp","Homepage":"https://www.morenafm.com.br","Country":"Brazil","State":"Mato Grosso","Region":"Mato Grosso","Languages":["Portugues"],"Language":"Portugues","Description":"boa mussica , boa programaçion","Codec":"AAC","Bitrate":128,"StreamUri":"https://centova.svdns.com.br:20110/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8010_live.m3u":{"Genre":["Tropical/Urbana"],"Name":"Ritmo Hits","Image":"https___chokostream_com_8010_live.webp","Homepage":"https://ritmohits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Donde El Ritmo No Tiene Fin!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8010/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8050_live.m3u":{"Genre":["Urbana"],"Name":"La Vaina Hits","Image":"https___chokostream_com_8050_live.webp","Homepage":"https://lavainahits.net/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Detonando Hits!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8050/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___chokostream_com_8070_live.m3u":{"Genre":["Musica Cristiana"],"Name":"ExaltacionFM","Image":"https___chokostream_com_8070_live.webp","Homepage":"https://exaltacionfm.com/","Country":"Republica Dominicana","State":"San Pedro De Macoris","Region":"San Pedro De Macoris","Languages":["Español"],"Language":"Español","Description":"Ondas De Avivamiento!","Codec":"AAC","Bitrate":128,"StreamUri":"https://chokostream.com:8070/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___cloud_cdnseguro_com_2611_stream.m3u":{"Genre":["Ethnic","Indigenous"],"Name":"Rádio Yandê","Image":"https___cloud_cdnseguro_com_2611_stream.webp","Homepage":"https://radioyande.com","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Indigenous Languages","Brazilian Portuguese"],"Language":"Indigenous Languages, Brazilian Portuguese","Description":"Radio Yandê - Etnomidia Indígena","Codec":"MP3","Bitrate":128,"StreamUri":"https://cloud.cdnseguro.com:2611/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact 2000","Image":"https___contact2_ice_infomaniak_ch_contact2-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contact2.ice.infomaniak.ch/contact2-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u":{"Genre":["Children","Kids"],"Name":"Radio Contact Kids","Image":"https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactkids.ice.infomaniak.ch/contactkids-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Mix","Image":"https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactmix.ice.infomaniak.ch/contactmix-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Fresh","Image":"https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contactplus.ice.infomaniak.ch/contactplus-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact Urban","Image":"https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://contacturban.ice.infomaniak.ch/contacturban-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u":{"Genre":["Pop"],"Name":"Omroep Zeeland","Image":"https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.webp","Homepage":"https://www.omroepzeeland.nl/radio-zeeland","Country":"Netherlands","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://d3isaxd2t6q8zm.cloudfront.net/icecast/omroepzeeland/omroepzeeland_radio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u":{"Genre":["80's","70's","60's","90's","Oldies","Classic Hits"],"Name":"KVKVI - Classic Hits","Image":"https___dc1_serverse_com_proxy_gjlrjfhp_stream.webp","Homepage":"https://www.kvkvi.com","Country":"United States","State":"Ohio","Region":"Ohio","Languages":["English"],"Language":"English","Description":"The Greatest Hits and The Songs You Missed","Codec":"MP3","Bitrate":160,"StreamUri":"https://dc1.serverse.com/proxy/gjlrjfhp/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u":{"Genre":["Adult Contemporary","News","Sport"],"Name":"Bayern 1","Image":"https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern1/index.html","Country":"Germany","State":"Bayern","Region":"Bayern","Languages":["German"],"Language":"German","Description":"The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting.","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u":{"Genre":["Eclectic"],"Name":"Bayern 2","Image":"https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.webp","Homepage":"https://www.br.de/radio/bayern2/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/br2/live/mp3/mid","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u":{"Genre":["Classical"],"Name":"BR-Klassik","Image":"https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.webp","Homepage":"https://www.br-klassik.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u":{"Genre":["Jazz"],"Name":"DR P8 Jazz","Image":"https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.webp","Homepage":"https://www.dr.dk/lyd/p8jazz","Country":"Denmark","State":"","Region":"","Languages":["Danish"],"Language":"Danish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://DRliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8","alternativeStreams":{"http___live-icy_gss_dr_dk_8000_A_A22H_mp3":{"StreamUri":"http://live-icy.gss.dr.dk:8000/A/A22H.mp3","Codec":"MP3","Bitrate":128}},"allCodecs":["AAC","MP3"],"allBitrates":[320,128],"highestBitrate":320},"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u":{"Genre":["Pop","80's","90's"],"Name":"Absolut Relax","Image":"https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://edge56.live-sm.absolutradio.de/absolut-relax/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u":{"Genre":["Pop","Charts","Electronic","Hip-Hop"],"Name":"Absolut Hot","Image":"https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.webp","Homepage":"https://absolutradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://edge68.live-sm.absolutradio.de/absolut-hot/stream/aacp?aggregator=smk-m3u-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___emisoras_dip-badajoz_es_58062_stream.m3u":{"Genre":["Pop","Rock","Latin"],"Name":"Radio Ciudad del Granito","Image":"https___emisoras_dip-badajoz_es_58062_stream.webp","Homepage":"https://quintanadelaserena.org/","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Quintana de la Serena (Badajoz, Spain) local radio","Codec":"OPUS","Bitrate":0,"StreamUri":"https://emisoras.dip-badajoz.es:58062/stream","alternativeStreams":{},"allCodecs":["OPUS"],"allBitrates":[0],"highestBitrate":0},"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u":{"Genre":["Indie","Rock","Pop","New Age","Disco","Electronic","Contemporary"],"Name":"EOL Essence of Life רדיו מהות החיים","Image":"https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.webp","Homepage":"https://radio.eol.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"AAC","Bitrate":32,"StreamUri":"https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___everest_radionanet_com_8990_stream_1698969239317.m3u":{"Genre":["MPB","University Radio","News"],"Name":"Universitária FM 104.7 (UFES)","Image":"https___everest_radionanet_com_8990_stream_1698969239317.webp","Homepage":"https://universitariafm.ufes.br/","Country":"Brazil","State":"Espirito Santo","Region":"Espirito Santo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da UFES (Universitária FM 104.7)","Codec":"MPEG","Bitrate":32,"StreamUri":"https://everest.radionanet.com:8990/stream?1698969239317","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u":{"Genre":["MPB","News","University Radio"],"Name":"Rádio USP - São Paulo","Image":"https___flow_emm_usp_br_8008_radiousp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da USP (Universidade de São Paulo)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u":{"Genre":["Adult Contemporary","University Radio"],"Name":"Rádio USP - Ribeirão Preto","Image":"https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.webp","Homepage":"https://jornal.usp.br/radiousp-sp-aovivo.html","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária da USP (USP Ribeirão Preto)","Codec":"MP3","Bitrate":128,"StreamUri":"https://flow.emm.usp.br:8008/radiousp-rp-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000er","Image":"https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/2000er/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u":{"Genre":["90's"],"Name":"FluxFM - 90s","Image":"https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.webp","Homepage":"https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben.","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/90s/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.m3u":{"Genre":["News","Various"],"Name":"FluxFM","Image":"https___fluxmusic_api_radiosphere_io_channels_FluxFM_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/FluxFM/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.m3u":{"Genre":["Electronic","Soundscape","Atmospheric"],"Name":"FluxFM - Hippie Trippy Garden Pretty","Image":"https___fluxmusic_api_radiosphere_io_channels_htgp_stream_mp3_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/htgp/stream.mp3?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.m3u":{"Genre":["Various"],"Name":"FluxFM - Mini Flux","Image":"https___fluxmusic_api_radiosphere_io_channels_mini-flux_stream_aac_quality_4.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"https://fluxmusic.api.radiosphere.io/channels/mini-flux/stream.aac?quality=4","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u":{"Genre":["Dance","Groove","R'n'B","Soul"],"Name":"Fun Radio Belgique","Image":"https___funradiobe_ice_infomaniak_ch_funradiobe-high.webp","Homepage":"https://www.funradio.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française.","Codec":"MP3","Bitrate":128,"StreamUri":"https://funradiobe.ice.infomaniak.ch/funradiobe-high","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___gartenheimradio_sp_radio_fm_stream.m3u":{"Genre":["Various"],"Name":"Gartenheim-Radio","Image":"https___gartenheimradio_sp_radio_fm_stream.webp","Homepage":"https://gartenheim-radio.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"70er, 80er, 90er Schlager-Pop und die Hits von Heute","Codec":"MP3","Bitrate":192,"StreamUri":"https://gartenheimradio.sp.radio.fm/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u":{"Genre":["Pop","Top Hits","Past Time Favorites"],"Name":"Galgalatz גלגלצ","Image":"https___glzwizzlv_bynetcdn_com_glglz_mp3.webp","Homepage":"https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glglz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___glzwizzlv_bynetcdn_com_glz_mp3.m3u":{"Genre":["News","Talk","Current Affairs"],"Name":"Galei Zahal GLZ גלי צהל גלצ","Image":"https___glzwizzlv_bynetcdn_com_glz_mp3.webp","Homepage":"https://glz.co.il/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"IDF Radio station","Codec":"MP3","Bitrate":128,"StreamUri":"https://glzwizzlv.bynetcdn.com/glz_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___grenal_audiostream_com_br_20000_aac.m3u":{"Genre":["Sport"],"Name":"Rádio Grenal","Image":"https___grenal_audiostream_com_br_20000_aac.webp","Homepage":"https://www.radiogrenal.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Grenal","Codec":"AAC+","Bitrate":32,"StreamUri":"https://grenal.audiostream.com.br:20000/aac","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[32],"highestBitrate":32},"https___happyrave-rex_radioca_st_stream.m3u":{"Genre":["Rave","Breakbeat","Hardcore","Jungle","Oldschool"],"Name":"Happy Rave Radio","Image":"https___happyrave-rex_radioca_st_stream.webp","Homepage":"happyraveradio.com","Country":"Netherlands","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Classic happy hardcore, rave, and breakbeat hardcore.","Codec":"MP3","Bitrate":320,"StreamUri":"https://happyrave-rex.radioca.st/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___shoutcastunlimited_com_8512.m3u":{"Genre":["Progressive Rock","Metal"],"Name":"PRM - Prog Rock & Metal","Image":"http___shoutcastunlimited_com_8512.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://shoutcastunlimited.com:8512","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___hts03_kshost_com_br_13392_live.m3u":{"Genre":["News","Various"],"Name":"Rádio Força Aérea 91.1 FM","Image":"https___hts03_kshost_com_br_13392_live.webp","Homepage":"https://www.fab.mil.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Força Aérea 91.1 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://hts03.kshost.com.br:13392/live","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___http-live_sr_se_p2musik-aac-320.m3u":{"Genre":["Classical","Jazz"],"Name":"SR P2","Image":"https___http-live_sr_se_p2musik-aac-320.webp","Homepage":"https://sverigesradio.se/p2","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://http-live.sr.se/p2musik-aac-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___ice1_somafm_com_vaporwaves-128-aac.m3u":{"Genre":["Electronic","Electro-Acoustic","IDM","Shoegaze","Post-Rock"],"Name":"Soma FM - Vaporwaves","Image":"https___ice1_somafm_com_vaporwaves-128-aac.webp","Homepage":"https://somafm.com/vaporwaves/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All Vaporwave. All the time.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice1.somafm.com/vaporwaves-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_bossa-128-aac.m3u":{"Genre":["Bossanova","World Music"],"Name":"Soma FM - Bossa Beyond","Image":"https___ice5_somafm_com_bossa-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/bossa-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice5_somafm_com_insound-128-aac.m3u":{"Genre":["Pop","Oldies"],"Name":"Soma FM - The In-Sound","Image":"https___ice5_somafm_com_insound-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice5.somafm.com/insound-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice64_securenetsystems_net_WBJC.m3u":{"Genre":["Classical"],"Name":"WBJC Baltimore 91.5 - Classical","Image":"https___ice64_securenetsystems_net_WBJC.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ice64.securenetsystems.net/WBJC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_darkzone-128-aac.m3u":{"Genre":["Electronic","Ambient","Deep Ambient"],"Name":"Soma FM - The Dark Zone","Image":"https___ice6_somafm_com_darkzone-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/darkzone-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_n5md-128-aac.m3u":{"Genre":["Ambient","Post-Rock","Experimental","Electronic"],"Name":"Soma FM - n5MD Radio","Image":"https___ice6_somafm_com_n5md-128-aac.webp","Homepage":"https://somafm.com/n5md/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic.","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/n5md-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_synphaera-128-aac.m3u":{"Genre":["Electronic","Synth-Pop"],"Name":"Soma FM - Synphaera","Image":"https___ice6_somafm_com_synphaera-128-aac.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/synphaera-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ice6_somafm_com_tikitime-128-aac.m3u":{"Genre":["Tiki","World Music"],"Name":"Soma FM - Tiki Time","Image":"https___ice6_somafm_com_tikitime-128-aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice6.somafm.com/tikitime-128-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___icecasthd_net_proxy_abejorral_live.m3u":{"Genre":["Public Radio"],"Name":"Abejorral Stereo","Image":"https___icecasthd_net_proxy_abejorral_live.webp","Homepage":"https://www.asenred.com/abejorral/","Country":"Colombia","State":"Antioquia","Region":"Antioquia","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecasthd.net/proxy/abejorral/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___icecast_live_proxy_zerock_zerock.m3u":{"Genre":["Rock","Metal","Post Punk","Punk","Indie"],"Name":"Ze Rock Radio","Image":"https___icecast_live_proxy_zerock_zerock.webp","Homepage":"https://zerockradio.com/","Country":"Israel","State":"","Region":"","Languages":["Hebrew","English"],"Language":"Hebrew, English","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://icecast.live/proxy/zerock/zerock","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___icecast_lyl_live_live.m3u":{"Genre":["Ambient","Contemporary","Electronic","Electronic","Experimental","Independent"],"Name":"LYL Radio","Image":"https___icecast_lyl_live_live.webp","Homepage":"http://lyl.live/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://icecast.lyl.live/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u":{"Genre":["Various","Variety"],"Name":"France Inter","Image":"https___icecast_radiofrance_fr_franceinter-midfi_mp3.webp","Homepage":"https://www.franceinter.fr/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"France Inter est une station de radio généraliste nationale publique française du groupe Radio France.","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.radiofrance.fr/franceinter-midfi.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_teveo_cu_3MCwWg3V.m3u":{"Genre":["Latin Hits","Reggae"],"Name":"Radio Taíno 93.3 FM","Image":"https___icecast_teveo_cu_3MCwWg3V.webp","Homepage":"www.radiotaino.icrt.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Taíno, la FM de Cuba","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/3MCwWg3V","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_b3jbfThq.m3u":{"Genre":["News"],"Name":"Radio Reloj","Image":"https___icecast_teveo_cu_b3jbfThq.webp","Homepage":"https://www.radioreloj.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Canal de Informacíon Continua","Codec":"MP3","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/b3jbfThq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_kHKL7tWd.m3u":{"Genre":["Sport","News"],"Name":"Radio Rebelde AM","Image":"https___icecast_teveo_cu_kHKL7tWd.webp","Homepage":"https://www.radiorebelde.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"La emisora de la Revolución","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/kHKL7tWd","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_McW3fLhs.m3u":{"Genre":["News","Various"],"Name":"Radio Habana Cuba","Image":"https___icecast_teveo_cu_McW3fLhs.webp","Homepage":"www.radiohc.cu","Country":"Cuba","State":"Havana/Habana","Region":"Havana/Habana","Languages":["Spanish"],"Language":"Spanish","Description":"Una voz de amistad que recorre el mundo","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/McW3fLhs","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_NqWrgw7j.m3u":{"Genre":["Variety"],"Name":"Radio Sancti Spíritus 1210 AM 106.3 FM","Image":"https___icecast_teveo_cu_NqWrgw7j.webp","Homepage":"https://www.radiosanctispiritus.cu/es/","Country":"Cuba","State":"Sancti Spíritus","Region":"Sancti Spíritus","Languages":["Spanish"],"Language":"Spanish","Description":"Contemporánea en su tradición","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/NqWrgw7j","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_teveo_cu_X9XNRkW4.m3u":{"Genre":["Various","News"],"Name":"Radio Minas 104.9 FM","Image":"https___icecast_teveo_cu_X9XNRkW4.webp","Homepage":"https://www.radiominas.icrt.cu","Country":"Cuba","State":"Minas De Matahambre","Region":"Minas De Matahambre","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Minas 104.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://icecast.teveo.cu/X9XNRkW4","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 1 Classics","Image":"https___icecast_vrtcdn_be_radio1_classics-high_mp3.webp","Homepage":"https://radio1.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio1_classics-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u":{"Genre":["Various"],"Name":"VRT - Radio 2 Bene Bene","Image":"https___icecast_vrtcdn_be_radio2_benebene-high_mp3.webp","Homepage":"https://radio2.be/programmagids/radio-2-bene-bene","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://icecast.vrtcdn.be/radio2_benebene-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___icecast_walmradio_com_8443_jazz.m3u":{"Genre":["Avantgarde","Bebop","Big Band","Bop","Combos","Contemporary","Contemporary Jazz","Cool Jazz","Free Jazz","Fusion","Hard Bop","Mainstream","Mainstream Jazz","Modern Big Band","Post-bop","Straight-ahead","Walm"],"Name":"Adroit Jazz Underground","Image":"https___icecast_walmradio_com_8443_jazz.webp","Homepage":"https://walmradio.com/jazz","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Real Jazz in HD","Codec":"MP3","Bitrate":320,"StreamUri":"https://icecast.walmradio.com:8443/jazz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ice_coldstar_online_high_ogg.m3u":{"Genre":["Trance","Progressive","Psy","House","Deep House","Deep Tech"],"Name":"Coldstar Radio","Image":"https___ice_coldstar_online_high_ogg.webp","Homepage":"https://coldstar.online/","Country":"Kyrgyzstan","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"OGG","Bitrate":256,"StreamUri":"https://ice.coldstar.online/high.ogg","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[256],"highestBitrate":256},"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.m3u":{"Genre":["Classical"],"Name":"RCO Live","Image":"https___ice_cr1_streamzilla_xlcdn_com_8000_sz_RCOLiveWebradio_mp3-192.webp","Homepage":"","Country":"Netherlands","State":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ice_fabricahost_com_br_radiomarinha.m3u":{"Genre":["News","Various"],"Name":"Rádio Marinha","Image":"https___ice_fabricahost_com_br_radiomarinha.webp","Homepage":"https://www.marinha.mil.br/radio-marinha","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Marinha FM: Navegando nas Ondas do Rádio","Codec":"AAC","Bitrate":128,"StreamUri":"https://ice.fabricahost.com.br/radiomarinha","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ic_streann_com_disneycostarica.m3u":{"Genre":["Pop"],"Name":"Radio Disney - 101.1 FM","Image":"https___ic_streann_com_disneycostarica.webp","Homepage":"https://cr.radiodisney.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica.","Codec":"MP3","Bitrate":192,"StreamUri":"https://ic.streann.com/disneycostarica","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___iheart_4zzz_org_au_4zzz.m3u":{"Genre":["Indie"],"Name":"4ZZZ FM 102.1 - Alternative","Image":"https___iheart_4zzz_org_au_4zzz.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://iheart.4zzz.org.au/4zzz","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u":{"Genre":["Adult Contemporary","Past Time Favs","Soft Rock","Mild Pop","Easy Listening"],"Name":"Kan 88 כאן","Image":"https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=4","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kan88.media.kan.org.il/hls/live/2024812/2024812/playlist.m3u8","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u":{"Genre":["Indie"],"Name":"Kanal K","Image":"https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.webp","Homepage":"https://www.kanalk.ch/","Country":"Switzerland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream.","Codec":"MP3","Bitrate":160,"StreamUri":"https://kanalk.streamabc.net/91-kanalk-mp3-192-5146873","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u":{"Genre":["Hebrew Pop","Top Hits","Past Time Favorites"],"Name":"Kan Gimel רשת גימל","Image":"https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.webp","Homepage":"https://www.kan.org.il/content/kan/kan-gimel/","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"HLS","Bitrate":384,"StreamUri":"https://kangimmel.media.kan.org.il/hls/live/2024813/2024813/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[384],"highestBitrate":384},"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"Kol Hamusica קול המוסיקה","Image":"https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.webp","Homepage":"https://www.kan.org.il/live/radio.aspx?stationid=7","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kanliveicy.media.kan.org.il/icy/kankolhamusica_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___sk_cri_cn_915_m3u8.m3u":{"Genre":["World Music"],"Name":"CRI Radio EZFM 91.5 FM","Image":"http___sk_cri_cn_915_m3u8.webp","Homepage":"http://ezfm.cri.cn/live","Country":"China","State":"","Region":"","Languages":["English"],"Language":"English","Description":"CRI Radio EZFM 91.5 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"http://sk.cri.cn/915.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Bent 24","Image":"https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.webp","Homepage":"https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com//kcrw_192k_mp3_bent24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u":{"Genre":["Eclectic"],"Name":"KCRW Eclectic 24","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.webp","Homepage":"https://www.kcrw.com/music/shows/eclectic24/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day.","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_e24","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u":{"Genre":["Eclectic","News"],"Name":"KCRW Live 89.9FM","Image":"https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.webp","Homepage":"https://www.kcrw.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://kcrw.streamguys1.com/kcrw_192k_mp3_on_air","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u":{"Genre":["DJ Mixes","Electronic","Independent"],"Name":"Kiosk Radio","Image":"https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.webp","Homepage":"https://kioskradio.com/","Country":"Belgium","State":"","Region":"","Languages":["English","French"],"Language":"English, French","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Reggae","Classical","Eclectic"],"Name":"DjamRadio","Image":"https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.webp","Homepage":"https://www.djamradio.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"The Eclectic French Radio","Codec":"MP3","Bitrate":128,"StreamUri":"https://ledjamradio.ice.infomaniak.ch/ledjamradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___legacy_scahw_com_au_2buddha_32.m3u":{"Genre":["Chill Out"],"Name":"Buddha Radio","Image":"https___legacy_scahw_com_au_2buddha_32.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":32,"StreamUri":"https://legacy.scahw.com.au/2buddha_32","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u":{"Genre":["IDM"],"Name":"Limbik Frequencies","Image":"https___limbikfreq_com_listen_limbik_frequencies_128_mp3.webp","Homepage":"https://limbikfreq.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"A tasty mix of downtempo electronica","Codec":"MP3","Bitrate":128,"StreamUri":"https://limbikfreq.com/listen/limbik_frequencies/128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___listen7_myradio24_com_69366.m3u":{"Genre":["Various"],"Name":"Pyongyang FM","Image":"https___listen7_myradio24_com_69366.webp","Homepage":"https://korea-dpr.com","Country":"Korea, Democratic People's Republic Of","State":"Pyongyang","Region":"Pyongyang","Languages":["Korean"],"Language":"Korean","Description":"Pyongyang FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://listen7.myradio24.com/69366","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u":{"Genre":["Jazz"],"Name":"Jazz24","Image":"https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.webp","Homepage":"https://www.jazz24.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"https://live.amperwave.net/direct/ppm-jazz24aac256-ibc1","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u":{"Genre":["Pop","Hip-Hop","Electronic"],"Name":"DASDING","Image":"https___liveradio_swr_de_sw282p3_dasding_play_mp3.webp","Homepage":"https://www.dasding.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Jugendradioprogramm des Südwestrundfunks","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/dasding/play.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 BW","Image":"https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"Baden-Württemberg","Region":"Baden-Württemberg","Languages":["German"],"Language":"German","Description":"SWR1 Baden-Württemberg","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"SWR1 RP","Image":"https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.webp","Homepage":"https://www.swr.de/swr1/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR1 Rheinland-Pfalz","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr1rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr1rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr1rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr1rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"SWR2","Image":"https___liveradio_swr_de_sw282p3_swr2_play_mp3.webp","Homepage":"https://www.swr.de/swr2/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Kultur neu entdecken","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr2/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr2_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr2/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr2_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr2/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR3","Image":"https___liveradio_swr_de_sw282p3_swr3_play_mp3.webp","Homepage":"https://www.swr3.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der beste Musikmix. Einfach SWR3","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr3/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr3_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr3/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr3_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr3/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 BW","Image":"https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4bw/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4bw/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4bw_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4bw/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u":{"Genre":["Schlager Music","Oldies","Evergreens"],"Name":"SWR4 RP","Image":"https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.webp","Homepage":"https://www.swr.de/swr4/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"SWR4. Da sind wir daheim.","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swr4rp/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swr4rp/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swr4rp_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swr4rp/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"SWR Aktuell","Image":"https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.webp","Homepage":"https://www.swr.de/swraktuell/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://liveradio.swr.de/sw282p3/swraktuell/play.mp3","alternativeStreams":{"https___liveradio_swr_de_sw890cl_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw890cl/swraktuell/","Codec":"AAC","Bitrate":48},"https___liveradio_swr_de_sw331ch_swraktuell_":{"StreamUri":"https://liveradio.swr.de/sw331ch/swraktuell/","Codec":"AAC","Bitrate":96}},"allCodecs":["AAC","MP3"],"allBitrates":[48,96,128],"highestBitrate":128},"https___live_streams_klassikradio_de_klassikradio-deutschland.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Live","Image":"https___live_streams_klassikradio_de_klassikradio-deutschland.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-deutschland","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_streams_klassikradio_de_klassikradio-movie.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Movie","Image":"https___live_streams_klassikradio_de_klassikradio-movie.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"HE-AAC","Bitrate":0,"StreamUri":"https://live.streams.klassikradio.de/klassikradio-movie","alternativeStreams":{},"allCodecs":["HE-AAC"],"allBitrates":[0],"highestBitrate":0},"https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u":{"Genre":["Romántico"],"Name":"Musical - 97.5 FM","Image":"https___live_turadio_stream_7005_stream_type_http_nocache_596.webp","Homepage":"https://radiomusical.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Radio Musical es uno de los principales medios de comunicación de Costa Rica.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7005/stream?type=http&nocache=596","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___live_turadio_stream_7006__.m3u":{"Genre":["Romántico"],"Name":"Sinfonola - 90.3 FM","Image":"https___live_turadio_stream_7006__.webp","Homepage":"https://radiosinfonola.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida.","Codec":"MP3","Bitrate":64,"StreamUri":"https://live.turadio.stream:7006/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___livex_radiopopolare_it_radiopop_FLID_3.m3u":{"Genre":["Information","News","Culture","Talk"],"Name":"Radio Popolare","Image":"https___livex_radiopopolare_it_radiopop_FLID_3.webp","Homepage":"https://livex.radiopopolare.it","Country":"Italy","State":"","Region":"","Languages":["Italian"],"Language":"Italian","Description":"The radio who gives a voice to those who have not.","Codec":"MP3","Bitrate":64,"StreamUri":"https://livex.radiopopolare.it/radiopop?FLID=3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u":{"Genre":["Rock","Eclectic"],"Name":"Mad Music Asylum","Image":"https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.webp","Homepage":"","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://madmusicasylum.radioca.st/stream?type=http&nocache=36907","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___maggie_torontocast_com_8076_aac.m3u":{"Genre":["Indie","Rock","Eclectic"],"Name":"JB Radio2 (320K)","Image":"https___maggie_torontocast_com_8076_aac.webp","Homepage":"https://jb-radio.net/","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"JB Radio is an alternative,non-commercial,web radio station.","Codec":"AAC","Bitrate":320,"StreamUri":"https://maggie.torontocast.com:8076/aac","alternativeStreams":{"https___maggie_torontocast_com_8076_flac":{"StreamUri":"https://maggie.torontocast.com:8076/flac","Codec":"FLAC","Bitrate":0}},"allCodecs":["AAC","FLAC"],"allBitrates":[0,320],"highestBitrate":320},"https___maximum_hostingradio_ru_maximum96_aacp.m3u":{"Genre":["Pop","Rock","Hard Rock"],"Name":"Radio Maximum","Image":"https___maximum_hostingradio_ru_maximum96_aacp.webp","Homepage":"https://maximum.ru/","Country":"Russia","State":"","Region":"","Languages":["Russian"],"Language":"Russian","Description":"Radio Maximum provides twenty four hour mix of several genres and styles of music.","Codec":"AAC","Bitrate":96,"StreamUri":"https://maximum.hostingradio.ru/maximum96.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"https___mediaserv73_live-streams_nl_18058_stream.m3u":{"Genre":["Classical","Mediaeval","Renaissance"],"Name":"Ancient FM - Mediaeval and Renaissance Music","Image":"https___mediaserv73_live-streams_nl_18058_stream.webp","Homepage":"","Country":"Canada","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://mediaserv73.live-streams.nl:18058/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u":{"Genre":["Rock"],"Name":"Radio Mega 98.3 Puro Rock Nacional","Image":"https___mega983_stweb_tv_mega983_live_playlist_m3u8.webp","Homepage":"https://radiomega.fm/","Country":"Argentina","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"","Codec":"HLS","Bitrate":66,"StreamUri":"https://mega983.stweb.tv/mega983/live/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[66],"highestBitrate":66},"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"Mint (RTL)","Image":"https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.webp","Homepage":"https://mint.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007.","Codec":"MP3","Bitrate":192,"StreamUri":"https://mint.ice.infomaniak.ch/mint-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u":{"Genre":["Jazz"],"Name":"Mother Earth Jazz","Image":"https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u":{"Genre":["Various"],"Name":"Mother Earth Radio","Image":"https___motherearth_streamserver24_com_listen_motherearth_motherearth.webp","Homepage":"https://motherearthradio.de/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"HiRes Radio","Codec":"OGG","Bitrate":0,"StreamUri":"https://motherearth.streamserver24.com/listen/motherearth/motherearth","alternativeStreams":{},"allCodecs":["OGG"],"allBitrates":[0],"highestBitrate":0},"https___myradio24_org_radiometal.m3u":{"Genre":["Metal"],"Name":"Radio Metal","Image":"https___myradio24_org_radiometal.webp","Homepage":"https://www.radio-metal.in.ua","Country":"Ukraine","State":"","Region":"","Languages":["English"],"Language":"English","Description":"First Metal Radio in Ukraine!","Codec":"MP3","Bitrate":128,"StreamUri":"https://myradio24.org/radiometal","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u":{"Genre":["Classical"],"Name":"malaysia","Image":"https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.webp","Homepage":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","Country":"Malaysia","State":"Kuala Lumpur","Region":"Kuala Lumpur","Languages":["Chinese"],"Language":"Chinese","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u":{"Genre":["Indie"],"Name":"Ultra","Image":"https___nashe1_hostingradio_ru_80_ultra-128_mp3.webp","Homepage":"https://radioultra.ru/","Country":"Russia","State":"","Region":"","Languages":["Russian"],"Language":"Russian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://nashe1.hostingradio.ru:80/ultra-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___netradio_ziniur_lt_ziniur_64_mp3.m3u":{"Genre":["Talk","News"],"Name":"Žinių Radijas","Image":"https___netradio_ziniur_lt_ziniur_64_mp3.webp","Homepage":"https://www.ziniuradijas.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://netradio.ziniur.lt/ziniur_64.mp3","alternativeStreams":{"https___netradio_ziniuradijas_lt_ziniur_64_mp3":{"StreamUri":"https://netradio.ziniuradijas.lt/ziniur_64.mp3","Codec":"MP3","Bitrate":64}},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___online_extrafm_lt_8443_extrafm_mp3.m3u":{"Genre":["Pop","Talk","Folklore"],"Name":"Extra FM","Image":"https___online_extrafm_lt_8443_extrafm_mp3.webp","Homepage":"https://extrafm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://online.extrafm.lt:8443/extrafm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u":{"Genre":["Fight","Patriotic"],"Name":"Radio Bayraktar","Image":"https___online_radiobayraktar_ua_RadioBayraktar_HD.webp","Homepage":"https://www.radiobayraktar.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Radio Bayraktar is a radio station of unprecedented Ukrainian resistance","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radiobayraktar.ua/RadioBayraktar_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___online_radioroks_ua_RadioROKS_HD.m3u":{"Genre":["Rock","Hard Rock","Pop"],"Name":"Radio Roks Ukraine","Image":"https___online_radioroks_ua_RadioROKS_HD.webp","Homepage":"https://www.radioroks.ua/","Country":"Ukraine","State":"","Region":"","Languages":["Ukrainian"],"Language":"Ukrainian","Description":"Рок. Тільки рок! (Rock, only rock !)","Codec":"MP3","Bitrate":320,"StreamUri":"https://online.radioroks.ua/RadioROKS_HD","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___orelha_radiolivre_org_radiopaulofreire.m3u":{"Genre":["University Radio","MPB"],"Name":"Rádio Paulo Freire - UFPE","Image":"https___orelha_radiolivre_org_radiopaulofreire.webp","Homepage":"https://sites.ufpe.br/rpf/","Country":"Brazil","State":"Pernambuco","Region":"Pernambuco","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Paulo Freire - Rádio Universitária da UFPE","Codec":"MP3","Bitrate":64,"StreamUri":"https://orelha.radiolivre.org/radiopaulofreire","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___orf-live_ors-shoutcast_at_fm4-q2a.m3u":{"Genre":["Indie Rock","Electronic"],"Name":"Radio FM4","Image":"https___orf-live_ors-shoutcast_at_fm4-q2a.webp","Homepage":"https://fm4.orf.at/","Country":"Austria","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/fm4-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___orf-live_ors-shoutcast_at_oe1-q2a.m3u":{"Genre":["Classical","Information","Culture"],"Name":"Ö1","Image":"https___orf-live_ors-shoutcast_at_oe1-q2a.webp","Homepage":"https://oe1.orf.at/","Country":"Austria","State":"Vienna","Region":"Vienna","Languages":["German"],"Language":"German","Description":"Österreichischer Rundfunk, Stiftung öffentlichen Rechts","Codec":"MP3","Bitrate":192,"StreamUri":"https://orf-live.ors-shoutcast.at/oe1-q2a","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u":{"Genre":["Acoustic","Rock"],"Name":"OUI FM ACOUSTIC","Image":"https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.webp","Homepage":"https://www.ouifm.fr/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://ouifmacoustic.ice.infomaniak.ch/ouifmacoustic.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___paineldj5_com_br_20073_stream_1705993267781.m3u":{"Genre":["College Radio","Various"],"Name":"Universitária FM 100.7 (UFV)","Image":"https___paineldj5_com_br_20073_stream_1705993267781.webp","Homepage":"https://fratevi.org.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Para quem gosta de música e conteúdo!","Codec":"MP3","Bitrate":128,"StreamUri":"https://paineldj5.com.br:20073/stream?1705993267781","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u":{"Genre":["Indie"],"Name":"2BOB Radio 104.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.webp","Homepage":"http://www.2bobradio.org.au/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/2BOB.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u":{"Genre":["Romántico"],"Name":"Bésame - 89.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.webp","Homepage":"https://www.besame.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado.","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/BESAME_CR_SC","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u":{"Genre":["Pop"],"Name":"Noventa y Cuatro Siete - 94.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.webp","Homepage":"https://www.crc.cr/crc947/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español.","Codec":"AAC","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/CRC_947AAC.aac?_=819140","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u":{"Genre":["Various"],"Name":"Q Music","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.webp","Homepage":"https://qmusic.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QMUSIC.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"La Caliente - 90.7 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.webp","Homepage":"https://www.lacaliente.cr/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"La Caliente ofrece a sus oyentes una programación muy diversa.","Codec":"AAC","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/QTEJA_CRAAC_SC","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u":{"Genre":["News"],"Name":"Rádio Bandeirantes São Paulo 90.9 FM","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (São Paulo)","Codec":"AAC+","Bitrate":64,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8","alternativeStreams":{},"allCodecs":["AAC+"],"allBitrates":[64],"highestBitrate":64},"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.m3u":{"Genre":["Jazz"],"Name":"WEMU Ypsilanti FM 89.1 - Jazz","Image":"https___playerservices_streamtheworld_com_api_livestream-redirect_WEMUFM_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://playerservices.streamtheworld.com/api/livestream-redirect/WEMUFM.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___play_r1_co_nz_live.m3u":{"Genre":["Indie","Student Radio"],"Name":"Radio One 91FM","Image":"https___play_r1_co_nz_live.webp","Homepage":"https://r1.co.nz","Country":"New Zealand","State":"Dunedin","Region":"Dunedin","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://play.r1.co.nz/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___proic1_evspt_com_oxigenio_aac.m3u":{"Genre":["House","Hip-Hop","Jazz","Funk","Soul"],"Name":"OXIGÉNIO 102.6 FM","Image":"https___proic1_evspt_com_oxigenio_aac.webp","Homepage":"https://www.oxigenio.fm/","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Música para respirar","Codec":"AAC","Bitrate":192,"StreamUri":"https://proic1.evspt.com/oxigenio_aac","alternativeStreams":{"https___proic1_evspt_com_oxigenio_mp3":{"StreamUri":"https://proic1.evspt.com/oxigenio_mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["AAC","MP3"],"allBitrates":[192],"highestBitrate":192},"https___r1_comcities_com_proxy_emogddug_stream.m3u":{"Genre":["60's","70's","Oldies"],"Name":"Groovy Radio - 60's and 70's Oldies","Image":"https___r1_comcities_com_proxy_emogddug_stream.webp","Homepage":"https://www.groovyradio.us","Country":"United States","State":"Ohio","Region":"Ohio","Languages":["English"],"Language":"English","Description":"Non-Stop 60's and 70's All Hit Oldies","Codec":"MP3","Bitrate":160,"StreamUri":"https://r1.comcities.com/proxy/emogddug/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio10_pro-fhi_net_radio_9041_stream.m3u":{"Genre":["Afrobeat","Ambient","Bass","Breakbeat","Dancehall","Dub","Electronic","Experimental","Funk","Hard Drums","House","IDM","Jazz","Latin","R'n'B","Rap","Techno","Trance","Uk Funky"],"Name":"Rinse France","Image":"https___radio10_pro-fhi_net_radio_9041_stream.webp","Homepage":"https://rinse.fm/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio10.pro-fhi.net/radio/9041/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u":{"Genre":["Various"],"Name":"Radio Contact \"Feel Good\"","Image":"https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.webp","Homepage":"https://www.radiocontact.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiocontact.ice.infomaniak.ch/radiocontact-mp3-192.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u":{"Genre":["Variety"],"Name":"Rai Radio 2 91.7 FM","Image":"https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio2","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 2 91.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiodue-live.akamaized.net/hls/live/2032592/radiodue/radiodue/radio2_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiofunandmore_spcast_eu_dj03.m3u":{"Genre":["Various"],"Name":"RadioFunAndMore","Image":"https___radiofunandmore_spcast_eu_dj03.webp","Homepage":"https://radiofunandmore.de","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Dein Sender Deine Hits","Codec":"MP3","Bitrate":192,"StreamUri":"https://radiofunandmore.spcast.eu/dj03","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_laluna_mp3.m3u":{"Genre":["Pop","Regional"],"Name":"Laluna","Image":"https___radio_m-1_fm_laluna_mp3.webp","Homepage":"https://www.laluna.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":160,"StreamUri":"https://radio.m-1.fm/laluna/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___radio_m-1_fm_m-1dance_aac.m3u":{"Genre":["Dance"],"Name":"M-1 Dance","Image":"https___radio_m-1_fm_m-1dance_aac.webp","Homepage":"https://m-1dance.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radio.m-1.fm/m-1dance/aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radio_m-1_fm_M-1H.m3u":{"Genre":["Pop","Charts"],"Name":"M-1","Image":"https___radio_m-1_fm_M-1H.webp","Homepage":"https://www.m-1.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/M-1H","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_m-1_fm_m1plius_mp3.m3u":{"Genre":["Pop","Rock","Jazz","Contemporary"],"Name":"M-1 Plius","Image":"https___radio_m-1_fm_m1plius_mp3.webp","Homepage":"https://www.pliusas.fm","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.m-1.fm/m1plius/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u":{"Genre":["News","Football","Soccer","MPB"],"Name":"Rádio Nacional do Alto Solimões","Image":"https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.webp","Homepage":"https://radios.ebc.com.br/nacionalaltosolimoes","Country":"Brazil","State":"Amazonas","Region":"Amazonas","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Nacional do Alto Solimões - EBC","Codec":"AAC","Bitrate":32,"StreamUri":"https://radionacionalaltosolimoes-stream.ebc.com.br/ebc/radionacionalaltosolimoes/chunks.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radio_promodj_com_fullmoon-192.m3u":{"Genre":["Hard Trance","Tech Trance","Progressive Trance","Uplifting Trance","Trance","Trancestep","Vocal Trance"],"Name":"Full Moon","Image":"https___radio_promodj_com_fullmoon-192.webp","Homepage":"https://promodj.com/radio#fullmoon","Country":"Russia","State":"","Region":"","Languages":["English","Russian"],"Language":"English, Russian","Description":"Trance always. Trance everywhere. Trance 24/7.","Codec":"MP3","Bitrate":192,"StreamUri":"https://radio.promodj.com/fullmoon-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_sec_unicamp_br_aovivo_1698904239205.m3u":{"Genre":["Pop","MPB","News"],"Name":"Rádio UNICAMP","Image":"https___radio_sec_unicamp_br_aovivo_1698904239205.webp","Homepage":"https://www.sec.unicamp.br/web-radio-2/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Música e informação de qualidade!","Codec":"MPEG","Bitrate":32,"StreamUri":"https://radio.sec.unicamp.br/aovivo?1698904239205","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___radioshamfm_grtvstream_com_8400__.m3u":{"Genre":["Various","News"],"Name":"Sham FM","Image":"https___radioshamfm_grtvstream_com_8400__.webp","Homepage":"https://sham.fm/ar/index.html","Country":"Syria","State":"","Region":"","Languages":["Arabic"],"Language":"Arabic","Description":"Sham FM","Codec":"MP3","Bitrate":128,"StreamUri":"https://radioshamfm.grtvstream.com:8400/;","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radio_sk8ter_org_8443_stream.m3u":{"Genre":["Electronic","Drum'n'Bass","Techno","House","Dance"],"Name":"Mémé dans les OrtiEs","Image":"https___radio_sk8ter_org_8443_stream.webp","Homepage":"https://memeradio.org","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Web radio électro","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.sk8ter.org:8443/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_classic21-128_mp3.m3u":{"Genre":["Pop","Rock"],"Name":"RTBF - Classic 21","Image":"https___radios_rtbf_be_classic21-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/classic21-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_jam-128_mp3.m3u":{"Genre":["Urbain","Pop","Electronic","Rock","Folk","New Jazz","World Music"],"Name":"RTBF - Jam","Image":"https___radios_rtbf_be_jam-128_mp3.webp","Homepage":"https://www.rtbf.be/jam","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/jam-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_laprem1ere-128_mp3.m3u":{"Genre":["Various","Variety","News"],"Name":"RTBF - La Première","Image":"https___radios_rtbf_be_laprem1ere-128_mp3.webp","Homepage":"https://www.rtbf.be/lapremiere/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/laprem1ere-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_musiq3-128_aac.m3u":{"Genre":["Classical"],"Name":"RTBF - Musiq 3","Image":"https___radios_rtbf_be_musiq3-128_aac.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"https://radios.rtbf.be/musiq3-128.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_pure-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - Tipik / PureFM","Image":"https___radios_rtbf_be_pure-128_mp3.webp","Homepage":"https://www.rtbf.be/tipik/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"null","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/pure-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_rtbfmix-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - RTBF Mix","Image":"https___radios_rtbf_be_rtbfmix-128_mp3.webp","Homepage":"https://www.rtbf.be/rtbfmix","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/rtbfmix-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_tarmac-128_mp3.m3u":{"Genre":["Pop","Variety"],"Name":"RTBF - Tarmac","Image":"https___radios_rtbf_be_tarmac-128_mp3.webp","Homepage":"https://www.rtbf.be/Tarmac","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/tarmac-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaliege-128_mp3.m3u":{"Genre":["Various"],"Name":"RTBF - VivaCité Liège","Image":"https___radios_rtbf_be_vivaliege-128_mp3.webp","Homepage":"https://www.rtbf.be/vivacite/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaliege-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_vivaplus-128_mp3.m3u":{"Genre":["60's","70's"],"Name":"RTBF - Viva+","Image":"https___radios_rtbf_be_vivaplus-128_mp3.webp","Homepage":"https://www.rtbf.be/vivaplus","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://radios.rtbf.be/vivaplus-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radios_rtbf_be_wr-c21-60-128_mp3.m3u":{"Genre":["60's","Rock","Pop"],"Name":"RTBF - Classic 21 60's","Image":"https___radios_rtbf_be_wr-c21-60-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Le meilleur Rock'n'Pop des années 60","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-60-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-70-128_mp3.m3u":{"Genre":["70's","Classic Rock","Rock"],"Name":"RTBF - Classic 21 70's","Image":"https___radios_rtbf_be_wr-c21-70-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-70-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-80-128_mp3.m3u":{"Genre":["80's","Rock","Pop"],"Name":"RTBF - Classic 21 80's","Image":"https___radios_rtbf_be_wr-c21-80-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Rock'n'Pop of the 80's","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-80-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-90-128_mp3.m3u":{"Genre":["90's"],"Name":"RTBF - Classic 21 90's","Image":"https___radios_rtbf_be_wr-c21-90-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-90-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u":{"Genre":["Country"],"Name":"RTBF - Classic 21 Route 66","Image":"https___radios_rtbf_be_wr-c21-route66-128_mp3.webp","Homepage":"https://www.rtbf.be/classic21/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-c21-route66-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u":{"Genre":["Renaissance","Baroque"],"Name":"RTBF - Musiq 3 Baroque","Image":"https___radios_rtbf_be_wr-m3-baroque-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Un voyage dans l'Europe musicale, de la Renaissance jusque 1750","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-baroque-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u":{"Genre":["Jazz"],"Name":"RTBF - Musiq 3 Jazz","Image":"https___radios_rtbf_be_wr-m3-jazz-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Du jazz belge et international pour tous, des années 20 à nos jours","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-jazz-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u":{"Genre":["Romantique"],"Name":"RTBF - Musiq 3 Romantique","Image":"https___radios_rtbf_be_wr-m3-romantique-128_mp3.webp","Homepage":"https://www.rtbf.be/musiq3/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Les plus grandes pages de la musique romantique","Codec":"MP3","Bitrate":192,"StreamUri":"https://radios.rtbf.be/wr-m3-romantique-128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___radio_streamgates_net_stream_oranim.m3u":{"Genre":["Rock","Pop","Jazz","Folk"],"Name":"Radion Oranim 103.6FM רדיו אורנים","Image":"https___radio_streamgates_net_stream_oranim.webp","Homepage":"https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx","Country":"Israel","State":"","Region":"","Languages":["Hebrew"],"Language":"Hebrew","Description":"Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community.","Codec":"MP3","Bitrate":128,"StreamUri":"https://radio.streamgates.net/stream/oranim","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u":{"Genre":["News","Sport"],"Name":"Guardian Radio 96.9 FM","Image":"https___radiostreams_streamcomedia_com_8000_969guardianradio.webp","Homepage":"https://guardiantalkradio.com","Country":"Bahamas","State":"Nassau","Region":"Nassau","Languages":["English"],"Language":"English","Description":"Guardian Radio 96.9 FM","Codec":"MPEG","Bitrate":64,"StreamUri":"https://radiostreams.streamcomedia.com:8000/969guardianradio","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[64],"highestBitrate":64},"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u":{"Genre":["Opera"],"Name":"Rai Radio 3 93.7 FM","Image":"https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio3","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 3 93.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiotre-live.akamaized.net/hls/live/2032594/radiotre/radiotre/radio3_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u":{"Genre":["News","Sport"],"Name":"Rai Radio 1 89.7 FM","Image":"https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.webp","Homepage":"https://www.raiplaysound.it/radio1","Country":"Italy","State":"Roma","Region":"Roma","Languages":["Italian"],"Language":"Italian","Description":"Rai Radio 1 89.7 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://radiounoest-live.akamaized.net/hls/live/2032586/radiounoest/radiounoest/radio1est_256/chunklist.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u":{"Genre":["Tamil Radio"],"Name":"IBC Tamil","Image":"https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.webp","Homepage":"https://radio.ibctamil.com/","Country":"India","State":"","Region":"","Languages":["Tamil"],"Language":"Tamil","Description":"IBC Tamil offers an excellent line-up of regular and one-off shows","Codec":"MP3","Bitrate":128,"StreamUri":"https://rbx2.hnux.com/http://10454.cloudrad.io:6176/;stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u":{"Genre":["News"],"Name":"Ici Radio-Canada Premiere Montreal","Image":"https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.webp","Homepage":"https://ici.radio-canada.ca/","Country":"Canada","State":"Montreal","Region":"Montreal","Languages":["French"],"Language":"French","Description":"","Codec":"HLS","Bitrate":465,"StreamUri":"https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/playlist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[465],"highestBitrate":465},"https___relay2_bide-et-musique_com_9300_bm_mp3.m3u":{"Genre":["70's","80's"],"Name":"Bide et Musique - La radio de l'improbable et de l'inouï","Image":"https___relay2_bide-et-musique_com_9300_bm_mp3.webp","Homepage":"https://www.bide-et-musique.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et…","Codec":"MP3","Bitrate":128,"StreamUri":"https://relay2.bide-et-musique.com:9300/bm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___rozhlas_stream_ddur_mp3_256_mp3.m3u":{"Genre":["Classical"],"Name":"Czech Radio Classical","Image":"https___rozhlas_stream_ddur_mp3_256_mp3.webp","Homepage":"","Country":"Czech Republic","State":"","Languages":["Czech"],"Language":"Czech","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"https://rozhlas.stream/ddur_mp3_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s02_brascast_com_7386_live.m3u":{"Genre":["Entrevistas","Interviews","News","News Talk","Notícias"],"Name":"Rádio Foco Livre","Image":"https___s02_brascast_com_7386_live.webp","Homepage":"https://www.focolivre.com.br/","Country":"Brazil","State":"Santa Catarina","Region":"Santa Catarina","Languages":["Portuguese"],"Language":"Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s02.brascast.com:7386/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s09_hstbr_net_8238_live_1514038524061.m3u":{"Genre":["News","Various"],"Name":"Brasil de Fato","Image":"https___s09_hstbr_net_8238_live_1514038524061.webp","Homepage":"https://www.brasildefato.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Brasil de Fato - Uma visão popular do Brasil e do mundo","Codec":"MP3","Bitrate":128,"StreamUri":"https://s09.hstbr.net:8238/live?1514038524061","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s1_knixx_fm_dein_webradio_256_mp3.m3u":{"Genre":["Variety","Adult Contemporary","New Country","Non-commercial","Non-profit","Oldies","Pop","Rock"],"Name":"knixx.fm","Image":"https___s1_knixx_fm_dein_webradio_256_mp3.webp","Homepage":"https://knixx.fm/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Musik von den 60ern bis heute.","Codec":"MP3","Bitrate":256,"StreamUri":"https://s1.knixx.fm/dein_webradio_256.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio P.Y.G.","Image":"https___s2_ssl-stream_com_radio_8160_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All the Best from Pink Floyd, Yes and Genesis","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8160/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u":{"Genre":["Progressive Rock"],"Name":"Labgate Radio Progressive Rock","Image":"https___s2_ssl-stream_com_radio_8180_radio_mp3.webp","Homepage":"http://labgateradio.com","Country":"Canada","State":"","Region":"","Languages":["English"],"Language":"English","Description":"All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s2.ssl-stream.com/radio/8180/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u":{"Genre":["MPB","College Radio","University","Independent Music","Pop"],"Name":"Rádio Pop Goiaba UFF","Image":"https___s37_maxcast_com_br_8450_live_id_1698623926568.webp","Homepage":"https://radiopopgoiaba.uff.br/pop-goiaba-uff/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Pop Goiaba UFF","Codec":"MPEG","Bitrate":32,"StreamUri":"https://s37.maxcast.com.br:8450/live?id=1698623926568","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[32],"highestBitrate":32},"https___s5_radio_co_s23b8ada46_listen.m3u":{"Genre":["Community Radio","Indie","Underground","Indie","AfroHouse","AfroJazz","Hip-Hop","Jazz"],"Name":"Oroko Radio","Image":"https___s5_radio_co_s23b8ada46_listen.webp","Homepage":"https://oroko.live/","Country":"Ghana","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/s23b8ada46/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s5_radio_co_sd515b7b34_listen.m3u":{"Genre":["Rock","Baladas"],"Name":"Radio 2 - 99.5 FM","Image":"https___s5_radio_co_sd515b7b34_listen.webp","Homepage":"https://radiodos.com/","Country":"Costa Rica","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Éxitos que fueron de UNO y ahora son de DOS 99.5 FM.","Codec":"MP3","Bitrate":128,"StreamUri":"https://s5.radio.co/sd515b7b34/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___s61_radiolize_com_radio_8000_radio_mp3.m3u":{"Genre":["2000's","Dance","Rock","Pop","Hip-Hop"],"Name":"Smart Zeros","Image":"https___s61_radiolize_com_radio_8000_radio_mp3.webp","Homepage":"https://smart2000s.com/cool-songs-for-2000-theme-party/","Country":"Ukraine","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Cool Songs For 2000 Theme Party","Codec":"MP3","Bitrate":128,"StreamUri":"https://s61.radiolize.com/radio/8000/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___server1_fex_red_8366_stream.m3u":{"Genre":["Entretenimiento","Deportes","Noticias","Variedades"],"Name":"Radio Gente","Image":"https___server1_fex_red_8366_stream.webp","Homepage":"https://radiogentebol.com/","Country":"Bolivia","State":"","Region":"","Languages":["Español"],"Language":"Español","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://server1.fex.red:8366/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___servidor21_brlogic_com_7712_live.m3u":{"Genre":["MPB","Radio Universitaria","University Radio"],"Name":"Rádio UFRJ","Image":"https___servidor21_brlogic_com_7712_live.webp","Homepage":"https://radio.ufrj.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Radio Universitária da Universidade Federal do Rio de Janeiro","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor21.brlogic.com:7712/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor22-3_brlogic_com_7404_live.m3u":{"Genre":["MPB","News"],"Name":"Rádio UERJ","Image":"https___servidor22-3_brlogic_com_7404_live.webp","Homepage":"https://www.radiouerj.com/app/index.html","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Conectando você ao conhecimento!","Codec":"MP3","Bitrate":32,"StreamUri":"https://servidor22-3.brlogic.com:7404/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___servidor35-1_brlogic_com_8062_live.m3u":{"Genre":["Eclectic","Football"],"Name":"Rádio FERJ","Image":"https___servidor35-1_brlogic_com_8062_live.webp","Homepage":"https://www.fferj.com.br/radio","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio FERJ","Codec":"MP3","Bitrate":128,"StreamUri":"https://servidor35-1.brlogic.com:8062/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___servidor38-2_brlogic_com_8134_live.m3u":{"Genre":["Various"],"Name":"Rádio UPF 99.9 FM","Image":"https___servidor38-2_brlogic_com_8134_live.webp","Homepage":"https://radioupf.minhawebradio.net/app/index.html","Country":"Brazil","State":"Rio Grande Do Sul","Region":"Rio Grande Do Sul","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UPF 99.9 FM","Codec":"MPEG","Bitrate":196,"StreamUri":"https://servidor38-2.brlogic.com:8134/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[196],"highestBitrate":196},"https___servidor39-3_brlogic_com_8180_live.m3u":{"Genre":["Various"],"Name":"Rádio Uniso","Image":"https___servidor39-3_brlogic_com_8180_live.webp","Homepage":"https://radiouniso.com","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano.","Codec":"MPEG","Bitrate":128,"StreamUri":"https://servidor39-3.brlogic.com:8180/live","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_am846_m3u8.m3u":{"Genre":["News","Education"],"Name":"China Plus (China Radio International) - English","Image":"https___sk_cri_cn_am846_m3u8.webp","Homepage":"https://chinaplus.cri.cn","Country":"China","State":"","Region":"","Languages":["English"],"Language":"English","Description":"China Plus (China Radio International) - English","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/am846.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___sk_cri_cn_frenchafrica_m3u8.m3u":{"Genre":["News","Debate"],"Name":"CGTN Radio Français","Image":"https___sk_cri_cn_frenchafrica_m3u8.webp","Homepage":"https://radio.cgtn.com/","Country":"China","State":"","Region":"","Languages":["French"],"Language":"French","Description":"CGTN Radio Français","Codec":"ADTS","Bitrate":128,"StreamUri":"https://sk.cri.cn/frenchafrica.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[128],"highestBitrate":128},"https___sk_cri_cn_nhzs_m3u8.m3u":{"Genre":["Various"],"Name":"CRI Voice of the South China Sea 89.1 FM","Image":"https___sk_cri_cn_nhzs_m3u8.webp","Homepage":"https://vscs.cri.cn","Country":"China","State":"","Region":"","Languages":["Chinese"],"Language":"Chinese","Description":"CRI Voice of the South China Sea 89.1 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://sk.cri.cn/nhzs.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___smoothjazz_cdnstream1_com_2585_320_mp3.m3u":{"Genre":["Jazz","Smooth Jazz"],"Name":"SmoothJazz Global","Image":"https___smoothjazz_cdnstream1_com_2585_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2585_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___smoothjazz_cdnstream1_com_2586_320_mp3.m3u":{"Genre":["Lounge","Smooth Lounge"],"Name":"SmoothLounge Global","Image":"https___smoothjazz_cdnstream1_com_2586_320_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://smoothjazz.cdnstream1.com/2586_320.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.m3u":{"Genre":["Eclectic","Various","Culture"],"Name":"Soho Radio London","Image":"https___sohoradiomusic_doughunt_co_uk_8010_320mp3.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://sohoradiomusic.doughunt.co.uk:8010/320mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência AM 880","Image":"https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Uma Rádio Para Todos e Todas!","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia2?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u":{"Genre":["News","Various"],"Name":"Rádio Inconfidência 100.9 FM","Image":"https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.webp","Homepage":"https://www.inconfidencia.com.br/","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Inconfidência 100.9 FM","Codec":"AAC","Bitrate":128,"StreamUri":"https://ssl.zoeweb.net/proxy/inconfidencia?mp=/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u":{"Genre":["Electronic","Culture","House"],"Name":"La Urban Radio","Image":"https___st1_urbanrevolution_es_8443_laurbanfm_mp3.webp","Homepage":"https://www.urbanrevolution.es","Country":"Spain","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Nuevos talentos y grandes artistas se dan la mano en La Urban Radio.","Codec":"MP3","Bitrate":160,"StreamUri":"https://st1.urbanrevolution.es:8443/laurbanfm.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[160],"highestBitrate":160},"https___stm23_xcast_com_br_11284_stream_1705992834372.m3u":{"Genre":["News","Football"],"Name":"Rádio Bandeirantes Campinas 1170 AM","Image":"https___stm23_xcast_com_br_11284_stream_1705992834372.webp","Homepage":"https://www.band.uol.com.br/radios/radio-bandeirantes/campinas","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Bandeirantes (Campinas)","Codec":"MP3","Bitrate":128,"StreamUri":"https://stm23.xcast.com.br:11284/stream?1705992834372","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___str1_castradios_com_br_10998_stream.m3u":{"Genre":["Flashback","Adult","Sport"],"Name":"Rádio 365","Image":"https___str1_castradios_com_br_10998_stream.webp","Homepage":"https://radio365.com.br/","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A sua rádio de todos os dias!","Codec":"MP3","Bitrate":128,"StreamUri":"https://str1.castradios.com.br:10998/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream128_kngi_org.m3u":{"Genre":["Game","Various"],"Name":"KNGI Network","Image":"https___stream128_kngi_org.webp","Homepage":"https://kngi.org","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream128.kngi.org","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream-156_zeno_fm_22db1xmde2zuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Arumbu FM","Image":"https___stream-156_zeno_fm_22db1xmde2zuv.webp","Homepage":"https://tamilradios.net/arumbu-fm/","Country":"India","State":"Tamilnadu","Region":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream-156.zeno.fm/22db1xmde2zuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream1_svrdedicado_org_8028_stream.m3u":{"Genre":["Blues","Rock","Instrumental"],"Name":"Rádio Lam","Image":"https___stream1_svrdedicado_org_8028_stream.webp","Homepage":"https://radiolam.wixsite.com/24horas","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rock & Blues 24 horas!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream1.svrdedicado.org/8028/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_relaxfm_lt_relaxfm128_mp3.m3u":{"Genre":["Pop"],"Name":"Relax FM","Image":"https___stream2_relaxfm_lt_relaxfm128_mp3.webp","Homepage":"https://relaxfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.relaxfm.lt/relaxfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream2_rockfm_lt_crf128_mp3.m3u":{"Genre":["Rock"],"Name":"Rock FM","Image":"https___stream2_rockfm_lt_crf128_mp3.webp","Homepage":"https://rockfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream2.rockfm.lt/crf128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u":{"Genre":["MPB","News"],"Name":"Rádio Câmara 96.9 FM","Image":"https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.webp","Homepage":"https://www.camara.leg.br/radio","Country":"Brazil","State":"Brasilia","Region":"Brasilia","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Câmara 96.9 FM","Codec":"ADTS","Bitrate":32,"StreamUri":"https://stream3.camara.gov.br/radiocamara1t64/manifest.m3u8","alternativeStreams":{},"allCodecs":["ADTS"],"allBitrates":[32],"highestBitrate":32},"https___stream_animeradio_de_animeradio_mp3.m3u":{"Genre":["Anime","J-pop","J-rock","OST","Party","Rock"],"Name":"AnimeRadio.de","Image":"https___stream_animeradio_de_animeradio_mp3.webp","Homepage":"https://www.animeradio.de/","Country":"Germany","State":"","Region":"","Languages":["German","Japanese"],"Language":"German, Japanese","Description":"Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen.","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.animeradio.de/animeradio.mp3","alternativeStreams":{"https___stream_animeradio_de_animeradio_aac":{"StreamUri":"https://stream.animeradio.de/animeradio.aac","Codec":"AAC","Bitrate":32}},"allCodecs":["AAC","MP3"],"allBitrates":[32,192],"highestBitrate":192},"https___stream_artsound_fm_mp3.m3u":{"Genre":["Classical","Jazz","Folk","World Music"],"Name":"ArtSound FM 92.7","Image":"https___stream_artsound_fm_mp3.webp","Homepage":"","Country":"Australia","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.artsound.fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_ceit_be_sudradio-hainaut.m3u":{"Genre":["Various"],"Name":"Sud Radio Hainaut","Image":"https___stream_ceit_be_sudradio-hainaut.webp","Homepage":"https://sudradio.net","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"https://stream.ceit.be/sudradio-hainaut","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"https___stream_ehr_lt_8443_ehr.m3u":{"Genre":["Charts","Pop"],"Name":"European Hit Radio","Image":"https___stream_ehr_lt_8443_ehr.webp","Homepage":"https://www.europeanhitradio.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian","English"],"Language":"Lithuanian, English","Description":"","Codec":"HE-AAC","Bitrate":96,"StreamUri":"https://stream.ehr.lt:8443/ehr","alternativeStreams":{"https___82_135_234_195_8443_ehr_mp3":{"StreamUri":"https://82.135.234.195:8443/ehr.mp3","Codec":"MP3","Bitrate":192}},"allCodecs":["HE-AAC","MP3"],"allBitrates":[96,192],"highestBitrate":192},"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.m3u":{"Genre":["Classical"],"Name":"Davide of MIMIC","Image":"https___streaming04_liveboxstream_uk_proxy_davideof_mp__stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streaming04.liveboxstream.uk/proxy/davideof?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streaming_antipode_be_antipode_mp3.m3u":{"Genre":["Various"],"Name":"Antipode - La Radio du Brabant Wallon","Image":"https___streaming_antipode_be_antipode_mp3.webp","Homepage":"https://www.antipode.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streaming.antipode.be/antipode.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streaming_inweb_com_br_energia.m3u":{"Genre":["Pop-Rock","Dance","Trance","Pop"],"Name":"Rádio Energia 97 FM","Image":"https___streaming_inweb_com_br_energia.webp","Homepage":"https://www.97fm.com.br","Country":"Brazil","State":"São Paulo","Region":"São Paulo","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"A Energia que te move!","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming.inweb.com.br/energia","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Public Radio"],"Name":"Rádio Antena 1 99.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.webp","Homepage":"https://antena1.rtp.pt","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 99.4 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena180a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u":{"Genre":["News","Politics","Sport","Fado"],"Name":"Rádio Antena 1 Madeira 104.6 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.webp","Homepage":"http://www.rtp.pt/madeira","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"Rádio Antena 1 Madeira 104.6 FM","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena1madeira80a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u":{"Genre":["Classical","Opera"],"Name":"Rádio Antena 2 94.4 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.webp","Homepage":"https://antena2.rtp.pt","Country":"Portugal","State":"","Region":"","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Arte que Toca","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena280a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u":{"Genre":["Pop","Dance"],"Name":"Rádio Antena 3 105.2 FM","Image":"https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.webp","Homepage":"https://media.rtp.pt/antena3/","Country":"Portugal","State":"Lisboa","Region":"Lisboa","Languages":["Portuguese"],"Language":"Portuguese","Description":"A Alternativa Pop","Codec":"AAC","Bitrate":32,"StreamUri":"https://streaming-live.rtp.pt/liveradio/antena380a/chunklist_DVR.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[32],"highestBitrate":32},"https___streaming_radio_co_s3699c5e49_listen.m3u":{"Genre":["Ambient","Electronic","Experimental","Hip-Hop","House","Jazz","Pop"],"Name":"Refuge Worldwide","Image":"https___streaming_radio_co_s3699c5e49_listen.webp","Homepage":"https://refugeworldwide.com/","Country":"Germany","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Alternative community radio from Berlin","Codec":"MP3","Bitrate":192,"StreamUri":"https://streaming.radio.co/s3699c5e49/listen","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___streaming_ufg_br_8443_radiouniversitaria.m3u":{"Genre":["MPB","News"],"Name":"Rádio Universitária UFG","Image":"https___streaming_ufg_br_8443_radiouniversitaria.webp","Homepage":"https://radio.ufg.br/p/aovivo","Country":"Brazil","State":"Goiás","Region":"Goiás","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio Universitária UFG","Codec":"MPEG","Bitrate":128,"StreamUri":"https://streaming.ufg.br:8443/radiouniversitaria","alternativeStreams":{},"allCodecs":["MPEG"],"allBitrates":[128],"highestBitrate":128},"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Classical","Talk","Culture"],"Name":"LRT Klasika","Image":"https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/klasika/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Modern","Contemporary","Indie"],"Name":"LRT Opus","Image":"https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/opus/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u":{"Genre":["Various","News","Talk"],"Name":"LRT Radijas","Image":"https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.webp","Homepage":"https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"HLS","Bitrate":0,"StreamUri":"https://stream-live.lrt.lt/radijas/stream04/streamPlaylist.m3u8","alternativeStreams":{},"allCodecs":["HLS"],"allBitrates":[0],"highestBitrate":0},"https___stream_nowyswiat_online_mp3.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio Nowy Swiat","Image":"https___stream_nowyswiat_online_mp3.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.nowyswiat.online/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_radiomustathens_com_must-hero.m3u":{"Genre":["Adult Contemporary","Top 40"],"Name":"Hero","Image":"https___stream_radiomustathens_com_must-hero.webp","Homepage":"https://app.radiomustathens.com/#/must-hero","Country":"Greece","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://stream.radiomustathens.com/must-hero","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___stream_radioparadise_com_aac-320.m3u":{"Genre":["Eclectic"],"Name":"Radio Paradise - Main Mix","Image":"https___stream_radioparadise_com_aac-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/aac-320","alternativeStreams":{"https___stream_radioparadise_com_flacm":{"StreamUri":"https://stream.radioparadise.com/flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_mellow-320.m3u":{"Genre":["Rock","Mellow Rock"],"Name":"Radio Paradise - Mellow","Image":"https___stream_radioparadise_com_mellow-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/mellow-320","alternativeStreams":{"https___stream_radioparadise_com_mellow-flacm":{"StreamUri":"https://stream.radioparadise.com/mellow-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_rock-320.m3u":{"Genre":["Rock"],"Name":"Radio Paradise - Rock","Image":"https___stream_radioparadise_com_rock-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/rock-320","alternativeStreams":{"https___stream_radioparadise_com_rock-flacm":{"StreamUri":"https://stream.radioparadise.com/rock-flacm","Codec":"FLAC","Bitrate":900}},"allCodecs":["AAC","FLAC"],"allBitrates":[320,900],"highestBitrate":900},"https___stream_radioparadise_com_world-etc-320.m3u":{"Genre":["World Music"],"Name":"Radio Paradise - World","Image":"https___stream_radioparadise_com_world-etc-320.webp","Homepage":"https://radioparadise.com","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":320,"StreamUri":"https://stream.radioparadise.com/world-etc-320","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___stream_rcs_revma_com_an1ugyygzk8uv.m3u":{"Genre":["Rock","Indie","Jazz"],"Name":"Radio 357","Image":"https___stream_rcs_revma_com_an1ugyygzk8uv.webp","Homepage":"","Country":"Poland","State":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/an1ugyygzk8uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_anew1ctrgzzuv.m3u":{"Genre":["Pop","Rock"],"Name":"DH Radio / Twizz","Image":"https___stream_rcs_revma_com_anew1ctrgzzuv.webp","Homepage":"https://www.dhnet.be/medias/dh-radio","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing.","Codec":"AAC","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/anew1ctrgzzuv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u":{"Genre":["Pop","Rock"],"Name":"Must FM","Image":"https___stream_rcs_revma_com_cm96zpmrmm0uv.webp","Homepage":"https://mustfm.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/cm96zpmrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_f31w7e0fveuvv.m3u":{"Genre":["Pop","Charts"],"Name":"Power Hit Radio","Image":"https___stream_rcs_revma_com_f31w7e0fveuvv.webp","Homepage":"https://powerhitradio.tv3.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"AAC","Bitrate":89,"StreamUri":"https://stream.rcs.revma.com/f31w7e0fveuvv","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[89],"highestBitrate":89},"https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u":{"Genre":["Pop","Rock","Dance","Club"],"Name":"Maximum FM","Image":"https___stream_rcs_revma_com_vnmbzemrmm0uv.webp","Homepage":"https://www.maximumfm.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège.","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/vnmbzemrmm0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rcs_revma_com_xh00fwuptg0uv.m3u":{"Genre":["Various"],"Name":"NRJ Belgique","Image":"https___stream_rcs_revma_com_xh00fwuptg0uv.webp","Homepage":"https://www.nrj.be/","Country":"Belgium","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rcs.revma.com/xh00fwuptg0uv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_rockantenne_de_rockantenne_stream_mp3.m3u":{"Genre":["Rock"],"Name":"Rock Antenne","Image":"https___stream_rockantenne_de_rockantenne_stream_mp3.webp","Homepage":"https://www.rockantenne.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.rockantenne.de/rockantenne/stream/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["60's"],"Name":"FluxFM - 60s","Image":"https___streams_fluxfm_de_60er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/60er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - ChillHop","Image":"https___streams_fluxfm_de_Chillhop_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Chillhop/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Laidback"],"Name":"FluxFM - Chillout Radio","Image":"https___streams_fluxfm_de_chillout_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/chillout/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Clubsandwich","Image":"https___streams_fluxfm_de_clubsandwich_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/clubsandwich/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Pop"],"Name":"FluxFM - ElectroFlux","Image":"https___streams_fluxfm_de_elektro_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/elektro/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.m3u":{"Genre":["Pop","Culture"],"Name":"FluxFM - Hamburg","Image":"https___streams_fluxfm_de_flux-hamburg_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/flux-hamburg/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - FluxKompensator","Image":"https___streams_fluxfm_de_fluxkompensator_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/fluxkompensator/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Disco","Dance"],"Name":"FluxFM - Indie Disco","Image":"https___streams_fluxfm_de_indiedisco_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/indiedisco/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - Jazzradio Schwarzenstein","Image":"https___streams_fluxfm_de_jazzschwarz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/jazzschwarz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Various"],"Name":"FluxFM - John Reed Radio","Image":"https___streams_fluxfm_de_john-reed_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/john-reed/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Klubradio","Image":"https___streams_fluxfm_de_klubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/klubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Lounge","Neo-Soul","Trip-Hop","Jazz"],"Name":"FluxFM - FluxLounge","Image":"https___streams_fluxfm_de_lounge_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/lounge/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie","Eclectic"],"Name":"FluxFM - Melides Art Radio","Image":"https___streams_fluxfm_de_Melides_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/Melides/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","House"],"Name":"FluxFM - Sound Of Berlin","Image":"https___streams_fluxfm_de_soundofberlin_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/soundofberlin/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Electronic","Techno"],"Name":"FluxFM - Techno Underground","Image":"https___streams_fluxfm_de_technoug_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"https://streams.fluxfm.de/technoug/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"https___stream_skylab-radio_com_live.m3u":{"Genre":["Ambient","Eclectic","Experimental","Hip-Hop","House","Rock","Techno"],"Name":"Skylab Radio","Image":"https___stream_skylab-radio_com_live.webp","Homepage":"http://skylab-radio.com/","Country":"Australia","State":"","Region":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.skylab-radio.com/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio7_de_dab_mp3-192_web_.m3u":{"Genre":["Pop"],"Name":"Radio 7","Image":"https___streams_radio7_de_dab_mp3-192_web_.webp","Homepage":"https://www.radio7.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio7.de/dab/mp3-192/web/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","70's"],"Name":"Radio BOB! 70s Rock","Image":"https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/70errock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock","Blues"],"Name":"Radio BOB! Blues","Image":"https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"RADIO BOB!s neuer Blues Stream","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/blues/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Best of Rock","Image":"https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/bob-bestofrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Newcomer","Image":"https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Listen to the hottest new rockbands – nonstop.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/newcomer/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Oldies","Image":"https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies!","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/rockoldies/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Summer Rock Hits","Image":"https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky.","Codec":"MP3","Bitrate":192,"StreamUri":"https://streams.radiobob.de/summerrock/mp3-192/streams.radiobob.de/","alternativeStreams":{"https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u":{"Genre":["60's","70's"],"Name":"Joe 60's & 70's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_60s_70s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u":{"Genre":["80's","90's"],"Name":"Joe 80's & 90's","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_80s_90s/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u":{"Genre":["Various"],"Name":"Joe Easy","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u":{"Genre":["Various","70's","80's","90's"],"Name":"Joe FM","Image":"https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/joe_fm/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u":{"Genre":["2000's"],"Name":"Joe Top 2000","Image":"https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.webp","Homepage":"https://joe.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___stream_zeno_fm_lf9upjop1gyuv.m3u":{"Genre":["General","News","Various"],"Name":"Kadicou FM","Image":"https___stream_zeno_fm_lf9upjop1gyuv.webp","Homepage":"https://zeno.fm/radio/kadicou-fm/","Country":"Nigeria","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Kadicou FM is dedicated to giving you quality broadcast and entertaining programs!","Codec":"MP3","Bitrate":128,"StreamUri":"https://stream.zeno.fm/lf9upjop1gyuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 610 AM","Image":"https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-am-610-am610khz.html","Country":"Vietnam","State":"Ho Chi Minh City","Region":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 610 AM","Codec":"AAC","Bitrate":320,"StreamUri":"https://strm.voh.com.vn/radio/channel2/chunklist_w2105781582.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[320],"highestBitrate":320},"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u":{"Genre":["News","Debate"],"Name":"Radio VOH 99.9 FM","Image":"https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.webp","Homepage":"https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html","Country":"Vietnam","State":"Ho Chi Minh City","Region":"Ho Chi Minh City","Languages":["Vietnamese/tiếng Việt"],"Language":"Vietnamese/tiếng Việt","Description":"Radio VOH 99.9 FM","Codec":"AAC","Bitrate":192,"StreamUri":"https://strm.voh.com.vn/radio/channel3/chunklist_w1232938254.m3u8","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___str_topradio_be_topradio_mp3.m3u":{"Genre":["Various"],"Name":"Top Radio","Image":"https___str_topradio_be_topradio_mp3.webp","Homepage":"https://www.topradio.be/","Country":"Belgium","State":"","Region":"","Languages":["Dutch"],"Language":"Dutch","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://str.topradio.be/topradio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u":{"Genre":["News","Talk","Culture"],"Name":"SR P1","Image":"https___sverigesradio_se_topsy_direkt_132-hi-aac.webp","Homepage":"https://sverigesradio.se/p1","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/132-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u":{"Genre":["Pop","Culture"],"Name":"SR P3","Image":"https___sverigesradio_se_topsy_direkt_164-hi-aac.webp","Homepage":"https://sverigesradio.se/p3","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/164-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u":{"Genre":["News","Weather","Sport","Culture"],"Name":"SR P4 Jämtland","Image":"https___sverigesradio_se_topsy_direkt_200-hi-aac.webp","Homepage":"https://sverigesradio.se/jamtland","Country":"Sweden","State":"","Region":"","Languages":["Swedish"],"Language":"Swedish","Description":"News, weather, sport, and culture from Jämtland","Codec":"AAC","Bitrate":192,"StreamUri":"https://sverigesradio.se/topsy/direkt/200-hi-aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[192],"highestBitrate":192},"https___transliacija_rc_lt_rc128_mp3.m3u":{"Genre":["Pop","Charts"],"Name":"Radijo Centras","Image":"https___transliacija_rc_lt_rc128_mp3.webp","Homepage":"https://rc.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.rc.lt/rc128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___transliacija_zipfm_lt_zipfm128_mp3.m3u":{"Genre":["Youth","Pop"],"Name":"ZIP FM","Image":"https___transliacija_zipfm_lt_zipfm128_mp3.webp","Homepage":"https://zipfm.lt","Country":"Lithuania","State":"","Region":"","Languages":["Lithuanian"],"Language":"Lithuanian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://transliacija.zipfm.lt/zipfm128.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream0_wfmu_org_freeform-best-available.m3u":{"Genre":["Classical"],"Name":"WFMU 91.1 FM","Image":"http___stream0_wfmu_org_freeform-best-available.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream0.wfmu.org/freeform-best-available","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream1_opb_org_kmhd_mp3.m3u":{"Genre":["Jazz"],"Name":"KMHD Portland FM 89.1 - Jazz","Image":"http___stream1_opb_org_kmhd_mp3.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream1.opb.org/kmhd.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream2_radioquantica_com_8000_stream.m3u":{"Genre":["Underground","Urbain"],"Name":"Rádio Quântica","Image":"http___stream2_radioquantica_com_8000_stream.webp","Homepage":"https://www.radioquantica.com/","Country":"Portugal","State":"","Region":"","Languages":["English","Portuguese"],"Language":"English, Portuguese","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream2.radioquantica.com:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-33_zeno_fm_nkdugu37twzuv.m3u":{"Genre":["Tamil Movie Songs"],"Name":"Raja Radio HD","Image":"http___stream-33_zeno_fm_nkdugu37twzuv.webp","Homepage":"https://tamilradios.net/raja-radio-hd/","Country":"India","State":"Tamilnadu","Region":"Tamilnadu","Languages":["Tamil"],"Language":"Tamil","Description":"Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-33.zeno.fm/nkdugu37twzuv","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_dandelionradio_com_9414.m3u":{"Genre":["Indie"],"Name":"Dandelion Radio","Image":"http___stream_dandelionradio_com_9414.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.dandelionradio.com:9414","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u":{"Genre":["Dub","Reggae"],"Name":"Dr. Dick’s Dub Shack","Image":"http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.webp","Homepage":"http://drdicksdubshack.com/","Country":"Bermuda","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Bermuda-based online radio station playing all species of dub, downtempo and bass music","Codec":"MP3","Bitrate":192,"StreamUri":"http://streamer.radio.co/s0635c8b0d/listen?fbclid=IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_fr_morow_com_8080_morow_hi_aacp.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Morow - Retro Progressive Rock","Image":"http___stream_fr_morow_com_8080_morow_hi_aacp.webp","Homepage":"","Country":"France","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":128,"StreamUri":"http://stream.fr.morow.com:8080/morow_hi.aacp","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[128],"highestBitrate":128},"http___stream-icy_bauermedia_pt_m80_mp3.m3u":{"Genre":["70's","80's","90's","2000's"],"Name":"M80 Rádio","Image":"http___stream-icy_bauermedia_pt_m80_mp3.webp","Homepage":"https://m80.pt/","Country":"Portugal","State":"Lisbon","Region":"Lisbon","Languages":["Portuguese"],"Language":"Portuguese","Description":"Se a sua vida tem uma música, ela passa na M80","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream-icy.bauermedia.pt/m80.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u":{"Genre":["Jazz","Classical","Soul"],"Name":"Apollo Radio","Image":"http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.webp","Homepage":"https://www.apolloradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Bleiben sie entspannt","Codec":"MP3","Bitrate":192,"StreamUri":"http://streaming.apolloradio.de/apolloradio_simulcast_192k_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u":{"Genre":["Indie","Indie Rock","Canada","Commercial","Montreal","Mp3","Pop Rock"],"Name":"WKND 91,9","Image":"http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.webp","Homepage":"http://quebec.wknd.fm/","Country":"Canada","State":"Québec","Region":"Québec","Languages":["Français"],"Language":"Français","Description":"WKND FM 91,9","Codec":"MP3","Bitrate":96,"StreamUri":"http://streaming.cjec.leclerccommunication.ca:8000/cjec.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___streaming_livespanel_com_20000_live.m3u":{"Genre":["Samba","Pagode","Pop"],"Name":"Rádio FM O DIA","Image":"http___streaming_livespanel_com_20000_live.webp","Homepage":"http://www.fmodia.com.br/","Country":"Brazil","State":"","Region":"","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"FM O Dia","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.livespanel.com:20000/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u":{"Genre":["News","Entertainment"],"Name":"Radio SRF 1","Image":"http___streaming_swisstxt_ch_m_drs1_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs1/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs2_mp3_128.m3u":{"Genre":["Classical","Jazz"],"Name":"Radio SRF 2 Kultur","Image":"http___streaming_swisstxt_ch_m_drs2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"Radio SRF 3","Image":"http___streaming_swisstxt_ch_m_drs3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drs4news_mp3_128.m3u":{"Genre":["News"],"Name":"Radio SRF 4 News","Image":"http___streaming_swisstxt_ch_m_drs4news_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drs4news/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsmw_mp3_128.m3u":{"Genre":["Pop","Schlager Music"],"Name":"Radio SRF Musikwelle","Image":"http___streaming_swisstxt_ch_m_drsmw_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsmw/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.m3u":{"Genre":["Indie"],"Name":"Radio SRF Virus","Image":"http___streaming_swisstxt_ch_m_drsvirus_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://streaming.swisstxt.ch/m/drsvirus/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_klassikradio_de_chor_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Chor","Image":"http___stream_klassikradio_de_chor_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/chor/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_dreams_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Dreams","Image":"http___stream_klassikradio_de_dreams_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/dreams/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_klassikradio_de_relax_mp3-192.m3u":{"Genre":["Classical"],"Name":"Klassik Radio Relax","Image":"http___stream_klassikradio_de_relax_mp3-192.webp","Homepage":"https://www.klassikradio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.klassikradio.de/relax/mp3-192","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___stream_laut_fm_alternativeworld.m3u":{"Genre":["Indie","Punk","New Wave","Britpop"],"Name":"Alternativeworld","Image":"http___stream_laut_fm_alternativeworld.webp","Homepage":"https://laut.fm/alternativeworld","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/alternativeworld","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_anderswelt.m3u":{"Genre":["New Wave","Gothic","Minimal","80's"],"Name":"Anderswelt","Image":"http___stream_laut_fm_anderswelt.webp","Homepage":"https://laut.fm/anderswelt","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Stuttgarter Wave-Klänge wie zu den guten alten Zeiten...","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/anderswelt","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_deutschrap.m3u":{"Genre":["Hip-Hop","Rap","German Rap","Urbain"],"Name":"Deutschrap","Image":"http___stream_laut_fm_deutschrap.webp","Homepage":"www.laut.fm/deutschrap","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Schluss mit Deutschrap Einheitsbrei!","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/deutschrap","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_kakerlakenradio.m3u":{"Genre":["Rock","Pop","Indie","New Wave","Punk","Britpop","Garage"],"Name":"Kakerlaken Radio","Image":"http___stream_laut_fm_kakerlakenradio.webp","Homepage":"http://indie-rock-radio.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/kakerlakenradio","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nightshift_alternative.m3u":{"Genre":["Gothic","Mediaeval","Nu Metal","80's","90's","Industrial","Metal","Metalcore"],"Name":"Nightshift Alternativ","Image":"http___stream_laut_fm_nightshift_alternative.webp","Homepage":"https://nightshift-alternativ.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nightshift_alternative","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_nonpop.m3u":{"Genre":["Ambient","Avantgarde","Black Metal","Folk","Industrial","Lo-Fi","Minimal","Indie"],"Name":"NONPOP","Image":"http___stream_laut_fm_nonpop.webp","Homepage":"https://laut.fm/nonpop","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Der Name ist Programm. Alles außer Massenware.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/nonpop","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_laut_fm_scifi.m3u":{"Genre":["Vocal","Pop","Scifi"],"Name":"SciFi Radio","Image":"http___stream_laut_fm_scifi.webp","Homepage":"https://laut.fm/scifi","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Ein Online Radio für den Bereich Science Fiction.","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.laut.fm/scifi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream-relay-geo_ntslive_net_stream2.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live International","Image":"http___stream-relay-geo_ntslive_net_stream2.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream2","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream-relay-geo_ntslive_net_stream.m3u":{"Genre":["Indie","Underground","Club","Live"],"Name":"NTS Live London - Don't Assume","Image":"http___stream-relay-geo_ntslive_net_stream.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":256,"StreamUri":"http://stream-relay-geo.ntslive.net/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"http___stream_resonance_fm_resonance.m3u":{"Genre":["Eclectic"],"Name":"Resonance Radio 104.4 FM","Image":"http___stream_resonance_fm_resonance.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://stream.resonance.fm/resonance","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u":{"Genre":["Eighties"],"Name":"80s80s","Image":"http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.webp","Homepage":"https://www.80s80s.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.80s80s.de/web/mp3-192/streams.80s80s.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"http___streams_egofm_de_egoCHILLOUT-hq.m3u":{"Genre":["Indie"],"Name":"egoFM CHILLOUT","Image":"http___streams_egofm_de_egoCHILLOUT-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die beruhigende Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoCHILLOUT-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFLASH-hq.m3u":{"Genre":["Indie","Electronic"],"Name":"egoFM FLASH","Image":"http___streams_egofm_de_egoFLASH-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die elektronische Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFLASH-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMBW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Baden-Württemberg","Image":"http___streams_egofm_de_egoFMBW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMBW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMHallOfFame-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM HallOfFame","Image":"http___streams_egofm_de_egoFMHallOfFame-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die legendäre Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMHallOfFame-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFM-hq.m3u":{"Genre":["Indie"],"Name":"egoFM live","Image":"http___streams_egofm_de_egoFM-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFM-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMKavka-hq.m3u":{"Genre":["Indie"],"Name":"egoFM Kavka","Image":"http___streams_egofm_de_egoFMKavka-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die kavkaeske Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMKavka-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMNRW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM NRW","Image":"http___streams_egofm_de_egoFMNRW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Radio für Musikentdecker","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMNRW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMRNB-hq.m3u":{"Genre":["R'n'B"],"Name":"egoFM R&B","Image":"http___streams_egofm_de_egoFMRNB-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die smoothe Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMRNB-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSEEWALD-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SEEWALD","Image":"http___streams_egofm_de_egoFMSEEWALD-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die Vermessung der Musik.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSEEWALD-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoFMSoundtrack-hq.m3u":{"Genre":["Soundtrack"],"Name":"egoFM Soundtrack","Image":"http___streams_egofm_de_egoFMSoundtrack-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die cineastische Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoFMSoundtrack-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoJAZZ-hq.m3u":{"Genre":["Jazz"],"Name":"egoFM JAZZ","Image":"http___streams_egofm_de_egoJAZZ-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die jazzige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoJAZZ-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoPURE-hq.m3u":{"Genre":["Indie"],"Name":"egoFM PURE","Image":"http___streams_egofm_de_egoPURE-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Ohne Punkt und Komma.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoPURE-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRAP-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RAP","Image":"http___streams_egofm_de_egoRAP-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die lässige Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRAP-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoRIFF-hq.m3u":{"Genre":["Indie","Rap"],"Name":"egoFM RIFF","Image":"http___streams_egofm_de_egoRIFF-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die rockige Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoRIFF-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSNOW-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SNOW","Image":"http___streams_egofm_de_egoSNOW-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die winterliche Seite von egoFM.","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSNOW-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSOUL-hq.m3u":{"Genre":["Indie","Soul"],"Name":"egoFM SOUL","Image":"http___streams_egofm_de_egoSOUL-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die gefühlvolle Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSOUL-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_egofm_de_egoSUN-hq.m3u":{"Genre":["Indie"],"Name":"egoFM SUN","Image":"http___streams_egofm_de_egoSUN-hq.webp","Homepage":"https://www.egofm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Die sommerliche Seite von egoFM","Codec":"MP3","Bitrate":128,"StreamUri":"http://streams.egofm.de/egoSUN-hq","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___streams_fluxfm_de_70er_mp3-320_audio_.m3u":{"Genre":["70's"],"Name":"FluxFM - 70s","Image":"http___streams_fluxfm_de_70er_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/70er/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["80's"],"Name":"FluxFM - 80s","Image":"http___streams_fluxfm_de_80er_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/80er/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u":{"Genre":["Electronic"],"Name":"FluxFM - Berlin Beach House Radio","Image":"http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/bbeachhouse/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.m3u":{"Genre":["Hip-Hop","Oldschool"],"Name":"FluxFM - BoomFM Classics","Image":"http___streams_fluxfm_de_boomfmclassics_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfmclassics/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_boomfm_mp3-320_audio_.m3u":{"Genre":["Hip-Hop"],"Name":"FluxFM - BoomFM","Image":"http___streams_fluxfm_de_boomfm_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/boomfm/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Dub","Reggae"],"Name":"FluxFM - Dub Radio","Image":"http___streams_fluxfm_de_dubradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/dubradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Funk"],"Name":"FluxFM - B-Funk","Image":"http___streams_fluxfm_de_event01_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/event01/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["2000's"],"Name":"FluxFM - 2000's Naughty","Image":"http___streams_fluxfm_de_flx_2000_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/flx_2000/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_forward_mp3-320_audio_.m3u":{"Genre":["Various","Releases"],"Name":"FluxFM - FluxForward","Image":"http___streams_fluxfm_de_forward_mp3-320_audio_.webp","Homepage":"https://www.fluxfm.de/flux-forward/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward.","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/forward/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Rock","Hard Rock"],"Name":"FluxFM - Hard Rock FM","Image":"http___streams_fluxfm_de_hardrock_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/hardrock/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Metal"],"Name":"FluxFM - MetalFM","Image":"http___streams_fluxfm_de_metalfm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/metalfm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Classical","Contemporary"],"Name":"FluxFM - neoFM","Image":"http___streams_fluxfm_de_neofm_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/neofm/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_passport_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - Passport Approved","Image":"http___streams_fluxfm_de_passport_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/passport/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Indie"],"Name":"FluxFM - Radio Alternative","Image":"http___streams_fluxfm_de_radioalt_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/radioalt/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Reggae"],"Name":"FluxFM - Rasta Radio","Image":"http___streams_fluxfm_de_rastaradio_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/rastaradio/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_studio56_mp3-320_audio_.m3u":{"Genre":["Various"],"Name":"FluxFM - JaegerMusic Radio","Image":"http___streams_fluxfm_de_studio56_mp3-320_audio_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/studio56/mp3-320/audio/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Jazz"],"Name":"FluxFM - XJAZZ","Image":"http___streams_fluxfm_de_xjazz_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/xjazz/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.m3u":{"Genre":["Chill Out","Ambient","Yoga"],"Name":"FluxFM - Yoga Sounds","Image":"http___streams_fluxfm_de_yogasounds_mp3-320_streams_fluxfm_de_.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":320,"StreamUri":"http://streams.fluxfm.de/yogasounds/mp3-320/streams.fluxfm.de/","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[320],"highestBitrate":320},"http___streams_norbert_de_8000_zappa_aac.m3u":{"Genre":["Progressive Rock","Rock"],"Name":"Zappa Stream Radio","Image":"http___streams_norbert_de_8000_zappa_aac.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":256,"StreamUri":"http://streams.norbert.de:8000/zappa.aac","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[256],"highestBitrate":256},"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 2000s Rock","Image":"http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/2000er/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! 80s Rock","Image":"http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-80srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio Bob! 90s Rock","Image":"http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-90srock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u":{"Genre":["Indie Rock"],"Name":"Radio BOB! Alternative","Image":"http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-alternative/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Christmas Rock","Image":"http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-christmas/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u":{"Genre":["Classic Rock"],"Name":"Radio BOB! Classic Rock","Image":"http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-classicrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u":{"Genre":["Hard Rock"],"Name":"Radio BOB! Hardrock","Image":"http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Wenn Rock, dann BOB! Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-hardrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Kuschelrock","Image":"http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-kuschelrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u":{"Genre":["Metal"],"Name":"Radio BOB! Metal","Image":"http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-metal/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB!","Image":"http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Deutschlands Rockradio","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-national/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u":{"Genre":["Punk"],"Name":"Radio BOB! Punk","Image":"http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-punk/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u":{"Genre":["Rockabilly"],"Name":"Radio BOB! Rockabilly","Image":"http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockabilly/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rock Hits","Image":"http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/bob-rockhits/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u":{"Genre":["Country"],"Name":"Radio BOB! Country","Image":"http___streams_radiobob_de_country_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/country/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_country_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/country/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_roadtrip_mp3-192_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Roadtrip","Image":"http___streams_radiobob_de_roadtrip_mp3-192_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"Hesse","Region":"Hesse","Languages":["German"],"Language":"German","Description":"BOBs Road Trip-Stream","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/roadtrip/mp3-192/","alternativeStreams":{"https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u":{"Genre":["Rock"],"Name":"Radio BOB! Rockparty","Image":"http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/rockparty/mp3-192/mediaplayer/","alternativeStreams":{"https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u":{"Genre":["Southern Rock"],"Name":"Radio BOB! Southern Rock","Image":"http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.webp","Homepage":"https://www.radiobob.de/","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://streams.radiobob.de/southernrock/mp3-192/mediaplayer","alternativeStreams":{"https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_":{"StreamUri":"https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/","Codec":"AAC","Bitrate":64}},"allCodecs":["AAC","MP3"],"allBitrates":[192,64],"highestBitrate":192},"http___stream_srg-ssr_ch_m_couleur3_mp3_128.m3u":{"Genre":["Eclectic"],"Name":"RTS - Couleur 3","Image":"http___stream_srg-ssr_ch_m_couleur3_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/couleur3/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_espace-2_mp3_128.m3u":{"Genre":["Classical"],"Name":"RTS - Espace 2","Image":"http___stream_srg-ssr_ch_m_espace-2_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/espace-2/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTS - La Premiere","Image":"http___stream_srg-ssr_ch_m_la-1ere_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/la-1ere/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u":{"Genre":["Indie"],"Name":"RTS - option musique","Image":"http___stream_srg-ssr_ch_m_option-musique_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/option-musique/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retedue_mp3_128.m3u":{"Genre":["Classical","Various","Culture"],"Name":"RSI - Rete Due","Image":"http___stream_srg-ssr_ch_m_retedue_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retedue/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_retetre_mp3_128.m3u":{"Genre":["Indie","Pop"],"Name":"RSI - Rete Tre","Image":"http___stream_srg-ssr_ch_m_retetre_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/retetre/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_reteuno_mp3_128.m3u":{"Genre":["News","Entertainment","News"],"Name":"RSI - Rete Uno","Image":"http___stream_srg-ssr_ch_m_reteuno_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Italian"],"Language":"Italian","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/reteuno/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rr_mp3_128.m3u":{"Genre":["Pop"],"Name":"RTR Radio","Image":"http___stream_srg-ssr_ch_m_rr_mp3_128.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["Romansh"],"Language":"Romansh","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.srg-ssr.ch/m/rr/mp3_128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.m3u":{"Genre":["Classical"],"Name":"Radio Swiss Classic","Image":"http___stream_srg-ssr_ch_m_rsc_de_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsc_de/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsj_aacp_96.m3u":{"Genre":["Jazz"],"Name":"Radio Swiss Jazz","Image":"http___stream_srg-ssr_ch_m_rsj_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsj/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_srg-ssr_ch_m_rsp_aacp_96.m3u":{"Genre":["Pop"],"Name":"Radio Swiss Pop","Image":"http___stream_srg-ssr_ch_m_rsp_aacp_96.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"AAC","Bitrate":96,"StreamUri":"http://stream.srg-ssr.ch/m/rsp/aacp_96","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[96],"highestBitrate":96},"http___stream_wfmt_com_main.m3u":{"Genre":["Classical"],"Name":"WFMT Chicago 98.7 - Classical","Image":"http___stream_wfmt_com_main.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wfmt.com/main","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___stream_wqxr_org_wqxr.m3u":{"Genre":["Classical"],"Name":"WQXR New York - Classical Music","Image":"http___stream_wqxr_org_wqxr.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://stream.wqxr.org/wqxr","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___strm112_1_fm_blues_mobile_mp3.m3u":{"Genre":["Blues"],"Name":"1.FM - Blues Radio","Image":"http___strm112_1_fm_blues_mobile_mp3.webp","Homepage":"","Country":"Switzerland","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://strm112.1.fm/blues_mobile_mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u":{"Genre":["Jazz"],"Name":"TSF Jazz","Image":"https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.webp","Homepage":"https://www.tsfjazz.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ».","Codec":"MP3","Bitrate":128,"StreamUri":"https://tsfjazz.ice.infomaniak.ch/tsfjazz-high.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___tunein_cdnstream1_com_3519_96_mp3.m3u":{"Genre":["News","Tv News","World News"],"Name":"CNN International","Image":"https___tunein_cdnstream1_com_3519_96_mp3.webp","Homepage":"https://www.cnn.com/","Country":"United States","State":"","Region":"","Languages":["English"],"Language":"English","Description":"TV Audio for CNN International","Codec":"MP3","Bitrate":96,"StreamUri":"https://tunein.cdnstream1.com/3519_96.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___subfm_radioca_st_Sub_FM.m3u":{"Genre":["Dub","Dubstep","Garage","Grime","Deep House","Techno","Juke","Jungle Trap"],"Name":"SUB.FM - Where Bass Matters","Image":"http___subfm_radioca_st_Sub_FM.webp","Homepage":"","Country":"United Kingdom","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"http://subfm.radioca.st/Sub.FM","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u":{"Genre":["News. MPB"],"Name":"Rádio UFMG Educativa 104.5 FM","Image":"https___ufmg_br_streamingradioaovivo_aovivo_mp3.webp","Homepage":"https://ufmg.br/comunicacao/radio-ufmg-educativa","Country":"Brazil","State":"Minas Gerais","Region":"Minas Gerais","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Rádio UFMG Educativa 104.5 FM","Codec":"MP3","Bitrate":32,"StreamUri":"https://ufmg.br/streamingradioaovivo/aovivo.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___uk2_streamingpulse_com_ssl_vcr1.m3u":{"Genre":["Classical"],"Name":"Venice Classic Radio","Image":"https___uk2_streamingpulse_com_ssl_vcr1.webp","Homepage":"https://www.veniceclassicradio.eu/","Country":"Italy","State":"","Region":"","Languages":["English"],"Language":"English","Description":"Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers.","Codec":"MP3","Bitrate":128,"StreamUri":"https://uk2.streamingpulse.com/ssl/vcr1","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___virtualtronics_net_proxy_zetafm_mp__stream.m3u":{"Genre":["Cumbia","Salsa","Merengue","Música Latina"],"Name":"Zeta FM - 95.1 FM","Image":"https___virtualtronics_net_proxy_zetafm_mp__stream.webp","Homepage":"https://www.zetafmcr.com/","Country":"Costa Rica","State":"","Region":"","Languages":["Spanish"],"Language":"Spanish","Description":"Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina.","Codec":"MP3","Bitrate":128,"StreamUri":"https://virtualtronics.net/proxy/zetafm?mp=/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u":{"Genre":["Classical","Jazz"],"Name":"WDR 3","Image":"https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr3/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"Das Kulturradio","Codec":"MP3","Bitrate":256,"StreamUri":"https://wdr-wdr3-live.icecastssl.wdr.de/wdr/wdr3/live/mp3/256/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256},"https___wgbh-live_streamguys1_com_classical-hi.m3u":{"Genre":["Classical"],"Name":"WCRB Boston 99.5 - Classical","Image":"https___wgbh-live_streamguys1_com_classical-hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":192,"StreamUri":"https://wgbh-live.streamguys1.com/classical-hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[192],"highestBitrate":192},"https___www_radioking_com_play_radio-doudou.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Doudou","Image":"https___www_radioking_com_play_radio-doudou.webp","Homepage":"https://www.radiodoudou.com","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radioking.com/play/radio-doudou","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_radiopommedapi_com_radio_mp3.m3u":{"Genre":["Kids","Lullabies"],"Name":"Radio Pomme d'Api - La Radio des Petits","Image":"https___www_radiopommedapi_com_radio_mp3.webp","Homepage":"https://www.radiopommedapi.com/","Country":"France","State":"","Region":"","Languages":["French"],"Language":"French","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.radiopommedapi.com/radio.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___www_ragya_com_prahar.m3u":{"Genre":["Indian Classical","Indian Instrumental"],"Name":"Ragya","Image":"https___www_ragya_com_prahar.webp","Homepage":"https://www.ragya.com/prahar","Country":"India","State":"Maharashtra","Region":"Maharashtra","Languages":["Hindi","Urdu","Sanskrit"],"Language":"Hindi, Urdu, Sanskrit","Description":"Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition.","Codec":"MP3","Bitrate":32,"StreamUri":"https://www.ragya.com/prahar","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___www_wwoz_org_listen_hi.m3u":{"Genre":["Jazz","Blues","Latin","Cajun","Funk"],"Name":"WWOZ New Orleans FM 90.7 - Various Artists","Image":"https___www_wwoz_org_listen_hi.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://www.wwoz.org/listen/hi","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"https___wz7_servidoresbrasil_com_8162_stream.m3u":{"Genre":["MPB","Flashback"],"Name":"Rádio Hits 98.9 FM (Campos/São João da Barra)","Image":"https___wz7_servidoresbrasil_com_8162_stream.webp","Homepage":"https://redehits.fm","Country":"Brazil","State":"Rio De Janeiro","Region":"Rio De Janeiro","Languages":["Brazilian Portuguese"],"Language":"Brazilian Portuguese","Description":"Dá gosto de ouvir!","Codec":"MP3","Bitrate":32,"StreamUri":"https://wz7.servidoresbrasil.com:8162/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[32],"highestBitrate":32},"https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u":{"Genre":["Rock","Pop"],"Name":"Radio Zet","Image":"https___zt03_cdn_eurozet_pl_zet-tun_mp3.webp","Homepage":"https://www.radiozet.pl","Country":"Poland","State":"","Region":"","Languages":["Polish"],"Language":"Polish","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"https://zt03.cdn.eurozet.pl/zet-tun.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdcb-ice_streamguys_org_80_wdcb128.m3u":{"Genre":["Blues","Jazz"],"Name":"WDCB Chicago FM 90.9 - Jazz & Blues","Image":"http___wdcb-ice_streamguys_org_80_wdcb128.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdcb-ice.streamguys.org:80/wdcb128","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.m3u":{"Genre":["Pop"],"Name":"WDR 1LIVE","Image":"http___wdr-1live-live_icecast_wdr_de_wdr_1live_live_mp3_128_stream_mp3.webp","Homepage":"","Country":"Germany","State":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u":{"Genre":["Spoken Word"],"Name":"WDR 5","Image":"http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.webp","Homepage":"https://www1.wdr.de/radio/wdr5/index.html","Country":"Germany","State":"","Region":"","Languages":["German"],"Language":"German","Description":"","Codec":"MP3","Bitrate":128,"StreamUri":"http://wdr-wdr5-live.icecast.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[128],"highestBitrate":128},"http___west-aac-64_streamthejazzgroove_com_stream.m3u":{"Genre":["Jazz"],"Name":"The Jazz Groove","Image":"http___west-aac-64_streamthejazzgroove_com_stream.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"AAC","Bitrate":64,"StreamUri":"http://west-aac-64.streamthejazzgroove.com/stream","alternativeStreams":{},"allCodecs":["AAC"],"allBitrates":[64],"highestBitrate":64},"http___wkcr_streamguys1_com_80_live.m3u":{"Genre":["Jazz","Classical"],"Name":"WKCR 89.9 FM","Image":"http___wkcr_streamguys1_com_80_live.webp","Homepage":"","Country":"United States","State":"","Languages":["English"],"Language":"English","Description":"","Codec":"MP3","Bitrate":96,"StreamUri":"http://wkcr.streamguys1.com:80/live","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[96],"highestBitrate":96},"http___yumicoradio_net_8000_stream.m3u":{"Genre":["Future Funk","City Pop","Anime Groove","Vaporwave","Nu Disco","Electronic"],"Name":"Yumi Co. Radio","Image":"http___yumicoradio_net_8000_stream.webp","Homepage":"http://yumicoradio.net","Country":"France","State":"","Region":"","Languages":["English"],"Language":"English","Description":"24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived.","Codec":"MP3","Bitrate":256,"StreamUri":"http://yumicoradio.net:8000/stream","alternativeStreams":{},"allCodecs":["MP3"],"allBitrates":[256],"highestBitrate":256}} \ No newline at end of file diff --git a/docs/db/index/webradios.min.json.gz b/docs/db/index/webradios.min.json.gz index e4ca9d29..07212380 100644 Binary files a/docs/db/index/webradios.min.json.gz and b/docs/db/index/webradios.min.json.gz differ diff --git a/docs/db/webradios/http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u b/docs/db/webradios/http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u index 19b615c8..b2eef94e 100644 --- a/docs/db/webradios/http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u +++ b/docs/db/webradios/http___18163_live_streamtheworld_com_SP_R3563475_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiobanglanet.com/ #COUNTRY:India #STATE: +#REGION: #LANGUAGE:Bengali #DESCRIPTION:A Radio Station for all Bengalis #CODEC:AAC diff --git a/docs/db/webradios/http___200_128_65_57_8000_live.m3u b/docs/db/webradios/http___200_128_65_57_8000_live.m3u index 0e48731c..74f98d0b 100644 --- a/docs/db/webradios/http___200_128_65_57_8000_live.m3u +++ b/docs/db/webradios/http___200_128_65_57_8000_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://radio.uesc.br/3.html #COUNTRY:Brazil #STATE:Bahia +#REGION:Bahia #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Inovação, conhecimento e música de qualidade! #CODEC:MPEG diff --git a/docs/db/webradios/http___200_129_35_230_8081_aovivo_ogg_m3u.m3u b/docs/db/webradios/http___200_129_35_230_8081_aovivo_ogg_m3u.m3u index e33607c6..7e20c855 100644 --- a/docs/db/webradios/http___200_129_35_230_8081_aovivo_ogg_m3u.m3u +++ b/docs/db/webradios/http___200_129_35_230_8081_aovivo_ogg_m3u.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.radiouniversitariafm.com.br/ #COUNTRY:Brazil #STATE:Ceará +#REGION:Ceará #LANGUAGE:Portuguese #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___200_136_219_172_8000_radioufscar96_mp3.m3u b/docs/db/webradios/http___200_136_219_172_8000_radioufscar96_mp3.m3u index e341b74a..df5d6580 100644 --- a/docs/db/webradios/http___200_136_219_172_8000_radioufscar96_mp3.m3u +++ b/docs/db/webradios/http___200_136_219_172_8000_radioufscar96_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://radio.ufscar.br/ #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio UFSCar - Escute Diferente #CODEC:MP3 diff --git a/docs/db/webradios/http___206_189_117_157_8000_stream.m3u b/docs/db/webradios/http___206_189_117_157_8000_stream.m3u index 7bfbeeed..077146b7 100644 --- a/docs/db/webradios/http___206_189_117_157_8000_stream.m3u +++ b/docs/db/webradios/http___206_189_117_157_8000_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://rinse.fm/ #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC+ diff --git a/docs/db/webradios/http___217_20_116_68_32032_stream.m3u b/docs/db/webradios/http___217_20_116_68_32032_stream.m3u index 568a72c4..8f923a7b 100644 --- a/docs/db/webradios/http___217_20_116_68_32032_stream.m3u +++ b/docs/db/webradios/http___217_20_116_68_32032_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://sohosfm.gr/ #COUNTRY:Greece #STATE: +#REGION: #LANGUAGE:Greek #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___54_173_171_80_8000_6forty.m3u b/docs/db/webradios/http___54_173_171_80_8000_6forty.m3u index 9f2fbd3c..6cbd0ce8 100644 --- a/docs/db/webradios/http___54_173_171_80_8000_6forty.m3u +++ b/docs/db/webradios/http___54_173_171_80_8000_6forty.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.6fortyradio.com/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:a home for interesting music #CODEC:MP3 diff --git a/docs/db/webradios/http___5_135_183_124_8073_stream.m3u b/docs/db/webradios/http___5_135_183_124_8073_stream.m3u index 06ebe4ab..841f1e4a 100644 --- a/docs/db/webradios/http___5_135_183_124_8073_stream.m3u +++ b/docs/db/webradios/http___5_135_183_124_8073_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.ondatorrenteradio.com #COUNTRY:Spain #STATE:Valencia +#REGION:Valencia #LANGUAGE:Spanish #DESCRIPTION:Somos la radio de todo el mundo #CODEC:MP3 diff --git a/docs/db/webradios/http___7878_go2stream_fr_8000_stream.m3u b/docs/db/webradios/http___7878_go2stream_fr_8000_stream.m3u index f7495633..732e0cee 100644 --- a/docs/db/webradios/http___7878_go2stream_fr_8000_stream.m3u +++ b/docs/db/webradios/http___7878_go2stream_fr_8000_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.radiobalagne.com/ #COUNTRY:France #STATE:Corse +#REGION:Corse #LANGUAGE:Corse, Francais #DESCRIPTION:A voce insulana #CODEC:MPEG diff --git a/docs/db/webradios/http___79_120_39_202_8002_mathrock.m3u b/docs/db/webradios/http___79_120_39_202_8002_mathrock.m3u index 4caabd83..b4106e9c 100644 --- a/docs/db/webradios/http___79_120_39_202_8002_mathrock.m3u +++ b/docs/db/webradios/http___79_120_39_202_8002_mathrock.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://radcap.ru/mathrock.html #COUNTRY:Russia #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/http___81_92_238_33_80.m3u b/docs/db/webradios/http___81_92_238_33_80.m3u index 68912f55..6986af77 100644 --- a/docs/db/webradios/http___81_92_238_33_80.m3u +++ b/docs/db/webradios/http___81_92_238_33_80.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:Luxembourg #STATE: +#REGION: #LANGUAGE:Luxembourgish #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___82_135_234_195_8000_goldfm_mp3.m3u b/docs/db/webradios/http___82_135_234_195_8000_goldfm_mp3.m3u index 76f00d65..0877a799 100644 --- a/docs/db/webradios/http___82_135_234_195_8000_goldfm_mp3.m3u +++ b/docs/db/webradios/http___82_135_234_195_8000_goldfm_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://goldfm.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u b/docs/db/webradios/http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u index 608216c7..b9456034 100644 --- a/docs/db/webradios/http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u +++ b/docs/db/webradios/http___82_135_234_195_8000_kelyje_kaunas_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radijaskelyje.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u b/docs/db/webradios/http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u index 6ffc9866..ae8a15c6 100644 --- a/docs/db/webradios/http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u +++ b/docs/db/webradios/http___82_135_234_195_8000_kelyje_klaipeda_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radijaskelyje.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u b/docs/db/webradios/http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u index e956dbef..a703b9f6 100644 --- a/docs/db/webradios/http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u +++ b/docs/db/webradios/http___91_121_159_124_8000_eko-des-garrigues-256k_ogg.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.ekodesgarrigues.com/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:OGG diff --git a/docs/db/webradios/http___91_218_212_67_8000_stream.m3u b/docs/db/webradios/http___91_218_212_67_8000_stream.m3u index c96d2045..e948cdb0 100644 --- a/docs/db/webradios/http___91_218_212_67_8000_stream.m3u +++ b/docs/db/webradios/http___91_218_212_67_8000_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://hromadske.radio/ #COUNTRY:Ukraine #STATE: +#REGION: #LANGUAGE:Ukrainian #DESCRIPTION:Ukraine Talk #CODEC:MP3 diff --git a/docs/db/webradios/http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u b/docs/db/webradios/http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u index 51bdabec..6287fac1 100644 --- a/docs/db/webradios/http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u +++ b/docs/db/webradios/http___a_files_bbci_co_uk_media_live_manifesto_audio_simulcast_hls_nonuk_sbr_low_ak_bbc_world_service_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds/play/live:bbc_world_service #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___antena1_newradio_it_stream_ext__mp3.m3u b/docs/db/webradios/http___antena1_newradio_it_stream_ext__mp3.m3u index 133570bf..5215f268 100644 --- a/docs/db/webradios/http___antena1_newradio_it_stream_ext__mp3.m3u +++ b/docs/db/webradios/http___antena1_newradio_it_stream_ext__mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://antena1.com.br/ #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:ANTENA1 - 94 7 FM #CODEC:AAC+ diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u index 922a88a8..d7f13bb2 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_1xtra_bbc_1xtra_isml_bbc_1xtra-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/1xtra #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u index 72893e43..33f227c7 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_6music_bbc_6music_isml_bbc_6music-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u index 89279abc..6451f2f0 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_asian_network_bbc_asian_network_isml_bbc_asian_network-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u index 8e1a886d..f1eed988 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_cymru_bbc_radio_cymru_isml_bbc_radio_cymru-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds/play/live:bbc_radio_cymru #COUNTRY:Wales #STATE: +#REGION: #LANGUAGE:Welsh #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u index d8add49c..596865ad 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_five_live_bbc_radio_five_live_isml_bbc_radio_five_live-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/programmes/b0070hx6 #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:The latest sport with coverage and debate, featuring commentaries on the big games and sporting events. #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u index 731b210e..b479d257 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_four_extra_bbc_radio_four_extra_isml_bbc_radio_four_extra-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/radio4extra #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u index e738d88f..2489d328 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourfm_bbc_radio_fourfm_isml_bbc_radio_fourfm-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u index 7ce3e892..cc797a17 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_fourlw_bbc_radio_fourlw_isml_bbc_radio_fourlw-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/radio4 #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Longwave broadcast of BBC Radio 4. #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u index 11ba839e..e8c1c2a7 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_bbc_radio_one_isml_bbc_radio_one-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u index f332f7b0..b906b223 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_dance_bbc_radio_one_dance_isml_bbc_radio_one_dance-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/radio1dance #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:A mix of classic, current and future dance music. #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u index 675dc717..c6fa0da9 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_one_relax_bbc_radio_one_relax_isml_bbc_radio_one_relax-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/radio1relax #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:A mix of relaxing and meditating music. #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u index 94563015..9b7ebcbc 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_three_bbc_radio_three_isml_bbc_radio_three-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u index 133cc193..3b4488b2 100644 --- a/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u +++ b/docs/db/webradios/http___as-hls-ww-live_akamaized_net_pool_904_live_ww_bbc_radio_two_bbc_radio_two_isml_bbc_radio_two-audio_3d96000_norewind_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bbc.co.uk/sounds #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/http___centova_rockhost_com_8001_stream.m3u b/docs/db/webradios/http___centova_rockhost_com_8001_stream.m3u index 33c5a3ff..b7656b6e 100644 --- a/docs/db/webradios/http___centova_rockhost_com_8001_stream.m3u +++ b/docs/db/webradios/http___centova_rockhost_com_8001_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.hollowearthradio.org #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Non-commercial DIY radio station for underrepresented music, sounds and perspectives #CODEC:MP3 diff --git a/docs/db/webradios/http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u b/docs/db/webradios/http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u index 43e7b7bb..8f6e99da 100644 --- a/docs/db/webradios/http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u +++ b/docs/db/webradios/http___crystalout_surfernetwork_com_8001_WEQX_MP3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.weqx.com/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:The real alternative #CODEC:MP3 diff --git a/docs/db/webradios/http___dancewave_online_dance_mp3.m3u b/docs/db/webradios/http___dancewave_online_dance_mp3.m3u index b7756706..4b4c3c6a 100644 --- a/docs/db/webradios/http___dancewave_online_dance_mp3.m3u +++ b/docs/db/webradios/http___dancewave_online_dance_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://dancewave.online #COUNTRY:Hungary #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:All Dance from 2000. Global dance radio station. The hottest Dance and Club Music from across the Planet! #CODEC:MP3 diff --git a/docs/db/webradios/http___eagle_streemlion_com_4040_stream_icy_http.m3u b/docs/db/webradios/http___eagle_streemlion_com_4040_stream_icy_http.m3u index 7a2abeb7..6fb8a4a0 100644 --- a/docs/db/webradios/http___eagle_streemlion_com_4040_stream_icy_http.m3u +++ b/docs/db/webradios/http___eagle_streemlion_com_4040_stream_icy_http.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://prog-frog.com/ #COUNTRY:Canada #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Progressive Rock Radio Worldwide #CODEC:MP3 diff --git a/docs/db/webradios/http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u b/docs/db/webradios/http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u index 5ec15095..94668b57 100644 --- a/docs/db/webradios/http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u +++ b/docs/db/webradios/http___edge-bauerall-01-gos2_sharp-stream_com_jazzhigh_aac_aw_0_1st_skey_1650998937.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://planetradio.co.uk/jazz-fm/ #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Listen in Colour #CODEC:AAC diff --git a/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u b/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u index 88c4d9ac..69bf6eda 100644 --- a/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u +++ b/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-metal-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lagrosseradio.com/metal/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Since September 2009, La Grosse Radio Métal has been offering an avalanche of big riffs, combining the experience of old-school legends with the audacity of new talent, all enriched by the must-have new releases of the moment. #CODEC:MP3 diff --git a/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u b/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u index 655df0df..a3ed4afc 100644 --- a/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u +++ b/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-reggae-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lagrosseradio.com/reggae/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Reggae, from its African origins to its Jamaican descendants. Oldies, dub, roots, live and dancehall from all the big names in the movement. #CODEC:MP3 diff --git a/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u b/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u index 7eb6bbbc..d4b32ad2 100644 --- a/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u +++ b/docs/db/webradios/http___hd_lagrosseradio_info_lagrosseradio-rock-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lagrosseradio.com/rock/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Since 2003, La Grosse Radio's historic channel has been broadcasting an original program rich in hits, classic rock, alternative rock, electro, progressive rock, hard rock, indie rock, self-produced! #CODEC:MP3 diff --git a/docs/db/webradios/http___hd_stream_frequence3_net_frequence3_flac.m3u b/docs/db/webradios/http___hd_stream_frequence3_net_frequence3_flac.m3u index 79fec119..add30875 100644 --- a/docs/db/webradios/http___hd_stream_frequence3_net_frequence3_flac.m3u +++ b/docs/db/webradios/http___hd_stream_frequence3_net_frequence3_flac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.frequence3.com/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:FLAC diff --git a/docs/db/webradios/http___hirschmilch_de_7000_electronic_mp3.m3u b/docs/db/webradios/http___hirschmilch_de_7000_electronic_mp3.m3u index e0b15660..877d1a23 100644 --- a/docs/db/webradios/http___hirschmilch_de_7000_electronic_mp3.m3u +++ b/docs/db/webradios/http___hirschmilch_de_7000_electronic_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://hirschmilch.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Since it's launch at the end of 2008 hirschmilch.de brings you free electronic music 24/7. #CODEC:MP3 diff --git a/docs/db/webradios/http___hirschmilch_de_7000_prog-house_mp3.m3u b/docs/db/webradios/http___hirschmilch_de_7000_prog-house_mp3.m3u index bbc8f836..1be4d108 100644 --- a/docs/db/webradios/http___hirschmilch_de_7000_prog-house_mp3.m3u +++ b/docs/db/webradios/http___hirschmilch_de_7000_prog-house_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://hirschmilch.de/prog-house #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Progressive House on https://hirschmilch.de #CODEC:MP3 diff --git a/docs/db/webradios/http___hirschmilch_de_7000_psytrance_mp3.m3u b/docs/db/webradios/http___hirschmilch_de_7000_psytrance_mp3.m3u index bbfb5139..47a05f2d 100644 --- a/docs/db/webradios/http___hirschmilch_de_7000_psytrance_mp3.m3u +++ b/docs/db/webradios/http___hirschmilch_de_7000_psytrance_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://hirschmilch.de/psytrance #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Psytrance on https://hirschmilch.de #CODEC:MP3 diff --git a/docs/db/webradios/http___hirschmilch_de_7000_techno_mp3.m3u b/docs/db/webradios/http___hirschmilch_de_7000_techno_mp3.m3u index 953cd931..303dab2d 100644 --- a/docs/db/webradios/http___hirschmilch_de_7000_techno_mp3.m3u +++ b/docs/db/webradios/http___hirschmilch_de_7000_techno_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://hirschmilch.de/techno #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Techno on https://hirschmilch.de #CODEC:MP3 diff --git a/docs/db/webradios/http___ice1_somafm_com_7soul-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_7soul-128-aac.m3u index 4dbb96ff..b35f92c1 100644 --- a/docs/db/webradios/http___ice1_somafm_com_7soul-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_7soul-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/7soul/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Vintage soul tracks from the original 45 RPM vinyl. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_beatblender-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_beatblender-128-aac.m3u index f217304e..3c61aed6 100644 --- a/docs/db/webradios/http___ice1_somafm_com_beatblender-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_beatblender-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/beatblender/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:A late night blend of deep-house and downtempo chill. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_bootliquor-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_bootliquor-128-aac.m3u index 585684bb..f14f92d7 100644 --- a/docs/db/webradios/http___ice1_somafm_com_bootliquor-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_bootliquor-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/bootliquor/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Americana Roots music for Cowhands, Cowpokes and Cowtippers. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_brfm-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_brfm-128-aac.m3u index e4ddd2ab..52436bbc 100644 --- a/docs/db/webradios/http___ice1_somafm_com_brfm-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_brfm-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/brfm/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:From the Playa to the world, for the annual Burning Man festival. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_cliqhop-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_cliqhop-128-aac.m3u index 7adf8b47..3802021a 100644 --- a/docs/db/webradios/http___ice1_somafm_com_cliqhop-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_cliqhop-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/cliqhop/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Blips'n'beeps backed mostly w/beats. Intelligent Dance Music. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_cliqhop-256-mp3.m3u b/docs/db/webradios/http___ice1_somafm_com_cliqhop-256-mp3.m3u index e8ebf1be..c1a34338 100644 --- a/docs/db/webradios/http___ice1_somafm_com_cliqhop-256-mp3.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_cliqhop-256-mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/cliqhop/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Blips'n'beeps backed mostly w/beats. Intelligent Dance Music. #CODEC:MP3 diff --git a/docs/db/webradios/http___ice1_somafm_com_covers-128-mp3.m3u b/docs/db/webradios/http___ice1_somafm_com_covers-128-mp3.m3u index 7c86ad63..4639ab5f 100644 --- a/docs/db/webradios/http___ice1_somafm_com_covers-128-mp3.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_covers-128-mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/covers/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Just covers. Songs you know by artists you don't. We've got you covered. #CODEC:MP3 diff --git a/docs/db/webradios/http___ice1_somafm_com_deepspaceone-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_deepspaceone-128-aac.m3u index c4e94f95..434f6d81 100644 --- a/docs/db/webradios/http___ice1_somafm_com_deepspaceone-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_deepspaceone-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/deepspaceone/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Deep ambient electronic, experimental and space music. For inner and outer space exploration. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_defcon-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_defcon-128-aac.m3u index 94373833..faffb08a 100644 --- a/docs/db/webradios/http___ice1_somafm_com_defcon-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_defcon-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/defcon/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Music for Hacking. The DEF CON Year-Round Channel. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_digitalis-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_digitalis-128-aac.m3u index 66bf1b53..84a42800 100644 --- a/docs/db/webradios/http___ice1_somafm_com_digitalis-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_digitalis-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/digitalis/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Digitally affected analog rock to calm the agitated heart. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_dronezone-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_dronezone-128-aac.m3u index 395c0667..dcdcb912 100644 --- a/docs/db/webradios/http___ice1_somafm_com_dronezone-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_dronezone-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/dronezone/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Served best chilled, safe with most medications. Atmospheric textures with minimal beats. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_dubstep-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_dubstep-128-aac.m3u index f477be70..ca58d804 100644 --- a/docs/db/webradios/http___ice1_somafm_com_dubstep-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_dubstep-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/dubstep/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Dubstep, Dub and Deep Bass. May damage speakers at high volume. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_fluid-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_fluid-128-aac.m3u index e63a1e9e..4843f23c 100644 --- a/docs/db/webradios/http___ice1_somafm_com_fluid-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_fluid-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/fluid/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Drown in the electronic sound of instrumental hiphop, future soul and liquid trap. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_folkfwd-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_folkfwd-128-aac.m3u index 0d105cd1..6b554a90 100644 --- a/docs/db/webradios/http___ice1_somafm_com_folkfwd-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_folkfwd-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/folkfwd/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Indie Folk, Alt-folk and the occasional folk classics. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_groovesalad-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_groovesalad-128-aac.m3u index 428b30bb..4cb341c8 100644 --- a/docs/db/webradios/http___ice1_somafm_com_groovesalad-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_groovesalad-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/groovesalad/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:A nicely chilled plate of ambient/downtempo beats and grooves. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_illstreet-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_illstreet-128-aac.m3u index dcaa8a75..1567629d 100644 --- a/docs/db/webradios/http___ice1_somafm_com_illstreet-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_illstreet-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/illstreet/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Classic bachelor pad, playful exotica and vintage music of tomorrow. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_indiepop-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_indiepop-128-aac.m3u index 2b1d8dbd..9f624326 100644 --- a/docs/db/webradios/http___ice1_somafm_com_indiepop-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_indiepop-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/indiepop/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:New and classic favorite indie pop tracks. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_live-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_live-128-aac.m3u index 76666b0a..74c69056 100644 --- a/docs/db/webradios/http___ice1_somafm_com_live-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_live-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/live/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Special Live Events and rebroadcasts of past live events. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_lush-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_lush-128-aac.m3u index e75c4f23..2df898d8 100644 --- a/docs/db/webradios/http___ice1_somafm_com_lush-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_lush-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/lush/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Sensuous and mellow female vocals, many with an electronic influence. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_metal-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_metal-128-aac.m3u index 2cb015a8..c2d82d03 100644 --- a/docs/db/webradios/http___ice1_somafm_com_metal-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_metal-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/metal/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:From black to doom, prog to sludge, thrash to post, stoner to crossover, punk to industrial. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_missioncontrol-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_missioncontrol-128-aac.m3u index ac7faf9e..5c258986 100644 --- a/docs/db/webradios/http___ice1_somafm_com_missioncontrol-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_missioncontrol-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/missioncontrol/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Celebrating NASA and Space Explorers everywhere. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_poptron-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_poptron-128-aac.m3u index 54a61b29..9fe7b66d 100644 --- a/docs/db/webradios/http___ice1_somafm_com_poptron-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_poptron-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/poptron/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Electropop and indie dance rock with sparkle and pop. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_secretagent-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_secretagent-128-aac.m3u index 10bb098b..ee4f6c9c 100644 --- a/docs/db/webradios/http___ice1_somafm_com_secretagent-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_secretagent-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/secretagent/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too! #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_seventies-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_seventies-128-aac.m3u index 10b46f7a..abbb88b4 100644 --- a/docs/db/webradios/http___ice1_somafm_com_seventies-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_seventies-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/seventies/index.html #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Mellow album rock from the Seventies. Yacht not required. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_sf1033-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_sf1033-128-aac.m3u index 36910d8a..6bfe20dd 100644 --- a/docs/db/webradios/http___ice1_somafm_com_sf1033-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_sf1033-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/sf1033/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Ambient music mixed with the sounds of San Francisco public safety radio traffic. #CODEC:AAC diff --git a/docs/db/webradios/http___ice1_somafm_com_sonicuniverse-128-aac.m3u b/docs/db/webradios/http___ice1_somafm_com_sonicuniverse-128-aac.m3u index 96497edc..2557be24 100644 --- a/docs/db/webradios/http___ice1_somafm_com_sonicuniverse-128-aac.m3u +++ b/docs/db/webradios/http___ice1_somafm_com_sonicuniverse-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/sonicuniverse/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Transcending the world of jazz with eclectic, avant-garde takes on tradition. #CODEC:AAC diff --git a/docs/db/webradios/http___ice2_somafm_com_gsclassic-128-aac.m3u b/docs/db/webradios/http___ice2_somafm_com_gsclassic-128-aac.m3u index 5b7c8fa2..e5fdc518 100644 --- a/docs/db/webradios/http___ice2_somafm_com_gsclassic-128-aac.m3u +++ b/docs/db/webradios/http___ice2_somafm_com_gsclassic-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/http___ice4_somafm_com_reggae-128-aac.m3u b/docs/db/webradios/http___ice4_somafm_com_reggae-128-aac.m3u index fc1053d0..b0a32b18 100644 --- a/docs/db/webradios/http___ice4_somafm_com_reggae-128-aac.m3u +++ b/docs/db/webradios/http___ice4_somafm_com_reggae-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/reggae/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Drawing from his extensive vinyl, CD and digital collection, Dion plays some very rare tracks along with the classics. #CODEC:AAC diff --git a/docs/db/webradios/http___ice_bassdrive_net_80_stream.m3u b/docs/db/webradios/http___ice_bassdrive_net_80_stream.m3u index 52e27edf..74b4114b 100644 --- a/docs/db/webradios/http___ice_bassdrive_net_80_stream.m3u +++ b/docs/db/webradios/http___ice_bassdrive_net_80_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bassdrive.com/ #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:24/7 drum&bass radio station featuring live shows with guest DJs, as well as broadcasts from venues all over the world representing the best of drum&bass and jungle music from around the globe. #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u b/docs/db/webradios/http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u index b670411d..798241a2 100644 --- a/docs/db/webradios/http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u +++ b/docs/db/webradios/http___icecast_centaury_cl_7570_SuperStereoHiRes1.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.hiresaudio.online/superstereo-1/ #COUNTRY:Chile #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:YACHT ROCK – ‘THE STATION FOR THE AUDIOPHILE’ #CODEC:OGG diff --git a/docs/db/webradios/http___icecast_err_ee_80_raadio4korge_mp3.m3u b/docs/db/webradios/http___icecast_err_ee_80_raadio4korge_mp3.m3u index 8f8c2ce3..83238119 100644 --- a/docs/db/webradios/http___icecast_err_ee_80_raadio4korge_mp3.m3u +++ b/docs/db/webradios/http___icecast_err_ee_80_raadio4korge_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://r4.err.ee/ #COUNTRY:Estonia #STATE:Tallinn +#REGION:Tallinn #LANGUAGE:Russian #DESCRIPTION:Raadio 4 is part of the Estonian National Broadcasting Corporation and has the largest audience among the Russian-language media channels in Estonia #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_unitedradio_it_Virgin_mp3.m3u b/docs/db/webradios/http___icecast_unitedradio_it_Virgin_mp3.m3u index b6ca841e..20f9aef6 100644 --- a/docs/db/webradios/http___icecast_unitedradio_it_Virgin_mp3.m3u +++ b/docs/db/webradios/http___icecast_unitedradio_it_Virgin_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.virginradio.it/ #COUNTRY:Italy #STATE: +#REGION: #LANGUAGE:Italian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_klara-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_klara-high_mp3.m3u index 340bb504..78073fc3 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_klara-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_klara-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://klara.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u index e593cb83..37beb204 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_klaracontinuo-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://klara.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_mnm-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_mnm-high_mp3.m3u index 7c3a2b73..a744322f 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_mnm-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_mnm-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://mnm.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u index 55c4598d..06ff6b13 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_mnm_hits-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://mnm.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u index 0e5e1261..683d3f9e 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_ra2vlb-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio2.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_radio1-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_radio1-high_mp3.m3u index 00ddd54e..cbff587f 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_radio1-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_radio1-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio1.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u index 3e4e13c1..cf4acee2 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_radio2_unwind-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio2.be/programmagids/radio-2-unwind #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_stubru-high_mp3.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_stubru-high_mp3.m3u index acacbdb4..efd57d39 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_stubru-high_mp3.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_stubru-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://stubru.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u b/docs/db/webradios/http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u index 2ce0b1f3..63ad9ebb 100644 --- a/docs/db/webradios/http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u +++ b/docs/db/webradios/http___icecast_vrtcdn_be_stubru_tijdloze_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://stubru.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/http___icy_unitedradio_it_VirginHardRock_mp3.m3u b/docs/db/webradios/http___icy_unitedradio_it_VirginHardRock_mp3.m3u index 30befbe3..356673a4 100644 --- a/docs/db/webradios/http___icy_unitedradio_it_VirginHardRock_mp3.m3u +++ b/docs/db/webradios/http___icy_unitedradio_it_VirginHardRock_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.virginradio.it/sezioni/1218/virgin-radio-hard-rock #COUNTRY:Italy #STATE: +#REGION: #LANGUAGE:Italian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___icy_unitedradio_it_VirginRockClassics_mp3.m3u b/docs/db/webradios/http___icy_unitedradio_it_VirginRockClassics_mp3.m3u index 0265f9f5..b07dde6a 100644 --- a/docs/db/webradios/http___icy_unitedradio_it_VirginRockClassics_mp3.m3u +++ b/docs/db/webradios/http___icy_unitedradio_it_VirginRockClassics_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.virginradio.it/sezioni/1219/virgin-radio-rock-classic #COUNTRY:Italy #STATE: +#REGION: #LANGUAGE:Italian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u b/docs/db/webradios/http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u index 34b98b6c..44721809 100644 --- a/docs/db/webradios/http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u +++ b/docs/db/webradios/http___kzradio_mediacast_co_il_kzradio_live_kzradio_icecast_audio.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://kzradio.net/ #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION:Independent Internet-radio based in Tel Aviv #CODEC:HE-AAC diff --git a/docs/db/webradios/http___live-aacplus-64_kexp_org_kexp64_aac.m3u b/docs/db/webradios/http___live-aacplus-64_kexp_org_kexp64_aac.m3u index ffed123c..f22fe718 100644 --- a/docs/db/webradios/http___live-aacplus-64_kexp_org_kexp64_aac.m3u +++ b/docs/db/webradios/http___live-aacplus-64_kexp_org_kexp64_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kexp.org/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/http___live-icy_gss_dr_dk_8000_A_A22H_mp3.m3u b/docs/db/webradios/http___live-icy_gss_dr_dk_8000_A_A22H_mp3.m3u index bb4a83f0..a7032a3d 100644 --- a/docs/db/webradios/http___live-icy_gss_dr_dk_8000_A_A22H_mp3.m3u +++ b/docs/db/webradios/http___live-icy_gss_dr_dk_8000_A_A22H_mp3.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.dr.dk/lyd/p8jazz #COUNTRY:Denmark #STATE: -#LANGUAGE:Danish +#REGION: #CODEC:MP3 #BITRATE:128 http://live-icy.gss.dr.dk:8000/A/A22H.mp3 diff --git a/docs/db/webradios/http___live-mp3-128_kexp_org_.m3u b/docs/db/webradios/http___live-mp3-128_kexp_org_.m3u index 797c3e31..9e78007b 100644 --- a/docs/db/webradios/http___live-mp3-128_kexp_org_.m3u +++ b/docs/db/webradios/http___live-mp3-128_kexp_org_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.kexp.org/ #COUNTRY:United States #STATE: -#LANGUAGE:English +#REGION: #CODEC:MP3 #BITRATE:128 http://live-mp3-128.kexp.org/ diff --git a/docs/db/webradios/http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u b/docs/db/webradios/http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u index 71016a0a..92ddd90a 100644 --- a/docs/db/webradios/http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u +++ b/docs/db/webradios/http___live-radio01_mediahubaustralia_com_UNEW_mp3_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.abc.net.au/triplejunearthed/ #COUNTRY:Australia #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___live_radioec_com_ua_8000_kiev.m3u b/docs/db/webradios/http___live_radioec_com_ua_8000_kiev.m3u index de8c3d56..830750b5 100644 --- a/docs/db/webradios/http___live_radioec_com_ua_8000_kiev.m3u +++ b/docs/db/webradios/http___live_radioec_com_ua_8000_kiev.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://krainafm.com.ua/ #COUNTRY:Ukraine #STATE: +#REGION: #LANGUAGE:Ukrainian #DESCRIPTION:Ukraine's first all-Ukrainian-language radio #CODEC:MP3 diff --git a/docs/db/webradios/http___live_radioton_de_rt-live-bw.m3u b/docs/db/webradios/http___live_radioton_de_rt-live-bw.m3u index f3f66600..a2224676 100644 --- a/docs/db/webradios/http___live_radioton_de_rt-live-bw.m3u +++ b/docs/db/webradios/http___live_radioton_de_rt-live-bw.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radioton.de/ #COUNTRY:Germany #STATE:Baden-Württemberg +#REGION:Baden-Württemberg #LANGUAGE:German #DESCRIPTION:Lang leben die 80er. #CODEC:MP3 diff --git a/docs/db/webradios/http___mainstream_amazingradios_com_8000_blues128.m3u b/docs/db/webradios/http___mainstream_amazingradios_com_8000_blues128.m3u index 33ff75d4..8ef2bf3d 100644 --- a/docs/db/webradios/http___mainstream_amazingradios_com_8000_blues128.m3u +++ b/docs/db/webradios/http___mainstream_amazingradios_com_8000_blues128.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://amazingradios.com/ #COUNTRY:USA #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___media-ice_musicradio_com_ClassicFMMP3.m3u b/docs/db/webradios/http___media-ice_musicradio_com_ClassicFMMP3.m3u index 61ee24f7..ce180a11 100644 --- a/docs/db/webradios/http___media-ice_musicradio_com_ClassicFMMP3.m3u +++ b/docs/db/webradios/http___media-ice_musicradio_com_ClassicFMMP3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.classicfm.com/ #COUNTRY:United Kingdom #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___media_radio-libertaire_org_8080_radiolib_mp3.m3u b/docs/db/webradios/http___media_radio-libertaire_org_8080_radiolib_mp3.m3u index 0003f7ca..9535fc29 100644 --- a/docs/db/webradios/http___media_radio-libertaire_org_8080_radiolib_mp3.m3u +++ b/docs/db/webradios/http___media_radio-libertaire_org_8080_radiolib_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radio-libertaire.net/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u b/docs/db/webradios/http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u index e6929efb..eb1a46db 100644 --- a/docs/db/webradios/http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u +++ b/docs/db/webradios/http___motherearth_streamserver24_com_18910_motherearth_klassik.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://motherearthradio.de/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:HiRes Radio #CODEC:OGG diff --git a/docs/db/webradios/http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u b/docs/db/webradios/http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u index 48075f40..b6c908db 100644 --- a/docs/db/webradios/http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u +++ b/docs/db/webradios/http___mp3_harmonyfm_de_harmonyfm_livestream_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.harmonyfm.de #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Alles 80er! #CODEC:AAC diff --git a/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u b/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u index 64f9a80d..ff81d8f9 100644 --- a/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u +++ b/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.planetradio.de #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_mp3.m3u b/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_mp3.m3u index 66a0d191..a1e8b258 100644 --- a/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_mp3.m3u +++ b/docs/db/webradios/http___mp3_planetradio_de_planetradio_hqlivestream_mp3.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.planetradio.de #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:MP3 #BITRATE:128 http://mp3.planetradio.de/planetradio/hqlivestream.mp3 diff --git a/docs/db/webradios/http___mp3_planetradio_de_planetradio_livestream_aac.m3u b/docs/db/webradios/http___mp3_planetradio_de_planetradio_livestream_aac.m3u index 58527946..b7ee968b 100644 --- a/docs/db/webradios/http___mp3_planetradio_de_planetradio_livestream_aac.m3u +++ b/docs/db/webradios/http___mp3_planetradio_de_planetradio_livestream_aac.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.planetradio.de #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 http://mp3.planetradio.de/planetradio/livestream.aac diff --git a/docs/db/webradios/http___mscp2_live-streams_nl_8100_flac_flac.m3u b/docs/db/webradios/http___mscp2_live-streams_nl_8100_flac_flac.m3u index df13ef4d..f371bc89 100644 --- a/docs/db/webradios/http___mscp2_live-streams_nl_8100_flac_flac.m3u +++ b/docs/db/webradios/http___mscp2_live-streams_nl_8100_flac_flac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.hionline.eu #COUNTRY:Netherlands #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:FLAC diff --git a/docs/db/webradios/http___ninarfm_grtvstream_com_8896__.m3u b/docs/db/webradios/http___ninarfm_grtvstream_com_8896__.m3u index c5ede7b3..e0f51537 100644 --- a/docs/db/webradios/http___ninarfm_grtvstream_com_8896__.m3u +++ b/docs/db/webradios/http___ninarfm_grtvstream_com_8896__.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://ninarfm.com/ #COUNTRY:Syria #STATE: +#REGION: #LANGUAGE:Arabic #DESCRIPTION:Ninar FM نينار اف ام #CODEC:MP3 diff --git a/docs/db/webradios/http___npr-ice_streamguys1_com_live_mp3.m3u b/docs/db/webradios/http___npr-ice_streamguys1_com_live_mp3.m3u index 8909f2df..b080cb58 100644 --- a/docs/db/webradios/http___npr-ice_streamguys1_com_live_mp3.m3u +++ b/docs/db/webradios/http___npr-ice_streamguys1_com_live_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.npr.org/about-npr/472557877/npr-program-stream #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:NPR Program Stream #CODEC:MP3 diff --git a/docs/db/webradios/http___okradio_rtvhd_net_8130__.m3u b/docs/db/webradios/http___okradio_rtvhd_net_8130__.m3u index 42ca311c..4d6047c6 100644 --- a/docs/db/webradios/http___okradio_rtvhd_net_8130__.m3u +++ b/docs/db/webradios/http___okradio_rtvhd_net_8130__.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.voxradio.fm/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Esta es una de las estaciones de radio más juveniles que existen con un enfoque especial en la música. #CODEC:AAC diff --git a/docs/db/webradios/http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u b/docs/db/webradios/http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u index 828438c0..228f5326 100644 --- a/docs/db/webradios/http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u +++ b/docs/db/webradios/http___playerservices_streamtheworld_com_api_livestream-redirect_RADIOCIDADEAAC_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiocidade.fm/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Cidade - Rio de Janeiro #CODEC:AAC+ diff --git a/docs/db/webradios/http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u b/docs/db/webradios/http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u index 3619c440..6686a833 100644 --- a/docs/db/webradios/http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u +++ b/docs/db/webradios/http___progressive-audio_lwc_vrtcdn_be_content_fixed_11_11niws-snip_hi_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.vrt.be/vrtnws/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___radio80k_out_airtime_pro_8000_radio80k_a.m3u b/docs/db/webradios/http___radio80k_out_airtime_pro_8000_radio80k_a.m3u index 1eaef7dc..2c5625b1 100644 --- a/docs/db/webradios/http___radio80k_out_airtime_pro_8000_radio80k_a.m3u +++ b/docs/db/webradios/http___radio80k_out_airtime_pro_8000_radio80k_a.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.radio80k.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:English, German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___radio_comunica_ufrn_br_8000_live_aac.m3u b/docs/db/webradios/http___radio_comunica_ufrn_br_8000_live_aac.m3u index 9f1fd852..03b0ce0a 100644 --- a/docs/db/webradios/http___radio_comunica_ufrn_br_8000_live_aac.m3u +++ b/docs/db/webradios/http___radio_comunica_ufrn_br_8000_live_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.instagram.com/radiouniversitarianatal/ #COUNTRY:Brazil #STATE:Rio Grande Do Norte +#REGION:Rio Grande Do Norte #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Transforma Natal, transforma você! #CODEC:AAC diff --git a/docs/db/webradios/http___radio_m-1_fm_lietus_mp3.m3u b/docs/db/webradios/http___radio_m-1_fm_lietus_mp3.m3u index 07f654bf..dc4b778e 100644 --- a/docs/db/webradios/http___radio_m-1_fm_lietus_mp3.m3u +++ b/docs/db/webradios/http___radio_m-1_fm_lietus_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lietus.fm #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___radio_plaza_one_mp3.m3u b/docs/db/webradios/http___radio_plaza_one_mp3.m3u index 5aee93ae..dd18bf50 100644 --- a/docs/db/webradios/http___radio_plaza_one_mp3.m3u +++ b/docs/db/webradios/http___radio_plaza_one_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://plaza.one/ #COUNTRY:Japan #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Nightwave Plaza is an advertisement-free 24/7 radio station dedicated to Vaporwave; bringing aesthetics and dream-like music to your device wherever you have Internet connectivity. #CODEC:MP3 diff --git a/docs/db/webradios/http___radioaovivo_senado_gov_br_canal2_mp3.m3u b/docs/db/webradios/http___radioaovivo_senado_gov_br_canal2_mp3.m3u index f66bca50..372c9adb 100644 --- a/docs/db/webradios/http___radioaovivo_senado_gov_br_canal2_mp3.m3u +++ b/docs/db/webradios/http___radioaovivo_senado_gov_br_canal2_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www12.senado.leg.br/radio #COUNTRY:Brazil #STATE:Brasilia +#REGION:Brasilia #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Senado Canal 2 #CODEC:MP3 diff --git a/docs/db/webradios/http___radioaovivo_senado_leg_br_fm_mp3.m3u b/docs/db/webradios/http___radioaovivo_senado_leg_br_fm_mp3.m3u index fb10b33d..38c0f251 100644 --- a/docs/db/webradios/http___radioaovivo_senado_leg_br_fm_mp3.m3u +++ b/docs/db/webradios/http___radioaovivo_senado_leg_br_fm_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www12.senado.leg.br/radio #COUNTRY:Brazil #STATE:Brasilia +#REGION:Brasilia #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Senado 91.7 FM #CODEC:MP3 diff --git a/docs/db/webradios/http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u b/docs/db/webradios/http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u index 0e0c9aba..5e937892 100644 --- a/docs/db/webradios/http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u +++ b/docs/db/webradios/http___radioaovivo_ufrgs_br_8000_stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.ufrgs.br/radio/ #COUNTRY:Brazil #STATE:Rio Grande Do Sul +#REGION:Rio Grande Do Sul #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio da Universidade 1080 AM (UFRGS) #CODEC:MP3 diff --git a/docs/db/webradios/http___retro_dancewave_online_retrodance_mp3.m3u b/docs/db/webradios/http___retro_dancewave_online_retrodance_mp3.m3u index de17a38b..0ec12ace 100644 --- a/docs/db/webradios/http___retro_dancewave_online_retrodance_mp3.m3u +++ b/docs/db/webradios/http___retro_dancewave_online_retrodance_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://dancewave.online #COUNTRY:Hungary #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:All about Dance before 2000! #CODEC:MP3 diff --git a/docs/db/webradios/http___rootslegacy_fr_8080__listen_mp3.m3u b/docs/db/webradios/http___rootslegacy_fr_8080__listen_mp3.m3u index 024eb102..003c5f52 100644 --- a/docs/db/webradios/http___rootslegacy_fr_8080__listen_mp3.m3u +++ b/docs/db/webradios/http___rootslegacy_fr_8080__listen_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rootslegacy.fr/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___rtvhd_net_9942__.m3u b/docs/db/webradios/http___rtvhd_net_9942__.m3u index c19215b7..98282f0f 100644 --- a/docs/db/webradios/http___rtvhd_net_9942__.m3u +++ b/docs/db/webradios/http___rtvhd_net_9942__.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.iqmedios.com/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:IQ La Radio Inteligente 93.9fm es un medio de comunicación radial que brinda a los oyentes contenido de calidad como reportes de tránsito, salud, finanzas, tecnología y más. #CODEC:AAC diff --git a/docs/db/webradios/http___s1_slotex_pl_7430_stream.m3u b/docs/db/webradios/http___s1_slotex_pl_7430_stream.m3u index c0131af5..5be8d3c9 100644 --- a/docs/db/webradios/http___s1_slotex_pl_7430_stream.m3u +++ b/docs/db/webradios/http___s1_slotex_pl_7430_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://mittendrin.pl/de/radio-altneu.html #COUNTRY:Poland #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___sk_cri_cn_915_m3u8.m3u b/docs/db/webradios/http___sk_cri_cn_915_m3u8.m3u index 9d90228f..bcbe9eac 100644 --- a/docs/db/webradios/http___sk_cri_cn_915_m3u8.m3u +++ b/docs/db/webradios/http___sk_cri_cn_915_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://ezfm.cri.cn/live #COUNTRY:China #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:CRI Radio EZFM 91.5 FM #CODEC:ADTS diff --git a/docs/db/webradios/http___stream-33_zeno_fm_nkdugu37twzuv.m3u b/docs/db/webradios/http___stream-33_zeno_fm_nkdugu37twzuv.m3u index 2e6c7073..22f52be1 100644 --- a/docs/db/webradios/http___stream-33_zeno_fm_nkdugu37twzuv.m3u +++ b/docs/db/webradios/http___stream-33_zeno_fm_nkdugu37twzuv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://tamilradios.net/raja-radio-hd/ #COUNTRY:India #STATE:Tamilnadu +#REGION:Tamilnadu #LANGUAGE:Tamil #DESCRIPTION:Raja Radio HD, ready to experience 1,000+ high-quality songs through the various genre of Ilayaraja. Innovative HD Epic quality of Ilayaraja Hits 24/7 non-stop #CODEC:MP3 diff --git a/docs/db/webradios/http___stream-icy_bauermedia_pt_m80_mp3.m3u b/docs/db/webradios/http___stream-icy_bauermedia_pt_m80_mp3.m3u index d573125d..0c87e522 100644 --- a/docs/db/webradios/http___stream-icy_bauermedia_pt_m80_mp3.m3u +++ b/docs/db/webradios/http___stream-icy_bauermedia_pt_m80_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://m80.pt/ #COUNTRY:Portugal #STATE:Lisbon +#REGION:Lisbon #LANGUAGE:Portuguese #DESCRIPTION:Se a sua vida tem uma música, ela passa na M80 #CODEC:MP3 diff --git a/docs/db/webradios/http___stream2_radioquantica_com_8000_stream.m3u b/docs/db/webradios/http___stream2_radioquantica_com_8000_stream.m3u index 0f4dc32c..ef4c0aeb 100644 --- a/docs/db/webradios/http___stream2_radioquantica_com_8000_stream.m3u +++ b/docs/db/webradios/http___stream2_radioquantica_com_8000_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radioquantica.com/ #COUNTRY:Portugal #STATE: +#REGION: #LANGUAGE:English, Portuguese #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_klassikradio_de_chor_mp3-192.m3u b/docs/db/webradios/http___stream_klassikradio_de_chor_mp3-192.m3u index 82f1209d..73cd4070 100644 --- a/docs/db/webradios/http___stream_klassikradio_de_chor_mp3-192.m3u +++ b/docs/db/webradios/http___stream_klassikradio_de_chor_mp3-192.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.klassikradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_klassikradio_de_dreams_mp3-192.m3u b/docs/db/webradios/http___stream_klassikradio_de_dreams_mp3-192.m3u index ae6eaabc..b03fcfc7 100644 --- a/docs/db/webradios/http___stream_klassikradio_de_dreams_mp3-192.m3u +++ b/docs/db/webradios/http___stream_klassikradio_de_dreams_mp3-192.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.klassikradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_klassikradio_de_relax_mp3-192.m3u b/docs/db/webradios/http___stream_klassikradio_de_relax_mp3-192.m3u index 2c300453..a0d2d333 100644 --- a/docs/db/webradios/http___stream_klassikradio_de_relax_mp3-192.m3u +++ b/docs/db/webradios/http___stream_klassikradio_de_relax_mp3-192.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.klassikradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_alternativeworld.m3u b/docs/db/webradios/http___stream_laut_fm_alternativeworld.m3u index 44059373..54bdc472 100644 --- a/docs/db/webradios/http___stream_laut_fm_alternativeworld.m3u +++ b/docs/db/webradios/http___stream_laut_fm_alternativeworld.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://laut.fm/alternativeworld #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:The Best in Alternative, Indie, Punk, New Wave and Britpop - from the classics of the 70's to the latest inside tips. #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_anderswelt.m3u b/docs/db/webradios/http___stream_laut_fm_anderswelt.m3u index 6c49a5d9..6e63f922 100644 --- a/docs/db/webradios/http___stream_laut_fm_anderswelt.m3u +++ b/docs/db/webradios/http___stream_laut_fm_anderswelt.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://laut.fm/anderswelt #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Stuttgarter Wave-Klänge wie zu den guten alten Zeiten... #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_deutschrap.m3u b/docs/db/webradios/http___stream_laut_fm_deutschrap.m3u index f0791bb7..3abad450 100644 --- a/docs/db/webradios/http___stream_laut_fm_deutschrap.m3u +++ b/docs/db/webradios/http___stream_laut_fm_deutschrap.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:www.laut.fm/deutschrap #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Schluss mit Deutschrap Einheitsbrei! #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_kakerlakenradio.m3u b/docs/db/webradios/http___stream_laut_fm_kakerlakenradio.m3u index afa36b42..c268c850 100644 --- a/docs/db/webradios/http___stream_laut_fm_kakerlakenradio.m3u +++ b/docs/db/webradios/http___stream_laut_fm_kakerlakenradio.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://indie-rock-radio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: Der Kakerlakeneffekt: Wenn alle bei einem Song fluchtartig die Tanzfläche verlassen. #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_nightshift_alternative.m3u b/docs/db/webradios/http___stream_laut_fm_nightshift_alternative.m3u index 16eddb7d..437fab32 100644 --- a/docs/db/webradios/http___stream_laut_fm_nightshift_alternative.m3u +++ b/docs/db/webradios/http___stream_laut_fm_nightshift_alternative.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://nightshift-alternativ.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Wir spielen Musik aus den Richtungen Gothic, Mittelalter, Nu-Metal, 80ies, 90ies, Industrial, Metal, Metalcore, NDH uvm. #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_nonpop.m3u b/docs/db/webradios/http___stream_laut_fm_nonpop.m3u index 323d6aee..aeb14ef0 100644 --- a/docs/db/webradios/http___stream_laut_fm_nonpop.m3u +++ b/docs/db/webradios/http___stream_laut_fm_nonpop.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://laut.fm/nonpop #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Der Name ist Programm. Alles außer Massenware. #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_laut_fm_scifi.m3u b/docs/db/webradios/http___stream_laut_fm_scifi.m3u index 60f5e9c7..5379752e 100644 --- a/docs/db/webradios/http___stream_laut_fm_scifi.m3u +++ b/docs/db/webradios/http___stream_laut_fm_scifi.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://laut.fm/scifi #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Ein Online Radio für den Bereich Science Fiction. #CODEC:MP3 diff --git a/docs/db/webradios/http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u b/docs/db/webradios/http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u index 5f0fae3b..026334b2 100644 --- a/docs/db/webradios/http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u +++ b/docs/db/webradios/http___stream_srg-ssr_ch_m_option-musique_mp3_128.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:Switzerland #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u b/docs/db/webradios/http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u index 8f922323..50964b1a 100644 --- a/docs/db/webradios/http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u +++ b/docs/db/webradios/http___streamer_radio_co_s0635c8b0d_listen_fbclid_IwAR16t5mC5UFT9Fp8pbWe0dvYn9VEI3FYJTogE5AJtUF3G1dJi38lwLgD9as.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://drdicksdubshack.com/ #COUNTRY:Bermuda #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Bermuda-based online radio station playing all species of dub, downtempo and bass music #CODEC:MP3 diff --git a/docs/db/webradios/http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u b/docs/db/webradios/http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u index 49514dee..c03cda9f 100644 --- a/docs/db/webradios/http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u +++ b/docs/db/webradios/http___streaming_apolloradio_de_apolloradio_simulcast_192k_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.apolloradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Bleiben sie entspannt #CODEC:MP3 diff --git a/docs/db/webradios/http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u b/docs/db/webradios/http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u index 76d5cd40..df6141b9 100644 --- a/docs/db/webradios/http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u +++ b/docs/db/webradios/http___streaming_cjec_leclerccommunication_ca_8000_cjec_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://quebec.wknd.fm/ #COUNTRY:Canada #STATE:Québec +#REGION:Québec #LANGUAGE:Français #DESCRIPTION:WKND FM 91,9 #CODEC:MP3 diff --git a/docs/db/webradios/http___streaming_livespanel_com_20000_live.m3u b/docs/db/webradios/http___streaming_livespanel_com_20000_live.m3u index c7909f03..c0e5aaf4 100644 --- a/docs/db/webradios/http___streaming_livespanel_com_20000_live.m3u +++ b/docs/db/webradios/http___streaming_livespanel_com_20000_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.fmodia.com.br/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:FM O Dia #CODEC:MP3 diff --git a/docs/db/webradios/http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u b/docs/db/webradios/http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u index eb04568a..e9c44e21 100644 --- a/docs/db/webradios/http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u +++ b/docs/db/webradios/http___streaming_swisstxt_ch_m_drs1_mp3_128.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:Switzerland #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u b/docs/db/webradios/http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u index ea1a9332..04fbd8f9 100644 --- a/docs/db/webradios/http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u +++ b/docs/db/webradios/http___streams_80s80s_de_web_mp3-192_streams_80s80s_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.80s80s.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoCHILLOUT-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoCHILLOUT-hq.m3u index ad0d3319..c8a531a1 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoCHILLOUT-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoCHILLOUT-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die beruhigende Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFLASH-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFLASH-hq.m3u index ed3cfc35..f6f3055c 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFLASH-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFLASH-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die elektronische Seite von egoFM #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFM-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFM-hq.m3u index 096f60ee..2e1a1f36 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFM-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFM-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Das Radio für Musikentdecker #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMBW-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMBW-hq.m3u index 1e6a8210..01dac275 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMBW-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMBW-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Das Radio für Musikentdecker #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMHallOfFame-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMHallOfFame-hq.m3u index 23c577a0..102f4fce 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMHallOfFame-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMHallOfFame-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die legendäre Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMKavka-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMKavka-hq.m3u index fdec7f94..db8499c6 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMKavka-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMKavka-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die kavkaeske Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMNRW-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMNRW-hq.m3u index 4ebb8e2e..b2a14371 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMNRW-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMNRW-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Das Radio für Musikentdecker #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMRNB-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMRNB-hq.m3u index 01c5d2a2..bc467f31 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMRNB-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMRNB-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die smoothe Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMSEEWALD-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMSEEWALD-hq.m3u index 08df8ac7..aee08a4f 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMSEEWALD-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMSEEWALD-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die Vermessung der Musik. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoFMSoundtrack-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoFMSoundtrack-hq.m3u index 95083929..95647675 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoFMSoundtrack-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoFMSoundtrack-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die cineastische Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoJAZZ-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoJAZZ-hq.m3u index 1e6d6d06..8a9cf86c 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoJAZZ-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoJAZZ-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die jazzige Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoPURE-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoPURE-hq.m3u index ee0ffbfd..e0e05788 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoPURE-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoPURE-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Ohne Punkt und Komma. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoRAP-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoRAP-hq.m3u index 945e553a..329fe6d6 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoRAP-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoRAP-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die lässige Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoRIFF-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoRIFF-hq.m3u index 64f798bd..e717d792 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoRIFF-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoRIFF-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die rockige Seite von egoFM #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoSNOW-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoSNOW-hq.m3u index 17e4fe93..82ed9390 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoSNOW-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoSNOW-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die winterliche Seite von egoFM. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoSOUL-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoSOUL-hq.m3u index 1ef061bb..1f420335 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoSOUL-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoSOUL-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die gefühlvolle Seite von egoFM #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_egofm_de_egoSUN-hq.m3u b/docs/db/webradios/http___streams_egofm_de_egoSUN-hq.m3u index 8090bb7c..a5198164 100644 --- a/docs/db/webradios/http___streams_egofm_de_egoSUN-hq.m3u +++ b/docs/db/webradios/http___streams_egofm_de_egoSUN-hq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.egofm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Die sommerliche Seite von egoFM #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_fluxfm_de_70er_mp3-320_audio_.m3u b/docs/db/webradios/http___streams_fluxfm_de_70er_mp3-320_audio_.m3u index 4702133f..ebd877c7 100644 --- a/docs/db/webradios/http___streams_fluxfm_de_70er_mp3-320_audio_.m3u +++ b/docs/db/webradios/http___streams_fluxfm_de_70er_mp3-320_audio_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fluxfm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u b/docs/db/webradios/http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u index 6850d925..3e41a446 100644 --- a/docs/db/webradios/http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u +++ b/docs/db/webradios/http___streams_fluxfm_de_bbeachhouse_mp3-320_audio_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fluxfm.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_fluxfm_de_forward_mp3-320_audio_.m3u b/docs/db/webradios/http___streams_fluxfm_de_forward_mp3-320_audio_.m3u index 2e769ad2..ee75600c 100644 --- a/docs/db/webradios/http___streams_fluxfm_de_forward_mp3-320_audio_.m3u +++ b/docs/db/webradios/http___streams_fluxfm_de_forward_mp3-320_audio_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fluxfm.de/flux-forward/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Musikalische Neuvorstellungen und interessante Acts & Facts aus den Weiten der Musikblogs – das ist Flux Forward. #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u b/docs/db/webradios/http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u index 2e4314e9..1027e027 100644 --- a/docs/db/webradios/http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_2000er_mp3-192_mediaplayer_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u index 4a484f65..9bea4e72 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-80srock_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u index a82c0c5b..9e890693 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-90srock_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u index 9b09b506..67443b19 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-alternative_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u index b04bd4ee..0ac1e0b4 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-christmas_mp3-192_mediaplayer_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u index 15bb2c4e..d190044f 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-classicrock_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u index a5e6842d..7cbfe19a 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-hardrock_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Wenn Rock, dann BOB! Deutschlands Rockradio #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u index 9110d783..c4ad9861 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-kuschelrock_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u index 141d5558..624311cd 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-metal_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u index 90c6aea7..dd3e16d3 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-national_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Deutschlands Rockradio #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u index 6e631985..43554390 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-punk_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u index d6e9f7bf..a0d64458 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-rockabilly_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u index 6d02215e..6fdb5dc9 100644 --- a/docs/db/webradios/http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_bob-rockhits_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u b/docs/db/webradios/http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u index c2514451..93a02fcb 100644 --- a/docs/db/webradios/http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_country_mp3-192_mediaplayer_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_roadtrip_mp3-192_.m3u b/docs/db/webradios/http___streams_radiobob_de_roadtrip_mp3-192_.m3u index 4635019a..45f71e3d 100644 --- a/docs/db/webradios/http___streams_radiobob_de_roadtrip_mp3-192_.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_roadtrip_mp3-192_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:BOBs Road Trip-Stream #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u b/docs/db/webradios/http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u index 064ea359..713368c6 100644 --- a/docs/db/webradios/http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_rockparty_mp3-192_mediaplayer_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u b/docs/db/webradios/http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u index cc9019dd..44bb52db 100644 --- a/docs/db/webradios/http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u +++ b/docs/db/webradios/http___streams_radiobob_de_southernrock_mp3-192_mediaplayer.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u b/docs/db/webradios/http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u index 51cb586e..81c083a9 100644 --- a/docs/db/webradios/http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u +++ b/docs/db/webradios/http___wdr-wdr5-live_icecast_wdr_de_wdr_wdr5_live_mp3_128_stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www1.wdr.de/radio/wdr5/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/http___yumicoradio_net_8000_stream.m3u b/docs/db/webradios/http___yumicoradio_net_8000_stream.m3u index 6706f7bf..97b1f5b3 100644 --- a/docs/db/webradios/http___yumicoradio_net_8000_stream.m3u +++ b/docs/db/webradios/http___yumicoradio_net_8000_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://yumicoradio.net #COUNTRY:France #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:24/7 webradio that plays Future Funk, City Pop, Anime Groove, Nu Disco, Electronica, a little bit of Vaporwave and some of the sub-genres derived. #CODEC:MP3 diff --git a/docs/db/webradios/https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u b/docs/db/webradios/https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u index cecb0cbf..89fd6dcd 100644 --- a/docs/db/webradios/https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u +++ b/docs/db/webradios/https___122722d_ha_azioncdn_net_ebc_radiomecfm_chunks_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radios.ebc.com.br/mecfmrio #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Radio MEC FM - EBC #CODEC:AAC diff --git a/docs/db/webradios/https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u b/docs/db/webradios/https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u index 045d0665..be85e7b9 100644 --- a/docs/db/webradios/https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u +++ b/docs/db/webradios/https___132722d_ha_azioncdn_net_ebc_radiomec_chunks_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radios.ebc.com.br/mecamrio #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio MEC AM - EBC #CODEC:AAC diff --git a/docs/db/webradios/https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u b/docs/db/webradios/https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u index acde4ecb..c10a0273 100644 --- a/docs/db/webradios/https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u +++ b/docs/db/webradios/https___18003_live_streamtheworld_com_RT_SPAAC_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiotransamerica.com.br #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A sua rádio onde você estiver! #CODEC:AAC diff --git a/docs/db/webradios/https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u b/docs/db/webradios/https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u index 74ee1ab9..753b38ee 100644 --- a/docs/db/webradios/https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u +++ b/docs/db/webradios/https___21413_live_streamtheworld_com_443_2NURFMAAC_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://2nurfm.com.au #COUNTRY:Australia #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Good times and great music #CODEC:MP3 diff --git a/docs/db/webradios/https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u b/docs/db/webradios/https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u index 88c8e249..69a1511a 100644 --- a/docs/db/webradios/https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u +++ b/docs/db/webradios/https___24483_live_streamtheworld_com_MELODIAFMAAC_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://melodia.com.br/player/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A voz que fala ao coração! #CODEC:AAC diff --git a/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u b/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u index e1ba63a3..888da276 100644 --- a/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u +++ b/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_DNA_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://kink.nl #COUNTRY:The Netherlands #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION:Alive and Kicking #CODEC:MP3 diff --git a/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_SC.m3u b/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_SC.m3u index a4e8e537..740383d3 100644 --- a/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_SC.m3u +++ b/docs/db/webradios/https___25293_live_streamtheworld_com_443_KINK_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kink.nl #COUNTRY:The Netherlands #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION:No alternative #CODEC:MP3 diff --git a/docs/db/webradios/https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u b/docs/db/webradios/https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u index 52431abe..ca8ae4e8 100644 --- a/docs/db/webradios/https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u +++ b/docs/db/webradios/https___25323_live_streamtheworld_com_443_KINK_DISTORTION_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kink.nl/distortion #COUNTRY:The Netherlands #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION:non-stop de beste metal, hardrock en metalcore #CODEC:MP3 diff --git a/docs/db/webradios/https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u b/docs/db/webradios/https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u index 367cb237..f9d9d267 100644 --- a/docs/db/webradios/https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u +++ b/docs/db/webradios/https___26453_live_streamtheworld_com_SAM08AAC013_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.radiodaijiworld.com/ #COUNTRY:India #STATE:Mangalore +#REGION:Mangalore #LANGUAGE:Konkani #DESCRIPTION:Online RADIO station for konkani & Tulu music #CODEC:AAC diff --git a/docs/db/webradios/https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u b/docs/db/webradios/https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u index 7eeec5ff..c18966aa 100644 --- a/docs/db/webradios/https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u +++ b/docs/db/webradios/https___27253_live_streamtheworld_com_3PBS_FMAAC128_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.pbsfm.org.au #COUNTRY:Australia #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:PBS 106.7FM (Progressive Broadcasting Service) #CODEC:AAC diff --git a/docs/db/webradios/https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u b/docs/db/webradios/https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u index 9be76db1..6a68afa6 100644 --- a/docs/db/webradios/https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u +++ b/docs/db/webradios/https___27403_live_streamtheworld_com_CBN_RJAAC_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://cbn.globoradio.globo.com #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A rádio que toca notícia! #CODEC:AAC diff --git a/docs/db/webradios/https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u b/docs/db/webradios/https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u index 040c9e94..cedf9ef7 100644 --- a/docs/db/webradios/https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u +++ b/docs/db/webradios/https___27403_live_streamtheworld_com_DISNEY_BRA_SP_ADP_HLS_playlist_m3u8_dist_web-radiodisney.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiodisney.com.br/ #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A rádio que te ouve #CODEC:AAC diff --git a/docs/db/webradios/https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u b/docs/db/webradios/https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u index e0d52e2b..0aaf0e4f 100644 --- a/docs/db/webradios/https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u +++ b/docs/db/webradios/https___27433_live_streamtheworld_com_JBFMAAC_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://jb.fm #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Música e Informação! #CODEC:AAC diff --git a/docs/db/webradios/https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u b/docs/db/webradios/https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u index bd6f3947..289cd11a 100644 --- a/docs/db/webradios/https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u +++ b/docs/db/webradios/https___5a2b083e9f360_streamlock_net_serraverdefm_serraverdefm_stream_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.serraverde.fm.br/ #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Aqui é o seu lugar! #CODEC:MP3 diff --git a/docs/db/webradios/https___8016_brasilstream_com_br_stream.m3u b/docs/db/webradios/https___8016_brasilstream_com_br_stream.m3u index bf09768a..4c45a067 100644 --- a/docs/db/webradios/https___8016_brasilstream_com_br_stream.m3u +++ b/docs/db/webradios/https___8016_brasilstream_com_br_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://difusora24h.com #COUNTRY:Brazil #STATE:Amazonas +#REGION:Amazonas #LANGUAGE:Brazilian Portuguese #DESCRIPTION:O amor do Amazonas esta no ar! #CODEC:MPEG diff --git a/docs/db/webradios/https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u b/docs/db/webradios/https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u index 56155089..00cf0a34 100644 --- a/docs/db/webradios/https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u +++ b/docs/db/webradios/https___82722d_ha_azioncdn_net_ebc_radionacionalriodejaneiro_chunks_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radios.ebc.com.br/nacionalrioam #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Nacional 87.1 FM 1130 AM #CODEC:HLS diff --git a/docs/db/webradios/https___82_135_234_195_8443_ehr_mp3.m3u b/docs/db/webradios/https___82_135_234_195_8443_ehr_mp3.m3u index 7c22836a..37645a3e 100644 --- a/docs/db/webradios/https___82_135_234_195_8443_ehr_mp3.m3u +++ b/docs/db/webradios/https___82_135_234_195_8443_ehr_mp3.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.europeanhitradio.lt #COUNTRY:Lithuania #STATE: -#LANGUAGE:Lithuanian, English +#REGION: #CODEC:MP3 #BITRATE:192 https://82.135.234.195:8443/ehr.mp3 diff --git a/docs/db/webradios/https___8923_brasilstream_com_br_stream.m3u b/docs/db/webradios/https___8923_brasilstream_com_br_stream.m3u index df045d07..59f961bd 100644 --- a/docs/db/webradios/https___8923_brasilstream_com_br_stream.m3u +++ b/docs/db/webradios/https___8923_brasilstream_com_br_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://tupi.fm/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Super Rádio Tupi 96.5 (Tupi FM) #SegueALíder #CODEC:AAC+ diff --git a/docs/db/webradios/https___99_mediacast_co_il_99fm_aac__m4a.m3u b/docs/db/webradios/https___99_mediacast_co_il_99fm_aac__m4a.m3u index bc9b4465..15331998 100644 --- a/docs/db/webradios/https___99_mediacast_co_il_99fm_aac__m4a.m3u +++ b/docs/db/webradios/https___99_mediacast_co_il_99fm_aac__m4a.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://eco99fm.maariv.co.il #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:HE-AAC diff --git a/docs/db/webradios/https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u b/docs/db/webradios/https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u index 00820f5a..52adf771 100644 --- a/docs/db/webradios/https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u +++ b/docs/db/webradios/https___DRliveradio_akamaized_net_hls_live_2022411_p8jazz_playlist-320000_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.dr.dk/lyd/p8jazz #COUNTRY:Denmark #STATE: +#REGION: #LANGUAGE:Danish #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___a2_asurahosting_com_8800_radio_mp3.m3u b/docs/db/webradios/https___a2_asurahosting_com_8800_radio_mp3.m3u index a925e3c4..3d3e642c 100644 --- a/docs/db/webradios/https___a2_asurahosting_com_8800_radio_mp3.m3u +++ b/docs/db/webradios/https___a2_asurahosting_com_8800_radio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://multicanalradio.com #COUNTRY:Spain #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u b/docs/db/webradios/https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u index 2cea8965..f6424f58 100644 --- a/docs/db/webradios/https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u +++ b/docs/db/webradios/https___absolut-musicxl_live-sm_absolutradio_de_absolut-musicxl_stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://absolutradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u b/docs/db/webradios/https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u index c4380329..c029784c 100644 --- a/docs/db/webradios/https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u +++ b/docs/db/webradios/https___ais-edge102-live365-dal02_cdnstream_com_a71161.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://deepspaceradio.com/ #COUNTRY:USA #STATE:Michigan +#REGION:Michigan #LANGUAGE:English #DESCRIPTION:Artists and DJs who are working to promote Detroit’s Electronic Music and Art. #CODEC:MP3 diff --git a/docs/db/webradios/https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u b/docs/db/webradios/https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u index 377f6efb..6540aa7c 100644 --- a/docs/db/webradios/https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u +++ b/docs/db/webradios/https___ais-sa3_cdnstream1_com_2606_128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bagelradio.com/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Radio as it should be: commercial-free listener-supported live-hosted #CODEC:MP3 diff --git a/docs/db/webradios/https___akashvani_gov_in_radio_live_php_channel_5.m3u b/docs/db/webradios/https___akashvani_gov_in_radio_live_php_channel_5.m3u index ff464d66..47d680eb 100644 --- a/docs/db/webradios/https___akashvani_gov_in_radio_live_php_channel_5.m3u +++ b/docs/db/webradios/https___akashvani_gov_in_radio_live_php_channel_5.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://prasarbharati.gov.in/channel-raagam/ #COUNTRY:India #STATE:Karnataka +#REGION:Karnataka #LANGUAGE:Multilingual, Kannada #DESCRIPTION:Raagam Radio is an online station from Bangalore (India), open since 26 January 2016. #CODEC:MP3 diff --git a/docs/db/webradios/https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u b/docs/db/webradios/https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u index ebf22cf7..fa714c7b 100644 --- a/docs/db/webradios/https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u +++ b/docs/db/webradios/https___alba-cr-lamejor-lamejor_stream_mediatiquestream_com_chunks_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lamejor.co.cr/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:n La Mejor podrás encontrar una programación entretenida y variada que busca alegrar tu día a día. #CODEC:HLS diff --git a/docs/db/webradios/https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u b/docs/db/webradios/https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u index 0b6ffdd6..77405294 100644 --- a/docs/db/webradios/https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u +++ b/docs/db/webradios/https___alba-cr-monumental-monumental_stream_mediatiquestream_com_chunks_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.monumental.co.cr/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:El concepto del programa es un servicio informativo y musical, con programas modernos, acceso urbano, respetando al mismo tiempo la forma tradicionalista. #CODEC:HLS diff --git a/docs/db/webradios/https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u b/docs/db/webradios/https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u index 5e941a35..a8e2045f 100644 --- a/docs/db/webradios/https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u +++ b/docs/db/webradios/https___antnds_streamabc_net_ands-antenneschlager-mp3-192-8742257.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.antenne-schlager.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:German Schlager music station from Hannover, Lower Saxony, Germany #CODEC:MP3 diff --git a/docs/db/webradios/https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u b/docs/db/webradios/https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u index 5ccaed5d..c13591b9 100644 --- a/docs/db/webradios/https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u +++ b/docs/db/webradios/https___asvradiostream_asvstudios_it_radio_8000_radio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiodiffusionelibera.com #COUNTRY:Italy #STATE:Salerno +#REGION:Salerno #LANGUAGE:Italian #DESCRIPTION:RDL Radio Diffusione Libera powered by RPIGroup #CODEC:MP3 diff --git a/docs/db/webradios/https___audio-mp3_ibiblio_org_wxyc_mp3.m3u b/docs/db/webradios/https___audio-mp3_ibiblio_org_wxyc_mp3.m3u index 97998f2d..fd427baa 100644 --- a/docs/db/webradios/https___audio-mp3_ibiblio_org_wxyc_mp3.m3u +++ b/docs/db/webradios/https___audio-mp3_ibiblio_org_wxyc_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://wxyc.org/ #COUNTRY:United States #STATE:North Carolina +#REGION:North Carolina #LANGUAGE:English #DESCRIPTION:UNC-Chapel Hill's student-run, freeform radio station #CODEC:MP3 diff --git a/docs/db/webradios/https___audio_tv_unesp_br_unespfm.m3u b/docs/db/webradios/https___audio_tv_unesp_br_unespfm.m3u index 2a6c835d..6204ad40 100644 --- a/docs/db/webradios/https___audio_tv_unesp_br_unespfm.m3u +++ b/docs/db/webradios/https___audio_tv_unesp_br_unespfm.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radio.unesp.br #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Universitária UNESP 105.7 FM #CODEC:AAC diff --git a/docs/db/webradios/https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u b/docs/db/webradios/https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u index 724a6a69..366f670f 100644 --- a/docs/db/webradios/https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u +++ b/docs/db/webradios/https___belrtl_ice_infomaniak_ch_belrtl-mp3-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtl.be/belrtl/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Bel RTL est une station de radio généraliste privée du groupe RTL. #CODEC:MP3 diff --git a/docs/db/webradios/https___c7_radioboss_fm_18205_stream.m3u b/docs/db/webradios/https___c7_radioboss_fm_18205_stream.m3u index 2de3ea45..29bed9a6 100644 --- a/docs/db/webradios/https___c7_radioboss_fm_18205_stream.m3u +++ b/docs/db/webradios/https___c7_radioboss_fm_18205_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://bootiemashup.com/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:The best bootleg mashups in the world ever. #CODEC:MP3 diff --git a/docs/db/webradios/https___carajas2_jmvstream_com_live.m3u b/docs/db/webradios/https___carajas2_jmvstream_com_live.m3u index 633708fb..1db469a1 100644 --- a/docs/db/webradios/https___carajas2_jmvstream_com_live.m3u +++ b/docs/db/webradios/https___carajas2_jmvstream_com_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioclube.dol.com.br/ #COUNTRY:Brazil #STATE:Pará +#REGION:Pará #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Equipe Bola de Ouro #CODEC:AAC diff --git a/docs/db/webradios/https___cast4_asurahosting_com_proxy_miles_stream.m3u b/docs/db/webradios/https___cast4_asurahosting_com_proxy_miles_stream.m3u index 70a3696e..eddbc0c4 100644 --- a/docs/db/webradios/https___cast4_asurahosting_com_proxy_miles_stream.m3u +++ b/docs/db/webradios/https___cast4_asurahosting_com_proxy_miles_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.nyeug.com #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Streaming Art Bell classics and his favorite bumper music - ad free. #CODEC:MP3 diff --git a/docs/db/webradios/https___cast4_audiostream_com_br_2655_mp3.m3u b/docs/db/webradios/https___cast4_audiostream_com_br_2655_mp3.m3u index 7713adc0..4ba7afdd 100644 --- a/docs/db/webradios/https___cast4_audiostream_com_br_2655_mp3.m3u +++ b/docs/db/webradios/https___cast4_audiostream_com_br_2655_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.redepampa.com.br/radios/radio-liberdade/ #COUNTRY:Brazil #STATE:Rio Grande Do Sul +#REGION:Rio Grande Do Sul #LANGUAGE:Brazilian Portuguese #DESCRIPTION:No campo e na cidade, Rádio Liberdade! #CODEC:MP3 diff --git a/docs/db/webradios/https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u b/docs/db/webradios/https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u index 6f409844..a159f55f 100644 --- a/docs/db/webradios/https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u +++ b/docs/db/webradios/https___cast4_my-control-panel_com_proxy_anastas2_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radio984.gr/ #COUNTRY:Greece #STATE: +#REGION: #LANGUAGE:Greek #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___cdn4_onstream_audio_9267_stream.m3u b/docs/db/webradios/https___cdn4_onstream_audio_9267_stream.m3u index 676a3576..31f36ac8 100644 --- a/docs/db/webradios/https___cdn4_onstream_audio_9267_stream.m3u +++ b/docs/db/webradios/https___cdn4_onstream_audio_9267_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio.prensa-latina.cu #COUNTRY:Cuba #STATE:Havana/Habana +#REGION:Havana/Habana #LANGUAGE:Spanish #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u b/docs/db/webradios/https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u index eee33f93..9f8a7a61 100644 --- a/docs/db/webradios/https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u +++ b/docs/db/webradios/https___cdn_cybercdn_live_103FM_Live_icecast_audio.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://103fm.maariv.co.il/ #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u b/docs/db/webradios/https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u index 1c5ece41..799daa8c 100644 --- a/docs/db/webradios/https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u +++ b/docs/db/webradios/https___cdn_instream_audio__9339_stream_in_device_id_WPU32ffbfaa3cd8ebaaa8f64ec868bf4b88XY177fdfd79a7.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://undinamo.com/ #COUNTRY:Argentina #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u b/docs/db/webradios/https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u index 96abfa82..c711111d 100644 --- a/docs/db/webradios/https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u +++ b/docs/db/webradios/https___cdnapisec_kaltura_com_p_2717431_sp_271743100_playManifest_entryId_1_eu4h60uh_format_applehttp_protocol_https_uiConfId_46986963_a_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kan.org.il/live/radio.aspx?stationid=3 #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___centova_svdns_com_br_20110_stream.m3u b/docs/db/webradios/https___centova_svdns_com_br_20110_stream.m3u index b1aeca28..0e74df75 100644 --- a/docs/db/webradios/https___centova_svdns_com_br_20110_stream.m3u +++ b/docs/db/webradios/https___centova_svdns_com_br_20110_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.morenafm.com.br #COUNTRY:Brazil #STATE:Mato Grosso +#REGION:Mato Grosso #LANGUAGE:Portugues #DESCRIPTION:boa mussica , boa programaçion #CODEC:AAC diff --git a/docs/db/webradios/https___chokostream_com_8010_live.m3u b/docs/db/webradios/https___chokostream_com_8010_live.m3u index 7e3ee67b..5fb55ba5 100644 --- a/docs/db/webradios/https___chokostream_com_8010_live.m3u +++ b/docs/db/webradios/https___chokostream_com_8010_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://ritmohits.net/ #COUNTRY:Republica Dominicana #STATE:San Pedro De Macoris +#REGION:San Pedro De Macoris #LANGUAGE:Español #DESCRIPTION:Donde El Ritmo No Tiene Fin! #CODEC:AAC diff --git a/docs/db/webradios/https___chokostream_com_8050_live.m3u b/docs/db/webradios/https___chokostream_com_8050_live.m3u index a1c751dd..cafbb318 100644 --- a/docs/db/webradios/https___chokostream_com_8050_live.m3u +++ b/docs/db/webradios/https___chokostream_com_8050_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://lavainahits.net/ #COUNTRY:Republica Dominicana #STATE:San Pedro De Macoris +#REGION:San Pedro De Macoris #LANGUAGE:Español #DESCRIPTION:Detonando Hits! #CODEC:AAC diff --git a/docs/db/webradios/https___chokostream_com_8070_live.m3u b/docs/db/webradios/https___chokostream_com_8070_live.m3u index 9a41980d..7289796c 100644 --- a/docs/db/webradios/https___chokostream_com_8070_live.m3u +++ b/docs/db/webradios/https___chokostream_com_8070_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://exaltacionfm.com/ #COUNTRY:Republica Dominicana #STATE:San Pedro De Macoris +#REGION:San Pedro De Macoris #LANGUAGE:Español #DESCRIPTION:Ondas De Avivamiento! #CODEC:AAC diff --git a/docs/db/webradios/https___cloud_cdnseguro_com_2611_stream.m3u b/docs/db/webradios/https___cloud_cdnseguro_com_2611_stream.m3u index 9144d820..1f511392 100644 --- a/docs/db/webradios/https___cloud_cdnseguro_com_2611_stream.m3u +++ b/docs/db/webradios/https___cloud_cdnseguro_com_2611_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioyande.com #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Indigenous Languages, Brazilian Portuguese #DESCRIPTION:Radio Yandê - Etnomidia Indígena #CODEC:MP3 diff --git a/docs/db/webradios/https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u b/docs/db/webradios/https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u index e5c7a390..bdead707 100644 --- a/docs/db/webradios/https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u +++ b/docs/db/webradios/https___contact2_ice_infomaniak_ch_contact2-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiocontact.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u b/docs/db/webradios/https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u index 23a14e82..1abf9dbc 100644 --- a/docs/db/webradios/https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u +++ b/docs/db/webradios/https___contactkids_ice_infomaniak_ch_contactkids-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiocontact.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u b/docs/db/webradios/https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u index 88b62033..6fa5a860 100644 --- a/docs/db/webradios/https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u +++ b/docs/db/webradios/https___contactmix_ice_infomaniak_ch_contactmix-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiocontact.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u b/docs/db/webradios/https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u index cae8a95e..6ed96d62 100644 --- a/docs/db/webradios/https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u +++ b/docs/db/webradios/https___contactplus_ice_infomaniak_ch_contactplus-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiocontact.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u b/docs/db/webradios/https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u index 7fb981d7..7a0acab3 100644 --- a/docs/db/webradios/https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u +++ b/docs/db/webradios/https___contacturban_ice_infomaniak_ch_contacturban-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiocontact.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u b/docs/db/webradios/https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u index 8dbd83c1..d4f17803 100644 --- a/docs/db/webradios/https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u +++ b/docs/db/webradios/https___d3isaxd2t6q8zm_cloudfront_net_icecast_omroepzeeland_omroepzeeland_radio.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.omroepzeeland.nl/radio-zeeland #COUNTRY:Netherlands #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u b/docs/db/webradios/https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u index 8bb0c9dd..70344eb1 100644 --- a/docs/db/webradios/https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u +++ b/docs/db/webradios/https___dc1_serverse_com_proxy_gjlrjfhp_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kvkvi.com #COUNTRY:United States #STATE:Ohio +#REGION:Ohio #LANGUAGE:English #DESCRIPTION:The Greatest Hits and The Songs You Missed #CODEC:MP3 diff --git a/docs/db/webradios/https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u b/docs/db/webradios/https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u index 7203c547..d812328d 100644 --- a/docs/db/webradios/https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u +++ b/docs/db/webradios/https___dispatcher_rndfnk_com_br_br1_schwaben_mp3_mid.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.br.de/radio/bayern1/index.html #COUNTRY:Germany #STATE:Bayern +#REGION:Bayern #LANGUAGE:German #DESCRIPTION:The station is aimed at a middle-aged audience and, in addition to the music format in the Adult Contemporary category (listenable format radio for adults), also offers more recent pop music as well as information and comprehensive regional reporting. #CODEC:MP3 diff --git a/docs/db/webradios/https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u b/docs/db/webradios/https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u index a022676d..0c1824c7 100644 --- a/docs/db/webradios/https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u +++ b/docs/db/webradios/https___dispatcher_rndfnk_com_br_br2_live_mp3_mid.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.br.de/radio/bayern2/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u b/docs/db/webradios/https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u index d1fed474..8e11cbe0 100644 --- a/docs/db/webradios/https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u +++ b/docs/db/webradios/https___dispatcher_rndfnk_com_br_brklassik_live_mp3_high.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.br-klassik.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u b/docs/db/webradios/https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u index 00c789a2..bb5f36e2 100644 --- a/docs/db/webradios/https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u +++ b/docs/db/webradios/https___edge56_live-sm_absolutradio_de_absolut-relax_stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://absolutradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u b/docs/db/webradios/https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u index a35582a7..f5db9955 100644 --- a/docs/db/webradios/https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u +++ b/docs/db/webradios/https___edge68_live-sm_absolutradio_de_absolut-hot_stream_aacp_aggregator_smk-m3u-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://absolutradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___emisoras_dip-badajoz_es_58062_stream.m3u b/docs/db/webradios/https___emisoras_dip-badajoz_es_58062_stream.m3u index f6ec9cee..55724d07 100644 --- a/docs/db/webradios/https___emisoras_dip-badajoz_es_58062_stream.m3u +++ b/docs/db/webradios/https___emisoras_dip-badajoz_es_58062_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://quintanadelaserena.org/ #COUNTRY:Spain #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Quintana de la Serena (Badajoz, Spain) local radio #CODEC:OPUS diff --git a/docs/db/webradios/https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u b/docs/db/webradios/https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u index ddb54eb2..d261da16 100644 --- a/docs/db/webradios/https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u +++ b/docs/db/webradios/https___eol-live_cdnwiz_com_eol_eolsite_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio.eol.co.il/ #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___everest_radionanet_com_8990_stream_1698969239317.m3u b/docs/db/webradios/https___everest_radionanet_com_8990_stream_1698969239317.m3u index 14d2ed97..4694af07 100644 --- a/docs/db/webradios/https___everest_radionanet_com_8990_stream_1698969239317.m3u +++ b/docs/db/webradios/https___everest_radionanet_com_8990_stream_1698969239317.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://universitariafm.ufes.br/ #COUNTRY:Brazil #STATE:Espirito Santo +#REGION:Espirito Santo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Universitária da UFES (Universitária FM 104.7) #CODEC:MPEG diff --git a/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u b/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u index 58482b6b..2b656af6 100644 --- a/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u +++ b/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://jornal.usp.br/radiousp-sp-aovivo.html #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Radio Universitária da USP (Universidade de São Paulo) #CODEC:MP3 diff --git a/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u b/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u index 577baee2..c3b8c993 100644 --- a/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u +++ b/docs/db/webradios/https___flow_emm_usp_br_8008_radiousp-rp-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://jornal.usp.br/radiousp-sp-aovivo.html #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Universitária da USP (USP Ribeirão Preto) #CODEC:MP3 diff --git a/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u b/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u index 24113698..19d7d91e 100644 --- a/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u +++ b/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_2000er_stream_mp3_quality_4.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fluxfm.de/channels/fc56c149-6140-4e7f-9aa8-fe8febd10bab #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u b/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u index b71fba76..d1a8ecc2 100644 --- a/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u +++ b/docs/db/webradios/https___fluxmusic_api_radiosphere_io_channels_90s_stream_aac_quality_4.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fluxfm.de/channels/7ee29cf1-7561-4ba6-9c9b-cc4faebbaf28 #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Zeitreisen sind toll – vor allem, wenn man dafür noch nicht mal vom Sofa aufstehen muss! 90s Radio nimmt euch mit in die 90’er, die Zeit von Gameboys, CD’s und der Blütezeit von MTV. Es beamt euch zurück zu den unsterblichen Hits von Nirvana, Oasis und Natalie Imbruglia. Müssen wir noch mehr sagen? Eben. #CODEC:AAC diff --git a/docs/db/webradios/https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u b/docs/db/webradios/https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u index 7e64cab9..c93d38c2 100644 --- a/docs/db/webradios/https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u +++ b/docs/db/webradios/https___funradiobe_ice_infomaniak_ch_funradiobe-high.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.funradio.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Fun Radio est une station de radio musicale belge privée au format dancefloor d'origine française. #CODEC:MP3 diff --git a/docs/db/webradios/https___gartenheimradio_sp_radio_fm_stream.m3u b/docs/db/webradios/https___gartenheimradio_sp_radio_fm_stream.m3u index ebcf9f3a..eaae44e9 100644 --- a/docs/db/webradios/https___gartenheimradio_sp_radio_fm_stream.m3u +++ b/docs/db/webradios/https___gartenheimradio_sp_radio_fm_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://gartenheim-radio.de #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:70er, 80er, 90er Schlager-Pop und die Hits von Heute #CODEC:MP3 diff --git a/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u b/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u index 1d54be2c..39f2a9e0 100644 --- a/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u +++ b/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glglz_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://glz.co.il/%D7%92%D7%9C%D7%92%D7%9C%D7%A6 #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glz_mp3.m3u b/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glz_mp3.m3u index 3d591d3e..bf290c96 100644 --- a/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glz_mp3.m3u +++ b/docs/db/webradios/https___glzwizzlv_bynetcdn_com_glz_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://glz.co.il/ #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION:IDF Radio station #CODEC:MP3 diff --git a/docs/db/webradios/https___grenal_audiostream_com_br_20000_aac.m3u b/docs/db/webradios/https___grenal_audiostream_com_br_20000_aac.m3u index fdf242d1..0ce73c7f 100644 --- a/docs/db/webradios/https___grenal_audiostream_com_br_20000_aac.m3u +++ b/docs/db/webradios/https___grenal_audiostream_com_br_20000_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiogrenal.com.br/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Grenal #CODEC:AAC+ diff --git a/docs/db/webradios/https___happyrave-rex_radioca_st_stream.m3u b/docs/db/webradios/https___happyrave-rex_radioca_st_stream.m3u index d377c5fe..8f616e95 100644 --- a/docs/db/webradios/https___happyrave-rex_radioca_st_stream.m3u +++ b/docs/db/webradios/https___happyrave-rex_radioca_st_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:happyraveradio.com #COUNTRY:Netherlands #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Classic happy hardcore, rave, and breakbeat hardcore. #CODEC:MP3 diff --git a/docs/db/webradios/https___hts03_kshost_com_br_13392_live.m3u b/docs/db/webradios/https___hts03_kshost_com_br_13392_live.m3u index 5739edf1..8cd7d1d8 100644 --- a/docs/db/webradios/https___hts03_kshost_com_br_13392_live.m3u +++ b/docs/db/webradios/https___hts03_kshost_com_br_13392_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fab.mil.br/radio #COUNTRY:Brazil #STATE:Brasilia +#REGION:Brasilia #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Força Aérea 91.1 FM #CODEC:AAC diff --git a/docs/db/webradios/https___http-live_sr_se_p2musik-aac-320.m3u b/docs/db/webradios/https___http-live_sr_se_p2musik-aac-320.m3u index 07656231..61d139cd 100644 --- a/docs/db/webradios/https___http-live_sr_se_p2musik-aac-320.m3u +++ b/docs/db/webradios/https___http-live_sr_se_p2musik-aac-320.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sverigesradio.se/p2 #COUNTRY:Sweden #STATE: +#REGION: #LANGUAGE:Swedish #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___ic_streann_com_disneycostarica.m3u b/docs/db/webradios/https___ic_streann_com_disneycostarica.m3u index 25eec22f..e909fb86 100644 --- a/docs/db/webradios/https___ic_streann_com_disneycostarica.m3u +++ b/docs/db/webradios/https___ic_streann_com_disneycostarica.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://cr.radiodisney.com/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Radio Disney de Costa Rica es una de las emisoras afiliadas a Radio Disney Latinoamérica. #CODEC:MP3 diff --git a/docs/db/webradios/https___ice1_somafm_com_vaporwaves-128-aac.m3u b/docs/db/webradios/https___ice1_somafm_com_vaporwaves-128-aac.m3u index e39fab0c..d881936c 100644 --- a/docs/db/webradios/https___ice1_somafm_com_vaporwaves-128-aac.m3u +++ b/docs/db/webradios/https___ice1_somafm_com_vaporwaves-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/vaporwaves/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:All Vaporwave. All the time. #CODEC:AAC diff --git a/docs/db/webradios/https___ice6_somafm_com_n5md-128-aac.m3u b/docs/db/webradios/https___ice6_somafm_com_n5md-128-aac.m3u index 19d1c45f..83005483 100644 --- a/docs/db/webradios/https___ice6_somafm_com_n5md-128-aac.m3u +++ b/docs/db/webradios/https___ice6_somafm_com_n5md-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://somafm.com/n5md/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:n5MD is an independent record label based in Oakland, California, primarily releasing electronic music focusing on melody and emotion as well as compatible genres such as shoegaze, post-rock, IDM and electro-acoustic. #CODEC:AAC diff --git a/docs/db/webradios/https___ice6_somafm_com_synphaera-128-aac.m3u b/docs/db/webradios/https___ice6_somafm_com_synphaera-128-aac.m3u index 73cf2083..dbcae318 100644 --- a/docs/db/webradios/https___ice6_somafm_com_synphaera-128-aac.m3u +++ b/docs/db/webradios/https___ice6_somafm_com_synphaera-128-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___ice_coldstar_online_high_ogg.m3u b/docs/db/webradios/https___ice_coldstar_online_high_ogg.m3u index c1641c89..fa59cb46 100644 --- a/docs/db/webradios/https___ice_coldstar_online_high_ogg.m3u +++ b/docs/db/webradios/https___ice_coldstar_online_high_ogg.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://coldstar.online/ #COUNTRY:Kyrgyzstan #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:OGG diff --git a/docs/db/webradios/https___ice_fabricahost_com_br_radiomarinha.m3u b/docs/db/webradios/https___ice_fabricahost_com_br_radiomarinha.m3u index 709d3621..fc9bbc6b 100644 --- a/docs/db/webradios/https___ice_fabricahost_com_br_radiomarinha.m3u +++ b/docs/db/webradios/https___ice_fabricahost_com_br_radiomarinha.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.marinha.mil.br/radio-marinha #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Marinha FM: Navegando nas Ondas do Rádio #CODEC:AAC diff --git a/docs/db/webradios/https___icecast_live_proxy_zerock_zerock.m3u b/docs/db/webradios/https___icecast_live_proxy_zerock_zerock.m3u index ba762a88..10beb9a6 100644 --- a/docs/db/webradios/https___icecast_live_proxy_zerock_zerock.m3u +++ b/docs/db/webradios/https___icecast_live_proxy_zerock_zerock.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://zerockradio.com/ #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew, English #DESCRIPTION: #CODEC:HE-AAC diff --git a/docs/db/webradios/https___icecast_lyl_live_live.m3u b/docs/db/webradios/https___icecast_lyl_live_live.m3u index 3ee59534..5aa57c4b 100644 --- a/docs/db/webradios/https___icecast_lyl_live_live.m3u +++ b/docs/db/webradios/https___icecast_lyl_live_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://lyl.live/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u b/docs/db/webradios/https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u index 7fe13b41..96219fa0 100644 --- a/docs/db/webradios/https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u +++ b/docs/db/webradios/https___icecast_radiofrance_fr_franceinter-midfi_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.franceinter.fr/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:France Inter est une station de radio généraliste nationale publique française du groupe Radio France. #CODEC:MP3 diff --git a/docs/db/webradios/https___icecast_teveo_cu_3MCwWg3V.m3u b/docs/db/webradios/https___icecast_teveo_cu_3MCwWg3V.m3u index cf72890f..68e613f2 100644 --- a/docs/db/webradios/https___icecast_teveo_cu_3MCwWg3V.m3u +++ b/docs/db/webradios/https___icecast_teveo_cu_3MCwWg3V.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:www.radiotaino.icrt.cu #COUNTRY:Cuba #STATE:Havana/Habana +#REGION:Havana/Habana #LANGUAGE:Spanish #DESCRIPTION:Radio Taíno, la FM de Cuba #CODEC:MPEG diff --git a/docs/db/webradios/https___icecast_teveo_cu_McW3fLhs.m3u b/docs/db/webradios/https___icecast_teveo_cu_McW3fLhs.m3u index 5f587aba..51969a6e 100644 --- a/docs/db/webradios/https___icecast_teveo_cu_McW3fLhs.m3u +++ b/docs/db/webradios/https___icecast_teveo_cu_McW3fLhs.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:www.radiohc.cu #COUNTRY:Cuba #STATE:Havana/Habana +#REGION:Havana/Habana #LANGUAGE:Spanish #DESCRIPTION:Una voz de amistad que recorre el mundo #CODEC:MPEG diff --git a/docs/db/webradios/https___icecast_teveo_cu_NqWrgw7j.m3u b/docs/db/webradios/https___icecast_teveo_cu_NqWrgw7j.m3u index 98f2ed88..7661ab85 100644 --- a/docs/db/webradios/https___icecast_teveo_cu_NqWrgw7j.m3u +++ b/docs/db/webradios/https___icecast_teveo_cu_NqWrgw7j.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiosanctispiritus.cu/es/ #COUNTRY:Cuba #STATE:Sancti Spíritus +#REGION:Sancti Spíritus #LANGUAGE:Spanish #DESCRIPTION:Contemporánea en su tradición #CODEC:MPEG diff --git a/docs/db/webradios/https___icecast_teveo_cu_X9XNRkW4.m3u b/docs/db/webradios/https___icecast_teveo_cu_X9XNRkW4.m3u index c19a4104..b8d962ae 100644 --- a/docs/db/webradios/https___icecast_teveo_cu_X9XNRkW4.m3u +++ b/docs/db/webradios/https___icecast_teveo_cu_X9XNRkW4.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiominas.icrt.cu #COUNTRY:Cuba #STATE:Minas De Matahambre +#REGION:Minas De Matahambre #LANGUAGE:Spanish #DESCRIPTION:Radio Minas 104.9 FM #CODEC:MPEG diff --git a/docs/db/webradios/https___icecast_teveo_cu_b3jbfThq.m3u b/docs/db/webradios/https___icecast_teveo_cu_b3jbfThq.m3u index 2dd35625..e4c65c1c 100644 --- a/docs/db/webradios/https___icecast_teveo_cu_b3jbfThq.m3u +++ b/docs/db/webradios/https___icecast_teveo_cu_b3jbfThq.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radioreloj.cu #COUNTRY:Cuba #STATE:Havana/Habana +#REGION:Havana/Habana #LANGUAGE:Spanish #DESCRIPTION:Canal de Informacíon Continua #CODEC:MP3 diff --git a/docs/db/webradios/https___icecast_teveo_cu_kHKL7tWd.m3u b/docs/db/webradios/https___icecast_teveo_cu_kHKL7tWd.m3u index 9d1a0f2c..6d096905 100644 --- a/docs/db/webradios/https___icecast_teveo_cu_kHKL7tWd.m3u +++ b/docs/db/webradios/https___icecast_teveo_cu_kHKL7tWd.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiorebelde.cu #COUNTRY:Cuba #STATE:Havana/Habana +#REGION:Havana/Habana #LANGUAGE:Spanish #DESCRIPTION:La emisora de la Revolución #CODEC:MPEG diff --git a/docs/db/webradios/https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u b/docs/db/webradios/https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u index 162851c0..1e78d171 100644 --- a/docs/db/webradios/https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u +++ b/docs/db/webradios/https___icecast_vrtcdn_be_radio1_classics-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio1.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u b/docs/db/webradios/https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u index ca1c114f..9438ce63 100644 --- a/docs/db/webradios/https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u +++ b/docs/db/webradios/https___icecast_vrtcdn_be_radio2_benebene-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio2.be/programmagids/radio-2-bene-bene #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___icecast_walmradio_com_8443_jazz.m3u b/docs/db/webradios/https___icecast_walmradio_com_8443_jazz.m3u index f5c0fc74..a47c18ca 100644 --- a/docs/db/webradios/https___icecast_walmradio_com_8443_jazz.m3u +++ b/docs/db/webradios/https___icecast_walmradio_com_8443_jazz.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://walmradio.com/jazz #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Real Jazz in HD #CODEC:MP3 diff --git a/docs/db/webradios/https___icecasthd_net_proxy_abejorral_live.m3u b/docs/db/webradios/https___icecasthd_net_proxy_abejorral_live.m3u index 69550f24..291792c3 100644 --- a/docs/db/webradios/https___icecasthd_net_proxy_abejorral_live.m3u +++ b/docs/db/webradios/https___icecasthd_net_proxy_abejorral_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.asenred.com/abejorral/ #COUNTRY:Colombia #STATE:Antioquia +#REGION:Antioquia #LANGUAGE:Español #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u b/docs/db/webradios/https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u index 4a7ebd96..ace0f4de 100644 --- a/docs/db/webradios/https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u +++ b/docs/db/webradios/https___kan88_media_kan_org_il_hls_live_2024812_2024812_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kan.org.il/live/radio.aspx?stationid=4 #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u b/docs/db/webradios/https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u index 6fa8de98..68c64939 100644 --- a/docs/db/webradios/https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u +++ b/docs/db/webradios/https___kanalk_streamabc_net_91-kanalk-mp3-192-5146873.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kanalk.ch/ #COUNTRY:Switzerland #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Kanal K ist das Ausbildungs-, Community- und Musik-Radio aus Aarau. Sendungen und Musik fernab vom Mainstream. #CODEC:MP3 diff --git a/docs/db/webradios/https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u b/docs/db/webradios/https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u index f7b60c9e..3c5b2955 100644 --- a/docs/db/webradios/https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u +++ b/docs/db/webradios/https___kangimmel_media_kan_org_il_hls_live_2024813_2024813_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kan.org.il/content/kan/kan-gimel/ #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u b/docs/db/webradios/https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u index c2ff2eda..b7943920 100644 --- a/docs/db/webradios/https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u +++ b/docs/db/webradios/https___kanliveicy_media_kan_org_il_icy_kankolhamusica_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kan.org.il/live/radio.aspx?stationid=7 #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u b/docs/db/webradios/https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u index bb7e7042..983287dd 100644 --- a/docs/db/webradios/https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u +++ b/docs/db/webradios/https___kcrw_streamguys1_com__kcrw_192k_mp3_bent24.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kcrw.com/music/shows/bent-by-nature/show-tabs/bent24 #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:A 24-HOUR, ON-DEMAND STREAMING CHANNEL FEATURING A SHUFFLING PLAYLIST OF SNAP EPISODES (1982-1991), RESTORED FROM DEIRDRE’S ORIGINAL BOARD TAPES. #CODEC:MP3 diff --git a/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u b/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u index 586ddd95..70358cb8 100644 --- a/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u +++ b/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_e24.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kcrw.com/music/shows/eclectic24/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:KCRW's all-music channel blending the collected talents and tastes of all KCRW's DJs into a single voice streaming 24 hours a day. #CODEC:MP3 diff --git a/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u b/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u index 867dc77b..97e583b4 100644 --- a/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u +++ b/docs/db/webradios/https___kcrw_streamguys1_com_kcrw_192k_mp3_on_air.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.kcrw.com/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u b/docs/db/webradios/https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u index 229d95ec..086c6430 100644 --- a/docs/db/webradios/https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u +++ b/docs/db/webradios/https___kioskradiobxl_out_airtime_pro_kioskradiobxl_b.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://kioskradio.com/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:English, French #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u b/docs/db/webradios/https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u index 6ab34ee5..9a438464 100644 --- a/docs/db/webradios/https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u +++ b/docs/db/webradios/https___ledjamradio_ice_infomaniak_ch_ledjamradio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.djamradio.com/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:The Eclectic French Radio #CODEC:MP3 diff --git a/docs/db/webradios/https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u b/docs/db/webradios/https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u index 53b757af..8451befd 100644 --- a/docs/db/webradios/https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u +++ b/docs/db/webradios/https___limbikfreq_com_listen_limbik_frequencies_128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://limbikfreq.com #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:A tasty mix of downtempo electronica #CODEC:MP3 diff --git a/docs/db/webradios/https___listen7_myradio24_com_69366.m3u b/docs/db/webradios/https___listen7_myradio24_com_69366.m3u index 6a752506..39156f9e 100644 --- a/docs/db/webradios/https___listen7_myradio24_com_69366.m3u +++ b/docs/db/webradios/https___listen7_myradio24_com_69366.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://korea-dpr.com #COUNTRY:Korea, Democratic People's Republic Of #STATE:Pyongyang +#REGION:Pyongyang #LANGUAGE:Korean #DESCRIPTION:Pyongyang FM #CODEC:MP3 diff --git a/docs/db/webradios/https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u b/docs/db/webradios/https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u index 45962448..06c8f36e 100644 --- a/docs/db/webradios/https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u +++ b/docs/db/webradios/https___live_amperwave_net_direct_ppm-jazz24aac256-ibc1.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.jazz24.org #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-deutschland.m3u b/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-deutschland.m3u index 5ab8f244..17787cba 100644 --- a/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-deutschland.m3u +++ b/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-deutschland.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.klassikradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:HE-AAC diff --git a/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-movie.m3u b/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-movie.m3u index 9cdb0b82..d6555ed0 100644 --- a/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-movie.m3u +++ b/docs/db/webradios/https___live_streams_klassikradio_de_klassikradio-movie.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.klassikradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:HE-AAC diff --git a/docs/db/webradios/https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u b/docs/db/webradios/https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u index 54267fc0..e7ae869c 100644 --- a/docs/db/webradios/https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u +++ b/docs/db/webradios/https___live_turadio_stream_7005_stream_type_http_nocache_596.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiomusical.com/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Radio Musical es uno de los principales medios de comunicación de Costa Rica. #CODEC:MP3 diff --git a/docs/db/webradios/https___live_turadio_stream_7006__.m3u b/docs/db/webradios/https___live_turadio_stream_7006__.m3u index 7fcfa894..4a3be41c 100644 --- a/docs/db/webradios/https___live_turadio_stream_7006__.m3u +++ b/docs/db/webradios/https___live_turadio_stream_7006__.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiosinfonola.com/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Esta es una estación radial de origen costarricense, en donde puedes escuchar música para recordar esos momentos más importantes de tu vida. #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u index 899ef11f..4291d0ef 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_dasding_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.dasding.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Jugendradioprogramm des Südwestrundfunks #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u index 052801a6..e1f4b5b3 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1bw_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr1/ #COUNTRY:Germany #STATE:Baden-Württemberg +#REGION:Baden-Württemberg #LANGUAGE:German #DESCRIPTION:SWR1 Baden-Württemberg #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u index 394c7564..15e738f1 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr1rp_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr1/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:SWR1 Rheinland-Pfalz #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u index 0902aa49..19047590 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr2_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr2/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Kultur neu entdecken #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u index 7ce98f1a..f718b304 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr3_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr3.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Der beste Musikmix. Einfach SWR3 #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u index de3b0cff..c3dd2b99 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4bw_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr4/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:SWR4. Da sind wir daheim. #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u index 99a6b16d..dde39d18 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swr4rp_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr4/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:SWR4. Da sind wir daheim. #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u index cf62acaf..b6e21dff 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw282p3_swraktuell_play_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.swr.de/swraktuell/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1bw_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1bw_.m3u index b404114a..86517065 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1bw_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1bw_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr1/ #COUNTRY:Germany #STATE:Baden-Württemberg -#LANGUAGE:German +#REGION:Baden-Württemberg #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swr1bw/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1rp_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1rp_.m3u index a6e17670..67e891aa 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1rp_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr1rp_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr1/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swr1rp/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr2_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr2_.m3u index 3bce9d4f..6809984b 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr2_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr2_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr2/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swr2/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr3_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr3_.m3u index 4ac5c675..648c3f10 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr3_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr3_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr3.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swr3/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4bw_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4bw_.m3u index 65d9f49c..7bc0ce25 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4bw_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4bw_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr4/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swr4bw/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4rp_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4rp_.m3u index fd754770..a690526c 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4rp_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swr4rp_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr4/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swr4rp/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swraktuell_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swraktuell_.m3u index 6944a077..4e656f78 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw331ch_swraktuell_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw331ch_swraktuell_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swraktuell/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:96 https://liveradio.swr.de/sw331ch/swraktuell/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1bw_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1bw_.m3u index f2051874..58746e12 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1bw_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1bw_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr1/ #COUNTRY:Germany #STATE:Baden-Württemberg -#LANGUAGE:German +#REGION:Baden-Württemberg #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swr1bw/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1rp_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1rp_.m3u index 43575556..f50d39a4 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1rp_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr1rp_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr1/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swr1rp/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr2_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr2_.m3u index d9805d8b..4b91d56a 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr2_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr2_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr2/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swr2/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr3_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr3_.m3u index 9901e255..c2f4312a 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr3_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr3_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr3.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swr3/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4bw_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4bw_.m3u index b1ea32a2..d9c227bd 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4bw_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4bw_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr4/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swr4bw/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4rp_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4rp_.m3u index 6f0b3b86..855f17a3 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4rp_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swr4rp_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swr4/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swr4rp/ diff --git a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swraktuell_.m3u b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swraktuell_.m3u index e888b319..c34fc9f0 100644 --- a/docs/db/webradios/https___liveradio_swr_de_sw890cl_swraktuell_.m3u +++ b/docs/db/webradios/https___liveradio_swr_de_sw890cl_swraktuell_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.swr.de/swraktuell/index.html #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:48 https://liveradio.swr.de/sw890cl/swraktuell/ diff --git a/docs/db/webradios/https___livex_radiopopolare_it_radiopop_FLID_3.m3u b/docs/db/webradios/https___livex_radiopopolare_it_radiopop_FLID_3.m3u index dcacbafb..0f437989 100644 --- a/docs/db/webradios/https___livex_radiopopolare_it_radiopop_FLID_3.m3u +++ b/docs/db/webradios/https___livex_radiopopolare_it_radiopop_FLID_3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://livex.radiopopolare.it #COUNTRY:Italy #STATE: +#REGION: #LANGUAGE:Italian #DESCRIPTION:The radio who gives a voice to those who have not. #CODEC:MP3 diff --git a/docs/db/webradios/https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u b/docs/db/webradios/https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u index 1995844d..495545c6 100644 --- a/docs/db/webradios/https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u +++ b/docs/db/webradios/https___madmusicasylum_radioca_st_stream_type_http_nocache_36907.m3u @@ -6,6 +6,7 @@ #HOMEPAGE: #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___maggie_torontocast_com_8076_aac.m3u b/docs/db/webradios/https___maggie_torontocast_com_8076_aac.m3u index 31a0151f..f7a85bbc 100644 --- a/docs/db/webradios/https___maggie_torontocast_com_8076_aac.m3u +++ b/docs/db/webradios/https___maggie_torontocast_com_8076_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://jb-radio.net/ #COUNTRY:Canada #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:JB Radio is an alternative,non-commercial,web radio station. #CODEC:AAC diff --git a/docs/db/webradios/https___maggie_torontocast_com_8076_flac.m3u b/docs/db/webradios/https___maggie_torontocast_com_8076_flac.m3u index 9a53a41a..d5a66e62 100644 --- a/docs/db/webradios/https___maggie_torontocast_com_8076_flac.m3u +++ b/docs/db/webradios/https___maggie_torontocast_com_8076_flac.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://jb-radio.net/ #COUNTRY:Canada #STATE: -#LANGUAGE:English +#REGION: #CODEC:FLAC #BITRATE:0 https://maggie.torontocast.com:8076/flac diff --git a/docs/db/webradios/https___maximum_hostingradio_ru_maximum96_aacp.m3u b/docs/db/webradios/https___maximum_hostingradio_ru_maximum96_aacp.m3u index cfdfb598..88aa2d2d 100644 --- a/docs/db/webradios/https___maximum_hostingradio_ru_maximum96_aacp.m3u +++ b/docs/db/webradios/https___maximum_hostingradio_ru_maximum96_aacp.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://maximum.ru/ #COUNTRY:Russia #STATE: +#REGION: #LANGUAGE:Russian #DESCRIPTION:Radio Maximum provides twenty four hour mix of several genres and styles of music. #CODEC:AAC diff --git a/docs/db/webradios/https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u b/docs/db/webradios/https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u index 350cc828..cf97153d 100644 --- a/docs/db/webradios/https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u +++ b/docs/db/webradios/https___mega983_stweb_tv_mega983_live_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiomega.fm/ #COUNTRY:Argentina #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u b/docs/db/webradios/https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u index 60cd4ca0..b1101bba 100644 --- a/docs/db/webradios/https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u +++ b/docs/db/webradios/https___mint_ice_infomaniak_ch_mint-mp3-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://mint.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Mint radio est née de la fusion de BXL Radio et Contact 2 en 2007. #CODEC:MP3 diff --git a/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u b/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u index 313abb70..b967b1f2 100644 --- a/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u +++ b/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_jazz_motherearth_jazz.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://motherearthradio.de/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:HiRes Radio #CODEC:OGG diff --git a/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u b/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u index c7d06407..9e3a9161 100644 --- a/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u +++ b/docs/db/webradios/https___motherearth_streamserver24_com_listen_motherearth_motherearth.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://motherearthradio.de/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:HiRes Radio #CODEC:OGG diff --git a/docs/db/webradios/https___myradio24_org_radiometal.m3u b/docs/db/webradios/https___myradio24_org_radiometal.m3u index 1c0c7ca4..410b39a7 100644 --- a/docs/db/webradios/https___myradio24_org_radiometal.m3u +++ b/docs/db/webradios/https___myradio24_org_radiometal.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radio-metal.in.ua #COUNTRY:Ukraine #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:First Metal Radio in Ukraine! #CODEC:MP3 diff --git a/docs/db/webradios/https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u b/docs/db/webradios/https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u index d5455413..4e7a1496 100644 --- a/docs/db/webradios/https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u +++ b/docs/db/webradios/https___n09_rcs_revma_com_2u1n6dtbv4uvv_9_11l86ncot7z1w02_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://n09.rcs.revma.com/2u1n6dtbv4uvv/9_11l86ncot7z1w02/playlist.m3u8 #COUNTRY:Malaysia #STATE:Kuala Lumpur +#REGION:Kuala Lumpur #LANGUAGE:Chinese #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u b/docs/db/webradios/https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u index 5f6b36c1..051972fd 100644 --- a/docs/db/webradios/https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u +++ b/docs/db/webradios/https___nashe1_hostingradio_ru_80_ultra-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioultra.ru/ #COUNTRY:Russia #STATE: +#REGION: #LANGUAGE:Russian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___netradio_ziniur_lt_ziniur_64_mp3.m3u b/docs/db/webradios/https___netradio_ziniur_lt_ziniur_64_mp3.m3u index 246b2ad0..4de5f76f 100644 --- a/docs/db/webradios/https___netradio_ziniur_lt_ziniur_64_mp3.m3u +++ b/docs/db/webradios/https___netradio_ziniur_lt_ziniur_64_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.ziniuradijas.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___netradio_ziniuradijas_lt_ziniur_64_mp3.m3u b/docs/db/webradios/https___netradio_ziniuradijas_lt_ziniur_64_mp3.m3u index 82db3801..689d2675 100644 --- a/docs/db/webradios/https___netradio_ziniuradijas_lt_ziniur_64_mp3.m3u +++ b/docs/db/webradios/https___netradio_ziniuradijas_lt_ziniur_64_mp3.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.ziniuradijas.lt #COUNTRY:Lithuania #STATE: -#LANGUAGE:Lithuanian +#REGION: #CODEC:MP3 #BITRATE:64 https://netradio.ziniuradijas.lt/ziniur_64.mp3 diff --git a/docs/db/webradios/https___online_extrafm_lt_8443_extrafm_mp3.m3u b/docs/db/webradios/https___online_extrafm_lt_8443_extrafm_mp3.m3u index 2852303b..01937f1e 100644 --- a/docs/db/webradios/https___online_extrafm_lt_8443_extrafm_mp3.m3u +++ b/docs/db/webradios/https___online_extrafm_lt_8443_extrafm_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://extrafm.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u b/docs/db/webradios/https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u index 51cb91de..cbe45b45 100644 --- a/docs/db/webradios/https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u +++ b/docs/db/webradios/https___online_radiobayraktar_ua_RadioBayraktar_HD.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobayraktar.ua/ #COUNTRY:Ukraine #STATE: +#REGION: #LANGUAGE:Ukrainian #DESCRIPTION:Radio Bayraktar is a radio station of unprecedented Ukrainian resistance #CODEC:MP3 diff --git a/docs/db/webradios/https___online_radioroks_ua_RadioROKS_HD.m3u b/docs/db/webradios/https___online_radioroks_ua_RadioROKS_HD.m3u index 4169c5f6..ac409a33 100644 --- a/docs/db/webradios/https___online_radioroks_ua_RadioROKS_HD.m3u +++ b/docs/db/webradios/https___online_radioroks_ua_RadioROKS_HD.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radioroks.ua/ #COUNTRY:Ukraine #STATE: +#REGION: #LANGUAGE:Ukrainian #DESCRIPTION:Рок. Тільки рок! (Rock, only rock !) #CODEC:MP3 diff --git a/docs/db/webradios/https___orelha_radiolivre_org_radiopaulofreire.m3u b/docs/db/webradios/https___orelha_radiolivre_org_radiopaulofreire.m3u index eeb8345c..b0301df6 100644 --- a/docs/db/webradios/https___orelha_radiolivre_org_radiopaulofreire.m3u +++ b/docs/db/webradios/https___orelha_radiolivre_org_radiopaulofreire.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sites.ufpe.br/rpf/ #COUNTRY:Brazil #STATE:Pernambuco +#REGION:Pernambuco #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Paulo Freire - Rádio Universitária da UFPE #CODEC:MP3 diff --git a/docs/db/webradios/https___orf-live_ors-shoutcast_at_fm4-q2a.m3u b/docs/db/webradios/https___orf-live_ors-shoutcast_at_fm4-q2a.m3u index 25e6c2b9..616f4123 100644 --- a/docs/db/webradios/https___orf-live_ors-shoutcast_at_fm4-q2a.m3u +++ b/docs/db/webradios/https___orf-live_ors-shoutcast_at_fm4-q2a.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://fm4.orf.at/ #COUNTRY:Austria #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___orf-live_ors-shoutcast_at_oe1-q2a.m3u b/docs/db/webradios/https___orf-live_ors-shoutcast_at_oe1-q2a.m3u index 9908f6b5..3e3ae4b2 100644 --- a/docs/db/webradios/https___orf-live_ors-shoutcast_at_oe1-q2a.m3u +++ b/docs/db/webradios/https___orf-live_ors-shoutcast_at_oe1-q2a.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://oe1.orf.at/ #COUNTRY:Austria #STATE:Vienna +#REGION:Vienna #LANGUAGE:German #DESCRIPTION:Österreichischer Rundfunk, Stiftung öffentlichen Rechts #CODEC:MP3 diff --git a/docs/db/webradios/https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u b/docs/db/webradios/https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u index 37dab084..e32219e9 100644 --- a/docs/db/webradios/https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u +++ b/docs/db/webradios/https___ouifmacoustic_ice_infomaniak_ch_ouifmacoustic_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.ouifm.fr/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___paineldj5_com_br_20073_stream_1705993267781.m3u b/docs/db/webradios/https___paineldj5_com_br_20073_stream_1705993267781.m3u index fb50a894..304b2620 100644 --- a/docs/db/webradios/https___paineldj5_com_br_20073_stream_1705993267781.m3u +++ b/docs/db/webradios/https___paineldj5_com_br_20073_stream_1705993267781.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://fratevi.org.br/ #COUNTRY:Brazil #STATE:Minas Gerais +#REGION:Minas Gerais #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Para quem gosta de música e conteúdo! #CODEC:MP3 diff --git a/docs/db/webradios/https___play_r1_co_nz_live.m3u b/docs/db/webradios/https___play_r1_co_nz_live.m3u index 9cd61f2c..f9c02249 100644 --- a/docs/db/webradios/https___play_r1_co_nz_live.m3u +++ b/docs/db/webradios/https___play_r1_co_nz_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://r1.co.nz #COUNTRY:New Zealand #STATE:Dunedin +#REGION:Dunedin #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u index 7806f477..56af2282 100644 --- a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u +++ b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_2BOB_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.2bobradio.org.au/ #COUNTRY:Australia #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u index 5d5d0118..80da0117 100644 --- a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u +++ b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_BESAME_CR_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.besame.cr/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Bésame 89.9 FM es una emisora costarricense que transmite desde San José contenido muy variado. #CODEC:MP3 diff --git a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u index 7a2f4584..4e5465a4 100644 --- a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u +++ b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_CRC_947AAC_aac___819140.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.crc.cr/crc947/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Fundada desde 1994 y especializada en sintonizar éxitos musicales como Pop Inglés y Español. #CODEC:AAC diff --git a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u index 37a57e5a..9d095ac0 100644 --- a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u +++ b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QMUSIC_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://qmusic.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u index 7c02a793..192d99f9 100644 --- a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u +++ b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_QTEJA_CRAAC_SC.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lacaliente.cr/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:La Caliente ofrece a sus oyentes una programación muy diversa. #CODEC:AAC diff --git a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u index 6a78febb..0ea7ccdb 100644 --- a/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u +++ b/docs/db/webradios/https___playerservices_streamtheworld_com_api_livestream-redirect_RadioBandeirantesAAC_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Bandeirantes (São Paulo) #CODEC:AAC+ diff --git a/docs/db/webradios/https___proic1_evspt_com_oxigenio_aac.m3u b/docs/db/webradios/https___proic1_evspt_com_oxigenio_aac.m3u index b7e74ffa..5518f6bd 100644 --- a/docs/db/webradios/https___proic1_evspt_com_oxigenio_aac.m3u +++ b/docs/db/webradios/https___proic1_evspt_com_oxigenio_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.oxigenio.fm/ #COUNTRY:Portugal #STATE: +#REGION: #LANGUAGE:Portuguese #DESCRIPTION:Música para respirar #CODEC:AAC diff --git a/docs/db/webradios/https___proic1_evspt_com_oxigenio_mp3.m3u b/docs/db/webradios/https___proic1_evspt_com_oxigenio_mp3.m3u index dfe01e86..106a14d0 100644 --- a/docs/db/webradios/https___proic1_evspt_com_oxigenio_mp3.m3u +++ b/docs/db/webradios/https___proic1_evspt_com_oxigenio_mp3.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.oxigenio.fm/ #COUNTRY:Portugal #STATE: -#LANGUAGE:Portuguese +#REGION: #CODEC:MP3 #BITRATE:192 https://proic1.evspt.com/oxigenio_mp3 diff --git a/docs/db/webradios/https___r1_comcities_com_proxy_emogddug_stream.m3u b/docs/db/webradios/https___r1_comcities_com_proxy_emogddug_stream.m3u index f9254f14..4a491410 100644 --- a/docs/db/webradios/https___r1_comcities_com_proxy_emogddug_stream.m3u +++ b/docs/db/webradios/https___r1_comcities_com_proxy_emogddug_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.groovyradio.us #COUNTRY:United States #STATE:Ohio +#REGION:Ohio #LANGUAGE:English #DESCRIPTION:Non-Stop 60's and 70's All Hit Oldies #CODEC:MP3 diff --git a/docs/db/webradios/https___radio10_pro-fhi_net_radio_9041_stream.m3u b/docs/db/webradios/https___radio10_pro-fhi_net_radio_9041_stream.m3u index f668191f..ab01fe89 100644 --- a/docs/db/webradios/https___radio10_pro-fhi_net_radio_9041_stream.m3u +++ b/docs/db/webradios/https___radio10_pro-fhi_net_radio_9041_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://rinse.fm/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radio_m-1_fm_M-1H.m3u b/docs/db/webradios/https___radio_m-1_fm_M-1H.m3u index 7c804fdf..5b68d5c5 100644 --- a/docs/db/webradios/https___radio_m-1_fm_M-1H.m3u +++ b/docs/db/webradios/https___radio_m-1_fm_M-1H.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.m-1.fm #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radio_m-1_fm_laluna_mp3.m3u b/docs/db/webradios/https___radio_m-1_fm_laluna_mp3.m3u index 2d3f1e2a..0c9e63eb 100644 --- a/docs/db/webradios/https___radio_m-1_fm_laluna_mp3.m3u +++ b/docs/db/webradios/https___radio_m-1_fm_laluna_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.laluna.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radio_m-1_fm_m-1dance_aac.m3u b/docs/db/webradios/https___radio_m-1_fm_m-1dance_aac.m3u index 791364b9..4c3ceb5c 100644 --- a/docs/db/webradios/https___radio_m-1_fm_m-1dance_aac.m3u +++ b/docs/db/webradios/https___radio_m-1_fm_m-1dance_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://m-1dance.fm #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___radio_m-1_fm_m1plius_mp3.m3u b/docs/db/webradios/https___radio_m-1_fm_m1plius_mp3.m3u index d63e08d7..b0ae0acf 100644 --- a/docs/db/webradios/https___radio_m-1_fm_m1plius_mp3.m3u +++ b/docs/db/webradios/https___radio_m-1_fm_m1plius_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.pliusas.fm #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radio_promodj_com_fullmoon-192.m3u b/docs/db/webradios/https___radio_promodj_com_fullmoon-192.m3u index 76424f35..bde5d246 100644 --- a/docs/db/webradios/https___radio_promodj_com_fullmoon-192.m3u +++ b/docs/db/webradios/https___radio_promodj_com_fullmoon-192.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://promodj.com/radio#fullmoon #COUNTRY:Russia #STATE: +#REGION: #LANGUAGE:English, Russian #DESCRIPTION:Trance always. Trance everywhere. Trance 24/7. #CODEC:MP3 diff --git a/docs/db/webradios/https___radio_sec_unicamp_br_aovivo_1698904239205.m3u b/docs/db/webradios/https___radio_sec_unicamp_br_aovivo_1698904239205.m3u index e3e54d82..c80595fb 100644 --- a/docs/db/webradios/https___radio_sec_unicamp_br_aovivo_1698904239205.m3u +++ b/docs/db/webradios/https___radio_sec_unicamp_br_aovivo_1698904239205.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.sec.unicamp.br/web-radio-2/ #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Música e informação de qualidade! #CODEC:MPEG diff --git a/docs/db/webradios/https___radio_sk8ter_org_8443_stream.m3u b/docs/db/webradios/https___radio_sk8ter_org_8443_stream.m3u index 2350d9ac..62f54235 100644 --- a/docs/db/webradios/https___radio_sk8ter_org_8443_stream.m3u +++ b/docs/db/webradios/https___radio_sk8ter_org_8443_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://memeradio.org #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Web radio électro #CODEC:MP3 diff --git a/docs/db/webradios/https___radio_streamgates_net_stream_oranim.m3u b/docs/db/webradios/https___radio_streamgates_net_stream_oranim.m3u index 3d11bc1f..7d6edf36 100644 --- a/docs/db/webradios/https___radio_streamgates_net_stream_oranim.m3u +++ b/docs/db/webradios/https___radio_streamgates_net_stream_oranim.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.oranim.ac.il/sites/heb/community/radio-oranim/pages/default.aspx #COUNTRY:Israel #STATE: +#REGION: #LANGUAGE:Hebrew #DESCRIPTION:Educational-Community radio station, operated by Oranim College of Education and licensed by the IBA (Israel Broadcast Authority). The station broadcasts at 103.6 FM in the Kiryat-Tivon area. Programs are produced either by students attending the college or people from the community. #CODEC:MP3 diff --git a/docs/db/webradios/https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u b/docs/db/webradios/https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u index 577a8562..7176e18b 100644 --- a/docs/db/webradios/https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u +++ b/docs/db/webradios/https___radiocontact_ice_infomaniak_ch_radiocontact-mp3-192_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiocontact.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u b/docs/db/webradios/https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u index 675221de..d9aa01c4 100644 --- a/docs/db/webradios/https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u +++ b/docs/db/webradios/https___radiodue-live_akamaized_net_hls_live_2032592_radiodue_radiodue_radio2_256_chunklist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.raiplaysound.it/radio2 #COUNTRY:Italy #STATE:Roma +#REGION:Roma #LANGUAGE:Italian #DESCRIPTION:Rai Radio 2 91.7 FM #CODEC:AAC diff --git a/docs/db/webradios/https___radiofunandmore_spcast_eu_dj03.m3u b/docs/db/webradios/https___radiofunandmore_spcast_eu_dj03.m3u index 40043239..28ef69de 100644 --- a/docs/db/webradios/https___radiofunandmore_spcast_eu_dj03.m3u +++ b/docs/db/webradios/https___radiofunandmore_spcast_eu_dj03.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiofunandmore.de #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Dein Sender Deine Hits #CODEC:MP3 diff --git a/docs/db/webradios/https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u b/docs/db/webradios/https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u index 05b01724..77e8d0a8 100644 --- a/docs/db/webradios/https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u +++ b/docs/db/webradios/https___radionacionalaltosolimoes-stream_ebc_com_br_ebc_radionacionalaltosolimoes_chunks_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radios.ebc.com.br/nacionalaltosolimoes #COUNTRY:Brazil #STATE:Amazonas +#REGION:Amazonas #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Nacional do Alto Solimões - EBC #CODEC:AAC diff --git a/docs/db/webradios/https___radios_rtbf_be_classic21-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_classic21-128_mp3.m3u index 138a6a02..3ad7656d 100644 --- a/docs/db/webradios/https___radios_rtbf_be_classic21-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_classic21-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/classic21/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_jam-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_jam-128_mp3.m3u index 8973ce3c..c12b4ec5 100644 --- a/docs/db/webradios/https___radios_rtbf_be_jam-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_jam-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/jam #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_laprem1ere-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_laprem1ere-128_mp3.m3u index 4e9953a7..dd6423ec 100644 --- a/docs/db/webradios/https___radios_rtbf_be_laprem1ere-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_laprem1ere-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/lapremiere/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:La Première (« La 1ère »), est la première station de radio publique de la Radio-télévision belge de la Communauté française (RTBF). Sa programmation est généraliste et axée sur l'information et la culture. #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_musiq3-128_aac.m3u b/docs/db/webradios/https___radios_rtbf_be_musiq3-128_aac.m3u index d96f7158..19878c82 100644 --- a/docs/db/webradios/https___radios_rtbf_be_musiq3-128_aac.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_musiq3-128_aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/musiq3/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___radios_rtbf_be_pure-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_pure-128_mp3.m3u index e059f816..46507da1 100644 --- a/docs/db/webradios/https___radios_rtbf_be_pure-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_pure-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/tipik/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:null #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_rtbfmix-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_rtbfmix-128_mp3.m3u index f37b3053..74f8dbfe 100644 --- a/docs/db/webradios/https___radios_rtbf_be_rtbfmix-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_rtbfmix-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/rtbfmix #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_tarmac-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_tarmac-128_mp3.m3u index d70e130b..fffc083f 100644 --- a/docs/db/webradios/https___radios_rtbf_be_tarmac-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_tarmac-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/Tarmac #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_vivaliege-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_vivaliege-128_mp3.m3u index 6563cff9..4fd67aed 100644 --- a/docs/db/webradios/https___radios_rtbf_be_vivaliege-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_vivaliege-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/vivacite/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_vivaplus-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_vivaplus-128_mp3.m3u index 87ad7ab7..93b4ffb4 100644 --- a/docs/db/webradios/https___radios_rtbf_be_vivaplus-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_vivaplus-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/vivaplus #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-c21-60-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-c21-60-128_mp3.m3u index 5bd85357..5ea7f768 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-c21-60-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-c21-60-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/classic21/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Le meilleur Rock'n'Pop des années 60 #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-c21-70-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-c21-70-128_mp3.m3u index 1fda59b3..4a3af9ed 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-c21-70-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-c21-70-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/classic21/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-c21-80-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-c21-80-128_mp3.m3u index cae38be8..8d3f9d29 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-c21-80-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-c21-80-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/classic21/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Rock'n'Pop of the 80's #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-c21-90-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-c21-90-128_mp3.m3u index 7aa16c63..134c559f 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-c21-90-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-c21-90-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/classic21/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u index 54e40aa8..1a45f056 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-c21-route66-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/classic21/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u index 617ac5f7..7b270846 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-m3-baroque-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/musiq3/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Un voyage dans l'Europe musicale, de la Renaissance jusque 1750 #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u index 31066fdf..54d14ee7 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-m3-jazz-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/musiq3/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Du jazz belge et international pour tous, des années 20 à nos jours #CODEC:MP3 diff --git a/docs/db/webradios/https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u b/docs/db/webradios/https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u index 9d313b31..bcb95d38 100644 --- a/docs/db/webradios/https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u +++ b/docs/db/webradios/https___radios_rtbf_be_wr-m3-romantique-128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rtbf.be/musiq3/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Les plus grandes pages de la musique romantique #CODEC:MP3 diff --git a/docs/db/webradios/https___radioshamfm_grtvstream_com_8400__.m3u b/docs/db/webradios/https___radioshamfm_grtvstream_com_8400__.m3u index c4fc3d3f..8c928e99 100644 --- a/docs/db/webradios/https___radioshamfm_grtvstream_com_8400__.m3u +++ b/docs/db/webradios/https___radioshamfm_grtvstream_com_8400__.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sham.fm/ar/index.html #COUNTRY:Syria #STATE: +#REGION: #LANGUAGE:Arabic #DESCRIPTION:Sham FM #CODEC:MP3 diff --git a/docs/db/webradios/https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u b/docs/db/webradios/https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u index 9e02ae92..930be35f 100644 --- a/docs/db/webradios/https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u +++ b/docs/db/webradios/https___radiostreams_streamcomedia_com_8000_969guardianradio.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://guardiantalkradio.com #COUNTRY:Bahamas #STATE:Nassau +#REGION:Nassau #LANGUAGE:English #DESCRIPTION:Guardian Radio 96.9 FM #CODEC:MPEG diff --git a/docs/db/webradios/https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u b/docs/db/webradios/https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u index 67961455..932aec5f 100644 --- a/docs/db/webradios/https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u +++ b/docs/db/webradios/https___radiotre-live_akamaized_net_hls_live_2032594_radiotre_radiotre_radio3_256_chunklist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.raiplaysound.it/radio3 #COUNTRY:Italy #STATE:Roma +#REGION:Roma #LANGUAGE:Italian #DESCRIPTION:Rai Radio 3 93.7 FM #CODEC:AAC diff --git a/docs/db/webradios/https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u b/docs/db/webradios/https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u index 2a9f081d..227d34ba 100644 --- a/docs/db/webradios/https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u +++ b/docs/db/webradios/https___radiounoest-live_akamaized_net_hls_live_2032586_radiounoest_radiounoest_radio1est_256_chunklist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.raiplaysound.it/radio1 #COUNTRY:Italy #STATE:Roma +#REGION:Roma #LANGUAGE:Italian #DESCRIPTION:Rai Radio 1 89.7 FM #CODEC:AAC diff --git a/docs/db/webradios/https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u b/docs/db/webradios/https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u index 1544fb6a..4eab4046 100644 --- a/docs/db/webradios/https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u +++ b/docs/db/webradios/https___rbx2_hnux_com_http___10454_cloudrad_io_6176__stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio.ibctamil.com/ #COUNTRY:India #STATE: +#REGION: #LANGUAGE:Tamil #DESCRIPTION:IBC Tamil offers an excellent line-up of regular and one-off shows #CODEC:MP3 diff --git a/docs/db/webradios/https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u b/docs/db/webradios/https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u index 317dbba7..7c8cf68f 100644 --- a/docs/db/webradios/https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u +++ b/docs/db/webradios/https___rcavliveaudio_akamaized_net_hls_live_2006635_P-2QMTL0_MTL_playlist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://ici.radio-canada.ca/ #COUNTRY:Canada #STATE:Montreal +#REGION:Montreal #LANGUAGE:French #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___relay2_bide-et-musique_com_9300_bm_mp3.m3u b/docs/db/webradios/https___relay2_bide-et-musique_com_9300_bm_mp3.m3u index 6e32b0ea..23561ac6 100644 --- a/docs/db/webradios/https___relay2_bide-et-musique_com_9300_bm_mp3.m3u +++ b/docs/db/webradios/https___relay2_bide-et-musique_com_9300_bm_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.bide-et-musique.com/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Bide et Musique (parfois abrégé B&M) est une webradio associative française créée en 2000. Le bide est un morceau de variété (souvent chanté, parfois instrumental, parfois on se demande) pour lequel on a une tendresse particulière, auquel on souhaite donner une importance qu'il n'a pas nécessairement eue dans l'histoire de la musique et, bien entendu, que l'on a plaisir à entendre… et réentendre… et… #CODEC:MP3 diff --git a/docs/db/webradios/https___s02_brascast_com_7386_live.m3u b/docs/db/webradios/https___s02_brascast_com_7386_live.m3u index f3446365..ca19a6b7 100644 --- a/docs/db/webradios/https___s02_brascast_com_7386_live.m3u +++ b/docs/db/webradios/https___s02_brascast_com_7386_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.focolivre.com.br/ #COUNTRY:Brazil #STATE:Santa Catarina +#REGION:Santa Catarina #LANGUAGE:Portuguese #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___s09_hstbr_net_8238_live_1514038524061.m3u b/docs/db/webradios/https___s09_hstbr_net_8238_live_1514038524061.m3u index a658241c..9dfcd098 100644 --- a/docs/db/webradios/https___s09_hstbr_net_8238_live_1514038524061.m3u +++ b/docs/db/webradios/https___s09_hstbr_net_8238_live_1514038524061.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.brasildefato.com.br/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Brasil de Fato - Uma visão popular do Brasil e do mundo #CODEC:MP3 diff --git a/docs/db/webradios/https___s1_knixx_fm_dein_webradio_256_mp3.m3u b/docs/db/webradios/https___s1_knixx_fm_dein_webradio_256_mp3.m3u index b6b92c55..638611d8 100644 --- a/docs/db/webradios/https___s1_knixx_fm_dein_webradio_256_mp3.m3u +++ b/docs/db/webradios/https___s1_knixx_fm_dein_webradio_256_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://knixx.fm/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Musik von den 60ern bis heute. #CODEC:MP3 diff --git a/docs/db/webradios/https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u b/docs/db/webradios/https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u index f328e8e6..d8ade552 100644 --- a/docs/db/webradios/https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u +++ b/docs/db/webradios/https___s2_ssl-stream_com_radio_8160_radio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://labgateradio.com #COUNTRY:Canada #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:All the Best from Pink Floyd, Yes and Genesis #CODEC:MP3 diff --git a/docs/db/webradios/https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u b/docs/db/webradios/https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u index 0b41e25f..967e8b0c 100644 --- a/docs/db/webradios/https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u +++ b/docs/db/webradios/https___s2_ssl-stream_com_radio_8180_radio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://labgateradio.com #COUNTRY:Canada #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:All the legends of Progressive Rock This channel plays music from 70's, 80's, 90's and 2000's. #CODEC:MP3 diff --git a/docs/db/webradios/https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u b/docs/db/webradios/https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u index f85d2605..8b99c015 100644 --- a/docs/db/webradios/https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u +++ b/docs/db/webradios/https___s37_maxcast_com_br_8450_live_id_1698623926568.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiopopgoiaba.uff.br/pop-goiaba-uff/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Pop Goiaba UFF #CODEC:MPEG diff --git a/docs/db/webradios/https___s5_radio_co_s23b8ada46_listen.m3u b/docs/db/webradios/https___s5_radio_co_s23b8ada46_listen.m3u index c1014c13..db69bc45 100644 --- a/docs/db/webradios/https___s5_radio_co_s23b8ada46_listen.m3u +++ b/docs/db/webradios/https___s5_radio_co_s23b8ada46_listen.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://oroko.live/ #COUNTRY:Ghana #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___s5_radio_co_sd515b7b34_listen.m3u b/docs/db/webradios/https___s5_radio_co_sd515b7b34_listen.m3u index 49589965..3f16bcbf 100644 --- a/docs/db/webradios/https___s5_radio_co_sd515b7b34_listen.m3u +++ b/docs/db/webradios/https___s5_radio_co_sd515b7b34_listen.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiodos.com/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Éxitos que fueron de UNO y ahora son de DOS 99.5 FM. #CODEC:MP3 diff --git a/docs/db/webradios/https___s61_radiolize_com_radio_8000_radio_mp3.m3u b/docs/db/webradios/https___s61_radiolize_com_radio_8000_radio_mp3.m3u index d336812a..d391106c 100644 --- a/docs/db/webradios/https___s61_radiolize_com_radio_8000_radio_mp3.m3u +++ b/docs/db/webradios/https___s61_radiolize_com_radio_8000_radio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://smart2000s.com/cool-songs-for-2000-theme-party/ #COUNTRY:Ukraine #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Cool Songs For 2000 Theme Party #CODEC:MP3 diff --git a/docs/db/webradios/https___server1_fex_red_8366_stream.m3u b/docs/db/webradios/https___server1_fex_red_8366_stream.m3u index 70a24e3b..607c6378 100644 --- a/docs/db/webradios/https___server1_fex_red_8366_stream.m3u +++ b/docs/db/webradios/https___server1_fex_red_8366_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiogentebol.com/ #COUNTRY:Bolivia #STATE: +#REGION: #LANGUAGE:Español #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___servidor21_brlogic_com_7712_live.m3u b/docs/db/webradios/https___servidor21_brlogic_com_7712_live.m3u index a0a672de..885c3664 100644 --- a/docs/db/webradios/https___servidor21_brlogic_com_7712_live.m3u +++ b/docs/db/webradios/https___servidor21_brlogic_com_7712_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio.ufrj.br/ #COUNTRY:Brazil #STATE: +#REGION: #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Radio Universitária da Universidade Federal do Rio de Janeiro #CODEC:MP3 diff --git a/docs/db/webradios/https___servidor22-3_brlogic_com_7404_live.m3u b/docs/db/webradios/https___servidor22-3_brlogic_com_7404_live.m3u index 33921476..2350ca42 100644 --- a/docs/db/webradios/https___servidor22-3_brlogic_com_7404_live.m3u +++ b/docs/db/webradios/https___servidor22-3_brlogic_com_7404_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiouerj.com/app/index.html #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Conectando você ao conhecimento! #CODEC:MP3 diff --git a/docs/db/webradios/https___servidor35-1_brlogic_com_8062_live.m3u b/docs/db/webradios/https___servidor35-1_brlogic_com_8062_live.m3u index b212fc64..abf46743 100644 --- a/docs/db/webradios/https___servidor35-1_brlogic_com_8062_live.m3u +++ b/docs/db/webradios/https___servidor35-1_brlogic_com_8062_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.fferj.com.br/radio #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio FERJ #CODEC:MP3 diff --git a/docs/db/webradios/https___servidor38-2_brlogic_com_8134_live.m3u b/docs/db/webradios/https___servidor38-2_brlogic_com_8134_live.m3u index 2d8a2df1..b291a6cb 100644 --- a/docs/db/webradios/https___servidor38-2_brlogic_com_8134_live.m3u +++ b/docs/db/webradios/https___servidor38-2_brlogic_com_8134_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioupf.minhawebradio.net/app/index.html #COUNTRY:Brazil #STATE:Rio Grande Do Sul +#REGION:Rio Grande Do Sul #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio UPF 99.9 FM #CODEC:MPEG diff --git a/docs/db/webradios/https___servidor39-3_brlogic_com_8180_live.m3u b/docs/db/webradios/https___servidor39-3_brlogic_com_8180_live.m3u index 7200d424..731d1493 100644 --- a/docs/db/webradios/https___servidor39-3_brlogic_com_8180_live.m3u +++ b/docs/db/webradios/https___servidor39-3_brlogic_com_8180_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiouniso.com #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A Rádio Uniso mostra o trabalho dos universitários com suas produções durante o ano. #CODEC:MPEG diff --git a/docs/db/webradios/https___sk_cri_cn_am846_m3u8.m3u b/docs/db/webradios/https___sk_cri_cn_am846_m3u8.m3u index cfd9d045..245e0831 100644 --- a/docs/db/webradios/https___sk_cri_cn_am846_m3u8.m3u +++ b/docs/db/webradios/https___sk_cri_cn_am846_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://chinaplus.cri.cn #COUNTRY:China #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:China Plus (China Radio International) - English #CODEC:ADTS diff --git a/docs/db/webradios/https___sk_cri_cn_frenchafrica_m3u8.m3u b/docs/db/webradios/https___sk_cri_cn_frenchafrica_m3u8.m3u index 5fd36e41..22bf75fa 100644 --- a/docs/db/webradios/https___sk_cri_cn_frenchafrica_m3u8.m3u +++ b/docs/db/webradios/https___sk_cri_cn_frenchafrica_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio.cgtn.com/ #COUNTRY:China #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:CGTN Radio Français #CODEC:ADTS diff --git a/docs/db/webradios/https___sk_cri_cn_nhzs_m3u8.m3u b/docs/db/webradios/https___sk_cri_cn_nhzs_m3u8.m3u index 19fdc437..c7f16d6c 100644 --- a/docs/db/webradios/https___sk_cri_cn_nhzs_m3u8.m3u +++ b/docs/db/webradios/https___sk_cri_cn_nhzs_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://vscs.cri.cn #COUNTRY:China #STATE: +#REGION: #LANGUAGE:Chinese #DESCRIPTION:CRI Voice of the South China Sea 89.1 FM #CODEC:ADTS diff --git a/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u b/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u index fe4f0226..e6c264a2 100644 --- a/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u +++ b/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia2_mp__stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.inconfidencia.com.br/ #COUNTRY:Brazil #STATE:Minas Gerais +#REGION:Minas Gerais #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Uma Rádio Para Todos e Todas! #CODEC:AAC diff --git a/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u b/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u index 439410f6..8ca73ce7 100644 --- a/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u +++ b/docs/db/webradios/https___ssl_zoeweb_net_proxy_inconfidencia_mp__stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.inconfidencia.com.br/ #COUNTRY:Brazil #STATE:Minas Gerais +#REGION:Minas Gerais #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Inconfidência 100.9 FM #CODEC:AAC diff --git a/docs/db/webradios/https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u b/docs/db/webradios/https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u index bc795be8..5cb85389 100644 --- a/docs/db/webradios/https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u +++ b/docs/db/webradios/https___st1_urbanrevolution_es_8443_laurbanfm_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.urbanrevolution.es #COUNTRY:Spain #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Nuevos talentos y grandes artistas se dan la mano en La Urban Radio. #CODEC:MP3 diff --git a/docs/db/webradios/https___stm23_xcast_com_br_11284_stream_1705992834372.m3u b/docs/db/webradios/https___stm23_xcast_com_br_11284_stream_1705992834372.m3u index d1f6b182..92cda6a5 100644 --- a/docs/db/webradios/https___stm23_xcast_com_br_11284_stream_1705992834372.m3u +++ b/docs/db/webradios/https___stm23_xcast_com_br_11284_stream_1705992834372.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.band.uol.com.br/radios/radio-bandeirantes/campinas #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Bandeirantes (Campinas) #CODEC:MP3 diff --git a/docs/db/webradios/https___str1_castradios_com_br_10998_stream.m3u b/docs/db/webradios/https___str1_castradios_com_br_10998_stream.m3u index 56a8ece7..85226104 100644 --- a/docs/db/webradios/https___str1_castradios_com_br_10998_stream.m3u +++ b/docs/db/webradios/https___str1_castradios_com_br_10998_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio365.com.br/ #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A sua rádio de todos os dias! #CODEC:MP3 diff --git a/docs/db/webradios/https___str_topradio_be_topradio_mp3.m3u b/docs/db/webradios/https___str_topradio_be_topradio_mp3.m3u index 356060fc..4c2700ff 100644 --- a/docs/db/webradios/https___str_topradio_be_topradio_mp3.m3u +++ b/docs/db/webradios/https___str_topradio_be_topradio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.topradio.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream-156_zeno_fm_22db1xmde2zuv.m3u b/docs/db/webradios/https___stream-156_zeno_fm_22db1xmde2zuv.m3u index 269682ff..1675bf3b 100644 --- a/docs/db/webradios/https___stream-156_zeno_fm_22db1xmde2zuv.m3u +++ b/docs/db/webradios/https___stream-156_zeno_fm_22db1xmde2zuv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://tamilradios.net/arumbu-fm/ #COUNTRY:India #STATE:Tamilnadu +#REGION:Tamilnadu #LANGUAGE:Tamil #DESCRIPTION:Arumbu FM is a Tamil internet radio station from Aruppukkottai,TN. Arumbu FM plays non stop Tamil super hit songs #CODEC:MP3 diff --git a/docs/db/webradios/https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u b/docs/db/webradios/https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u index a194190a..e71c30f6 100644 --- a/docs/db/webradios/https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u +++ b/docs/db/webradios/https___stream-live_lrt_lt_klasika_stream04_streamPlaylist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u b/docs/db/webradios/https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u index 4b312aae..88bcaa6e 100644 --- a/docs/db/webradios/https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u +++ b/docs/db/webradios/https___stream-live_lrt_lt_opus_stream04_streamPlaylist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u b/docs/db/webradios/https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u index e79f41e9..a60d0b1b 100644 --- a/docs/db/webradios/https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u +++ b/docs/db/webradios/https___stream-live_lrt_lt_radijas_stream04_streamPlaylist_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:HLS diff --git a/docs/db/webradios/https___stream128_kngi_org.m3u b/docs/db/webradios/https___stream128_kngi_org.m3u index 2ba867fa..f5b128e4 100644 --- a/docs/db/webradios/https___stream128_kngi_org.m3u +++ b/docs/db/webradios/https___stream128_kngi_org.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://kngi.org #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:The KNGI Network is a variety network emphasizing the promotion and preservation of video game music and independent music communities, alongside other thought-provoking and entertaining topics of interest. #CODEC:MP3 diff --git a/docs/db/webradios/https___stream1_svrdedicado_org_8028_stream.m3u b/docs/db/webradios/https___stream1_svrdedicado_org_8028_stream.m3u index 12f1c5c9..d0e8f997 100644 --- a/docs/db/webradios/https___stream1_svrdedicado_org_8028_stream.m3u +++ b/docs/db/webradios/https___stream1_svrdedicado_org_8028_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radiolam.wixsite.com/24horas #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rock & Blues 24 horas! #CODEC:MP3 diff --git a/docs/db/webradios/https___stream2_relaxfm_lt_relaxfm128_mp3.m3u b/docs/db/webradios/https___stream2_relaxfm_lt_relaxfm128_mp3.m3u index b5bbbff1..0a873b6a 100644 --- a/docs/db/webradios/https___stream2_relaxfm_lt_relaxfm128_mp3.m3u +++ b/docs/db/webradios/https___stream2_relaxfm_lt_relaxfm128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://relaxfm.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream2_rockfm_lt_crf128_mp3.m3u b/docs/db/webradios/https___stream2_rockfm_lt_crf128_mp3.m3u index 633b0169..13000ae0 100644 --- a/docs/db/webradios/https___stream2_rockfm_lt_crf128_mp3.m3u +++ b/docs/db/webradios/https___stream2_rockfm_lt_crf128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://rockfm.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u b/docs/db/webradios/https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u index 70843b20..63f4467c 100644 --- a/docs/db/webradios/https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u +++ b/docs/db/webradios/https___stream3_camara_gov_br_radiocamara1t64_manifest_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.camara.leg.br/radio #COUNTRY:Brazil #STATE:Brasilia +#REGION:Brasilia #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Câmara 96.9 FM #CODEC:ADTS diff --git a/docs/db/webradios/https___stream_animeradio_de_animeradio_aac.m3u b/docs/db/webradios/https___stream_animeradio_de_animeradio_aac.m3u index 92a08654..e0240436 100644 --- a/docs/db/webradios/https___stream_animeradio_de_animeradio_aac.m3u +++ b/docs/db/webradios/https___stream_animeradio_de_animeradio_aac.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.animeradio.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German, Japanese +#REGION: #CODEC:AAC #BITRATE:32 https://stream.animeradio.de/animeradio.aac diff --git a/docs/db/webradios/https___stream_animeradio_de_animeradio_mp3.m3u b/docs/db/webradios/https___stream_animeradio_de_animeradio_mp3.m3u index 2e435d99..485ac90d 100644 --- a/docs/db/webradios/https___stream_animeradio_de_animeradio_mp3.m3u +++ b/docs/db/webradios/https___stream_animeradio_de_animeradio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.animeradio.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German, Japanese #DESCRIPTION:Wir spielen deine Lieblingsmusik aus Japan und das Beste aus dem Westen. #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_ceit_be_sudradio-hainaut.m3u b/docs/db/webradios/https___stream_ceit_be_sudradio-hainaut.m3u index 61d68463..a8f3670c 100644 --- a/docs/db/webradios/https___stream_ceit_be_sudradio-hainaut.m3u +++ b/docs/db/webradios/https___stream_ceit_be_sudradio-hainaut.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sudradio.net #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_ehr_lt_8443_ehr.m3u b/docs/db/webradios/https___stream_ehr_lt_8443_ehr.m3u index 38b441f3..57fd4f19 100644 --- a/docs/db/webradios/https___stream_ehr_lt_8443_ehr.m3u +++ b/docs/db/webradios/https___stream_ehr_lt_8443_ehr.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.europeanhitradio.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian, English #DESCRIPTION: #CODEC:HE-AAC diff --git a/docs/db/webradios/https___stream_radiomustathens_com_must-hero.m3u b/docs/db/webradios/https___stream_radiomustathens_com_must-hero.m3u index 8049b31d..473bf7eb 100644 --- a/docs/db/webradios/https___stream_radiomustathens_com_must-hero.m3u +++ b/docs/db/webradios/https___stream_radiomustathens_com_must-hero.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://app.radiomustathens.com/#/must-hero #COUNTRY:Greece #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_radioparadise_com_aac-320.m3u b/docs/db/webradios/https___stream_radioparadise_com_aac-320.m3u index bd8f7838..4abe7f2d 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_aac-320.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_aac-320.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___stream_radioparadise_com_flacm.m3u b/docs/db/webradios/https___stream_radioparadise_com_flacm.m3u index 5f0d8498..1dc46c14 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_flacm.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_flacm.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: -#LANGUAGE:English +#REGION: #CODEC:FLAC #BITRATE:900 https://stream.radioparadise.com/flacm diff --git a/docs/db/webradios/https___stream_radioparadise_com_mellow-320.m3u b/docs/db/webradios/https___stream_radioparadise_com_mellow-320.m3u index 5a4b8bec..8cf4add3 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_mellow-320.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_mellow-320.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___stream_radioparadise_com_mellow-flacm.m3u b/docs/db/webradios/https___stream_radioparadise_com_mellow-flacm.m3u index f240915c..f5dbe34a 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_mellow-flacm.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_mellow-flacm.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: -#LANGUAGE:English +#REGION: #CODEC:FLAC #BITRATE:900 https://stream.radioparadise.com/mellow-flacm diff --git a/docs/db/webradios/https___stream_radioparadise_com_rock-320.m3u b/docs/db/webradios/https___stream_radioparadise_com_rock-320.m3u index 5fe3e734..c5de02ae 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_rock-320.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_rock-320.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___stream_radioparadise_com_rock-flacm.m3u b/docs/db/webradios/https___stream_radioparadise_com_rock-flacm.m3u index dc818b24..af1013af 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_rock-flacm.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_rock-flacm.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: -#LANGUAGE:English +#REGION: #CODEC:FLAC #BITRATE:900 https://stream.radioparadise.com/rock-flacm diff --git a/docs/db/webradios/https___stream_radioparadise_com_world-etc-320.m3u b/docs/db/webradios/https___stream_radioparadise_com_world-etc-320.m3u index 105f6969..5d590621 100644 --- a/docs/db/webradios/https___stream_radioparadise_com_world-etc-320.m3u +++ b/docs/db/webradios/https___stream_radioparadise_com_world-etc-320.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radioparadise.com #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___stream_rcs_revma_com_anew1ctrgzzuv.m3u b/docs/db/webradios/https___stream_rcs_revma_com_anew1ctrgzzuv.m3u index 640cf478..827030a2 100644 --- a/docs/db/webradios/https___stream_rcs_revma_com_anew1ctrgzzuv.m3u +++ b/docs/db/webradios/https___stream_rcs_revma_com_anew1ctrgzzuv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.dhnet.be/medias/dh-radio #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:DH Radio (« Dernière Heure Radio », anciennement Twizz et Ciel radio) est une radio belge née à Seraing. #CODEC:AAC diff --git a/docs/db/webradios/https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u b/docs/db/webradios/https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u index 8890cfce..92102761 100644 --- a/docs/db/webradios/https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u +++ b/docs/db/webradios/https___stream_rcs_revma_com_cm96zpmrmm0uv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://mustfm.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Must FM est une station de radio à caractère provincial Belgique, dans le Brabant Wallon. #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_rcs_revma_com_f31w7e0fveuvv.m3u b/docs/db/webradios/https___stream_rcs_revma_com_f31w7e0fveuvv.m3u index 1df4cd31..380229cc 100644 --- a/docs/db/webradios/https___stream_rcs_revma_com_f31w7e0fveuvv.m3u +++ b/docs/db/webradios/https___stream_rcs_revma_com_f31w7e0fveuvv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://powerhitradio.tv3.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u b/docs/db/webradios/https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u index d1f07b3b..04798b6a 100644 --- a/docs/db/webradios/https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u +++ b/docs/db/webradios/https___stream_rcs_revma_com_vnmbzemrmm0uv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.maximumfm.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Maximum FM est une station de radio musicale belge francophone diffusant en province de Liège. #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_rcs_revma_com_xh00fwuptg0uv.m3u b/docs/db/webradios/https___stream_rcs_revma_com_xh00fwuptg0uv.m3u index fb2e61bc..f973edd6 100644 --- a/docs/db/webradios/https___stream_rcs_revma_com_xh00fwuptg0uv.m3u +++ b/docs/db/webradios/https___stream_rcs_revma_com_xh00fwuptg0uv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.nrj.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_rockantenne_de_rockantenne_stream_mp3.m3u b/docs/db/webradios/https___stream_rockantenne_de_rockantenne_stream_mp3.m3u index 25f3b1d4..1932b770 100644 --- a/docs/db/webradios/https___stream_rockantenne_de_rockantenne_stream_mp3.m3u +++ b/docs/db/webradios/https___stream_rockantenne_de_rockantenne_stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.rockantenne.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_skylab-radio_com_live.m3u b/docs/db/webradios/https___stream_skylab-radio_com_live.m3u index ee1b8dba..3a09ea1c 100644 --- a/docs/db/webradios/https___stream_skylab-radio_com_live.m3u +++ b/docs/db/webradios/https___stream_skylab-radio_com_live.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://skylab-radio.com/ #COUNTRY:Australia #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___stream_zeno_fm_lf9upjop1gyuv.m3u b/docs/db/webradios/https___stream_zeno_fm_lf9upjop1gyuv.m3u index 6691764e..e9dd41f4 100644 --- a/docs/db/webradios/https___stream_zeno_fm_lf9upjop1gyuv.m3u +++ b/docs/db/webradios/https___stream_zeno_fm_lf9upjop1gyuv.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://zeno.fm/radio/kadicou-fm/ #COUNTRY:Nigeria #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Kadicou FM is dedicated to giving you quality broadcast and entertaining programs! #CODEC:MP3 diff --git a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u index 7bed70f0..482d5b8a 100644 --- a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u +++ b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena180a_chunklist_DVR_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://antena1.rtp.pt #COUNTRY:Portugal #STATE: +#REGION: #LANGUAGE:Portuguese #DESCRIPTION:Rádio Antena 1 99.4 FM #CODEC:AAC diff --git a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u index b369df7e..1cf2861c 100644 --- a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u +++ b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena1madeira80a_chunklist_DVR_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:http://www.rtp.pt/madeira #COUNTRY:Portugal #STATE: +#REGION: #LANGUAGE:Portuguese #DESCRIPTION:Rádio Antena 1 Madeira 104.6 FM #CODEC:AAC diff --git a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u index 8e1dfd01..fa3c9257 100644 --- a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u +++ b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena280a_chunklist_DVR_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://antena2.rtp.pt #COUNTRY:Portugal #STATE: +#REGION: #LANGUAGE:Portuguese #DESCRIPTION:A Arte que Toca #CODEC:AAC diff --git a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u index c77db292..d4acba3b 100644 --- a/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u +++ b/docs/db/webradios/https___streaming-live_rtp_pt_liveradio_antena380a_chunklist_DVR_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://media.rtp.pt/antena3/ #COUNTRY:Portugal #STATE:Lisboa +#REGION:Lisboa #LANGUAGE:Portuguese #DESCRIPTION:A Alternativa Pop #CODEC:AAC diff --git a/docs/db/webradios/https___streaming_antipode_be_antipode_mp3.m3u b/docs/db/webradios/https___streaming_antipode_be_antipode_mp3.m3u index 4250abb6..f7ecb6fb 100644 --- a/docs/db/webradios/https___streaming_antipode_be_antipode_mp3.m3u +++ b/docs/db/webradios/https___streaming_antipode_be_antipode_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.antipode.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streaming_inweb_com_br_energia.m3u b/docs/db/webradios/https___streaming_inweb_com_br_energia.m3u index 44325123..00805cfd 100644 --- a/docs/db/webradios/https___streaming_inweb_com_br_energia.m3u +++ b/docs/db/webradios/https___streaming_inweb_com_br_energia.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.97fm.com.br #COUNTRY:Brazil #STATE:São Paulo +#REGION:São Paulo #LANGUAGE:Brazilian Portuguese #DESCRIPTION:A Energia que te move! #CODEC:AAC diff --git a/docs/db/webradios/https___streaming_radio_co_s3699c5e49_listen.m3u b/docs/db/webradios/https___streaming_radio_co_s3699c5e49_listen.m3u index 11c66180..8cb10160 100644 --- a/docs/db/webradios/https___streaming_radio_co_s3699c5e49_listen.m3u +++ b/docs/db/webradios/https___streaming_radio_co_s3699c5e49_listen.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://refugeworldwide.com/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Alternative community radio from Berlin #CODEC:MP3 diff --git a/docs/db/webradios/https___streaming_ufg_br_8443_radiouniversitaria.m3u b/docs/db/webradios/https___streaming_ufg_br_8443_radiouniversitaria.m3u index db340fee..82ced0a5 100644 --- a/docs/db/webradios/https___streaming_ufg_br_8443_radiouniversitaria.m3u +++ b/docs/db/webradios/https___streaming_ufg_br_8443_radiouniversitaria.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://radio.ufg.br/p/aovivo #COUNTRY:Brazil #STATE:Goiás +#REGION:Goiás #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio Universitária UFG #CODEC:MPEG diff --git a/docs/db/webradios/https___streams_radio7_de_dab_mp3-192_web_.m3u b/docs/db/webradios/https___streams_radio7_de_dab_mp3-192_web_.m3u index b3eafb2b..ae1f8209 100644 --- a/docs/db/webradios/https___streams_radio7_de_dab_mp3-192_web_.m3u +++ b/docs/db/webradios/https___streams_radio7_de_dab_mp3-192_web_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radio7.de/ #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u index 58525e66..eb5762b1 100644 --- a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u +++ b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_60s_70s_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://joe.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u index 6ec38430..7d1aca99 100644 --- a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u +++ b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_80s_90s_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://joe.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u index 10cc3221..41de919a 100644 --- a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u +++ b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_easy_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://joe.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u index d0b2b01a..3ef3606e 100644 --- a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u +++ b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_joe_fm_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://joe.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u index 4af111a0..ea43a5fb 100644 --- a/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u +++ b/docs/db/webradios/https___streams_radio_dpgmedia_cloud_redirect_top2000_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://joe.be/ #COUNTRY:Belgium #STATE: +#REGION: #LANGUAGE:Dutch #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_.m3u index f6e4041b..126adbb0 100644 --- a/docs/db/webradios/https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_2000er_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/2000er/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_.m3u index bebdcff3..cb7798f8 100644 --- a/docs/db/webradios/https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_70errock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/70errock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u index ee801599..009a5398 100644 --- a/docs/db/webradios/https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_70errock_mp3-192_streams_radiobob_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:Zeitlose Klassiker, rund um die Uhr im 70er Stream. Beamt Euch zurück in das Jahrzehnt, in dem Rock so richtig groß wurde! #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_.m3u index 74fc49c4..45a2e278 100644 --- a/docs/db/webradios/https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_blues_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/blues/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u index 8c045856..65c07609 100644 --- a/docs/db/webradios/https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_blues_mp3-192_streams_radiobob_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:RADIO BOB!s neuer Blues Stream #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_.m3u index 7325f0b3..93274d71 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-80srock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-80srock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_.m3u index a94f7201..746f769a 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-90srock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-90srock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_.m3u index 9159f519..0f1f1023 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-alternative_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-alternative/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_.m3u index b1e780f9..47f32dd5 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-bestofrock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u index 32db39fa..04557c20 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-bestofrock_mp3-192_streams_radiobob_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:Die greatest hits from the greatest bands for everybody who thinks „good“ rock isn’t enough. #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_.m3u index 08f62853..1cc69428 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-christmas_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-christmas/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_.m3u index c4c5f3c7..236a5371 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-classicrock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-classicrock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_.m3u index e5bd3c63..e2034676 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-hardrock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-hardrock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_.m3u index 28c900c1..dc5a4ccf 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-kuschelrock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-kuschelrock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_.m3u index c22bad26..a3929e76 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-metal_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-metal/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_.m3u index 92463878..3a38e093 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-national_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-national/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_.m3u index 17f3650d..68fd079d 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-punk_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-punk/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_.m3u index 3018cd3f..372124a2 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-rockabilly_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-rockabilly/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_.m3u index 8859e13e..c4a93299 100644 --- a/docs/db/webradios/https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_bob-rockhits_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/bob-rockhits/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_country_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_country_aac-64_streams_radiobob_de_.m3u index 59a53f7d..fd3aed8f 100644 --- a/docs/db/webradios/https___streams_radiobob_de_country_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_country_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/country/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_.m3u index 72ef6608..51d54077 100644 --- a/docs/db/webradios/https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_newcomer_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/newcomer/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u index abb96ca0..45973247 100644 --- a/docs/db/webradios/https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_newcomer_mp3-192_streams_radiobob_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:Listen to the hottest new rockbands – nonstop. #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_.m3u index a021ce7d..dd91e183 100644 --- a/docs/db/webradios/https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_roadtrip_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/roadtrip/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_.m3u index 8fdf08f9..2933a830 100644 --- a/docs/db/webradios/https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_rockoldies_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/rockoldies/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u index 92153a3a..a1bbcf55 100644 --- a/docs/db/webradios/https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_rockoldies_mp3-192_streams_radiobob_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:Some say they are out-of-date, we call them timeless and celebrate their legacy! This stream is packed with the best rock oldies! #CODEC:MP3 diff --git a/docs/db/webradios/https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_.m3u index 6894dc65..ca353aa3 100644 --- a/docs/db/webradios/https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_rockparty_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/rockparty/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_.m3u index e7f5b091..1d6fbebf 100644 --- a/docs/db/webradios/https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_southernrock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE: -#LANGUAGE:German +#REGION: #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/southernrock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_.m3u index 6a1b3e31..0b823f36 100644 --- a/docs/db/webradios/https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_summerrock_aac-64_streams_radiobob_de_.m3u @@ -6,7 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse -#LANGUAGE:German +#REGION:Hesse #CODEC:AAC #BITRATE:64 https://streams.radiobob.de/summerrock/aac-64/streams.radiobob.de/ diff --git a/docs/db/webradios/https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u b/docs/db/webradios/https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u index 744e8463..b8a3fb8a 100644 --- a/docs/db/webradios/https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u +++ b/docs/db/webradios/https___streams_radiobob_de_summerrock_mp3-192_streams_radiobob_de_.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiobob.de/ #COUNTRY:Germany #STATE:Hesse +#REGION:Hesse #LANGUAGE:German #DESCRIPTION:Summer and the best music with BOB's Summer Rock Hits: an unbeatable combination that makes the sun shine, even when it's not in the sky. #CODEC:MP3 diff --git a/docs/db/webradios/https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u b/docs/db/webradios/https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u index 744b2840..af5def61 100644 --- a/docs/db/webradios/https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u +++ b/docs/db/webradios/https___strm_voh_com_vn_radio_channel2_chunklist_w2105781582_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://voh.com.vn/radio-kenh-am-610-am610khz.html #COUNTRY:Vietnam #STATE:Ho Chi Minh City +#REGION:Ho Chi Minh City #LANGUAGE:Vietnamese/tiếng Việt #DESCRIPTION:Radio VOH 610 AM #CODEC:AAC diff --git a/docs/db/webradios/https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u b/docs/db/webradios/https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u index 8ea22aeb..8c382749 100644 --- a/docs/db/webradios/https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u +++ b/docs/db/webradios/https___strm_voh_com_vn_radio_channel3_chunklist_w1232938254_m3u8.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://voh.com.vn/radio-kenh-fm-999-fm999mhz.html #COUNTRY:Vietnam #STATE:Ho Chi Minh City +#REGION:Ho Chi Minh City #LANGUAGE:Vietnamese/tiếng Việt #DESCRIPTION:Radio VOH 99.9 FM #CODEC:AAC diff --git a/docs/db/webradios/https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u b/docs/db/webradios/https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u index 9dfe9b94..d015eb9b 100644 --- a/docs/db/webradios/https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u +++ b/docs/db/webradios/https___sverigesradio_se_topsy_direkt_132-hi-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sverigesradio.se/p1 #COUNTRY:Sweden #STATE: +#REGION: #LANGUAGE:Swedish #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u b/docs/db/webradios/https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u index ac988668..1229a380 100644 --- a/docs/db/webradios/https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u +++ b/docs/db/webradios/https___sverigesradio_se_topsy_direkt_164-hi-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sverigesradio.se/p3 #COUNTRY:Sweden #STATE: +#REGION: #LANGUAGE:Swedish #DESCRIPTION: #CODEC:AAC diff --git a/docs/db/webradios/https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u b/docs/db/webradios/https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u index 97cb8d4f..0eb7830d 100644 --- a/docs/db/webradios/https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u +++ b/docs/db/webradios/https___sverigesradio_se_topsy_direkt_200-hi-aac.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://sverigesradio.se/jamtland #COUNTRY:Sweden #STATE: +#REGION: #LANGUAGE:Swedish #DESCRIPTION:News, weather, sport, and culture from Jämtland #CODEC:AAC diff --git a/docs/db/webradios/https___transliacija_rc_lt_rc128_mp3.m3u b/docs/db/webradios/https___transliacija_rc_lt_rc128_mp3.m3u index bace7bbf..cf37f1da 100644 --- a/docs/db/webradios/https___transliacija_rc_lt_rc128_mp3.m3u +++ b/docs/db/webradios/https___transliacija_rc_lt_rc128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://rc.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___transliacija_zipfm_lt_zipfm128_mp3.m3u b/docs/db/webradios/https___transliacija_zipfm_lt_zipfm128_mp3.m3u index 769b4ebe..850dec9a 100644 --- a/docs/db/webradios/https___transliacija_zipfm_lt_zipfm128_mp3.m3u +++ b/docs/db/webradios/https___transliacija_zipfm_lt_zipfm128_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://zipfm.lt #COUNTRY:Lithuania #STATE: +#REGION: #LANGUAGE:Lithuanian #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u b/docs/db/webradios/https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u index 5280ac63..c21b1058 100644 --- a/docs/db/webradios/https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u +++ b/docs/db/webradios/https___tsfjazz_ice_infomaniak_ch_tsfjazz-high_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.tsfjazz.com/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION:Station consacrée au jazz qui diffuse sur plusieurs régions en France. « TSF », le sigle utilisé par la radio depuis sa création en 1982, signifie « télégraphie sans fil ». #CODEC:MP3 diff --git a/docs/db/webradios/https___tunein_cdnstream1_com_3519_96_mp3.m3u b/docs/db/webradios/https___tunein_cdnstream1_com_3519_96_mp3.m3u index e9854401..ee0101ba 100644 --- a/docs/db/webradios/https___tunein_cdnstream1_com_3519_96_mp3.m3u +++ b/docs/db/webradios/https___tunein_cdnstream1_com_3519_96_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.cnn.com/ #COUNTRY:United States #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:TV Audio for CNN International #CODEC:MP3 diff --git a/docs/db/webradios/https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u b/docs/db/webradios/https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u index bbfa186e..bedfc77e 100644 --- a/docs/db/webradios/https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u +++ b/docs/db/webradios/https___ufmg_br_streamingradioaovivo_aovivo_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://ufmg.br/comunicacao/radio-ufmg-educativa #COUNTRY:Brazil #STATE:Minas Gerais +#REGION:Minas Gerais #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Rádio UFMG Educativa 104.5 FM #CODEC:MP3 diff --git a/docs/db/webradios/https___uk2_streamingpulse_com_ssl_vcr1.m3u b/docs/db/webradios/https___uk2_streamingpulse_com_ssl_vcr1.m3u index f4427a57..880b6a3d 100644 --- a/docs/db/webradios/https___uk2_streamingpulse_com_ssl_vcr1.m3u +++ b/docs/db/webradios/https___uk2_streamingpulse_com_ssl_vcr1.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.veniceclassicradio.eu/ #COUNTRY:Italy #STATE: +#REGION: #LANGUAGE:English #DESCRIPTION:Our repertoire ranges from ancient music of the Renaissance to that the '900, with particular attention to Italian composers and performers. #CODEC:MP3 diff --git a/docs/db/webradios/https___virtualtronics_net_proxy_zetafm_mp__stream.m3u b/docs/db/webradios/https___virtualtronics_net_proxy_zetafm_mp__stream.m3u index b2359930..7c6a88e1 100644 --- a/docs/db/webradios/https___virtualtronics_net_proxy_zetafm_mp__stream.m3u +++ b/docs/db/webradios/https___virtualtronics_net_proxy_zetafm_mp__stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.zetafmcr.com/ #COUNTRY:Costa Rica #STATE: +#REGION: #LANGUAGE:Spanish #DESCRIPTION:Esta estación radial es una de las más antiguas de Costa Rica, dotada con un sabor caribeño y tropical característico de la música latina. #CODEC:MP3 diff --git a/docs/db/webradios/https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u b/docs/db/webradios/https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u index d5415c9e..ecb3e5a7 100644 --- a/docs/db/webradios/https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u +++ b/docs/db/webradios/https___wdr-wdr3-live_icecastssl_wdr_de_wdr_wdr3_live_mp3_256_stream_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www1.wdr.de/radio/wdr3/index.html #COUNTRY:Germany #STATE: +#REGION: #LANGUAGE:German #DESCRIPTION:Das Kulturradio #CODEC:MP3 diff --git a/docs/db/webradios/https___www_radioking_com_play_radio-doudou.m3u b/docs/db/webradios/https___www_radioking_com_play_radio-doudou.m3u index 4f525dc5..37847ba8 100644 --- a/docs/db/webradios/https___www_radioking_com_play_radio-doudou.m3u +++ b/docs/db/webradios/https___www_radioking_com_play_radio-doudou.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiodoudou.com #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___www_radiopommedapi_com_radio_mp3.m3u b/docs/db/webradios/https___www_radiopommedapi_com_radio_mp3.m3u index c9b9c88c..7dbb73a0 100644 --- a/docs/db/webradios/https___www_radiopommedapi_com_radio_mp3.m3u +++ b/docs/db/webradios/https___www_radiopommedapi_com_radio_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiopommedapi.com/ #COUNTRY:France #STATE: +#REGION: #LANGUAGE:French #DESCRIPTION: #CODEC:MP3 diff --git a/docs/db/webradios/https___www_ragya_com_prahar.m3u b/docs/db/webradios/https___www_ragya_com_prahar.m3u index c43cf793..fc22cc7f 100644 --- a/docs/db/webradios/https___www_ragya_com_prahar.m3u +++ b/docs/db/webradios/https___www_ragya_com_prahar.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.ragya.com/prahar #COUNTRY:India #STATE:Maharashtra +#REGION:Maharashtra #LANGUAGE:Hindi, Urdu, Sanskrit #DESCRIPTION:Ragya is not just an auto-curator of Indian classical music, it is also a mini encyclopedia of knowledge about each raga, artiste and composition. #CODEC:MP3 diff --git a/docs/db/webradios/https___wz7_servidoresbrasil_com_8162_stream.m3u b/docs/db/webradios/https___wz7_servidoresbrasil_com_8162_stream.m3u index 28924a98..c3eb0c32 100644 --- a/docs/db/webradios/https___wz7_servidoresbrasil_com_8162_stream.m3u +++ b/docs/db/webradios/https___wz7_servidoresbrasil_com_8162_stream.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://redehits.fm #COUNTRY:Brazil #STATE:Rio De Janeiro +#REGION:Rio De Janeiro #LANGUAGE:Brazilian Portuguese #DESCRIPTION:Dá gosto de ouvir! #CODEC:MP3 diff --git a/docs/db/webradios/https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u b/docs/db/webradios/https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u index 01886f00..3ec1d85a 100644 --- a/docs/db/webradios/https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u +++ b/docs/db/webradios/https___zt03_cdn_eurozet_pl_zet-tun_mp3.m3u @@ -6,6 +6,7 @@ #HOMEPAGE:https://www.radiozet.pl #COUNTRY:Poland #STATE: +#REGION: #LANGUAGE:Polish #DESCRIPTION: #CODEC:MP3 diff --git a/docs/index.md b/docs/index.md index 5994a473..838b6d79 100644 --- a/docs/index.md +++ b/docs/index.md @@ -34,8 +34,8 @@ Search for the webradio and click on the modify link to open a prefilled GitHub - +