diff --git a/.vscode/agents/radio-player-stations-importer_v1.md b/.vscode/agents/radio-player-stations-importer_v1.md
new file mode 100644
index 0000000..4e414ac
--- /dev/null
+++ b/.vscode/agents/radio-player-stations-importer_v1.md
@@ -0,0 +1,450 @@
+# RadioPlayer Stations Importer v1
+
+## Goal
+
+Build a production-ready radio station importer for our web RadioPlayer.
+
+The importer must use the public Radio Browser API as the source for radio stations and generate a clean local station dataset that the RadioPlayer can use.
+
+We need stations for these countries:
+
+- Austria
+- Croatia
+- Serbia
+- Montenegro
+- Bosnia & Herzegovina
+- Germany
+- United Kingdom
+- Italy
+- France
+- Spain
+- USA
+- Canada
+- Australia
+- Luxembourg
+- Netherlands
+- Sweden
+- Switzerland
+- Hungary
+- Czechia
+- Poland
+
+The importer must also include station logos when available.
+
+---
+
+## Important Context
+
+Radio Browser station objects can contain:
+
+- `stationuuid`
+- `name`
+- `url`
+- `url_resolved`
+- `homepage`
+- `favicon`
+- `country`
+- `countrycode`
+- `language`
+- `tags`
+- `codec`
+- `bitrate`
+- `votes`
+- `clickcount`
+
+For our app:
+
+- `url_resolved` should be preferred over `url`
+- `favicon` should be used as the station logo
+- broken/missing logos must not break the UI
+- HTTP streams should be avoided for browser compatibility
+- HTTPS streams should be preferred
+- broken streams should be filtered out where possible
+
+---
+
+## Countries
+
+Create a shared country list:
+
+```ts
+export const radioCountries = [
+ { name: "Austria", code: "AT" },
+ { name: "Croatia", code: "HR" },
+ { name: "Serbia", code: "RS" },
+ { name: "Montenegro", code: "ME" },
+ { name: "Bosnia & Herzegovina", code: "BA" },
+ { name: "Germany", code: "DE" },
+ { name: "United Kingdom", code: "GB" },
+ { name: "Italy", code: "IT" },
+ { name: "France", code: "FR" },
+ { name: "Spain", code: "ES" },
+ { name: "USA", code: "US" },
+ { name: "Canada", code: "CA" },
+ { name: "Australia", code: "AU" },
+ { name: "Luxembourg", code: "LU" },
+ { name: "Netherlands", code: "NL" },
+ { name: "Sweden", code: "SE" },
+ { name: "Switzerland", code: "CH" },
+ { name: "Hungary", code: "HU" },
+ { name: "Czechia", code: "CZ" },
+ { name: "Poland", code: "PL" },
+] as const;
+````
+
+---
+
+## Required Output Format
+
+Normalize every imported station to this structure:
+
+```ts
+export type RadioStation = {
+ id: string;
+ name: string;
+ country: string;
+ countryCode: string;
+ language: string | null;
+ tags: string[];
+ codec: string | null;
+ bitrate: number | null;
+ streamUrl: string;
+ homepage: string | null;
+ logoUrl: string | null;
+ votes: number;
+ clickcount: number;
+ source: "radio-browser";
+ sourceStationUuid: string;
+};
+```
+
+Rules:
+
+* `id` must use `stationuuid`
+* `sourceStationUuid` must also store `stationuuid`
+* `streamUrl` must use `url_resolved || url`
+* `logoUrl` must use `favicon || null`
+* `tags` must be converted from comma-separated string to string array
+* empty strings must become `null`
+* invalid stations must be skipped
+* duplicate stations must be removed by `stationuuid`
+* duplicate stream URLs should also be avoided where possible
+
+---
+
+## API Endpoint
+
+Use this endpoint pattern:
+
+```txt
+https://de1.api.radio-browser.info/json/stations/search
+```
+
+Use these query params:
+
+```txt
+countrycode={COUNTRY_CODE}
+hidebroken=true
+is_https=true
+order=clickcount
+reverse=true
+limit=100
+```
+
+Example:
+
+```txt
+https://de1.api.radio-browser.info/json/stations/search?countrycode=DE&hidebroken=true&is_https=true&order=clickcount&reverse=true&limit=100
+```
+
+---
+
+## Import Requirements
+
+Create an importer script that:
+
+1. Loops through all configured countries.
+2. Fetches up to 100 stations per country.
+3. Filters invalid stations.
+4. Normalizes station data.
+5. Deduplicates stations.
+6. Sorts stations by country, then clickcount descending.
+7. Saves the final dataset as JSON.
+8. Does not fail the whole import if one country fails.
+9. Logs a summary after import.
+
+Expected output file:
+
+```txt
+public/data/radio-stations.json
+```
+
+If the project uses a different structure, place it in the closest appropriate public/static data directory and document the chosen path.
+
+---
+
+## Recommended File Structure
+
+Create or adapt these files depending on the current project structure:
+
+```txt
+src/radio/radioCountries.ts
+src/radio/radioTypes.ts
+src/radio/radioStationNormalizer.ts
+scripts/import-radio-stations.ts
+public/data/radio-stations.json
+```
+
+If this is a Vite/React project, this structure is preferred.
+
+If the project already has a different convention, follow the existing convention.
+
+---
+
+## Normalizer Requirements
+
+Create a normalizer function:
+
+```ts
+export function normalizeRadioBrowserStation(
+ station: RadioBrowserStation,
+ countryName: string
+): RadioStation | null
+```
+
+The function must:
+
+* return `null` if station has no `stationuuid`
+* return `null` if station has no valid name
+* return `null` if station has no valid stream URL
+* trim all string values
+* convert empty values to `null`
+* parse tags safely
+* limit tags to maximum 12 tags per station
+* prefer `url_resolved`
+* map `favicon` to `logoUrl`
+* preserve vote/click metadata
+
+---
+
+## Logo Handling
+
+Station logos come from Radio Browser field:
+
+```txt
+favicon
+```
+
+Use it as:
+
+```ts
+logoUrl: station.favicon || null
+```
+
+Frontend must support fallback logo behavior:
+
+```tsx
+
{
+ event.currentTarget.src = "/images/radio-placeholder.svg";
+ }}
+/>
+```
+
+Create a fallback placeholder if one does not exist:
+
+```txt
+public/images/radio-placeholder.svg
+```
+
+The placeholder should be simple and lightweight.
+
+---
+
+## Frontend Integration
+
+Update the RadioPlayer so it can load stations from:
+
+```txt
+/data/radio-stations.json
+```
+
+Add or update a loader function:
+
+```ts
+export async function loadRadioStations(): Promise {
+ const response = await fetch("/data/radio-stations.json");
+
+ if (!response.ok) {
+ throw new Error(`Failed to load radio stations: ${response.status}`);
+ }
+
+ return response.json();
+}
+```
+
+The UI should support:
+
+* country filter
+* station search by name
+* station logo
+* station name
+* country
+* tags
+* bitrate/codec where available
+* graceful empty state
+* graceful loading state
+* graceful error state
+
+---
+
+## Player Requirements
+
+When user clicks a station:
+
+* use `streamUrl`
+* display station name
+* display logo fallback if logo fails
+* show country
+* show codec/bitrate if available
+* do not crash if playback fails
+* display a user-friendly playback error
+
+---
+
+## Optional But Recommended
+
+Add a script command to `package.json`:
+
+```json
+{
+ "scripts": {
+ "radio:import": "tsx scripts/import-radio-stations.ts"
+ }
+}
+```
+
+If `tsx` is not installed and the project uses TypeScript scripts, add it as a dev dependency.
+
+If the project does not use `tsx`, use the existing project script runner.
+
+---
+
+## Error Handling
+
+The importer must handle:
+
+* network errors
+* invalid JSON
+* empty responses
+* country-specific failures
+* missing favicon
+* missing homepage
+* missing language
+* invalid station URLs
+* duplicated stations
+* duplicated stream URLs
+
+Do not stop the whole import because one country fails.
+
+Log errors like:
+
+```txt
+[radio-import] Failed to import Germany (DE): {error message}
+```
+
+At the end, log:
+
+```txt
+[radio-import] Imported {total} stations from {successfulCountries}/{totalCountries} countries.
+[radio-import] Failed countries: DE, FR
+[radio-import] Output: public/data/radio-stations.json
+```
+
+---
+
+## Data Quality Rules
+
+Skip stations when:
+
+* `stationuuid` is missing
+* name is missing
+* stream URL is missing
+* stream URL is not HTTPS
+* codec is obviously unsupported by browsers
+
+Preferred codecs:
+
+* MP3
+* AAC
+* OGG
+
+Do not hard fail on unknown codec, but keep codec in the dataset.
+
+---
+
+## Browser Compatibility
+
+Since this is a web RadioPlayer:
+
+* prefer HTTPS streams
+* avoid HTTP streams
+* keep fallback image local
+* do not assume every logo loads
+* do not assume every stream can play in every browser
+* do not autoplay without user interaction
+
+---
+
+## Acceptance Criteria
+
+The task is complete when:
+
+* country list exists
+* importer script exists
+* normalized station type exists
+* radio-stations.json is generated
+* logos are included through `logoUrl`
+* UI can load the local JSON file
+* UI shows logo fallback on broken/missing logos
+* player can play a selected station
+* import failure for one country does not fail the whole script
+* `npm run radio:import` or equivalent command works
+* TypeScript build passes
+* lint passes if configured
+* existing app behavior is not broken
+
+---
+
+## Testing Checklist
+
+Manually verify:
+
+* Import script runs successfully
+* JSON file is generated
+* Germany has stations
+* Austria has stations
+* Croatia has stations
+* USA has stations
+* United Kingdom has stations
+* stations have `streamUrl`
+* many stations have `logoUrl`
+* missing logos show fallback
+* clicking a station starts playback
+* broken streams show a friendly error
+* country filtering works
+* search works
+* no console crash happens when logo or stream fails
+
+---
+
+## Notes
+
+Do not manually hardcode hundreds of station stream URLs.
+
+Use Radio Browser as the source of truth for imported stations.
+
+Keep a curated featured station list separate later if needed.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..752afd1
--- /dev/null
+++ b/README.md
@@ -0,0 +1,91 @@
+# RadioPlayer
+
+RadioPlayer is a Vite + React web app for browsing, playing, and casting radio stations. It loads its station catalog from `public/stations.json`, supports custom stations, and includes a built-in updater for refreshing that list from the live Radio.si feed.
+
+## Features
+
+- Station browser with search, categories, favourites, and recent stations
+- Audio playback with previous/next station controls
+- Cast support
+- App install prompt for supported browsers
+- Custom station editor
+- Live station metadata and artwork rendering
+
+## Requirements
+
+- Node.js 18 or newer
+- npm
+
+## Getting Started
+
+Install dependencies:
+
+```bash
+npm install
+```
+
+Start the development server:
+
+```bash
+npm run dev
+```
+
+Build for production:
+
+```bash
+npm run build
+```
+
+Preview the production build:
+
+```bash
+npm run preview
+```
+
+## Station Data
+
+The app reads station data from `public/stations.json`.
+
+To refresh the file from the remote source, run:
+
+```bash
+npm run update:stations
+```
+
+That command fetches the latest station list from:
+
+```text
+https://data.radio.si/api/radiostations?857df78efd094abcb98c7bbb53303c3d
+```
+
+and rewrites `public/stations.json` while preserving the existing JSON structure used by the app.
+
+You can also pass a custom source URL or a custom output path if needed:
+
+```bash
+node scripts/update-stations.mjs
+```
+
+## Project Structure
+
+```text
+index.html
+package.json
+public/
+ manifest.json
+ stations.json
+ sw.js
+src/
+ App.jsx
+ main.jsx
+ player.js
+ styles.css
+scripts/
+ update-stations.mjs
+```
+
+## Notes
+
+- The app uses a module-based frontend build, so `src/main.jsx` is the browser entry point.
+- The updater script uses the remote feed as the source of truth for the station list and writes the merged result into `public/stations.json`.
+- If you add or edit stations manually, re-run `npm run update:stations` when you want to sync back to the remote catalog.
diff --git a/public/data/radio-stations.json b/public/data/radio-stations.json
index eac2375..86216f9 100644
--- a/public/data/radio-stations.json
+++ b/public/data/radio-stations.json
@@ -1,4 +1,1841 @@
[
+ {
+ "id": "4285a122-9c78-417e-879e-5440c0482c56",
+ "name": "Aspen 102.3",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ASPEN.mp3",
+ "homepage": "https://fmaspen.com/#",
+ "logoUrl": "https://fmaspen.com/wp-content/themes/aspen/images/logoaspen.png",
+ "votes": 811,
+ "clickcount": 91,
+ "source": "radio-browser",
+ "sourceStationUuid": "4285a122-9c78-417e-879e-5440c0482c56"
+ },
+ {
+ "id": "7b03996e-6ea0-4db5-8168-ddd1463faec2",
+ "name": "La 100 - 99.9 FM - Grupo Clarín - Buenos Aires, Argentina",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "99.9 fm",
+ "argentina",
+ "buenos aires",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupo clarín",
+ "la 100",
+ "latinoamérica",
+ "magazines",
+ "moi merino"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/FM999_56.mp3",
+ "homepage": "https://la100.cienradios.com/",
+ "logoUrl": "http://cdn-profiles.tunein.com/s6984/images/logod.jpg",
+ "votes": 3739,
+ "clickcount": 55,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b03996e-6ea0-4db5-8168-ddd1463faec2"
+ },
+ {
+ "id": "5440e89d-708d-4336-9b42-fa274ed093b1",
+ "name": "Radio La Red AM 910. Ciudad de Buenos Aires",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/LA_RED_AM910AAC.aac",
+ "homepage": "https://www.lared.am/",
+ "logoUrl": null,
+ "votes": 2612,
+ "clickcount": 30,
+ "source": "radio-browser",
+ "sourceStationUuid": "5440e89d-708d-4336-9b42-fa274ed093b1"
+ },
+ {
+ "id": "bcb3b03a-f0ec-4ceb-b22f-922138858800",
+ "name": "Rock And Pop FM 95.9 (Rock & Pop) Ciudad de Buenos Aires",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ROCKANDPOPAAC.aac",
+ "homepage": "https://fmrockandpop.com/",
+ "logoUrl": "https://fmrockandpop.com/pwa/ios_192x192.png",
+ "votes": 5748,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "bcb3b03a-f0ec-4ceb-b22f-922138858800"
+ },
+ {
+ "id": "4520c04e-0514-43f9-9fe6-89d2f6d746f5",
+ "name": "Blue 100.7 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "80s",
+ "90s",
+ "classic hits",
+ "entretenimiento"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BLUE_FM_100_7AAC.aac",
+ "homepage": "https://bluefm.com.ar/",
+ "logoUrl": "https://bluefm.com.ar/wp-content/themes/bluefmtheme/img/logo_blue.png",
+ "votes": 278,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "4520c04e-0514-43f9-9fe6-89d2f6d746f5"
+ },
+ {
+ "id": "f006d4dc-9771-4109-bf35-eb09291320da",
+ "name": "Mitre AM 790. AAC Alta. Ciudad de Buenos Aires",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/AM790_56AAC.aac",
+ "homepage": "https://radiomitre.cienradios.com/",
+ "logoUrl": "https://cloudfront-arc.cienradios.com/radiomitre/favicons/apple-icon-120x120.png",
+ "votes": 4524,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "f006d4dc-9771-4109-bf35-eb09291320da"
+ },
+ {
+ "id": "cfeebcdf-7b9f-4561-86b4-abf24a185bcf",
+ "name": "AM 530 Somos radio",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://ipanel.instream.audio:7000/stream",
+ "homepage": "https://www.am530somosradio.com/",
+ "logoUrl": "https://static.wixstatic.com/media/bec174_ab44bc8dffdb479b8386959c7966916f%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/bec174_ab44bc8dffdb479b8386959c7966916f%7Emv2.jpg",
+ "votes": 1600,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "cfeebcdf-7b9f-4561-86b4-abf24a185bcf"
+ },
+ {
+ "id": "7bc38611-e8d6-494d-9f71-2c1be5341f12",
+ "name": "Radio 10",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 65,
+ "streamUrl": "https://radio10.stweb.tv/radio10/live/playlist.m3u8",
+ "homepage": "http://www.radio10.com.ar/",
+ "logoUrl": "https://www.radio10.com.ar/css-custom/220/favicons/apple-touch-icon-120x120.png",
+ "votes": 3207,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "7bc38611-e8d6-494d-9f71-2c1be5341f12"
+ },
+ {
+ "id": "cb95b539-fa13-47a0-b440-f14ed86ef204",
+ "name": "Cadena Heat",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "entertainment",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://liveradio.mediainbox.net/fmcordoba.mp3",
+ "homepage": "https://www.cadenaheat.com/",
+ "logoUrl": "https://www.cadenaheat.com/img/logo-cadena-heat.png",
+ "votes": 157,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "cb95b539-fa13-47a0-b440-f14ed86ef204"
+ },
+ {
+ "id": "3c6c111c-6bbc-44ae-8ad8-46b502b3002a",
+ "name": "Radio Rivadavia AM 630. Ciudad de Buenos Aires",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RIVADAVIAAAC.aac",
+ "homepage": "https://rivadavia.com.ar/",
+ "logoUrl": "https://rivadavia.com.ar/apple-touch-icon.png",
+ "votes": 4217,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "3c6c111c-6bbc-44ae-8ad8-46b502b3002a"
+ },
+ {
+ "id": "d76b99ea-c4bf-47e5-8a42-e336ee48c031",
+ "name": "El Destape Radio",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "actualidad",
+ "debate",
+ "economia",
+ "noticias",
+ "politica"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://ipanel.instream.audio/8004/stream",
+ "homepage": "https://www.eldestapeweb.com/eldestaperadio",
+ "logoUrl": "https://www.eldestapeweb.com/img/favicons/apple-icon-120x120.png",
+ "votes": 3085,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "d76b99ea-c4bf-47e5-8a42-e336ee48c031"
+ },
+ {
+ "id": "ced4eb46-0a32-4ea7-bf28-e26c94d989f8",
+ "name": "LA NACION 104.9",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "adult contemporary",
+ "old hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.radio.co/s2ed3bec0a/listen",
+ "homepage": "https://masmusica.lanacion.com.ar/",
+ "logoUrl": "https://masmusica.lanacion.com.ar/assets/img/favicon.png",
+ "votes": 106,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "ced4eb46-0a32-4ea7-bf28-e26c94d989f8"
+ },
+ {
+ "id": "47d1e0f9-ce15-4557-a73c-a703b3762d06",
+ "name": "La Popu",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "cuarteto",
+ "local news",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://liveradio.mediainbox.net/popular.mp3",
+ "homepage": "https://www.lapopu.com.ar/",
+ "logoUrl": "https://www.lapopu.com.ar/img/favicon.png",
+ "votes": 883,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "47d1e0f9-ce15-4557-a73c-a703b3762d06"
+ },
+ {
+ "id": "78ae7b0c-cd9f-42d5-847d-6a41b578bb97",
+ "name": "Urbana Play 104.4",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://cdn.instream.audio:9660/stream",
+ "homepage": "https://urbanaplayfm.com/",
+ "logoUrl": null,
+ "votes": 403,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "78ae7b0c-cd9f-42d5-847d-6a41b578bb97"
+ },
+ {
+ "id": "df4fc0be-f064-41fc-9b3e-d729f0a8fa1c",
+ "name": "Cadena 3 Cordoba",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "folk popular am noticias musica"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://liveradio.mediainbox.net/radio3.mp3",
+ "homepage": "https://www.cadena3.com/radio-en-vivo/cadena-3",
+ "logoUrl": "https://www.cadena3.com/img/logo.png",
+ "votes": 1640,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "df4fc0be-f064-41fc-9b3e-d729f0a8fa1c"
+ },
+ {
+ "id": "2fe423fd-39cd-49ff-a07c-6f757c89c3c4",
+ "name": "La 100 Clásicos - Disco Retro Clásicos",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "dance",
+ "disco hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://27323.live.streamtheworld.com/FCLASICOS_56AAC.aac?",
+ "homepage": "https://la100.cienradios.com/player/la100-4-clasicos/",
+ "logoUrl": "https://cloudfront-arc.cienradios.com/la100/favicons/android-icon-192x192.png",
+ "votes": 326,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "2fe423fd-39cd-49ff-a07c-6f757c89c3c4"
+ },
+ {
+ "id": "ae7694a3-d499-11e9-a861-52543be04c81",
+ "name": "Radio Con Vos 89.9",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "news",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 49,
+ "streamUrl": "https://server1.stweb.tv/rcvos/live/playlist.m3u8",
+ "homepage": "https://www.radioconvos.com.ar/",
+ "logoUrl": null,
+ "votes": 2895,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae7694a3-d499-11e9-a861-52543be04c81"
+ },
+ {
+ "id": "93a6169c-8fd4-42fa-b1f4-9a958c13a9a2",
+ "name": "FM 90 Saladillo FM 90.7",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina",
+ "tags": [
+ "news talk music"
+ ],
+ "codec": "AAC",
+ "bitrate": 32,
+ "streamUrl": "https://chino.republicahosting.com:2316/live",
+ "homepage": "http://www.fm90saladillo.com.ar/",
+ "logoUrl": null,
+ "votes": 23,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "93a6169c-8fd4-42fa-b1f4-9a958c13a9a2"
+ },
+ {
+ "id": "55b910e3-ab26-4f13-8aae-6409bbdfe15d",
+ "name": "MEGA 98.3",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina",
+ "tags": [
+ "rock argentino",
+ "rock nacional"
+ ],
+ "codec": "AAC",
+ "bitrate": 98,
+ "streamUrl": "https://mega.stweb.tv/mega983/live/playlist.m3u8",
+ "homepage": "https://www.radiomega.fm/",
+ "logoUrl": null,
+ "votes": 473,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "55b910e3-ab26-4f13-8aae-6409bbdfe15d"
+ },
+ {
+ "id": "1ad6a94f-ab95-42aa-aee6-4e1c61f055b7",
+ "name": "Mucha Radio 94.7",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "castellano. español,español argentina,spanish",
+ "tags": [
+ "clasicos",
+ "cumbia",
+ "latin pop",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/MUCHA_RADIO.mp3",
+ "homepage": "https://mucharadio.com.ar/",
+ "logoUrl": "https://mucharadio.com.ar/wp-content/uploads/2021/05/mucha_radio.png",
+ "votes": 97,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "1ad6a94f-ab95-42aa-aee6-4e1c61f055b7"
+ },
+ {
+ "id": "0d7a9a6b-6cdc-4fde-a5e6-ef23be6e3a13",
+ "name": "Cadena Alegría - Córdoba",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina,spanish",
+ "tags": [
+ "argentina",
+ "cordoba",
+ "cuarteto",
+ "cumbia",
+ "tropical"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.escuchanosonline.com:7101/stream",
+ "homepage": "https://www.cadenaalegria.com.ar/",
+ "logoUrl": "https://escuchanosonline.com/clientes/img/logos/1695f158deccdabf9764db6b965a10df.jpg",
+ "votes": 51,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0d7a9a6b-6cdc-4fde-a5e6-ef23be6e3a13"
+ },
+ {
+ "id": "b16e131d-2459-4a61-bf06-83e26382f6bc",
+ "name": "FM BAND NEWS 89.5",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "entretenimiento",
+ "information",
+ "local radio",
+ "noticias",
+ "radio hablada",
+ "various"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://streaming01.shockmedia.com.ar:10486/",
+ "homepage": "https://bandnews895.esenvivo.com.ar/",
+ "logoUrl": null,
+ "votes": 33,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b16e131d-2459-4a61-bf06-83e26382f6bc"
+ },
+ {
+ "id": "c7ce8af3-777f-4a50-ae1e-e5904ad73ae9",
+ "name": "Radio AM 750 Objetivos, pero no imparciales",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "actualidad",
+ "am",
+ "cultural",
+ "norteamérica",
+ "política",
+ "radio argentina"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://27433.live.streamtheworld.com/AM750AAC.aac?dist=triton-widget&tdsdk=js-2.9&swm=false&pname=tdwidgets&pversion=2.9&banners=none&burst-time=15&sbmid=00ed0060-c497-4bc2-c0b8-3c8bf91188ab",
+ "homepage": "https://www.pagina12.com.ar/am750/radio-en-vivo",
+ "logoUrl": "https://es.wikipedia.org/wiki/Radio_AM_750#/media/Archivo:AM_750_logo.svg",
+ "votes": 365,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "c7ce8af3-777f-4a50-ae1e-e5904ad73ae9"
+ },
+ {
+ "id": "4f205475-dd4d-4650-85cd-564c5bf46d60",
+ "name": "92.5 FM Radio 2000",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "cuarteto",
+ "entretenimiento",
+ "musica",
+ "popular",
+ "varios"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://server6.hostradios.com/8390/stream",
+ "homepage": "https://radio2000camilo.com.ar/",
+ "logoUrl": "https://i0.wp.com/radio2000camilo.com.ar/wp-content/uploads/2023/09/Screenshot-2023-09-29-at-14-14-03-Radio2000-92.5Mhz.-CAMILO-ALDAO.png?w=319&ssl=1",
+ "votes": 55,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "4f205475-dd4d-4650-85cd-564c5bf46d60"
+ },
+ {
+ "id": "3596c360-d1a7-4e87-9b41-6f53de0e0990",
+ "name": "Cadena 3 Cordoba",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/radio3.mp3",
+ "homepage": "https://www.cadena3.com/cordoba",
+ "logoUrl": "https://www.cadena3.com/img/logo.png",
+ "votes": 46,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3596c360-d1a7-4e87-9b41-6f53de0e0990"
+ },
+ {
+ "id": "cd7ab04a-64eb-42b8-b5fb-f3e23e0de103",
+ "name": "Continental 590 AM. Bs. As. Version 3",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 109,
+ "streamUrl": "https://frontend.radiohdvivo.com/continental/live",
+ "homepage": "https://www.continental.com.ar/",
+ "logoUrl": null,
+ "votes": 59,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "cd7ab04a-64eb-42b8-b5fb-f3e23e0de103"
+ },
+ {
+ "id": "c19cd533-e996-4f4d-8f34-88bcee525388",
+ "name": "FM Centro Basavilbaso 105.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "entretenimiento",
+ "music",
+ "noticias"
+ ],
+ "codec": "MP3",
+ "bitrate": 112,
+ "streamUrl": "https://streamconex.com:8030/stream",
+ "homepage": "https://periodismobasavilbaso.com/",
+ "logoUrl": "https://statics-v3.streema.com/static/img/radios/profile_background_default_380.abf7abe7e86a.jpg",
+ "votes": 6,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c19cd533-e996-4f4d-8f34-88bcee525388"
+ },
+ {
+ "id": "caf266c5-948a-4bfd-bc1d-8352703a6019",
+ "name": "La Radio 104.7 FM. Resistencia Chaco. Julio Wajcman",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "julio wajcman",
+ "la radio 104.7",
+ "resistencia chaco"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://server.laradio.online/proxy/laradio1047",
+ "homepage": "https://laradio1047.com.ar/",
+ "logoUrl": null,
+ "votes": 473,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "caf266c5-948a-4bfd-bc1d-8352703a6019"
+ },
+ {
+ "id": "3934d9f0-7694-4896-bf11-fb19395c7c49",
+ "name": "LRA1 Radio Nacional Argentina",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "argentina",
+ "buenos aires",
+ "ciudad de buenos aires",
+ "news",
+ "public radio",
+ "radio pública",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 75,
+ "streamUrl": "https://sa.mp3.icecast.magma.edge-access.net/sc_rad1",
+ "homepage": "https://www.radionacional.com.ar/",
+ "logoUrl": null,
+ "votes": 339,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3934d9f0-7694-4896-bf11-fb19395c7c49"
+ },
+ {
+ "id": "4ff249e9-131b-4fae-88f0-d93c744240ee",
+ "name": "Metro 95.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "95.1",
+ "95.1 fm",
+ "argentina",
+ "buenos aires",
+ "ciudad de buenos aires",
+ "dance",
+ "electronic",
+ "entertainment",
+ "estación",
+ "fm",
+ "metro",
+ "radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/METRO.mp3",
+ "homepage": "https://www.metro951.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s25987/images/logog.jpg",
+ "votes": 1024,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "4ff249e9-131b-4fae-88f0-d93c744240ee"
+ },
+ {
+ "id": "e085b71b-aa0f-43f1-b24a-2bead9a8238c",
+ "name": "Radio Rivadavia",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RIVADAVIA.mp3",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 6459,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "e085b71b-aa0f-43f1-b24a-2bead9a8238c"
+ },
+ {
+ "id": "902e817e-36d0-490e-a61a-09fb1ba9c3a8",
+ "name": "Rock & Pop 95.9 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "classic hits",
+ "hits",
+ "music",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ROCKANDPOP.mp3",
+ "homepage": "https://fmrockandpop.com/",
+ "logoUrl": "https://fmrockandpop.com/images/ryp/logo_2022.webp",
+ "votes": 98,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "902e817e-36d0-490e-a61a-09fb1ba9c3a8"
+ },
+ {
+ "id": "3bd666a2-4c5d-4aa8-ace9-74465eebe578",
+ "name": "107.9 El Observador",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 98,
+ "streamUrl": "https://s8.stweb.tv/observador/live/playlist.m3u8",
+ "homepage": "https://elobservador1079.com.ar/",
+ "logoUrl": null,
+ "votes": 1314,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3bd666a2-4c5d-4aa8-ace9-74465eebe578"
+ },
+ {
+ "id": "45349ce4-308d-4869-a133-99683beb1e64",
+ "name": "Bar de Blues Radio",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streamingraddios.online/proxy/bardeblues?mp=/stream",
+ "homepage": "http://www.bardebluesradio.com/#!/-home/",
+ "logoUrl": null,
+ "votes": 221,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "45349ce4-308d-4869-a133-99683beb1e64"
+ },
+ {
+ "id": "ed1d2dae-a530-46d5-83b4-1002795bb54c",
+ "name": "Classic Hits - Éxitos que no pasan de moda",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "hits oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-151.zeno.fm/7st5b8derm0uv?",
+ "homepage": "https://zeno.fm/radio/Classic-Hits/",
+ "logoUrl": "https://zeno.fm/static/icons/apple-icon-512x512.png",
+ "votes": 68,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ed1d2dae-a530-46d5-83b4-1002795bb54c"
+ },
+ {
+ "id": "f24927f3-da9c-49eb-a8af-f1d20f07ac82",
+ "name": "FutuRock",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "feminist",
+ "local news",
+ "philosophy"
+ ],
+ "codec": "AAC",
+ "bitrate": 149,
+ "streamUrl": "https://mdstrm.com/audio/5d9d019112cbbb45d6a50960/live.m3u8",
+ "homepage": "https://futurock.live/",
+ "logoUrl": null,
+ "votes": 1168,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f24927f3-da9c-49eb-a8af-f1d20f07ac82"
+ },
+ {
+ "id": "5d3d2496-93f7-4c52-a176-b1cbd6b7e9ff",
+ "name": "GX Radio",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "00s",
+ "1980's",
+ "1980s hits",
+ "1990s",
+ "2000s",
+ "2000s dance",
+ "2000s hits",
+ "2000s rock",
+ "80s rock",
+ "80s soft rock",
+ "90s",
+ "90s dance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://streaming01.radiosenlinea.com.ar:10961/;",
+ "homepage": "https://turadioeninternet.com.ar/GXRADIO/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5d3d2496-93f7-4c52-a176-b1cbd6b7e9ff"
+ },
+ {
+ "id": "f80be5c6-55c1-4bdc-9e00-44cf32696b51",
+ "name": "LOS 40 SANTA FE 97.7",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "entretenimiento",
+ "hits",
+ "latino",
+ "music",
+ "música en español e inglés",
+ "pop",
+ "top 40"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://radios.solumedia.com:6158/stream?icy=http",
+ "homepage": "https://www.conexion40santafe.com.ar/",
+ "logoUrl": "https://www.conexion40santafe.com.ar/wp-content/uploads/2024/04/LOGO-LOS-40-CUADRADO-BLANCO-.jpg",
+ "votes": 45,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f80be5c6-55c1-4bdc-9e00-44cf32696b51"
+ },
+ {
+ "id": "e05fda96-6853-49d6-982f-d64f6c9e6c49",
+ "name": "Radio Cadena 3",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIO3_SC",
+ "homepage": "https://www.cadena3.com/",
+ "logoUrl": "https://imgs.search.brave.com/TPQbDA-qy7PFlxsdVDkyz8cyuG-fCpWAwAEEewJKI6M/rs:fit:500:0:0/g:ce/aHR0cHM6Ly93d3cu/cmFkaW8ubmV0L2lt/YWdlcy9icm9hZGNh/c3RzL2IyL2Y4LzIw/NzI0LzEvYzMwMC5w/bmc",
+ "votes": 201,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "e05fda96-6853-49d6-982f-d64f6c9e6c49"
+ },
+ {
+ "id": "a6a965ab-d9ab-4e56-8aef-99b52829743f",
+ "name": "Radio Disney Argentina 94.3. Ciudad de Buenos Aires",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/DISNEY_ARG_BA.mp3",
+ "homepage": "http://radiodisney.disneylatino.com/argentina",
+ "logoUrl": null,
+ "votes": 1428,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a6a965ab-d9ab-4e56-8aef-99b52829743f"
+ },
+ {
+ "id": "66a4f625-7cf6-48ad-93c4-ca4cb78ca458",
+ "name": "Radio Forobardo",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiofb.vdmr.top/stream",
+ "homepage": "https://forobardo.tk/vlad/new-radio-widget.html#",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "66a4f625-7cf6-48ad-93c4-ca4cb78ca458"
+ },
+ {
+ "id": "78b8f13c-623f-48d0-b7df-9c8e7ecacca1",
+ "name": "Radio Splendid AM 900",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina,spanish",
+ "tags": [
+ "adult contemporary",
+ "entrevistas",
+ "música y noticias"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/AM990.mp3",
+ "homepage": "https://splendidam990.com/",
+ "logoUrl": "https://ftp.la990.com.ar/images/share23.png",
+ "votes": 103,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "78b8f13c-623f-48d0-b7df-9c8e7ecacca1"
+ },
+ {
+ "id": "9cfbad0e-eb3f-4b4d-9f34-effe0c8c27a2",
+ "name": "96.1 Shopping Classics",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream4.suenas.net/shoppingclassics",
+ "homepage": "https://www.radioshopping.com.ar/",
+ "logoUrl": "https://static.wixstatic.com/media/ec27f9_ea87259ccf5b5bb366eb07444d11ad6a.png/v1/fill/w_224,h_226,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/ec27f9_ea87259ccf5b5bb366eb07444d11ad6a.png",
+ "votes": 33,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9cfbad0e-eb3f-4b4d-9f34-effe0c8c27a2"
+ },
+ {
+ "id": "bb1a32e0-fa3f-4247-8c35-8c8d6b21981b",
+ "name": "Acqua FM 100.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "english,spanish",
+ "tags": [
+ "dance",
+ "hits",
+ "top100"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://strcdn.klm99.com:10985/acquavillagesell",
+ "homepage": "http://www.acqua.fm/acqua-villagesell.php",
+ "logoUrl": "http://www.acqua.fm/apple-touch-icon.png",
+ "votes": 51,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "bb1a32e0-fa3f-4247-8c35-8c8d6b21981b"
+ },
+ {
+ "id": "2475bc9b-62b8-41dd-b5b7-f73d8e620a3d",
+ "name": "De la Nueva Bahía 106.1 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "60s",
+ "70s",
+ "80s",
+ "90s",
+ "alternative",
+ "classic hits",
+ "electronic",
+ "hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://radios.solumedia.com/6136/stream",
+ "homepage": "https://delanuevabahiafm.com/",
+ "logoUrl": "https://statics-v3.streema.com/static/img/radios/profile_background_default_380.abf7abe7e86a.jpg",
+ "votes": 11,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "2475bc9b-62b8-41dd-b5b7-f73d8e620a3d"
+ },
+ {
+ "id": "ad563392-497b-4fe0-a3e6-4a6b30d57bbe",
+ "name": "FM 97.9 Vida",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://streaming450tb.locucionar.com/proxy/fmvida979?mp=/stream",
+ "homepage": "https://www.fmvida.com.ar/",
+ "logoUrl": "http://www.fmvida.com.ar/img/fmvida_200x200.png",
+ "votes": 294,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ad563392-497b-4fe0-a3e6-4a6b30d57bbe"
+ },
+ {
+ "id": "f81ff03b-12a8-4a93-8ebe-53f123204f01",
+ "name": "FM CERES 98.7",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "deportes",
+ "entretenimiento",
+ "information",
+ "música y noticias",
+ "noticias",
+ "various"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://streaming.escuchanosonline.com/8410/stream",
+ "homepage": "https://ceresdiario.com/home/",
+ "logoUrl": "https://ceresdiario.com/home/wp-content/uploads/2019/02/cropped-logo-ceresdiarioss-1-32x32.jpg",
+ "votes": 10,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f81ff03b-12a8-4a93-8ebe-53f123204f01"
+ },
+ {
+ "id": "9a12e2fe-ba2b-42ae-946e-fa657fb779a4",
+ "name": "Fm Cumbiambera",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "cumbia"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://streaming1.locucionar.com/proxy/fmcumbiambera?mp=/stream",
+ "homepage": "https://www.fmcumbiambera.com/",
+ "logoUrl": "https://www.fmcumbiambera.com/images/icono.png",
+ "votes": 1681,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9a12e2fe-ba2b-42ae-946e-fa657fb779a4"
+ },
+ {
+ "id": "cd66131b-b395-43c5-92b4-9dafad694213",
+ "name": "FM Estación Popular 101.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "cuarteto",
+ "entretenimiento",
+ "music",
+ "popular"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.escuchanosonline.com:7298/;",
+ "homepage": "https://www.fmestacionpopular.com/",
+ "logoUrl": "https://escuchanosonline.com//clientes/img/estacionpopular/0cdc98b9f58d3db458480648046c8c77.jpg",
+ "votes": 19,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "cd66131b-b395-43c5-92b4-9dafad694213"
+ },
+ {
+ "id": "f16e0797-3a46-42d1-8849-87adb2535769",
+ "name": "Nacional Rock FM 93.7",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://sa.mp3.icecast.magma.edge-access.net/sc_rad39",
+ "homepage": "https://www.radionacional.com.ar/nacionalrock/",
+ "logoUrl": null,
+ "votes": 56,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f16e0797-3a46-42d1-8849-87adb2535769"
+ },
+ {
+ "id": "b16ac96d-15ed-4b2b-b761-ea8fe31d586d",
+ "name": "planeta cuarteto, Villa Carlos Paz 100.3 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "argentina",
+ "cordoba",
+ "cuarteto"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.radiosenlinea.com.ar:10763/live",
+ "homepage": "http://www.planetacuarteto.com.ar/",
+ "logoUrl": null,
+ "votes": 57,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b16ac96d-15ed-4b2b-b761-ea8fe31d586d"
+ },
+ {
+ "id": "0d24740e-2f73-4f4e-8b89-674d9e1e4ec5",
+ "name": "Somos Radio - AM 530 (Radio de las Madres de Plaza de Mayo)",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://cdn.instream.audio:9288/stream",
+ "homepage": "https://am530somosradio.com/",
+ "logoUrl": null,
+ "votes": 43,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0d24740e-2f73-4f4e-8b89-674d9e1e4ec5"
+ },
+ {
+ "id": "d2f327b0-471d-4465-95ba-6ebc372a3beb",
+ "name": "Urbana Play 104.3",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 250,
+ "streamUrl": "https://vmf.edge-apps.net/playlist/urbana.m3u8/play.m3u8",
+ "homepage": "https://urbanaplayfm.com/",
+ "logoUrl": null,
+ "votes": 1197,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d2f327b0-471d-4465-95ba-6ebc372a3beb"
+ },
+ {
+ "id": "cc5aae14-31ef-469d-aabe-288d1ab6160c",
+ "name": "90.1 MHz FM EL CHUBUT",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://radios.streamingdha.com.ar:9382/;",
+ "homepage": "https://www.elchubut.com.ar/radio",
+ "logoUrl": "https://www.elchubut.com.ar/img/radio/logo-radio-seccion1.png",
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "cc5aae14-31ef-469d-aabe-288d1ab6160c"
+ },
+ {
+ "id": "84348e51-d1d1-4382-8620-5de13b66c48a",
+ "name": "Berlin 107.7",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://unlimited5-us.dps.live/berlin/aac/icecast.audio",
+ "homepage": "https://berlin1077.com/",
+ "logoUrl": "https://static-cdn.jtvnw.net/jtv_user_pictures/9f3ec466-7131-4912-a634-4fafba661a62-profile_image-150x150.png",
+ "votes": 0,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "84348e51-d1d1-4382-8620-5de13b66c48a"
+ },
+ {
+ "id": "7768fa2e-fb51-464a-a75f-eea5cdad072b",
+ "name": "Big Bang Radio",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radios2.tecnosoul.com.ar:8001/bigbang",
+ "homepage": "https://bigbang-radio.com/",
+ "logoUrl": "https://bigbang-radio.com/wp-content/uploads/elementor/thumbs/cropped-big-bang2-1-p84m4j1lcibmkhreidq0ywn824dbizn1l3upjalc80.png",
+ "votes": 7,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7768fa2e-fb51-464a-a75f-eea5cdad072b"
+ },
+ {
+ "id": "299a8625-4a9d-4325-bd09-48e4491af35f",
+ "name": "Cienradios Radio X",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "alternative rock",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIOX_56AAC.aac",
+ "homepage": "https://ar.cienradios.com/player/radio-x/",
+ "logoUrl": "https://cloudfront-arc.cienradios.com/ar/favicons/apple-icon-120x120.png",
+ "votes": 20,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "299a8625-4a9d-4325-bd09-48e4491af35f"
+ },
+ {
+ "id": "f7077337-59d4-4b30-b95e-77d2b1295ba3",
+ "name": "Cosquín Rock 95.5",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/cosquinrock.mp3",
+ "homepage": "https://cosquinrock.net/cosquin-rock-radio/",
+ "logoUrl": "https://thumbs.apolomedia.com/2-30-14-VNV9UV1726675713.mp3.jpg?889234",
+ "votes": 44,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f7077337-59d4-4b30-b95e-77d2b1295ba3"
+ },
+ {
+ "id": "6ad02747-a9c1-4a25-80e0-6ff400fb7afe",
+ "name": "cuarteto en la web",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://masservidor.net/8616/stream",
+ "homepage": "https://cuartetoenlaweb.com.ar/",
+ "logoUrl": null,
+ "votes": 24,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6ad02747-a9c1-4a25-80e0-6ff400fb7afe"
+ },
+ {
+ "id": "ef31f3ef-4e8c-4aee-9feb-8f55919640ab",
+ "name": "CVC La Voz Urbano",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://chat-assets.frontapp.com/v1/149be82f568687535638c72a66facc34.ogg",
+ "homepage": "https://cvclavoz.com/urbano/",
+ "logoUrl": null,
+ "votes": 29,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ef31f3ef-4e8c-4aee-9feb-8f55919640ab"
+ },
+ {
+ "id": "6c195bfc-33bd-40d2-a1d1-bfaebc060979",
+ "name": "d-Sports radio",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/DSPORTSRADIOAAC.aac",
+ "homepage": "https://www.dsportsradio.com/",
+ "logoUrl": null,
+ "votes": 526,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6c195bfc-33bd-40d2-a1d1-bfaebc060979"
+ },
+ {
+ "id": "0b92a118-b6fa-49e2-a4cf-8d7c1fe8cee6",
+ "name": "Elevate 102.1 FM Rosario",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "english,spanish",
+ "tags": [
+ "dance",
+ "electronic",
+ "electronica"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://sonic.host-live.com/8120/stream",
+ "homepage": "https://1021elevate.com.ar/",
+ "logoUrl": "https://1021elevate.com.ar/assets/favicon.ico",
+ "votes": 7,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b92a118-b6fa-49e2-a4cf-8d7c1fe8cee6"
+ },
+ {
+ "id": "ffd131d8-acf9-4190-b6f4-b377624878e1",
+ "name": "La 2x4",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "castellano. español,español argentina,español internacional,spanish",
+ "tags": [
+ "tango"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://media.radios.ar:9270/",
+ "homepage": "https://buenosaires.gob.ar/la2x4",
+ "logoUrl": "https://buenosaires.gob.ar/sites/default/files/favicon.ico",
+ "votes": 107,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ffd131d8-acf9-4190-b6f4-b377624878e1"
+ },
+ {
+ "id": "c3484fcd-50fd-47a0-8bf6-406ac4c2f669",
+ "name": "Planet Music Mar del PLata 101.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "music",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://strcdn.klm99.com:10991/planetmdp",
+ "homepage": "https://www.planetmusic.fm/",
+ "logoUrl": "https://www.planetmusic.fm/favicon-16x16.png",
+ "votes": 26,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "c3484fcd-50fd-47a0-8bf6-406ac4c2f669"
+ },
+ {
+ "id": "aab01e08-94ed-4515-ba9d-e17def0ad57e",
+ "name": "Radio 5: Mitre AM790",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.eduneu.eu:8040/radio.mp3",
+ "homepage": "https://radio.eduneu.eu/public/radio5",
+ "logoUrl": "https://radio.eduneu.eu/static/uploads/radio5/album_art.1740739174.jpg",
+ "votes": 64,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "aab01e08-94ed-4515-ba9d-e17def0ad57e"
+ },
+ {
+ "id": "94d3aa00-b246-48d9-9089-7c9b762f3156",
+ "name": "Radio Cristiana FM 88.3",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "bible",
+ "cristiana",
+ "evangelio",
+ "gospel",
+ "radio hablada",
+ "religious"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rr5100.globalhost1.com/8540/;",
+ "homepage": "https://www.radiocristiana883.com.ar/",
+ "logoUrl": "https://www.radiocristiana883.com.ar/splash.jpg",
+ "votes": 168,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "94d3aa00-b246-48d9-9089-7c9b762f3156"
+ },
+ {
+ "id": "df2aa14f-592f-45ed-b368-46f4e610cd97",
+ "name": "Radio El Mundo - AM 1070",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "argentia",
+ "radio el mundo"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.escuchanosonline.com:7118//stream?type=http&nocache=1",
+ "homepage": "https://www.radioelmundoam1070.com/",
+ "logoUrl": null,
+ "votes": 192,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "df2aa14f-592f-45ed-b368-46f4e610cd97"
+ },
+ {
+ "id": "85a55d6c-c2c1-4928-a539-c723023b98ac",
+ "name": "Radio Infinity Classic",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "70s",
+ "80s",
+ "90s",
+ "adult contemporary",
+ "disco",
+ "retro r&b"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://sonic.host-live.com/8192/stream",
+ "homepage": "https://radioinfinityclassic.com/",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "85a55d6c-c2c1-4928-a539-c723023b98ac"
+ },
+ {
+ "id": "8db31931-6c7b-4493-9fe4-486332bf2caf",
+ "name": "Radio NOW 97.9",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español - latinoamerica",
+ "tags": [
+ "actualidad",
+ "hits 80s",
+ "hits 90s",
+ "pop rock popular"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://ipanel.instream.audio:7002/stream?_=18fea7232d5",
+ "homepage": "https://979now.com/",
+ "logoUrl": "https://www.enlaradio.com.ar/wp-content/uploads/2024/06/elr_979now-1024x576.jpg",
+ "votes": 56,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8db31931-6c7b-4493-9fe4-486332bf2caf"
+ },
+ {
+ "id": "93eeeeb2-12ea-4f63-aada-e2d53729d2a5",
+ "name": "Radio one",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 98,
+ "streamUrl": "https://one.stweb.tv/one/live/playlist.m3u8",
+ "homepage": "https://www.radioone1037.fm/",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "93eeeeb2-12ea-4f63-aada-e2d53729d2a5"
+ },
+ {
+ "id": "6cee259f-5aa9-42eb-92f0-fc61bdf4e0ec",
+ "name": "Radio Rivadavia",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RIVADAVIAAAC_SC?dist=triton-widget&pname=tdwidgets",
+ "homepage": "https://rivadavia.com.ar/",
+ "logoUrl": "https://imgs.search.brave.com/c0mfZAqHGqHQ8JWG3R-tqwt_EXVt-KLx3sCZJSZ0dlc/rs:fit:500:0:0/g:ce/aHR0cHM6Ly9hZG1p/bi5hdXRvLW1lc3Nl/bmdlci5ydS9zdG9y/YWdlL2NpdHlfcmFk/aW8vMzk1OTQvNTUz/MTcvY29udmVyc2lv/bnMvcm1TSjdWWnFJ/d2VmNHR3WTE4Z21U/R2RLanI2S2hnLW1l/dGFjbUZrYVc4dGNt/bDJZV1JoZG1saExY/SnZjMkZ5YVc4dWNH/NW4tLWxnLndlYnA",
+ "votes": 492,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6cee259f-5aa9-42eb-92f0-fc61bdf4e0ec"
+ },
+ {
+ "id": "22967a95-dff4-4797-8122-401d5d1f8a2f",
+ "name": "Rio FM 96.9 Rosario",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "english",
+ "tags": [
+ "adult contemporary",
+ "aor",
+ "classic hits",
+ "classic pop",
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.redboing.com/radio/8070/radio.mp3",
+ "homepage": "https://www.redboing.com/",
+ "logoUrl": "https://rio969.com/_static/thumbnail.png",
+ "votes": 28,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "22967a95-dff4-4797-8122-401d5d1f8a2f"
+ },
+ {
+ "id": "c86d38ab-3668-4495-a5c3-2c9a691493ae",
+ "name": "221Radio (FM 103.1)",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "news",
+ "sports",
+ "talk & speech"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radios.solumedia.com:10815/stream",
+ "homepage": "https://221radio.com.ar/",
+ "logoUrl": "https://221radio.com.ar/vistas/img/Logo-web-baja-400x86.png",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c86d38ab-3668-4495-a5c3-2c9a691493ae"
+ },
+ {
+ "id": "7dac6761-3afa-426a-a055-4590b6d5ba81",
+ "name": "Achala",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina",
+ "tags": [
+ "radio comunitaria"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming2.mundoradio.com.ar/9134/stream",
+ "homepage": "https://achalafm.blogspot.com/",
+ "logoUrl": "https://www.farco.org.ar/radios/wp-content/uploads/sites/4/2023/03/radio-achala.jpg",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "7dac6761-3afa-426a-a055-4590b6d5ba81"
+ },
+ {
+ "id": "a8856cb0-5803-49be-ba24-e2e6e77e6687",
+ "name": "Cadena Express 88.1 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "80s",
+ "90s",
+ "classic rock",
+ "entretenimiento",
+ "music",
+ "rock",
+ "rock en español",
+ "rock en ingles"
+ ],
+ "codec": "AAC",
+ "bitrate": 32,
+ "streamUrl": "https://streamall.alsolnet.com/cadenaexpress",
+ "homepage": "http://www.cadenaexpress.com/",
+ "logoUrl": "http://www.cadenaexpress.com/assets/images/logopag2-280x92.png",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a8856cb0-5803-49be-ba24-e2e6e77e6687"
+ },
+ {
+ "id": "ed3cb761-32e0-4075-877a-6a34c3a1a2a6",
+ "name": "Cienradios - Enamorados",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "adult contemporary",
+ "old hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://27573.live.streamtheworld.com/ENAMORADOS_PYTAAC.aac?",
+ "homepage": "https://ar.cienradios.com/",
+ "logoUrl": "https://cloudfront-arc.cienradios.com/ar/favicons/favicon-16x16.png",
+ "votes": 46,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ed3cb761-32e0-4075-877a-6a34c3a1a2a6"
+ },
+ {
+ "id": "9cc01fff-5c3a-401e-8609-cbf795516514",
+ "name": "Classique: Una radio de clásicos",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "english,spanish",
+ "tags": [
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://01.solumedia.com.ar:8562/stream",
+ "homepage": "https://www.classique.com.ar/",
+ "logoUrl": "https://i.ibb.co/k2mrvXX/radio-classique.png",
+ "votes": 69,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9cc01fff-5c3a-401e-8609-cbf795516514"
+ },
+ {
+ "id": "9f93d2f9-d044-4a17-b6cd-7d9ea7306a19",
+ "name": "Colegio AMEN",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.eduneu.eu:8050/radio.mp3",
+ "homepage": "https://radio.eduneu.eu/public/colegioamen",
+ "logoUrl": "https://www.eduneu.eu/logo_radio_amen.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f93d2f9-d044-4a17-b6cd-7d9ea7306a19"
+ },
+ {
+ "id": "733fc8f3-0533-4ae9-8f6e-6008442ec776",
+ "name": "Concepto FM 95.5",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "80s",
+ "90s",
+ "entretenimiento",
+ "música en español e inglés",
+ "noticias",
+ "radio hablada"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://radios.solumedia.com:6002/;",
+ "homepage": "http://www.conceptofm.com/home.php",
+ "logoUrl": "http://www.conceptofm.com/images/logo.png",
+ "votes": 11,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "733fc8f3-0533-4ae9-8f6e-6008442ec776"
+ },
+ {
+ "id": "f48851e8-743a-481d-8a55-61e7cb7f4b60",
+ "name": "Contacto 95.3 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "hits",
+ "latino",
+ "pop",
+ "reggaeton",
+ "top 40"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://sonicpanel.hostradios.com:7160/;",
+ "homepage": "https://www.radiocontacto953.com.ar/",
+ "logoUrl": "https://www.radiocontacto953.com.ar/images/logo_header.png",
+ "votes": 4,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f48851e8-743a-481d-8a55-61e7cb7f4b60"
+ },
+ {
+ "id": "b5bf65ee-0937-49c3-854f-52ba08b7184f",
+ "name": "CRISTAL FM Noetinger",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "80s",
+ "90s",
+ "baladas en español",
+ "music",
+ "pop",
+ "pop en español e inglés",
+ "pop latino",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio02.ferozo.com/proxy/ra02001324?mp=/stream",
+ "homepage": "https://www.cristalnoetinger.com.ar/",
+ "logoUrl": "https://www.cristalnoetinger.com.ar/images/Black_no.circle_facebook.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b5bf65ee-0937-49c3-854f-52ba08b7184f"
+ },
+ {
+ "id": "c5730ce3-f190-467d-ab05-bf8785e71379",
+ "name": "Dale FM 93.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 80,
+ "streamUrl": "https://streaming01.shockmedia.com.ar:10891/;?hash=1659583597942",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c5730ce3-f190-467d-ab05-bf8785e71379"
+ },
+ {
+ "id": "83b2e6cf-5256-4b77-ba58-56cace827061",
+ "name": "Fahrenheit FM 88.7 Rosario",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "cumbia",
+ "dance",
+ "hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.redboing.com/radio/8010/radio.aac",
+ "homepage": "https://www.redboing.com/",
+ "logoUrl": "https://radioboing.com/stream/logo2.png",
+ "votes": 16,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "83b2e6cf-5256-4b77-ba58-56cace827061"
+ },
+ {
+ "id": "0f5450f3-c703-4eb6-8133-4fa484bdd183",
+ "name": "Fm 106.1 Estacion 2",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "bolero",
+ "cuarteto",
+ "cumbia",
+ "entretenimiento",
+ "musica romantica"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://emisora.zonasinergia.com/8068/stream",
+ "homepage": "https://estacion2palmira.blogspot.com/",
+ "logoUrl": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaSewJK0SPUoZbmeNE-IaGVLg4zUOFRyIVF4WjR7HnOoUrKJpHm1tJQptWA26iTg-jttCI5jNiYgRy8z08i5M34x3fw-rNj-w8bxcRpw-RELclNh7PBFlbTALSEg6ZwqWnzNL9R1m_SgDLg7T2f1t3Shn0Mz_x1nsOkNycbNYFYJBsy6HEG3xD5MXK/s320/1-logo%20top%20top%202023.jpg",
+ "votes": 26,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f5450f3-c703-4eb6-8133-4fa484bdd183"
+ },
+ {
+ "id": "d95d15fb-2789-487a-89e4-e30c554b5f69",
+ "name": "FM 90.9 Rosario",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "cumbia",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 32,
+ "streamUrl": "https://streaming2.locucionar.com/proxy/radiobt?mp=/stream",
+ "homepage": "https://www.fm909rosario.com.ar/",
+ "logoUrl": "https://i.imgur.com/wcGFaC8.jpg",
+ "votes": 27,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d95d15fb-2789-487a-89e4-e30c554b5f69"
+ },
+ {
+ "id": "1391cd49-440b-43c0-a84f-be9e6175ceb8",
+ "name": "FM Blackie 89.1",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "spanish",
+ "tags": [
+ "jazz",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BLACKIE_89_1.mp3",
+ "homepage": "https://fmblackie.com.ar/",
+ "logoUrl": "https://fmblackie.com.ar/wp-content/themes/blackie/images/logo.png",
+ "votes": 39,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1391cd49-440b-43c0-a84f-be9e6175ceb8"
+ },
+ {
+ "id": "43aca737-a8bf-43a8-8db6-ab4dd0c77c15",
+ "name": "Milenium 106.7 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "español argentina,spanish",
+ "tags": [
+ "argentina",
+ "local news",
+ "news",
+ "radio argentina",
+ "world news"
+ ],
+ "codec": "AAC",
+ "bitrate": 32,
+ "streamUrl": "https://sonicpanel.hostradios.com/8002/stream",
+ "homepage": "https://fmmilenium.com.ar/",
+ "logoUrl": "https://fmmilenium.com.ar/wp-content/uploads/2019/06/cropped-logo-180x180.png",
+ "votes": 129,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "43aca737-a8bf-43a8-8db6-ab4dd0c77c15"
+ },
+ {
+ "id": "62ea1c7c-9462-4e69-bccb-b8a5abbd5184",
+ "name": "Quality X - 89.7 FM",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://stream.qualityradio.com.ar/qualityx",
+ "homepage": "https://x.qualityradio.com.ar/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s141326/images/logog.jpg?t=164425",
+ "votes": 29,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "62ea1c7c-9462-4e69-bccb-b8a5abbd5184"
+ },
+ {
+ "id": "a04591d4-9594-47bb-9f87-2a5afbf963f4",
+ "name": "Radio FM Gualamba 93.7. Resistencia Chaco. Version 2",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://audials.com/sslify/centova.radiosnethosting.com:9072",
+ "homepage": "https://fmgualamba.com.ar/",
+ "logoUrl": null,
+ "votes": 13,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a04591d4-9594-47bb-9f87-2a5afbf963f4"
+ },
+ {
+ "id": "b23d1c81-da2b-45b3-a1d8-0d3b2b6f7104",
+ "name": "Vinilo Mix",
+ "country": "Argentina",
+ "countryCode": "AR",
+ "language": "english",
+ "tags": [
+ "80s",
+ "90s",
+ "oldies"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://audiopanel.com.ar:8010/radio.aac",
+ "homepage": "https://www.radios-argentinas.org/vinilo",
+ "logoUrl": null,
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b23d1c81-da2b-45b3-a1d8-0d3b2b6f7104"
+ },
{
"id": "1653b791-7005-4e95-be20-4e7b626a4a20",
"name": "Sky News Australia Radio",
@@ -20,7 +1857,7 @@
"homepage": "https://www.skynews.com.au/sky-news-radio",
"logoUrl": "https://raw.githubusercontent.com/AusIPTV/IPTVLogos/master/SKY_News_Australia_logo.png",
"votes": 901,
- "clickcount": 47,
+ "clickcount": 44,
"source": "radio-browser",
"sourceStationUuid": "1653b791-7005-4e95-be20-4e7b626a4a20"
},
@@ -58,29 +1895,10 @@
"homepage": "https://www.hit.com.au/brisbane",
"logoUrl": "https://hit.listnr.com/wp-content/uploads/2024/04/cropped-hit-favicon-180x180.png",
"votes": 239,
- "clickcount": 19,
+ "clickcount": 17,
"source": "radio-browser",
"sourceStationUuid": "26aaf9ed-a765-4693-bcd2-1bebbe67615e"
},
- {
- "id": "3f8fa6c1-50b6-469b-a957-0b1215464d15",
- "name": "101.9 The Fox Melbourne",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "adult contemporary"
- ],
- "codec": "AAC",
- "bitrate": 130,
- "streamUrl": "https://wz3liw.scahw.com.au/live/3fox_128.stream/playlist.m3u8",
- "homepage": "https://www.hit.com.au/fox",
- "logoUrl": "https://hit.listnr.com/wp-content/uploads/2024/04/cropped-hit-favicon-180x180.png",
- "votes": 220,
- "clickcount": 16,
- "source": "radio-browser",
- "sourceStationUuid": "3f8fa6c1-50b6-469b-a957-0b1215464d15"
- },
{
"id": "8e19306c-27eb-406f-8ccc-dc3146e0ae1f",
"name": "Triple M Brisbane",
@@ -103,23 +1921,23 @@
"sourceStationUuid": "8e19306c-27eb-406f-8ccc-dc3146e0ae1f"
},
{
- "id": "a4c32662-98bc-42bd-b05b-dcf656272369",
- "name": "Gold 104.3",
+ "id": "3f8fa6c1-50b6-469b-a957-0b1215464d15",
+ "name": "101.9 The Fox Melbourne",
"country": "Australia",
"countryCode": "AU",
"language": "english",
"tags": [
- "classic hits"
+ "adult contemporary"
],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://ais-arn.streamguys1.com/au_004_icy",
- "homepage": "https://www.gold1043.com.au/",
- "logoUrl": "https://www.gold1043.com.au/wp-content/themes/arn/assets/favicons/favicon_gold/favicon-32x32.png",
- "votes": 3228,
- "clickcount": 14,
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://wz3liw.scahw.com.au/live/3fox_128.stream/playlist.m3u8",
+ "homepage": "https://www.hit.com.au/fox",
+ "logoUrl": "https://hit.listnr.com/wp-content/uploads/2024/04/cropped-hit-favicon-180x180.png",
+ "votes": 220,
+ "clickcount": 15,
"source": "radio-browser",
- "sourceStationUuid": "a4c32662-98bc-42bd-b05b-dcf656272369"
+ "sourceStationUuid": "3f8fa6c1-50b6-469b-a957-0b1215464d15"
},
{
"id": "e96086c0-ae22-4e98-8f54-38c8680cdd40",
@@ -139,10 +1957,49 @@
"homepage": "https://play.listnr.com/station/80s-new-wave",
"logoUrl": "https://play.listnr.com/favicon/apple-touch-icon.png",
"votes": 948,
- "clickcount": 14,
+ "clickcount": 15,
"source": "radio-browser",
"sourceStationUuid": "e96086c0-ae22-4e98-8f54-38c8680cdd40"
},
+ {
+ "id": "a4c32662-98bc-42bd-b05b-dcf656272369",
+ "name": "Gold 104.3",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "classic hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://ais-arn.streamguys1.com/au_004_icy",
+ "homepage": "https://www.gold1043.com.au/",
+ "logoUrl": "https://www.gold1043.com.au/wp-content/themes/arn/assets/favicons/favicon_gold/favicon-32x32.png",
+ "votes": 3228,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4c32662-98bc-42bd-b05b-dcf656272369"
+ },
+ {
+ "id": "a91e7dfe-5b4d-4df1-be98-6a73d93f8057",
+ "name": "ABC Radio Melbourne",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 94,
+ "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038300/localmelbourne/masterhq.m3u8",
+ "homepage": "https://www.abc.net.au/listen/live/melbourne",
+ "logoUrl": "https://live-production.wcms.abc-cdn.net.au/ca6ab5978de9c6130441e5518e335c3d",
+ "votes": 144,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "a91e7dfe-5b4d-4df1-be98-6a73d93f8057"
+ },
{
"id": "fe852cc8-1a27-4dcd-8465-917ec32d8b64",
"name": "ABC Radio Sydney",
@@ -159,7 +2016,7 @@
"homepage": "https://www.abc.net.au/listen/live/sydney",
"logoUrl": "https://live-production.wcms.abc-cdn.net.au/7ee8a275df331791ce3b86c17aef1d50",
"votes": 495,
- "clickcount": 12,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "fe852cc8-1a27-4dcd-8465-917ec32d8b64"
},
@@ -211,26 +2068,6 @@
"source": "radio-browser",
"sourceStationUuid": "0d9fefee-774a-469c-9610-af4cf2615a38"
},
- {
- "id": "a91e7dfe-5b4d-4df1-be98-6a73d93f8057",
- "name": "ABC Radio Melbourne",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "news",
- "talk"
- ],
- "codec": "AAC",
- "bitrate": 94,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038300/localmelbourne/masterhq.m3u8",
- "homepage": "https://www.abc.net.au/listen/live/melbourne",
- "logoUrl": "https://live-production.wcms.abc-cdn.net.au/ca6ab5978de9c6130441e5518e335c3d",
- "votes": 144,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "a91e7dfe-5b4d-4df1-be98-6a73d93f8057"
- },
{
"id": "5547b37d-c1fb-40a5-af58-2f504bc0a6c9",
"name": "Double J QLD",
@@ -311,47 +2148,6 @@
"source": "radio-browser",
"sourceStationUuid": "a39dc3e3-8ccf-4bcf-8f18-c2834014a46f"
},
- {
- "id": "d45994e0-136c-459a-a0ad-84cb4d46a8c3",
- "name": "Dance Hits",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "dance",
- "dance music"
- ],
- "codec": "AAC",
- "bitrate": 130,
- "streamUrl": "https://wz2liw.scahw.com.au/live/2dance_128.stream/playlist.m3u8",
- "homepage": "https://www.hit.com.au/dance",
- "logoUrl": "https://images.ctfassets.net/yxg7lydfj6tc/8ed4cc58-1dba-4aa3-99b2-42f68df3665d/54c3be5e0554e81638fc2b297c3e9cf9/dance.png",
- "votes": 118,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "d45994e0-136c-459a-a0ad-84cb4d46a8c3"
- },
- {
- "id": "54b53ad4-56f4-4579-a08f-5d7ce1160f3a",
- "name": "Fresh 92.7",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "community radio",
- "music",
- "pop"
- ],
- "codec": "AAC",
- "bitrate": 64,
- "streamUrl": "https://live.fresh927.com.au/freshaac",
- "homepage": "https://fresh927.com.au/",
- "logoUrl": "https://fresh927.com.au/graphics/favicon.png",
- "votes": 1504,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "54b53ad4-56f4-4579-a08f-5d7ce1160f3a"
- },
{
"id": "1ddb77a9-4d52-4b54-8c2b-1c49291949e4",
"name": "Good Vibes Pilipinas",
@@ -430,6 +2226,47 @@
"source": "radio-browser",
"sourceStationUuid": "970e27a1-ca89-4e76-9343-96de20702a89"
},
+ {
+ "id": "d45994e0-136c-459a-a0ad-84cb4d46a8c3",
+ "name": "Dance Hits",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "dance",
+ "dance music"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://wz2liw.scahw.com.au/live/2dance_128.stream/playlist.m3u8",
+ "homepage": "https://www.hit.com.au/dance",
+ "logoUrl": "https://images.ctfassets.net/yxg7lydfj6tc/8ed4cc58-1dba-4aa3-99b2-42f68df3665d/54c3be5e0554e81638fc2b297c3e9cf9/dance.png",
+ "votes": 118,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "d45994e0-136c-459a-a0ad-84cb4d46a8c3"
+ },
+ {
+ "id": "54b53ad4-56f4-4579-a08f-5d7ce1160f3a",
+ "name": "Fresh 92.7",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "community radio",
+ "music",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://live.fresh927.com.au/freshaac",
+ "homepage": "https://fresh927.com.au/",
+ "logoUrl": "https://fresh927.com.au/graphics/favicon.png",
+ "votes": 1504,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "54b53ad4-56f4-4579-a08f-5d7ce1160f3a"
+ },
{
"id": "37e6772a-5ab7-429d-84bc-fedc606cc8c4",
"name": "Systrum Sistum - SSR1",
@@ -453,26 +2290,43 @@
"sourceStationUuid": "37e6772a-5ab7-429d-84bc-fedc606cc8c4"
},
{
- "id": "09eb32c0-5958-4797-92f2-1d8e8537c4e7",
- "name": "2GB 873 Sydney",
+ "id": "974b7576-d06d-44cc-a44c-2f7c387add31",
+ "name": "97.3fm Brisbane",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "hot adult contemporary"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ARN_973FMAAC.aac",
+ "homepage": "https://www.973fm.com.au/",
+ "logoUrl": "https://www.973fm.com.au/wp-content/themes/arn/assets/favicons/favicon_973/apple-touch-icon.png",
+ "votes": 242,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "974b7576-d06d-44cc-a44c-2f7c387add31"
+ },
+ {
+ "id": "eef0bb13-3c86-4ff9-9f7e-2a0610f09d1b",
+ "name": "ABC Radio Brisbane",
"country": "Australia",
"countryCode": "AU",
"language": "english",
"tags": [
"news",
- "sport",
- "talk",
- "talkback"
+ "talk"
],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://28093.live.streamtheworld.com/2GBAAC_O/HLS/playlist.m3u8",
- "homepage": "https://www.2gb.com/",
- "logoUrl": "https://www.2gb.com/wp-content/themes/2gb/assets/img/favicon/apple-touch-icon.png",
- "votes": 49,
+ "codec": "AAC",
+ "bitrate": 94,
+ "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038304/localbrisbane/masterhq.m3u8",
+ "homepage": "https://www.abc.net.au/listen/live/brisbane",
+ "logoUrl": "https://live-production.wcms.abc-cdn.net.au/fc5ae87ade62a487a10a0f8bd47a1e47",
+ "votes": 42,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "09eb32c0-5958-4797-92f2-1d8e8537c4e7"
+ "sourceStationUuid": "eef0bb13-3c86-4ff9-9f7e-2a0610f09d1b"
},
{
"id": "bd0b1aa1-3bd2-4c4a-be4f-c8a1f5013eb3",
@@ -493,6 +2347,26 @@
"source": "radio-browser",
"sourceStationUuid": "bd0b1aa1-3bd2-4c4a-be4f-c8a1f5013eb3"
},
+ {
+ "id": "24c6a745-cc1a-4886-bd5e-fb8fb7b41c77",
+ "name": "Buddha",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "00s",
+ "chill"
+ ],
+ "codec": "AAC+",
+ "bitrate": 33,
+ "streamUrl": "https://legacy.scahw.com.au/2buddha_32",
+ "homepage": "https://www.listnr.com/stations/buddha",
+ "logoUrl": "https://dbs.radioline.fr/pictures/radio_4367c1a121aef5cb0dae701812759a28/logo200.jpg",
+ "votes": 150,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "24c6a745-cc1a-4886-bd5e-fb8fb7b41c77"
+ },
{
"id": "7804fe49-ac0a-44a6-8af1-2d093f880aed",
"name": "Mix94.5 Perth",
@@ -556,80 +2430,26 @@
"sourceStationUuid": "fe7bf393-8d75-4db6-949b-4f9e7f00cd49"
},
{
- "id": "974b7576-d06d-44cc-a44c-2f7c387add31",
- "name": "97.3fm Brisbane",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "hot adult contemporary"
- ],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ARN_973FMAAC.aac",
- "homepage": "https://www.973fm.com.au/",
- "logoUrl": "https://www.973fm.com.au/wp-content/themes/arn/assets/favicons/favicon_973/apple-touch-icon.png",
- "votes": 242,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "974b7576-d06d-44cc-a44c-2f7c387add31"
- },
- {
- "id": "606a9d73-34ca-465b-8b2c-836bfa656e9c",
- "name": "ABC AFL",
- "country": "Australia",
- "countryCode": "AU",
- "language": null,
- "tags": [
- "live sports",
- "sports talk"
- ],
- "codec": "AAC",
- "bitrate": 238,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038314/itinerantone/masterhq.m3u8",
- "homepage": "https://www.abc.net.au/news/sport/audio",
- "logoUrl": "https://static.wikia.nocookie.net/australia/images/e/e7/ABCSport_2020.png",
- "votes": 3,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "606a9d73-34ca-465b-8b2c-836bfa656e9c"
- },
- {
- "id": "6e9cc3f7-31a0-4f53-958b-a1784c5ab9d6",
- "name": "ABC NewsRadio",
- "country": "Australia",
- "countryCode": "AU",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 88,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038311/newsradio/index.m3u8",
- "homepage": "https://www.abc.net.au/",
- "logoUrl": "https://www.abc.net.au/favicon.ico",
- "votes": 33,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "6e9cc3f7-31a0-4f53-958b-a1784c5ab9d6"
- },
- {
- "id": "eef0bb13-3c86-4ff9-9f7e-2a0610f09d1b",
- "name": "ABC Radio Brisbane",
+ "id": "09eb32c0-5958-4797-92f2-1d8e8537c4e7",
+ "name": "2GB 873 Sydney",
"country": "Australia",
"countryCode": "AU",
"language": "english",
"tags": [
"news",
- "talk"
+ "sport",
+ "talk",
+ "talkback"
],
- "codec": "AAC",
- "bitrate": 94,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038304/localbrisbane/masterhq.m3u8",
- "homepage": "https://www.abc.net.au/listen/live/brisbane",
- "logoUrl": "https://live-production.wcms.abc-cdn.net.au/fc5ae87ade62a487a10a0f8bd47a1e47",
- "votes": 42,
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://28093.live.streamtheworld.com/2GBAAC_O/HLS/playlist.m3u8",
+ "homepage": "https://www.2gb.com/",
+ "logoUrl": "https://www.2gb.com/wp-content/themes/2gb/assets/img/favicon/apple-touch-icon.png",
+ "votes": 49,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "eef0bb13-3c86-4ff9-9f7e-2a0610f09d1b"
+ "sourceStationUuid": "09eb32c0-5958-4797-92f2-1d8e8537c4e7"
},
{
"id": "a8724e5c-90d0-4a9d-9ca8-4cfb169242a3",
@@ -650,26 +2470,6 @@
"source": "radio-browser",
"sourceStationUuid": "a8724e5c-90d0-4a9d-9ca8-4cfb169242a3"
},
- {
- "id": "24c6a745-cc1a-4886-bd5e-fb8fb7b41c77",
- "name": "Buddha",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "00s",
- "chill"
- ],
- "codec": "AAC+",
- "bitrate": 33,
- "streamUrl": "https://legacy.scahw.com.au/2buddha_32",
- "homepage": "https://www.listnr.com/stations/buddha",
- "logoUrl": "https://dbs.radioline.fr/pictures/radio_4367c1a121aef5cb0dae701812759a28/logo200.jpg",
- "votes": 150,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "24c6a745-cc1a-4886-bd5e-fb8fb7b41c77"
- },
{
"id": "44d3d703-f733-46e5-ad1f-75e9325b306f",
"name": "Gold 104.3",
@@ -960,6 +2760,26 @@
"source": "radio-browser",
"sourceStationUuid": "0182931b-b0b4-43e0-bcfd-ee75c7bc5be6"
},
+ {
+ "id": "606a9d73-34ca-465b-8b2c-836bfa656e9c",
+ "name": "ABC AFL",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": null,
+ "tags": [
+ "live sports",
+ "sports talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 238,
+ "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038314/itinerantone/masterhq.m3u8",
+ "homepage": "https://www.abc.net.au/news/sport/audio",
+ "logoUrl": "https://static.wikia.nocookie.net/australia/images/e/e7/ABCSport_2020.png",
+ "votes": 3,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "606a9d73-34ca-465b-8b2c-836bfa656e9c"
+ },
{
"id": "90d44cf3-7993-4b24-bd1e-85dfa133a73e",
"name": "ABC Classic FM (SA)",
@@ -1020,26 +2840,6 @@
"source": "radio-browser",
"sourceStationUuid": "8e6c37f1-7b71-4d05-91dd-0a08fde94bfb"
},
- {
- "id": "467de983-d4cf-4d0b-a69d-5bc2adb2c20d",
- "name": "B105 105.3MHz FM Brisbane QLD Hits from Then to Now - 20230614",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "adult contemporary",
- "hot adult contemporary"
- ],
- "codec": "AAC",
- "bitrate": 130,
- "streamUrl": "https://wz4liw.scahw.com.au/live/4bbb_128.stream/playlist.m3u8?",
- "homepage": "https://www.hit.com.au/brisbane",
- "logoUrl": "https://hit.listnr.com/wp-content/uploads/2024/04/cropped-hit-favicon-180x180.png",
- "votes": 231,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "467de983-d4cf-4d0b-a69d-5bc2adb2c20d"
- },
{
"id": "238baf96-ddba-4906-940d-ec9ca016727e",
"name": "Central Coast Radio.com",
@@ -1241,25 +3041,6 @@
"source": "radio-browser",
"sourceStationUuid": "447e6d2a-78a4-4c49-93fd-45ba4376458d"
},
- {
- "id": "3b06ec44-a90b-45a7-a6aa-0deccdb75833",
- "name": "2DayFM 104.1 Sydney",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "adult contemporary"
- ],
- "codec": "AAC",
- "bitrate": 130,
- "streamUrl": "https://wz2liw.scahw.com.au/live/2day_128.stream/playlist.m3u8",
- "homepage": "https://www.hit.com.au/2day",
- "logoUrl": "https://images.ctfassets.net/yxg7lydfj6tc/a03bb302-c2be-4f60-81b2-145a24c62edc/09d58d340e1ffe74f3fdcf133aca2df7/0001-2day.png",
- "votes": 84,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "3b06ec44-a90b-45a7-a6aa-0deccdb75833"
- },
{
"id": "aa5dc44c-84bf-48dd-a8a3-e6821e46cc71",
"name": "2ME Radio Arabic",
@@ -1336,27 +3117,6 @@
"source": "radio-browser",
"sourceStationUuid": "59f8911f-7aa7-4066-b3b1-05fcefcf2c8d"
},
- {
- "id": "5ca4267a-2783-4b77-b521-a4936f00191e",
- "name": "ABC Classic 2 HLS",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "abc",
- "classical",
- "public radio"
- ],
- "codec": "AAC",
- "bitrate": 238,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038317/classic2/index.m3u8",
- "homepage": "https://www.abc.net.au/classic",
- "logoUrl": "https://www.radio.de/images/broadcasts/ff/c4/36275/c175.png",
- "votes": 161,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "5ca4267a-2783-4b77-b521-a4936f00191e"
- },
{
"id": "9965d378-9fca-4e25-93a3-386789a46daa",
"name": "ABC Classic FM 20220701",
@@ -1441,23 +3201,21 @@
"sourceStationUuid": "bf7abc5e-1537-4881-b848-1fa57f60c931"
},
{
- "id": "89dda6cb-e1f1-4498-9b6f-ce0054707c01",
- "name": "ABC News Radio",
+ "id": "6e9cc3f7-31a0-4f53-958b-a1784c5ab9d6",
+ "name": "ABC NewsRadio",
"country": "Australia",
"countryCode": "AU",
- "language": "english",
- "tags": [
- "news"
- ],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2109425/newsradio/v0-221.m3u8",
- "homepage": "https://www.abc.net.au/listen/news",
- "logoUrl": "https://radioinfo.com.au/wp-content/uploads/2024/08/ABC-NewsRadio-.jpeg",
- "votes": 9,
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 88,
+ "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038311/newsradio/index.m3u8",
+ "homepage": "https://www.abc.net.au/",
+ "logoUrl": "https://www.abc.net.au/favicon.ico",
+ "votes": 33,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "89dda6cb-e1f1-4498-9b6f-ce0054707c01"
+ "sourceStationUuid": "6e9cc3f7-31a0-4f53-958b-a1784c5ab9d6"
},
{
"id": "a9c5e895-0b34-4f17-9147-2b9b9747a124",
@@ -1479,29 +3237,6 @@
"source": "radio-browser",
"sourceStationUuid": "a9c5e895-0b34-4f17-9147-2b9b9747a124"
},
- {
- "id": "d44c03de-5d38-48de-b59a-6968ffcdad63",
- "name": "ABC Radio National HLS",
- "country": "Australia",
- "countryCode": "AU",
- "language": "english",
- "tags": [
- "abc",
- "information",
- "news",
- "public radio",
- "talk"
- ],
- "codec": "AAC",
- "bitrate": 94,
- "streamUrl": "https://mediaserviceslive.akamaized.net/hls/live/2038318/rnnsw/index.m3u8",
- "homepage": "https://www.abc.net.au/radionational",
- "logoUrl": "https://static.mytuner.mobi/media/radios-150px/H8C4F9yENt.png",
- "votes": 68,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "d44c03de-5d38-48de-b59a-6968ffcdad63"
- },
{
"id": "49cedc35-151f-4ec7-86f8-5486224497c7",
"name": "ABC Radio National Live 20220701",
@@ -1565,6 +3300,26 @@
"source": "radio-browser",
"sourceStationUuid": "d5417cab-78d6-44bb-ad1b-b29e0f73fc5e"
},
+ {
+ "id": "467de983-d4cf-4d0b-a69d-5bc2adb2c20d",
+ "name": "B105 105.3MHz FM Brisbane QLD Hits from Then to Now - 20230614",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "adult contemporary",
+ "hot adult contemporary"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://wz4liw.scahw.com.au/live/4bbb_128.stream/playlist.m3u8?",
+ "homepage": "https://www.hit.com.au/brisbane",
+ "logoUrl": "https://hit.listnr.com/wp-content/uploads/2024/04/cropped-hit-favicon-180x180.png",
+ "votes": 231,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "467de983-d4cf-4d0b-a69d-5bc2adb2c20d"
+ },
{
"id": "c5963658-bef9-4df0-b36f-ff68d90164e8",
"name": "Christmas Hope (MP3 80k)",
@@ -1585,23 +3340,23 @@
"sourceStationUuid": "c5963658-bef9-4df0-b36f-ff68d90164e8"
},
{
- "id": "81fab755-33e5-4058-9c3a-2593e639ef97",
- "name": "hit101.3 Central Coast",
+ "id": "ca189f16-c5a0-4da1-9d95-ccfa9c1d3d69",
+ "name": "hit91.9 Bendigo",
"country": "Australia",
"countryCode": "AU",
"language": "english",
"tags": [
"adult contemporary"
],
- "codec": "AAC",
- "bitrate": 130,
- "streamUrl": "https://wz2liw.scahw.com.au/live/2cfm_128.stream/playlist.m3u8",
- "homepage": "https://www.hit.com.au/centralcoast",
- "logoUrl": null,
- "votes": 7,
+ "codec": "AAC+",
+ "bitrate": 33,
+ "streamUrl": "https://wz3liw.scahw.com.au/live/3bdg_128.stream/playlist.m3u8",
+ "homepage": "https://www.hit.com.au/bendigo",
+ "logoUrl": "https://images.ctfassets.net/yxg7lydfj6tc/ebf5f28e-fd35-4945-943f-bda00aa11080/0fe7de42c78d9d40a3f4489a8a63e193/0052-bendigo-919.png",
+ "votes": 18,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "81fab755-33e5-4058-9c3a-2593e639ef97"
+ "sourceStationUuid": "ca189f16-c5a0-4da1-9d95-ccfa9c1d3d69"
},
{
"id": "2f29771d-4f89-412f-82eb-046a9c91f4d1",
@@ -1664,6 +3419,48 @@
"source": "radio-browser",
"sourceStationUuid": "b1f0cacd-b7ef-47a4-be00-32c23f1bc0d8"
},
+ {
+ "id": "8f4c2360-9dd4-4c2f-a3e2-3d0b8367f327",
+ "name": "LiSTNR - Good Vibes",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "electronic dance music",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://wz7liw.scahw.com.au/live/7goodvibes_128.stream/playlist.m3u8",
+ "homepage": "https://play.listnr.com/station/good-vibes",
+ "logoUrl": "https://images.ctfassets.net/yxg7lydfj6tc/cb89f701-9dda-4db7-a4dd-c97942e91bc3/f8978dff877d38cc029613ef5445f45e/listnr-mood-station-logos-3000x3000-working-file-0001-good-vibes.png",
+ "votes": 23,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f4c2360-9dd4-4c2f-a3e2-3d0b8367f327"
+ },
+ {
+ "id": "f922c783-7509-4461-83ec-4f197b588b47",
+ "name": "LiSTNR - Party",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "dance",
+ "electronic",
+ "electronica",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 65,
+ "streamUrl": "https://wz0liw.scahw.com.au/live/party_128.stream/playlist.m3u8",
+ "homepage": "https://play.listnr.com/station/party",
+ "logoUrl": "https://i.ibb.co/MBTkJ1P/Party-square.jpg",
+ "votes": 27,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f922c783-7509-4461-83ec-4f197b588b47"
+ },
{
"id": "4f5d2b6c-6664-49e4-8e83-793d69adb3bc",
"name": "Nova 91.9",
@@ -1927,6 +3724,48 @@
"source": "radio-browser",
"sourceStationUuid": "9a678eb6-65ee-40c3-8158-23b03d1eedf1"
},
+ {
+ "id": "320e5dfa-c064-4f3e-a99c-730f669210a0",
+ "name": "LiSTNR - Aussie Dance",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "australian music",
+ "dance",
+ "electronic",
+ "electronica",
+ "house"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://wz0liw.scahw.com.au/live/aussiedance_128.stream/playlist.m3u8",
+ "homepage": "https://play.listnr.com/station/aussie-dance",
+ "logoUrl": "https://play.listnr.com/favicon/apple-touch-icon.png",
+ "votes": 13,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "320e5dfa-c064-4f3e-a99c-730f669210a0"
+ },
+ {
+ "id": "32e0049c-679a-46da-9c6e-b64b6410f29c",
+ "name": "LiSTNR - Hard N Heavy",
+ "country": "Australia",
+ "countryCode": "AU",
+ "language": "english",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://wz2liw.scahw.com.au/live/2hardnheavy_128.stream/playlist.m3u8",
+ "homepage": "https://play.listnr.com/station/hardnheavy",
+ "logoUrl": "https://play.listnr.com/favicon/apple-touch-icon.png",
+ "votes": 62,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "32e0049c-679a-46da-9c6e-b64b6410f29c"
+ },
{
"id": "d9c98c8f-7f7d-40f4-8baa-2692f4691977",
"name": "LiSTNR - Indie & Alt",
@@ -2010,7 +3849,7 @@
"homepage": "http://oe3.orf.at/",
"logoUrl": "https://tubestatic.orf.at/mojo/1_3/storyserver//tube/common/images/apple-icons/oe3.png",
"votes": 1451,
- "clickcount": 145,
+ "clickcount": 150,
"source": "radio-browser",
"sourceStationUuid": "e723f7f8-0db1-4bc5-a64c-64d8377f9f9a"
},
@@ -2034,7 +3873,7 @@
"homepage": "https://fm4.orf.at/",
"logoUrl": "https://tubestatic.orf.at/mojo/1_3/storyserver//tube/fm4/images/touch-icon-iphone-retina.png",
"votes": 1416,
- "clickcount": 106,
+ "clickcount": 102,
"source": "radio-browser",
"sourceStationUuid": "1e13ed4e-daa9-4728-8550-e08d89c1c8e7"
},
@@ -2078,7 +3917,7 @@
"homepage": "https://fm4.orf.at/",
"logoUrl": "https://tubestatic.orf.at/mojo/1_3/storyserver//tube/fm4/images/touch-icon-iphone-retina.png",
"votes": 2339,
- "clickcount": 39,
+ "clickcount": 43,
"source": "radio-browser",
"sourceStationUuid": "206f93c5-5f3c-4ba1-82c2-19a42582fcc2"
},
@@ -2122,10 +3961,33 @@
"homepage": "https://www.eurodance.at/",
"logoUrl": "https://www.eurodance.at/images/logo.png",
"votes": 620,
- "clickcount": 14,
+ "clickcount": 15,
"source": "radio-browser",
"sourceStationUuid": "e58e609b-3712-4136-86cf-5ac872192918"
},
+ {
+ "id": "7a4ed974-1a0a-4fea-8f8a-45ba3ba6daef",
+ "name": "AUSTRIA FIRST – Österreichs Patriotenradio",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [
+ "conservative talk",
+ "news",
+ "patriot",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://n01a-eu.rcs.revma.com/3zudpqfxh0cwv?rj-ttl=5&rj-tok=AAABm8uuzlsAWVPrc0mLiKWX-Q",
+ "homepage": "https://austriafirst.at/",
+ "logoUrl": "https://austriafirst.at/wp-content/uploads/2026/01/favicon-256x256-1.png",
+ "votes": 67,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "7a4ed974-1a0a-4fea-8f8a-45ba3ba6daef"
+ },
{
"id": "1e1513bb-f951-43ca-960d-bcbc26ff0bfe",
"name": "ORF Radio Oberösterreich",
@@ -2146,46 +4008,41 @@
"sourceStationUuid": "1e1513bb-f951-43ca-960d-bcbc26ff0bfe"
},
{
- "id": "ed03bcf5-86d2-45f7-848d-90d67f89e001",
- "name": "ORF Radio Oberösterreich | HQ",
+ "id": "c64828ba-99b9-407b-bb7f-3f1c184447d2",
+ "name": "Radio U1 Tirol",
"country": "Austria",
"countryCode": "AT",
- "language": null,
- "tags": [
- "orf"
- ],
+ "language": "german",
+ "tags": [],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://orf-live.ors-shoutcast.at/ooe-q2a",
- "homepage": "https://ooe.orf.at/player/",
- "logoUrl": "https://orfodon.org/system/accounts/avatars/111/374/484/561/807/260/original/04efe58e0bc4d119.png",
- "votes": 188,
+ "streamUrl": "https://live.u1-radio.at/",
+ "homepage": "https://www.u1-radio.at/",
+ "logoUrl": "https://u1-radio.at/wp-content/uploads/2022/03/u1_favicon512x512-150x150.png",
+ "votes": 1164,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "ed03bcf5-86d2-45f7-848d-90d67f89e001"
+ "sourceStationUuid": "c64828ba-99b9-407b-bb7f-3f1c184447d2"
},
{
- "id": "7a4ed974-1a0a-4fea-8f8a-45ba3ba6daef",
- "name": "AUSTRIA FIRST – Österreichs Patriotenradio",
+ "id": "c1ca7ee1-2534-4188-ae4d-be40836b59b0",
+ "name": "Mountain Reggae Radio",
"country": "Austria",
"countryCode": "AT",
"language": "german",
"tags": [
- "conservative talk",
- "news",
- "patriot",
- "pop",
- "rock"
+ "hip-hop",
+ "reggae"
],
"codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://n01a-eu.rcs.revma.com/3zudpqfxh0cwv?rj-ttl=5&rj-tok=AAABm8uuzlsAWVPrc0mLiKWX-Q",
- "homepage": "https://austriafirst.at/",
- "logoUrl": "https://austriafirst.at/wp-content/uploads/2026/01/favicon-256x256-1.png",
- "votes": 67,
+ "bitrate": 128,
+ "streamUrl": "https://mountainreggaeradio.stream.laut.fm/mountainreggaeradio",
+ "homepage": "https://www.mountainreggae-radio.at/",
+ "logoUrl": null,
+ "votes": 618,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "7a4ed974-1a0a-4fea-8f8a-45ba3ba6daef"
+ "sourceStationUuid": "c1ca7ee1-2534-4188-ae4d-be40836b59b0"
},
{
"id": "ee637e36-55c7-4049-b730-40c339d53721",
@@ -2208,21 +4065,23 @@
"sourceStationUuid": "ee637e36-55c7-4049-b730-40c339d53721"
},
{
- "id": "c64828ba-99b9-407b-bb7f-3f1c184447d2",
- "name": "Radio U1 Tirol",
+ "id": "ed03bcf5-86d2-45f7-848d-90d67f89e001",
+ "name": "ORF Radio Oberösterreich | HQ",
"country": "Austria",
"countryCode": "AT",
- "language": "german",
- "tags": [],
+ "language": null,
+ "tags": [
+ "orf"
+ ],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://live.u1-radio.at/",
- "homepage": "https://www.u1-radio.at/",
- "logoUrl": "https://u1-radio.at/wp-content/uploads/2022/03/u1_favicon512x512-150x150.png",
- "votes": 1164,
+ "streamUrl": "https://orf-live.ors-shoutcast.at/ooe-q2a",
+ "homepage": "https://ooe.orf.at/player/",
+ "logoUrl": "https://orfodon.org/system/accounts/avatars/111/374/484/561/807/260/original/04efe58e0bc4d119.png",
+ "votes": 188,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "c64828ba-99b9-407b-bb7f-3f1c184447d2"
+ "sourceStationUuid": "ed03bcf5-86d2-45f7-848d-90d67f89e001"
},
{
"id": "2ce5de5b-01c0-4359-91d7-891f7c0d6bcc",
@@ -2243,26 +4102,6 @@
"source": "radio-browser",
"sourceStationUuid": "2ce5de5b-01c0-4359-91d7-891f7c0d6bcc"
},
- {
- "id": "c1ca7ee1-2534-4188-ae4d-be40836b59b0",
- "name": "Mountain Reggae Radio",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [
- "hip-hop",
- "reggae"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://mountainreggaeradio.stream.laut.fm/mountainreggaeradio",
- "homepage": "https://www.mountainreggae-radio.at/",
- "logoUrl": null,
- "votes": 618,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "c1ca7ee1-2534-4188-ae4d-be40836b59b0"
- },
{
"id": "bbd3a015-9cff-4afb-8aed-b011555a4538",
"name": "Arabella Austropop",
@@ -2283,6 +4122,23 @@
"source": "radio-browser",
"sourceStationUuid": "bbd3a015-9cff-4afb-8aed-b011555a4538"
},
+ {
+ "id": "61866d6c-3fea-41d5-9117-db98c86050b1",
+ "name": "Arabella wien",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://frontend.streams.arabella.at/arabella-wien?aggregator=arabella-playlistfile",
+ "homepage": "https://arabella.at/",
+ "logoUrl": "https://arabella.at/static/base/img/apple-touch-icon.a3ce28a2756f.png",
+ "votes": 630,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "61866d6c-3fea-41d5-9117-db98c86050b1"
+ },
{
"id": "f394515b-9076-4da2-9a03-7eb96a78bc4f",
"name": "Life Radio Tirol",
@@ -2320,25 +4176,6 @@
"source": "radio-browser",
"sourceStationUuid": "d96aa077-7c46-408a-bdd4-563a8a7a175d"
},
- {
- "id": "f17518d3-624e-4984-b66e-12f576b97c76",
- "name": "Blechradio 1",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [
- "brass"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://streamt.at/radio/8000/blechradio1.mp3",
- "homepage": "https://www.blechradio.at/dr/",
- "logoUrl": "https://cdn.onlineradiobox.com/img/logo/5/83425.v1.png",
- "votes": 210,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "f17518d3-624e-4984-b66e-12f576b97c76"
- },
{
"id": "87b24f29-39f3-44f1-b22e-b722bfc747c1",
"name": "City Jazz",
@@ -2399,25 +4236,6 @@
"source": "radio-browser",
"sourceStationUuid": "fa4463a4-cedf-490a-b941-3dc56b83d5b6"
},
- {
- "id": "0c761a3d-991b-4025-aa17-ba0336038f20",
- "name": "ORF Radio Kärnten HQ",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [
- "orf"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://orf-live.ors-shoutcast.at/ktn-q2a",
- "homepage": "https://kaernten.orf.at/player",
- "logoUrl": "https://orfodon.org/system/accounts/avatars/111/374/600/349/621/738/original/38f30e28fae38639.png",
- "votes": 41,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "0c761a3d-991b-4025-aa17-ba0336038f20"
- },
{
"id": "d6baa0a3-feb1-422f-86af-42375f5e7c0a",
"name": "ORF Radio Niederösterreich",
@@ -2474,21 +4292,59 @@
"sourceStationUuid": "649018d6-9239-4f28-9f9a-ae3f1732379f"
},
{
- "id": "61866d6c-3fea-41d5-9117-db98c86050b1",
- "name": "Arabella wien",
+ "id": "f17518d3-624e-4984-b66e-12f576b97c76",
+ "name": "Blechradio 1",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": null,
+ "tags": [
+ "brass"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streamt.at/radio/8000/blechradio1.mp3",
+ "homepage": "https://www.blechradio.at/dr/",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/logo/5/83425.v1.png",
+ "votes": 210,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "f17518d3-624e-4984-b66e-12f576b97c76"
+ },
+ {
+ "id": "a1224945-1856-465d-9d8e-baf81889df94",
+ "name": "Life Radio Tirol - MUSIC ONLY",
"country": "Austria",
"countryCode": "AT",
"language": null,
"tags": [],
- "codec": "AAC",
+ "codec": "MP3",
"bitrate": 0,
- "streamUrl": "https://frontend.streams.arabella.at/arabella-wien?aggregator=arabella-playlistfile",
- "homepage": "https://arabella.at/",
- "logoUrl": "https://arabella.at/static/base/img/apple-touch-icon.a3ce28a2756f.png",
- "votes": 630,
+ "streamUrl": "https://stream.liferadio.tirol/MUONLY/mp3-192/link",
+ "homepage": "https://www.liferadio.tirol/",
+ "logoUrl": null,
+ "votes": 37,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "61866d6c-3fea-41d5-9117-db98c86050b1"
+ "sourceStationUuid": "a1224945-1856-465d-9d8e-baf81889df94"
+ },
+ {
+ "id": "0c761a3d-991b-4025-aa17-ba0336038f20",
+ "name": "ORF Radio Kärnten HQ",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": null,
+ "tags": [
+ "orf"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://orf-live.ors-shoutcast.at/ktn-q2a",
+ "homepage": "https://kaernten.orf.at/player",
+ "logoUrl": "https://orfodon.org/system/accounts/avatars/111/374/600/349/621/738/original/38f30e28fae38639.png",
+ "votes": 41,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c761a3d-991b-4025-aa17-ba0336038f20"
},
{
"id": "4f1fb5fa-8a10-4d72-b247-21d831272373",
@@ -2530,6 +4386,27 @@
"source": "radio-browser",
"sourceStationUuid": "17911476-e5ec-45ed-a96a-7c2e9802e2c5"
},
+ {
+ "id": "9e3034a1-a33a-4663-9802-979c9535b16b",
+ "name": "Antenne Vorarlberg Oldies but Goldies",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": null,
+ "tags": [
+ "classic",
+ "classic hits",
+ "oldies"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://web.radio.antennevorarlberg.at/av-oldies",
+ "homepage": "https://www.antennevorarlberg.at/",
+ "logoUrl": "https://www.antennevorarlberg.at/wp-content/uploads//2013/02/webradio_Icons_1000x1000-NEU_oldies-but-goldies-144x144.png",
+ "votes": 425,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "9e3034a1-a33a-4663-9802-979c9535b16b"
+ },
{
"id": "9f09ca2a-4af4-417d-8545-f74d5dd16eea",
"name": "Arabella Lovesongs",
@@ -2549,42 +4426,6 @@
"source": "radio-browser",
"sourceStationUuid": "9f09ca2a-4af4-417d-8545-f74d5dd16eea"
},
- {
- "id": "a1224945-1856-465d-9d8e-baf81889df94",
- "name": "Life Radio Tirol - MUSIC ONLY",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.liferadio.tirol/MUONLY/mp3-192/link",
- "homepage": "https://www.liferadio.tirol/",
- "logoUrl": null,
- "votes": 37,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "a1224945-1856-465d-9d8e-baf81889df94"
- },
- {
- "id": "cfe922ac-2063-42b3-9bda-2c115488106d",
- "name": "Museumsradio AM 1476",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [
- "international"
- ],
- "codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://museum.streamserver24.com:8080/stream",
- "homepage": "https://plattenkiste.radio/",
- "logoUrl": null,
- "votes": 112,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "cfe922ac-2063-42b3-9bda-2c115488106d"
- },
{
"id": "d7c16c24-13b6-4baf-bf63-1f8b031b18d9",
"name": "Antenne Salzburg",
@@ -2642,87 +4483,23 @@
"sourceStationUuid": "58a6d4ab-3a77-4969-b361-0bb2f537fba5"
},
{
- "id": "9e3034a1-a33a-4663-9802-979c9535b16b",
- "name": "Antenne Vorarlberg Oldies but Goldies",
+ "id": "cfe922ac-2063-42b3-9bda-2c115488106d",
+ "name": "Museumsradio AM 1476",
"country": "Austria",
"countryCode": "AT",
"language": null,
"tags": [
- "classic",
- "classic hits",
- "oldies"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://web.radio.antennevorarlberg.at/av-oldies",
- "homepage": "https://www.antennevorarlberg.at/",
- "logoUrl": "https://www.antennevorarlberg.at/wp-content/uploads//2013/02/webradio_Icons_1000x1000-NEU_oldies-but-goldies-144x144.png",
- "votes": 425,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "9e3034a1-a33a-4663-9802-979c9535b16b"
- },
- {
- "id": "a71d5af8-1ca1-4e5d-9372-4c839bd2443d",
- "name": "Freies Radio Innviertel",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://radiofri.out.airtime.pro/radiofri_a",
- "homepage": "https://www.radio-fri.at/",
- "logoUrl": "https://radio-fri.at/wp-content/uploads/2022/10/cropped-FRI_FreiesRadioInnviertel_favicon-32x32.png",
- "votes": 10,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "a71d5af8-1ca1-4e5d-9372-4c839bd2443d"
- },
- {
- "id": "79a03ff6-e304-4426-8496-cf8253084f75",
- "name": "Radio Arabella Oberösterreich",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [
- "2000s",
- "80s",
- "90s",
- "austrian music",
- "austropop",
- "smooth"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://frontend.streams.arabella.at/arabella-oberoesterreich?aggregator=tunein",
- "homepage": "https://www.arabella.at/oberoesterreich/",
- "logoUrl": "https://www.arabella.at/static/base/img/favicon.png",
- "votes": 351,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "79a03ff6-e304-4426-8496-cf8253084f75"
- },
- {
- "id": "77966714-4054-43f0-b175-6c5207c17d9d",
- "name": "Radio VM1 - Steiermark",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [
- "folklore",
- "schlager",
- "volksmusik"
+ "international"
],
"codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://radiovm1.fluidstream.eu/radiovm1_a1.mp3",
- "homepage": "https://vm1.at/",
- "logoUrl": "https://vm1.at/wp-content/themes/radiovm1_theme/assets/images/logo.webp",
- "votes": 14,
+ "bitrate": 256,
+ "streamUrl": "https://museum.streamserver24.com:8080/stream",
+ "homepage": "https://plattenkiste.radio/",
+ "logoUrl": null,
+ "votes": 112,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "77966714-4054-43f0-b175-6c5207c17d9d"
+ "sourceStationUuid": "cfe922ac-2063-42b3-9bda-2c115488106d"
},
{
"id": "0d37b24b-204c-47f9-84df-4dcbfa97ba33",
@@ -2799,6 +4576,23 @@
"source": "radio-browser",
"sourceStationUuid": "dc7ff21d-0c1a-4f8b-a3a4-f74c70a20916"
},
+ {
+ "id": "2e70591f-d42b-4b7b-84f1-62be2871d4a4",
+ "name": "Antenne Vorarlberg",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://web.radio.antennevorarlberg.at/av-live?aggregator=Radioplayer",
+ "homepage": "https://www.antennevorarlberg.at/",
+ "logoUrl": "https://www.antennevorarlberg.at/static/base/img/apple-touch-icon.168e05c8048c.png",
+ "votes": 306,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "2e70591f-d42b-4b7b-84f1-62be2871d4a4"
+ },
{
"id": "84c68a22-584c-453e-8ce5-58589be48f43",
"name": "Antenne Vorarlberg Coffee Hits",
@@ -2960,6 +4754,23 @@
"source": "radio-browser",
"sourceStationUuid": "8e3a37af-3c04-444e-a2b9-2577b9c6dfab"
},
+ {
+ "id": "a71d5af8-1ca1-4e5d-9372-4c839bd2443d",
+ "name": "Freies Radio Innviertel",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radiofri.out.airtime.pro/radiofri_a",
+ "homepage": "https://www.radio-fri.at/",
+ "logoUrl": "https://radio-fri.at/wp-content/uploads/2022/10/cropped-FRI_FreiesRadioInnviertel_favicon-32x32.png",
+ "votes": 10,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a71d5af8-1ca1-4e5d-9372-4c839bd2443d"
+ },
{
"id": "c5132bd5-0127-49a9-91a3-f16589381da2",
"name": "Life Radio 80er",
@@ -3000,24 +4811,49 @@
"sourceStationUuid": "8560d6e4-1431-442e-8dcd-dd07c643edd6"
},
{
- "id": "43ed1a29-6cce-4a82-95cd-e644a0579f1b",
- "name": "Pirate Radio Austria",
+ "id": "79a03ff6-e304-4426-8496-cf8253084f75",
+ "name": "Radio Arabella Oberösterreich",
"country": "Austria",
"countryCode": "AT",
"language": "german",
"tags": [
- "alternative pop",
- "alternative rock"
+ "2000s",
+ "80s",
+ "90s",
+ "austrian music",
+ "austropop",
+ "smooth"
],
"codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://secureonair.krone.at/pirate.aac",
- "homepage": "https://www.pirateradio.at/",
- "logoUrl": "https://pirateradio-website.konsole-labs.com/images/logo.png",
- "votes": 80,
+ "bitrate": 0,
+ "streamUrl": "https://frontend.streams.arabella.at/arabella-oberoesterreich?aggregator=tunein",
+ "homepage": "https://www.arabella.at/oberoesterreich/",
+ "logoUrl": "https://www.arabella.at/static/base/img/favicon.png",
+ "votes": 351,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "43ed1a29-6cce-4a82-95cd-e644a0579f1b"
+ "sourceStationUuid": "79a03ff6-e304-4426-8496-cf8253084f75"
+ },
+ {
+ "id": "77966714-4054-43f0-b175-6c5207c17d9d",
+ "name": "Radio VM1 - Steiermark",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [
+ "folklore",
+ "schlager",
+ "volksmusik"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radiovm1.fluidstream.eu/radiovm1_a1.mp3",
+ "homepage": "https://vm1.at/",
+ "logoUrl": "https://vm1.at/wp-content/themes/radiovm1_theme/assets/images/logo.webp",
+ "votes": 14,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "77966714-4054-43f0-b175-6c5207c17d9d"
},
{
"id": "5cb4b85d-2719-418d-91d8-6dfa2be02329",
@@ -3038,6 +4874,23 @@
"source": "radio-browser",
"sourceStationUuid": "5cb4b85d-2719-418d-91d8-6dfa2be02329"
},
+ {
+ "id": "70c4ccac-7957-4554-85cc-9a6b7264703b",
+ "name": "Yu Radio",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://stream.radiotechnikum.at:80/YURADIO",
+ "homepage": "https://www.yuradio.at/",
+ "logoUrl": null,
+ "votes": 13,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "70c4ccac-7957-4554-85cc-9a6b7264703b"
+ },
{
"id": "0cee0f71-175b-4c1d-9b32-8939e2797151",
"name": "88.6",
@@ -3095,44 +4948,6 @@
"source": "radio-browser",
"sourceStationUuid": "2953dfbe-64f1-40c3-9ff8-90ba0f2449b2"
},
- {
- "id": "2e70591f-d42b-4b7b-84f1-62be2871d4a4",
- "name": "Antenne Vorarlberg",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://web.radio.antennevorarlberg.at/av-live?aggregator=Radioplayer",
- "homepage": "https://www.antennevorarlberg.at/",
- "logoUrl": "https://www.antennevorarlberg.at/static/base/img/apple-touch-icon.168e05c8048c.png",
- "votes": 306,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "2e70591f-d42b-4b7b-84f1-62be2871d4a4"
- },
- {
- "id": "a233f7a4-3a5b-41db-a659-dcbe5b0d6de2",
- "name": "Antenne Vorarlberg 2010er Hits",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [
- "2010er",
- "2010s",
- "hits"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://web.radio.antennevorarlberg.at/av-2010er",
- "homepage": "https://www.antennevorarlberg.at/",
- "logoUrl": "https://www.antennevorarlberg.at/static/base/img/apple-touch-icon.168e05c8048c.png",
- "votes": 110,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "a233f7a4-3a5b-41db-a659-dcbe5b0d6de2"
- },
{
"id": "b9230e0b-1bb1-46c0-aa76-d2f55677619e",
"name": "Antenne Vorarlberg 70er Hits",
@@ -3157,6 +4972,23 @@
"source": "radio-browser",
"sourceStationUuid": "b9230e0b-1bb1-46c0-aa76-d2f55677619e"
},
+ {
+ "id": "9cb7f80f-aa74-4907-9351-8e65ce3b4c27",
+ "name": "Antenne vorarlberg Non Stop",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://web.radio.antennevorarlberg.at/av-nonstop",
+ "homepage": "https://www.antennevorarlberg.at/",
+ "logoUrl": "https://www.antennevorarlberg.at/static/base/img/apple-touch-icon.168e05c8048c.png",
+ "votes": 60,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9cb7f80f-aa74-4907-9351-8e65ce3b4c27"
+ },
{
"id": "850d15db-5b20-4031-982a-2fd774977ef4",
"name": "Arabella Rock",
@@ -3296,6 +5128,27 @@
"source": "radio-browser",
"sourceStationUuid": "3b320e2d-c043-4cc5-85c4-5b9772fe7dc0"
},
+ {
+ "id": "a020a70d-8e4f-41f8-8441-530d6f587c0e",
+ "name": "Life Radio Chill Out Hits",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [
+ "ambient and relaxation music",
+ "chill out",
+ "chillout"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.liferadio.at/chillout/mp3-192/stream.liferadio.at/",
+ "homepage": "https://www.liferadio.at/",
+ "logoUrl": "https://www.liferadio.at/typo3conf/ext/chili_prjliferadio/Resources/Public/Images/logo.png",
+ "votes": 51,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a020a70d-8e4f-41f8-8441-530d6f587c0e"
+ },
{
"id": "aa2c5630-a5b6-41f8-8a13-a0193fcfbd8f",
"name": "Life Radio Greatest Hits",
@@ -3382,6 +5235,25 @@
"source": "radio-browser",
"sourceStationUuid": "d6316691-8619-42ae-8dbb-75dfdd7a7eb5"
},
+ {
+ "id": "6fc0397a-efc5-4ad7-921f-5df20374d0c1",
+ "name": "oe1 surround",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [
+ "classique"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 410,
+ "streamUrl": "https://oe1dd.mdn.ors.at/out/u/oe1dd/manifest.m3u8",
+ "homepage": "https://oe1.orf.at/artikel/583273/Oesterreich-1-neu-hoeren",
+ "logoUrl": "https://oe1.orf.at/favicon.ico",
+ "votes": 125,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6fc0397a-efc5-4ad7-921f-5df20374d0c1"
+ },
{
"id": "50890eab-41ac-4f6b-8839-022f0c20444b",
"name": "ORF - Radio Salzburg",
@@ -3420,6 +5292,26 @@
"source": "radio-browser",
"sourceStationUuid": "42073ce7-51c8-4148-a60b-3487c30f53b8"
},
+ {
+ "id": "43ed1a29-6cce-4a82-95cd-e644a0579f1b",
+ "name": "Pirate Radio Austria",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [
+ "alternative pop",
+ "alternative rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://secureonair.krone.at/pirate.aac",
+ "homepage": "https://www.pirateradio.at/",
+ "logoUrl": "https://pirateradio-website.konsole-labs.com/images/logo.png",
+ "votes": 80,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "43ed1a29-6cce-4a82-95cd-e644a0579f1b"
+ },
{
"id": "baaf6fc4-c6ef-4d19-929b-193dc21e360e",
"name": "Popwelle. Das Musikradio,AutoDJ",
@@ -3529,6 +5421,27 @@
"source": "radio-browser",
"sourceStationUuid": "320f41dd-2398-4e84-8601-094637542975"
},
+ {
+ "id": "47eb5654-12b6-4e4a-9026-e026382202cb",
+ "name": "Radio Rot Weiß Rot",
+ "country": "Austria",
+ "countryCode": "AT",
+ "language": "german",
+ "tags": [
+ "austrian music",
+ "austrian pop music",
+ "austropop"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://secureonair.krone.at/rwr.aac",
+ "homepage": "https://www.rotweissrot.fan/",
+ "logoUrl": "https://www.rotweissrot.fan/favicon.ico",
+ "votes": 52,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "47eb5654-12b6-4e4a-9026-e026382202cb"
+ },
{
"id": "3fee72ef-e869-4cc9-a3e0-18ef16b6acad",
"name": "Superfly webradio Easy",
@@ -3589,21 +5502,25 @@
"sourceStationUuid": "be4f6f63-96b0-47cc-9f52-9ace9a7657c5"
},
{
- "id": "70c4ccac-7957-4554-85cc-9a6b7264703b",
- "name": "Yu Radio",
+ "id": "a01d985a-db11-4fec-addd-24c41d4fc377",
+ "name": "U1 Tirol",
"country": "Austria",
"countryCode": "AT",
"language": null,
- "tags": [],
+ "tags": [
+ "evergreen",
+ "schlager",
+ "volksmusik"
+ ],
"codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://stream.radiotechnikum.at:80/YURADIO",
- "homepage": "https://www.yuradio.at/",
- "logoUrl": null,
- "votes": 13,
+ "bitrate": 192,
+ "streamUrl": "https://u1-tirol-stream07.radiohost.de/u1-tirol-live_mp3-192",
+ "homepage": "https://u1-radio.at/",
+ "logoUrl": "https://u1-radio.at/wp-content/uploads/2022/03/u1_favicon512x512-300x300.png",
+ "votes": 17,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "70c4ccac-7957-4554-85cc-9a6b7264703b"
+ "sourceStationUuid": "a01d985a-db11-4fec-addd-24c41d4fc377"
},
{
"id": "c15e7f15-b5b3-4bca-9a42-c97f345ed2f4",
@@ -3699,23 +5616,6 @@
"source": "radio-browser",
"sourceStationUuid": "0d61eb06-745b-464d-9745-6230a09d418d"
},
- {
- "id": "c6660054-be82-4093-8f5d-6be113f63361",
- "name": "oe1 dd",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [],
- "codec": "UNKNOWN",
- "bitrate": 410,
- "streamUrl": "https://oe1dd.mdn.ors.at/out/u/oe1dd/manifest.m3u8",
- "homepage": "https://oe1.orf.at/",
- "logoUrl": "https://oe1.orf.at/favicon.ico",
- "votes": 45,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "c6660054-be82-4093-8f5d-6be113f63361"
- },
{
"id": "779af9c6-7679-4b3a-ad6a-687c660024be",
"name": "ORF Hitradio Ö3 (128k HLS)",
@@ -3736,25 +5636,6 @@
"source": "radio-browser",
"sourceStationUuid": "779af9c6-7679-4b3a-ad6a-687c660024be"
},
- {
- "id": "cee9c38a-a2f2-40ef-8926-4c08e9f60279",
- "name": "ORF Radio Salzburg HQ",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [
- "orf"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://orf-live.ors-shoutcast.at/sbg-q2a",
- "homepage": "https://salzburg.orf.at/player",
- "logoUrl": "https://orfodon.org/system/accounts/avatars/111/374/508/091/321/480/original/185d67318d45fbd9.png",
- "votes": 143,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "cee9c38a-a2f2-40ef-8926-4c08e9f60279"
- },
{
"id": "efd3f809-7224-413f-aa8b-18514083209d",
"name": "Popwelle Wörthersee,AutoDJ",
@@ -3780,44 +5661,6 @@
"source": "radio-browser",
"sourceStationUuid": "efd3f809-7224-413f-aa8b-18514083209d"
},
- {
- "id": "3a47c308-33ed-4782-8c3f-dcb8193297e9",
- "name": "Radio Flamingo Hoamat",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://live.radioflamingo.at/rfhoamat",
- "homepage": "https://radioflamingo.at/",
- "logoUrl": "https://radioflamingo.at/uploads/medium_RF_Hoamat_Vollfla_echig_Stream_Icon_4000x4000px_v1_0d86fbb36b.png",
- "votes": 17,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "3a47c308-33ed-4782-8c3f-dcb8193297e9"
- },
- {
- "id": "47eb5654-12b6-4e4a-9026-e026382202cb",
- "name": "Radio Rot Weiß Rot",
- "country": "Austria",
- "countryCode": "AT",
- "language": "german",
- "tags": [
- "austrian music",
- "austrian pop music",
- "austropop"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://secureonair.krone.at/rwr.aac",
- "homepage": "https://www.rotweissrot.fan/",
- "logoUrl": "https://www.rotweissrot.fan/favicon.ico",
- "votes": 52,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "47eb5654-12b6-4e4a-9026-e026382202cb"
- },
{
"id": "b14fc2bb-f608-41f7-b343-4445b95d17d7",
"name": "RTV Unirea International",
@@ -3840,27 +5683,6 @@
"source": "radio-browser",
"sourceStationUuid": "b14fc2bb-f608-41f7-b343-4445b95d17d7"
},
- {
- "id": "a01d985a-db11-4fec-addd-24c41d4fc377",
- "name": "U1 Tirol",
- "country": "Austria",
- "countryCode": "AT",
- "language": null,
- "tags": [
- "evergreen",
- "schlager",
- "volksmusik"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://u1-tirol-stream07.radiohost.de/u1-tirol-live_mp3-192",
- "homepage": "https://u1-radio.at/",
- "logoUrl": "https://u1-radio.at/wp-content/uploads/2022/03/u1_favicon512x512-300x300.png",
- "votes": 17,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "a01d985a-db11-4fec-addd-24c41d4fc377"
- },
{
"id": "5e5cebe4-3558-4f05-b460-00866ae7bcf7",
"name": "Welle 1 - Salzburg - HQ",
@@ -3880,6 +5702,1736 @@
"source": "radio-browser",
"sourceStationUuid": "5e5cebe4-3558-4f05-b460-00866ae7bcf7"
},
+ {
+ "id": "00dc2e9a-578c-430b-bdc2-244b71444dfc",
+ "name": "Qmusic Belgium",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/qmusic.aac",
+ "homepage": "https://qmusic.be/",
+ "logoUrl": "https://qmusic.be/assets/favicon/default-67977c4f518d45d3a639958e1c6c072532dd2e05cbef9e42cb9f8ecde1964c97.ico",
+ "votes": 924,
+ "clickcount": 181,
+ "source": "radio-browser",
+ "sourceStationUuid": "00dc2e9a-578c-430b-bdc2-244b71444dfc"
+ },
+ {
+ "id": "529b71b3-ac05-426c-bd8c-6ae981713900",
+ "name": "JOE",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/joe.mp3",
+ "homepage": "https://joe.be/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s25741/images/logog.jpg?t=1",
+ "votes": 485,
+ "clickcount": 125,
+ "source": "radio-browser",
+ "sourceStationUuid": "529b71b3-ac05-426c-bd8c-6ae981713900"
+ },
+ {
+ "id": "451491bd-624e-41e8-ab4c-71816f10611e",
+ "name": "Nostalgie Vlaanderen",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "70's",
+ "80's",
+ "90's",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/NOSTALGIEWHATAFEELING.mp3?dist=radiobrowser",
+ "homepage": "https://nl.nostalgie.be/",
+ "logoUrl": "https://nl.nostalgie.be/icons/icon-144x144.png?v=f2b073e495322d52deec159c8bdcaf20",
+ "votes": 1457,
+ "clickcount": 76,
+ "source": "radio-browser",
+ "sourceStationUuid": "451491bd-624e-41e8-ab4c-71816f10611e"
+ },
+ {
+ "id": "cdf1baaf-ed22-41c5-8c9e-90b4133fda8f",
+ "name": "Joe 80's & 90's",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "80's",
+ "90's",
+ "hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/joe_80s_90s.mp3",
+ "homepage": "https://joe.be/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/x7fzbddfxjqy.jpg",
+ "votes": 1114,
+ "clickcount": 48,
+ "source": "radio-browser",
+ "sourceStationUuid": "cdf1baaf-ed22-41c5-8c9e-90b4133fda8f"
+ },
+ {
+ "id": "9e31c4e7-03b6-4a80-a4e2-5977b023d32c",
+ "name": "Tomorrowland One World Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "english",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 256,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/OWR_INTERNATIONAL_ADP.aac",
+ "homepage": "https://www.tomorrowland.com/home/radio",
+ "logoUrl": "https://www.tomorrowland.com/home/apple-touch-icon.png",
+ "votes": 2799,
+ "clickcount": 44,
+ "source": "radio-browser",
+ "sourceStationUuid": "9e31c4e7-03b6-4a80-a4e2-5977b023d32c"
+ },
+ {
+ "id": "7bfe222c-6b98-4aec-8550-93c491bb2d1f",
+ "name": "Willy",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/willy_be/aac",
+ "homepage": "https://www.willy.radio/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s308770/images/logod.jpg",
+ "votes": 139,
+ "clickcount": 43,
+ "source": "radio-browser",
+ "sourceStationUuid": "7bfe222c-6b98-4aec-8550-93c491bb2d1f"
+ },
+ {
+ "id": "66617a79-5235-44d1-b59d-f996eae58a65",
+ "name": "Nostalgie 80's",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/NOSTALGIEWAF80.mp3",
+ "homepage": "http://www.nostalgie.be/",
+ "logoUrl": null,
+ "votes": 2287,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "66617a79-5235-44d1-b59d-f996eae58a65"
+ },
+ {
+ "id": "109338aa-a5fb-4c1b-a0cc-78961a55324c",
+ "name": "joe easy",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "smoothest songs"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/joe_easy/mp3",
+ "homepage": "https://streams.radio.dpgmedia.cloud/redirect/joe_easy/aac",
+ "logoUrl": null,
+ "votes": 131,
+ "clickcount": 28,
+ "source": "radio-browser",
+ "sourceStationUuid": "109338aa-a5fb-4c1b-a0cc-78961a55324c"
+ },
+ {
+ "id": "961d37d6-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF La Première",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "news",
+ "rtbf",
+ "variety"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/laprem1ere-64.aac",
+ "homepage": "https://www.rtbf.be/lapremiere/",
+ "logoUrl": "https://www.static.rtbf.be/rtbf/home/images/ico/favicon-info-32x32.png",
+ "votes": 7087,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "961d37d6-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "db4e7fb7-dfe8-4e2d-a11c-f67420a14ed8",
+ "name": "VRT Radio 1",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "music",
+ "news",
+ "talk"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://f8e0a3fc90d142e68cd424a56b220f0d.mediatailor.us-east-1.amazonaws.com/v1/manifest/7c1b669ef36eb1e845184b6345b06cd264fc4eb7/5bzs1cW9_vrt-audio-only-v1/d65e4279-e3bc-4151-af02-02ffe699135d/0.m3u8",
+ "homepage": "https://radio1.be/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/yeD5X7FMM5.png",
+ "votes": 146,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "db4e7fb7-dfe8-4e2d-a11c-f67420a14ed8"
+ },
+ {
+ "id": "c89e0869-1247-4d43-9a96-84a4e1524b0b",
+ "name": "Willy Class X",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/willy_be_class_x/aac",
+ "homepage": "https://www.willy.radio/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s322560/images/logod.jpg",
+ "votes": 85,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "c89e0869-1247-4d43-9a96-84a4e1524b0b"
+ },
+ {
+ "id": "1b7d90db-1645-47a2-99fb-4810efbf4ff0",
+ "name": "Q-Foute Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/foute_radio_be/mp3",
+ "homepage": "https://qmusic.be/kanalen/q-foute-radio",
+ "logoUrl": "https://qmusic.be/favicon.ico",
+ "votes": 265,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "1b7d90db-1645-47a2-99fb-4810efbf4ff0"
+ },
+ {
+ "id": "73b1c888-e135-49db-a5c5-09e104088c13",
+ "name": "Tipik",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "alternative pop",
+ "chansons françaises",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/pure-128.mp3",
+ "homepage": "https://www.rtbf.be/radio/liveradio/tipik",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/0/07/Logo_Tipik.png",
+ "votes": 1035,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "73b1c888-e135-49db-a5c5-09e104088c13"
+ },
+ {
+ "id": "364d5674-440e-4b2b-a2fb-a7688a8738a0",
+ "name": "Nostalgie Belgique",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "64kbps",
+ "aac",
+ "belgium",
+ "chanson française",
+ "classic hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.rcs.revma.com/5gd04cwptg0uv",
+ "homepage": "https://www.nostalgie.be/",
+ "logoUrl": "https://www.nostalgie.be/build/images/favicon.png",
+ "votes": 85,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "364d5674-440e-4b2b-a2fb-a7688a8738a0"
+ },
+ {
+ "id": "1fcdd3c4-5215-4cb2-b5b4-3c0aa3e606d8",
+ "name": "Joe Gold",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "oldies"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/joe_gold/aac",
+ "homepage": "https://www.joe.be/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "1fcdd3c4-5215-4cb2-b5b4-3c0aa3e606d8"
+ },
+ {
+ "id": "5f1da2ec-e53e-45e3-9df4-54622bb90537",
+ "name": "Qmusic Q-Allstars",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch,flemish",
+ "tags": [
+ "00's",
+ "10's",
+ "80's",
+ "90's"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/q-allstars.aac",
+ "homepage": "https://qmusic.be/",
+ "logoUrl": "https://qmusic.be/assets/favicon/default-67977c4f518d45d3a639958e1c6c072532dd2e05cbef9e42cb9f8ecde1964c97.ico",
+ "votes": 58,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "5f1da2ec-e53e-45e3-9df4-54622bb90537"
+ },
+ {
+ "id": "8a9c2648-0a9a-4af2-9523-6f0ad7f9e4e1",
+ "name": "RTBF Classic 21",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "music",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/classic21-128.mp3",
+ "homepage": "https://www.rtbf.be/classic21/",
+ "logoUrl": "https://www.radio.fr/300/classic21.jpeg",
+ "votes": 293,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "8a9c2648-0a9a-4af2-9523-6f0ad7f9e4e1"
+ },
+ {
+ "id": "8e34646d-479e-451c-9bee-c3bb3cffad4f",
+ "name": "Joe - Top 2000",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3",
+ "homepage": "https://streams.radio.dpgmedia.cloud/redirect/top2000/mp3",
+ "logoUrl": null,
+ "votes": 31,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "8e34646d-479e-451c-9bee-c3bb3cffad4f"
+ },
+ {
+ "id": "2c968248-99eb-4d52-b2ef-75e62ed795ce",
+ "name": "Nostalgie Extra (What a Feeling)",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "192kbps",
+ "easy listening",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/NOSTALGIEWAFEXTRA.mp3",
+ "homepage": "https://nl.nostalgie.be/radio-player/nostalgie-classics-top-2021",
+ "logoUrl": "https://nl.nostalgie.be/icons/icon-144x144.png?v=afcbc45fada5babe32741403f76fa06c",
+ "votes": 410,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "2c968248-99eb-4d52-b2ef-75e62ed795ce"
+ },
+ {
+ "id": "7be6cf34-f482-4ad5-9dc8-9928f2cfe2ed",
+ "name": "Classic 21 80’s Hits",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "80's",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio.rtbf.be/c21-80s/mp3-128/me",
+ "homepage": "https://www.rtbf.be/classic21",
+ "logoUrl": "https://www.rtbf.be/favicon.ico",
+ "votes": 129,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "7be6cf34-f482-4ad5-9dc8-9928f2cfe2ed"
+ },
+ {
+ "id": "0fe4a08f-cab6-4925-b561-f8a3cb5b8ec2",
+ "name": "Joe - All the way",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/JOE.mp3",
+ "homepage": "https://www.joe.be/",
+ "logoUrl": "https://www.joe.be/favicon.ico",
+ "votes": 119,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "0fe4a08f-cab6-4925-b561-f8a3cb5b8ec2"
+ },
+ {
+ "id": "1a6b6947-09e1-4f18-8494-214589bcd681",
+ "name": "Joe Lage Landen",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/joe_lage_landen.mp3",
+ "homepage": "https://joe.be/luister/joe_lage_landen",
+ "logoUrl": "https://joe.be/favicon.ico",
+ "votes": 25,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "1a6b6947-09e1-4f18-8494-214589bcd681"
+ },
+ {
+ "id": "560e0caf-8e29-42ac-91c9-a37f71625ffc",
+ "name": "Topradio TopRetroArena",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "90s",
+ "dance",
+ "electronic",
+ "house",
+ "retro",
+ "techno",
+ "trance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/TOPRETROAAC.aac",
+ "homepage": "https://www.topradio.be/player/topretroarena",
+ "logoUrl": "https://www.topradio.be/favicons/favicon-196x196.png",
+ "votes": 160,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "560e0caf-8e29-42ac-91c9-a37f71625ffc"
+ },
+ {
+ "id": "e48ae8dd-5c38-4f3a-b91e-1b3afeee20c8",
+ "name": "Classic 21 80's New Wave",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "1980's",
+ "new wave"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://redbeemedia.streamabc.net/redbm-c2180snw-mp3-128-2391383?sABC=65084369%230%232qqpnss01895rqr0s8oq129o03s183o0%23zr&aw_0_1st.playerid=me&amsparams=playerid:me;skey:1695040361",
+ "homepage": "https://www.rtbf.be/radio/liveradio/classic21_80_new_wave",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/m4US9L9A3g.jpg",
+ "votes": 134,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "e48ae8dd-5c38-4f3a-b91e-1b3afeee20c8"
+ },
+ {
+ "id": "32269fbf-4191-40ae-ae41-2d9ecb936c0e",
+ "name": "'t Is Vloms",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "folk",
+ "folklore",
+ "nederlandstalig"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://bluford.torontocast.com/proxy/iimfoptl/stream",
+ "homepage": "https://tisvloms.eu/",
+ "logoUrl": "https://tisvloms.eu/wp-content/uploads/2017/10/tis-vloms-logo-400.png",
+ "votes": 39,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "32269fbf-4191-40ae-ae41-2d9ecb936c0e"
+ },
+ {
+ "id": "478a2e26-158f-4ba6-8cfb-a59af612d50e",
+ "name": "Contact MAX",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "2000's",
+ "80's",
+ "90's"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://contactmax.ice.infomaniak.ch/contactmax-192.mp3",
+ "homepage": "http://contactmax.be/",
+ "logoUrl": "https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://contactmax.be&size=256",
+ "votes": 34,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "478a2e26-158f-4ba6-8cfb-a59af612d50e"
+ },
+ {
+ "id": "029ef185-d694-40a5-9298-8d6eb5799f80",
+ "name": "Mint",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://mint.ice.infomaniak.ch/mint-mp3-128.mp3",
+ "homepage": "http://player.mint.be/",
+ "logoUrl": "https://assets.radioplayer.org/056/0567/600/600/kz4elh2i.png",
+ "votes": 157,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "029ef185-d694-40a5-9298-8d6eb5799f80"
+ },
+ {
+ "id": "32f2eb10-b498-4c85-96aa-7d9c266d9910",
+ "name": "NRJ België",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "hits",
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/NRJBELGIE.mp3?dist=radiobrowser",
+ "homepage": "https://nl.nrj.be/",
+ "logoUrl": null,
+ "votes": 1758,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "32f2eb10-b498-4c85-96aa-7d9c266d9910"
+ },
+ {
+ "id": "9638c05b-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF VivaCité Bruxelles",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/vivabxl-64.aac",
+ "homepage": "https://www.rtbf.be/vivacite/",
+ "logoUrl": "https://www.static.rtbf.be/rtbf/home/images/ico/favicon-info-32x32.png",
+ "votes": 1420,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "9638c05b-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "c44a072c-f08f-429f-be16-a017ff3628a0",
+ "name": "Willy",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/willy.mp3",
+ "homepage": "https://www.willy.radio/",
+ "logoUrl": "https://www.willy.radio/assets/favicon/willy-1c69cc3992bd551e908f2ec0f8c77337b6fe0daa61a3ab891d4934210dee95f4.ico",
+ "votes": 270,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "c44a072c-f08f-429f-be16-a017ff3628a0"
+ },
+ {
+ "id": "9d8e4e91-107a-4771-bf0f-e73786b5c2e6",
+ "name": "Classic 21 80's New Wave",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "80's",
+ "new wave"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio.rtbf.be/c21-80nw/mp3-128/me",
+ "homepage": "https://www.rtbf.be/classic21",
+ "logoUrl": "https://www.rtbf.be/favicon.ico",
+ "votes": 700,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "9d8e4e91-107a-4771-bf0f-e73786b5c2e6"
+ },
+ {
+ "id": "fa4f0df3-5386-42ed-959d-e0ee2511fd36",
+ "name": "top radio retro",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://str.topradio.be/topradioretroarena.mp3",
+ "homepage": "https://www.topradio.be/",
+ "logoUrl": "https://www.topradio.be/favicons/favicon-96x96.png",
+ "votes": 1492,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "fa4f0df3-5386-42ed-959d-e0ee2511fd36"
+ },
+ {
+ "id": "f6e76c0f-9453-4ffc-ac1c-1e26e302ec61",
+ "name": "100% Retro",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://server.musicstars.online/radio/8000/listen",
+ "homepage": "https://www.starradio.online/",
+ "logoUrl": "https://www.starradio.online/favicon-194x194.png?v=0.3.0",
+ "votes": 119,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f6e76c0f-9453-4ffc-ac1c-1e26e302ec61"
+ },
+ {
+ "id": "f9373e82-f848-4562-a617-032f075f0d0d",
+ "name": "BEST OLDIES RADIO (BOR)",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a8.asurahosting.com:8090/radio.mp3",
+ "homepage": "https://www.bestoldiesstation.com/",
+ "logoUrl": "https://impro.usercontent.one/appid/oneComWsb/domain/bestoldiesstation.com/media/bestoldiesstation.com/onewebmedia/BOR%20radio%20%20transparant%20favicon.png?etag=%222260-66d60cec%22&sourceContentType=image%2Fpng",
+ "votes": 59,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f9373e82-f848-4562-a617-032f075f0d0d"
+ },
+ {
+ "id": "960ee5c9-0601-11e8-ae97-52543be04c81",
+ "name": "Fun Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://funradiobe.ice.infomaniak.ch/funradiobe-high.mp3",
+ "homepage": "http://funradio.be/",
+ "logoUrl": "http://www.funradio.be/wp-content/themes/rise/assets/img/fav/apple-touch-icon.png",
+ "votes": 2667,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "960ee5c9-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "791c5785-c2d6-4a44-83d2-6217f23f7d8f",
+ "name": "Instrumentals Forever [AAC 64 kbit]",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "beautiful music",
+ "easy listening",
+ "instrumental"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://quincy.torontocast.com:1925/stream",
+ "homepage": "https://instrumentalsforever.eu/",
+ "logoUrl": "https://instrumentalsforever.eu/wp-content/uploads/2018/03/Instrumentals-Forever.png",
+ "votes": 172,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "791c5785-c2d6-4a44-83d2-6217f23f7d8f"
+ },
+ {
+ "id": "ef1c8706-bb25-4087-90f0-63b05a2bd8d0",
+ "name": "Musiq3 Baroque",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-m3-baroque-128.mp3",
+ "homepage": "https://www.rtbf.be/radio/liveradio/musiq3-baroque",
+ "logoUrl": "https://www.rtbf.be/favicon.ico",
+ "votes": 460,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "ef1c8706-bb25-4087-90f0-63b05a2bd8d0"
+ },
+ {
+ "id": "c77644fa-5d0d-47f6-93ef-850805efefad",
+ "name": "Tommorowland One World Radio - Daybreak Sessions",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "english",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 256,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/OWR_DAYBREAK_ADP.aac",
+ "homepage": "https://www.tomorrowland.com/home/radio",
+ "logoUrl": "https://www.tomorrowland.com/home/apple-touch-icon.png",
+ "votes": 642,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c77644fa-5d0d-47f6-93ef-850805efefad"
+ },
+ {
+ "id": "5fb2096b-37b3-4c9d-960c-b28515b7b3c8",
+ "name": "TradCan",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://dc1.serverse.com/proxy/wiupfvnu?mp=/TradCan",
+ "homepage": "http://www.canardfolk.be/tradcan/",
+ "logoUrl": null,
+ "votes": 20,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5fb2096b-37b3-4c9d-960c-b28515b7b3c8"
+ },
+ {
+ "id": "4dad0ae3-720a-434e-b350-7186e4c5ea6f",
+ "name": "MyNoise Pure Nature",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "english",
+ "tags": [
+ "ambient",
+ "ambient and relaxation music",
+ "nature"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://purenature-mynoise.radioca.st/stream",
+ "homepage": "https://mynoise.net/",
+ "logoUrl": "https://mynoise.net/apple-touch-icon.png",
+ "votes": 1531,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "4dad0ae3-720a-434e-b350-7186e4c5ea6f"
+ },
+ {
+ "id": "164eb819-e01b-409a-ab8e-55e669e9658d",
+ "name": "Nostalgie New Wave",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "english,flemish,french",
+ "tags": [
+ "new wave",
+ "no ads",
+ "non stop music",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://n03.rcs.revma.com/52g2hx43ehuvv",
+ "homepage": "https://www.nostalgie.be/radioplayer/newwave",
+ "logoUrl": "https://uk.radio.net/300/nostalgiebenewwave.png?version=1f972569565aa614589625271462bc2f",
+ "votes": 22,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "164eb819-e01b-409a-ab8e-55e669e9658d"
+ },
+ {
+ "id": "9619cb9f-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF Musiq3",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "classical",
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/musiq3-128.aac",
+ "homepage": "https://www.rtbf.be/musiq3/",
+ "logoUrl": "https://www.static.rtbf.be/radio/musiq3/ico/favicon-musiq3-32x32.png",
+ "votes": 799,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "9619cb9f-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "960ef105-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF VivaCité Liège",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/vivaliege-64.aac",
+ "homepage": "https://www.rtbf.be/vivacite/",
+ "logoUrl": "https://www.static.rtbf.be/rtbf/home/images/ico/favicon-info-32x32.png",
+ "votes": 506,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "960ef105-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "5ede37ba-a332-4607-b0c6-2469318c3649",
+ "name": "Topradio TopBam",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "hard techno",
+ "hardcore",
+ "hardstyle"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/TOPBAM.mp3",
+ "homepage": "https://www.topradio.be/player/topbam",
+ "logoUrl": "https://www.topradio.be/favicons/favicon-196x196.png",
+ "votes": 108,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ede37ba-a332-4607-b0c6-2469318c3649"
+ },
+ {
+ "id": "0d67eaf8-97de-4118-8699-31ab23e06099",
+ "name": "Toptechno",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://27913.live.streamtheworld.com/TOPSPINNING.mp3",
+ "homepage": "https://topradio.be/player/toptechno",
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0d67eaf8-97de-4118-8699-31ab23e06099"
+ },
+ {
+ "id": "33172e1d-7101-4a81-9e4a-2c1f339d4db4",
+ "name": "Belgian Dance Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s4.radio.co/sf5a880a25/listen",
+ "homepage": "https://belgian-dance-radio.com/",
+ "logoUrl": "https://belgian-dance-radio.com/wp-content/uploads/2022/06/240812985_917631145500501_905793297627216541_n.png",
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "33172e1d-7101-4a81-9e4a-2c1f339d4db4"
+ },
+ {
+ "id": "53e16709-cf6c-4e57-b029-068b376fb257",
+ "name": "BRF2 Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch,flemish,french,german",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.brf.be/brf2-high.mp3",
+ "homepage": "https://2.brf.be/",
+ "logoUrl": "https://2.brf.be/wp-content/themes/pixelpress/dist/assets/images/3/icons/apple-icon-120x120.png",
+ "votes": 281,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "53e16709-cf6c-4e57-b029-068b376fb257"
+ },
+ {
+ "id": "774c8b6a-93c1-4675-b0ba-bd2ae6ffd364",
+ "name": "Chérie Belgique",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "64kbps",
+ "aac",
+ "lovesongs",
+ "soft pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.rcs.revma.com/r3cprzsqtg0uv",
+ "homepage": "https://www.cheriebelgique.be/",
+ "logoUrl": "https://www.cheriebelgique.be/build/images/favicon.png",
+ "votes": 16,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "774c8b6a-93c1-4675-b0ba-bd2ae6ffd364"
+ },
+ {
+ "id": "b521fd98-8295-45c0-a994-c6e40d057998",
+ "name": "CK Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "charleking",
+ "charleroi",
+ "dance",
+ "dj mixes",
+ "house",
+ "pop",
+ "techno"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://charlekingradio.ice.infomaniak.ch/charlekingradio.mp3",
+ "homepage": "http://www.ck-radio.com/",
+ "logoUrl": "http://www.ck-radio.com/upload/design/65e9f581394a33.38466363.png",
+ "votes": 7,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b521fd98-8295-45c0-a994-c6e40d057998"
+ },
+ {
+ "id": "3ca26ed3-0fdf-4f35-b03a-c8b11883f0b9",
+ "name": "Nostalgie + (Belgique)",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "60s",
+ "64kbps",
+ "70s",
+ "aac",
+ "belgium",
+ "chansons françaises",
+ "classic hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.rcs.revma.com/s9mkgtsqtg0uv",
+ "homepage": "https://www.nostalgie.be/",
+ "logoUrl": "https://www.nostalgie.be/build/images/favicon.png",
+ "votes": 35,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ca26ed3-0fdf-4f35-b03a-c8b11883f0b9"
+ },
+ {
+ "id": "b181374f-fc11-4f7d-a3d6-09d0dad9bb4e",
+ "name": "Q-Foute Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/q-foute-radio.aac?aw_0_1st.skey=1691506785&aw_0_1st.playerid=site-player",
+ "homepage": "https://qmusic.be/",
+ "logoUrl": "https://qmusic.be/assets/qmusic-a1d81a5f88375b3c5507cbc0b064ce1fc8778a076a245bddfd4f2a3e2417c330.png",
+ "votes": 41,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b181374f-fc11-4f7d-a3d6-09d0dad9bb4e"
+ },
+ {
+ "id": "961bdc71-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF Classic 21 - 70's",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "70s",
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-70-128.mp3",
+ "homepage": "http://www.rtbf.be/radio/liveradio/webradio-classic21-70",
+ "logoUrl": "http://www.rtbf.be/favicon.ico",
+ "votes": 757,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "961bdc71-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "0be1f987-5aaf-4c81-9c04-eaa87e2980d8",
+ "name": "RTBF Classic 21 - 90's",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-90-128.mp3",
+ "homepage": "http://www.rtbf.be/radio/liveradio/webradio-classic21-90",
+ "logoUrl": "https://www.allzicradio.com/media/radios/classic21-90-allzicradio.png",
+ "votes": 63,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0be1f987-5aaf-4c81-9c04-eaa87e2980d8"
+ },
+ {
+ "id": "9874e170-e211-4f09-a418-a59f764bb2af",
+ "name": "Vlaamse Wonderjaren",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "folklore",
+ "golden oldies",
+ "goldies",
+ "nederlandstalig",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast1.torontocast.com:3305/stream",
+ "homepage": "https://vlaamsewonderjaren.be/",
+ "logoUrl": "https://vlaamsewonderjaren.be/wp-content/uploads/2018/11/cropped-vlaamse-wonderjaren-logo-transparant-180x180.png",
+ "votes": 24,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9874e170-e211-4f09-a418-a59f764bb2af"
+ },
+ {
+ "id": "7bd23fe4-3173-4cd5-a548-fe0be1495342",
+ "name": "Willy Class X",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "non-stop",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://icecast-qmusicbe-cdp.triple-it.nl/willy-class-x.aac",
+ "homepage": "https://www.willy.radio/",
+ "logoUrl": "https://www.willy.radio/favicon.ico",
+ "votes": 403,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7bd23fe4-3173-4cd5-a548-fe0be1495342"
+ },
+ {
+ "id": "053cc818-fc17-41cd-9447-c3f38264dd91",
+ "name": "Willy Classix",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "classics"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streams.radio.dpgmedia.cloud/redirect/willy_be_class_x/mp3",
+ "homepage": "https://www.willy.radio/",
+ "logoUrl": "https://www.willy.radio/favicon.ico",
+ "votes": 42,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "053cc818-fc17-41cd-9447-c3f38264dd91"
+ },
+ {
+ "id": "72c95c2a-0728-433f-8bb0-67fb2d1fcfea",
+ "name": "8090rocks",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.8090rocks.com/",
+ "homepage": "https://8090.rocks/home",
+ "logoUrl": "https://img1.wsimg.com/isteam/ip/405836de-9b54-4347-a9dd-4870992390f3/logo%20square%20390%20X%20388.png/:/rs=w:105,h:104,cg:true,m/cr=w:105,h:104/qt=q:100/ll",
+ "votes": 44,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "72c95c2a-0728-433f-8bb0-67fb2d1fcfea"
+ },
+ {
+ "id": "60fda078-3595-4fc8-ba90-0fde2e6adca3",
+ "name": "Ajoin Music",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "oilsjters",
+ "tags": [
+ "carnaval"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://play.ajoinmusic.be/ajoinmusic.mp3",
+ "homepage": "https://www.ajoinmusic.be/",
+ "logoUrl": "https://www.ajoinmusic.be/",
+ "votes": 8,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "60fda078-3595-4fc8-ba90-0fde2e6adca3"
+ },
+ {
+ "id": "7132d45b-deed-45bd-85b6-d61ba6c48c42",
+ "name": "Bruzz",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rrr.sz.xlcdn.com/?account=fmbrussel&file=fmb988.mp3&type=live&service=icecast&protocol=https&port=8000&output=pls",
+ "homepage": "https://www.bruzz.be/",
+ "logoUrl": "https://www.bruzz.be/themes/custom/drupack/favicons/apple-touch-icon.png",
+ "votes": 78,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7132d45b-deed-45bd-85b6-d61ba6c48c42"
+ },
+ {
+ "id": "a54eb2a0-bf7a-11e9-8502-52543be04c81",
+ "name": "Classic 21 Blues",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "classic blues"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-blues-128.mp3",
+ "homepage": "http://www.rtbfradioplayer.be/",
+ "logoUrl": "http://www.rtbfradioplayer.be/favicon.ico",
+ "votes": 311,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a54eb2a0-bf7a-11e9-8502-52543be04c81"
+ },
+ {
+ "id": "2714541a-9983-4401-984e-27b7a824df99",
+ "name": "Crooze Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "electronic dance music",
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.shoutcast.com/crooze-mp3",
+ "homepage": "https://crooze.eu/en/",
+ "logoUrl": "https://belgiefm.com/sites/default/files/radio/logos/logo-croozefm.png",
+ "votes": 66,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2714541a-9983-4401-984e-27b7a824df99"
+ },
+ {
+ "id": "526fbab6-08e4-4d0b-aa11-da750e950f55",
+ "name": "FM Goud Tenerife",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.fmgoud.be/fm-goud-tenerife",
+ "homepage": "https://www.fmgoud.be/",
+ "logoUrl": "https://www.fmgoud.be/uploads/3/9/6/3/3963899/logopngtransparant.png",
+ "votes": 10,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "526fbab6-08e4-4d0b-aa11-da750e950f55"
+ },
+ {
+ "id": "bae70c5c-9f3f-42fc-a83d-6c13920590e0",
+ "name": "Kiosk Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "english,french",
+ "tags": [
+ "independent",
+ "music",
+ "variety",
+ "dj sets",
+ "electro"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://kioskradiobxl.out.airtime.pro/kioskradiobxl_b",
+ "homepage": "https://kioskradio.com/",
+ "logoUrl": "https://kioskradio.com/favicon.png",
+ "votes": 329,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "bae70c5c-9f3f-42fc-a83d-6c13920590e0"
+ },
+ {
+ "id": "b32784aa-1df0-488a-aad3-52d10a7e16c8",
+ "name": "NRJ Belgique",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "contemporary hits radio",
+ "dance",
+ "pop",
+ "top40"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.rcs.revma.com/xh00fwuptg0uv",
+ "homepage": "https://www.nrj.be/",
+ "logoUrl": "https://www.nrj.be/build/images/favicon.ico",
+ "votes": 16,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b32784aa-1df0-488a-aad3-52d10a7e16c8"
+ },
+ {
+ "id": "b444ff49-4a70-403a-9649-4437d4dd4afb",
+ "name": "Oilsjt Mjoezik",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.oilsjtmjoezik.be/?1739170252723",
+ "homepage": "https://www.oilsjtmjoezik.be/",
+ "logoUrl": "https://www.google.com/s2/favicons?sz=256&domain_url=https%3A%2F%2Fwww.oilsjtmjoezik.be%2F",
+ "votes": 10,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b444ff49-4a70-403a-9649-4437d4dd4afb"
+ },
+ {
+ "id": "7c399071-1f24-4e7c-b11a-431b4bc37f7e",
+ "name": "ONIB Dj RADIO",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://listen.radioking.com/radio/583019/stream/643364?ver=699277",
+ "homepage": "https://onibradio.com/#",
+ "logoUrl": "https://onibradio.com/wp-content/uploads/2023/10/onib-radio-dj-radio-170x170.jpg",
+ "votes": 15,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c399071-1f24-4e7c-b11a-431b4bc37f7e"
+ },
+ {
+ "id": "244d4b03-93a7-459c-a009-70d433b3f13c",
+ "name": "PROS",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream4.audiostreamen.nl/radiopros",
+ "homepage": "https://radiopros.be/",
+ "logoUrl": "https://radiopros.be/wp-content/uploads/2020/07/logo-PROS.png",
+ "votes": 23,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "244d4b03-93a7-459c-a009-70d433b3f13c"
+ },
+ {
+ "id": "963ad064-579c-4c56-978e-0f97e178db08",
+ "name": "Radio Campus BXL 92.1 [Ogg HQ]",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "alternative",
+ "eclectic",
+ "electro",
+ "experimental",
+ "folk",
+ "hip hop",
+ "indie",
+ "jazz",
+ "progressive",
+ "rock"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://www.radiocampus.be/stream/stream_hi.ogg",
+ "homepage": "https://www.radiocampus.be/",
+ "logoUrl": null,
+ "votes": 102,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "963ad064-579c-4c56-978e-0f97e178db08"
+ },
+ {
+ "id": "e15074e4-a3f4-4f74-9680-a4153b6fc0ba",
+ "name": "Radio Memory",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.radiostudio.be/radiomemory",
+ "homepage": "https://www.radiomemory.be/index.html",
+ "logoUrl": "https://www.radiomemory.be/img/logo/memory-transparant-wit.png",
+ "votes": 8,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e15074e4-a3f4-4f74-9680-a4153b6fc0ba"
+ },
+ {
+ "id": "f9bc14bf-6600-4eba-8690-3124a80624ac",
+ "name": "Radio Valencia 105 FM - Meer, Be",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.radiovalencia.be/",
+ "homepage": "https://www.radiovalencia.be/",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f9bc14bf-6600-4eba-8690-3124a80624ac"
+ },
+ {
+ "id": "a4250b45-2be3-4671-a9b0-1e6363e7a8f4",
+ "name": "RTBF Classic 21 - 80's",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-80-128.mp3",
+ "homepage": "http://www.rtbf.be/radio/liveradio/webradio-classic21-80",
+ "logoUrl": "https://www.radio.fr/300/classic2180s.png",
+ "votes": 58,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4250b45-2be3-4671-a9b0-1e6363e7a8f4"
+ },
+ {
+ "id": "92e4950e-b1e3-4d62-af16-b884105257e2",
+ "name": "RTBF Classic 21 - Live",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "live"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-live-128.mp3",
+ "homepage": "https://www.rtbf.be/radio/liveradio/webradio-classic21-live",
+ "logoUrl": "https://assets.maradio.be/stationimages/1107_programme_image.png",
+ "votes": 22,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "92e4950e-b1e3-4d62-af16-b884105257e2"
+ },
+ {
+ "id": "82329bca-e104-11e9-a8ba-52543be04c81",
+ "name": "RTBF Viva+",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "60s",
+ "70s",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/vivaplus-128.mp3",
+ "homepage": "https://www.rtbf.be/vivaplus",
+ "logoUrl": "https://www.static.rtbf.be/rtbf/home/images/ico/favicon-info-32x32.png",
+ "votes": 192,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "82329bca-e104-11e9-a8ba-52543be04c81"
+ },
+ {
+ "id": "960edf98-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF VivaCité Charleroi",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/vivacharleroi-64.aac",
+ "homepage": "https://www.rtbf.be/vivacite/",
+ "logoUrl": "https://www.static.rtbf.be/rtbf/home/images/ico/favicon-info-32x32.png",
+ "votes": 189,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "960edf98-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "4380199e-ec5a-45bf-81fc-b128a3b4fae9",
+ "name": "BRF1 Radio",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.brf.be/brf1-high.mp3",
+ "homepage": "https://brf.be/",
+ "logoUrl": "https://brf.be/wp-content/themes/pixelpress/dist/assets/images/1/icons/apple-icon-180x180.png",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4380199e-ec5a-45bf-81fc-b128a3b4fae9"
+ },
+ {
+ "id": "af77f69a-7d0b-4044-937c-784a799819d6",
+ "name": "BUZZ RADIO",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://buzzradio.ice.infomaniak.ch/buzzradio-128.mp3?ua=Buzz%20Radio%20-%20audio%20player%201",
+ "homepage": "https://www.buzzradio.be/",
+ "logoUrl": "https://www.buzzradio.be/wp-content/uploads/2015/04/Buzzban.png",
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "af77f69a-7d0b-4044-937c-784a799819d6"
+ },
+ {
+ "id": "1e7ae76b-9a41-4542-912f-acbfa62db251",
+ "name": "Candie",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://clubfmserver.be/pink.mp3",
+ "homepage": "https://candie.eu/",
+ "logoUrl": "https://candie.eu/wp-content/uploads/2023/07/candie_logo_trans@4x-768x333.png",
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e7ae76b-9a41-4542-912f-acbfa62db251"
+ },
+ {
+ "id": "ca55c130-0a89-4a10-98be-75f0c4820332",
+ "name": "CK Deejay",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "club house trance dance",
+ "deejay remix",
+ "disco",
+ "electronic music",
+ "eurodance"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio-pub.be/CKDJ/ckdjmix.mp3",
+ "homepage": "https://www.ckradio.be/",
+ "logoUrl": "https://radio-pub.be/CKDJ/CK%20DJ'smix.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ca55c130-0a89-4a10-98be-75f0c4820332"
+ },
+ {
+ "id": "2f91ca97-3e2c-47c9-8368-91da2fc0fe8a",
+ "name": "CK RADIO Belgique",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://charlekingradio.ice.infomaniak.ch/ckradio-192.mp3",
+ "homepage": "https://www.ck-radio.com/",
+ "logoUrl": "https://radio-pub.be/CKRADIO/CK%20RADIO%20Officiel.png",
+ "votes": 14,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "2f91ca97-3e2c-47c9-8368-91da2fc0fe8a"
+ },
+ {
+ "id": "ac329316-ec89-4203-b4eb-ad3ac850222c",
+ "name": "De Goeie Ouwe Tijd",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://26343.live.streamtheworld.com/SAM03AAC392_SC",
+ "homepage": "http://spacial.com/",
+ "logoUrl": "https://spacial.com/wp-content/uploads/2019/08/cropped-favicon-180x180.png",
+ "votes": 14,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ac329316-ec89-4203-b4eb-ad3ac850222c"
+ },
+ {
+ "id": "070ab013-9d67-46cf-830a-f65cc6d9c79f",
+ "name": "PINK",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [
+ "pop",
+ "top 40",
+ "women"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://www.clubfmserver.be/pink.mp3",
+ "homepage": "http://www.pinkradio.be/",
+ "logoUrl": "http://www.pinkradio.be/favicon.ico",
+ "votes": 19,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "070ab013-9d67-46cf-830a-f65cc6d9c79f"
+ },
+ {
+ "id": "98d4da42-e3d8-41ec-8fb7-006407ef3a39",
+ "name": "Radio Apollo",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioapollo.beheerstream.nl/8004/stream",
+ "homepage": "https://www.radioapollo.be/",
+ "logoUrl": "https://www.radioapollo.be/wp-content/uploads/2020/05/cropped-voorsite-1-192x192.jpg",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "98d4da42-e3d8-41ec-8fb7-006407ef3a39"
+ },
+ {
+ "id": "fc4bc4b4-5421-48f8-bbb5-ec4931d3430b",
+ "name": "Radio Nova",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "dutch",
+ "tags": [
+ "hollands",
+ "nederlandstalig",
+ "oldies",
+ "schlager"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://nova.dzradio.nl/nova",
+ "homepage": "https://www.radionova.be/",
+ "logoUrl": "https://usercontent.one/wp/www.radionova.be/wp-content/uploads/2023/03/cropped-2-180x180.png?media=1699536891",
+ "votes": 16,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fc4bc4b4-5421-48f8-bbb5-ec4931d3430b"
+ },
+ {
+ "id": "961bf014-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF Classic 21",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "pop",
+ "rock",
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/classic21-64.aac",
+ "homepage": "https://www.rtbf.be/classic21/",
+ "logoUrl": "https://www.rtbf.be/favicon.ico",
+ "votes": 1421,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "961bf014-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "960ef299-0601-11e8-ae97-52543be04c81",
+ "name": "RTBF Classic 21 - Metal",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "metal",
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-metal-128.mp3",
+ "homepage": "http://www.rtbf.be/radio/liveradio/webradio-classic21-metal",
+ "logoUrl": "http://www.rtbf.be/favicon.ico",
+ "votes": 627,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "960ef299-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "17ea1f66-168a-11e8-ae97-52543be04c81",
+ "name": "RTBF Classic 21 - Route 66",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "country",
+ "rtbf"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-route66-128.mp3",
+ "homepage": "http://www.rtbfradioplayer.be/radio/liveradio/webradio-classic21-66",
+ "logoUrl": "http://www.rtbfradioplayer.be/favicon.ico",
+ "votes": 1069,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "17ea1f66-168a-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "ae51caba-95a5-4b6d-8fe8-ca1c211bc81c",
+ "name": "RTBF Classic 21 - Underground",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "french",
+ "tags": [
+ "underground"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radios.rtbf.be/wr-c21-underground-128.mp3",
+ "homepage": "https://www.rtbf.be/radio/liveradio/webradio-classic21-underground",
+ "logoUrl": "https://www.radio.fr/300/classic21underground.png",
+ "votes": 48,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae51caba-95a5-4b6d-8fe8-ca1c211bc81c"
+ },
+ {
+ "id": "14234878-05b0-445a-86ee-e56ad6ae3090",
+ "name": "RTBF La Première",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://redbeemedia.streamabc.net/redbm-lapremiere-aac-128-7561067",
+ "homepage": "https://www.rtbf.be/lapremiere",
+ "logoUrl": null,
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "14234878-05b0-445a-86ee-e56ad6ae3090"
+ },
+ {
+ "id": "c3f994a8-1d61-40fd-a31d-fa0befe8beaf",
+ "name": "XBeat",
+ "country": "Belgium",
+ "countryCode": "BE",
+ "language": "english,french",
+ "tags": [
+ "electro"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://radio.xbeat.org/stream1",
+ "homepage": "https://www.xbeat.org/",
+ "logoUrl": "https://xbeat.org/wp-content/uploads/2019/04/cropped-29019567_10214064850427760_1674394533_n-1-1-1-32x32.png",
+ "votes": 19,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c3f994a8-1d61-40fd-a31d-fa0befe8beaf"
+ },
{
"id": "8e1890ff-a74c-484c-b3df-aa5346c03c61",
"name": "Radio Sehara",
@@ -3897,7 +7449,7 @@
"homepage": "https://radiosehara.net/",
"logoUrl": "https://radiosehara.net/wp-content/uploads/2017/02/logo-2.png",
"votes": 22,
- "clickcount": 9,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "8e1890ff-a74c-484c-b3df-aa5346c03c61"
},
@@ -3958,7 +7510,7 @@
"homepage": "https://www.pakaoradio.net/",
"logoUrl": "https://www.pakaoradio.net/img/bigthumb.jpg",
"votes": 315,
- "clickcount": 5,
+ "clickcount": 6,
"source": "radio-browser",
"sourceStationUuid": "23a0d2d4-724e-4ce4-9c3a-7e96d4cbe792"
},
@@ -3986,6 +7538,25 @@
"source": "radio-browser",
"sourceStationUuid": "882b08a2-c753-4af0-91a7-4edad1cd683d"
},
+ {
+ "id": "5457b94d-4d12-42e5-88cb-bcef0cf74ea6",
+ "name": "Radio MIX, BiH",
+ "country": "Bosnia And Herzegovina",
+ "countryCode": "BA",
+ "language": "bosnian",
+ "tags": [
+ "narodna - folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.rsgmedia.ba/listen/radio_mix/radio.mp3",
+ "homepage": "https://radio.radiomix.ba/",
+ "logoUrl": "https://radio.radiomix.ba/images/mix/logo.png",
+ "votes": 27,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5457b94d-4d12-42e5-88cb-bcef0cf74ea6"
+ },
{
"id": "d71c5650-1792-4de3-8ce3-32fad008c669",
"name": "Esoterica Radio S5",
@@ -4046,42 +7617,6 @@
"source": "radio-browser",
"sourceStationUuid": "33f25513-5120-4a20-9f1c-dbaa26e0b9cc"
},
- {
- "id": "5457b94d-4d12-42e5-88cb-bcef0cf74ea6",
- "name": "Radio MIX, BiH",
- "country": "Bosnia And Herzegovina",
- "countryCode": "BA",
- "language": "bosnian",
- "tags": [
- "narodna - folk"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.rsgmedia.ba/listen/radio_mix/radio.mp3",
- "homepage": "https://radio.radiomix.ba/",
- "logoUrl": "https://radio.radiomix.ba/images/mix/logo.png",
- "votes": 27,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "5457b94d-4d12-42e5-88cb-bcef0cf74ea6"
- },
- {
- "id": "407e5834-b84d-4e28-914e-39fad39555e2",
- "name": "RSG Sarajevo",
- "country": "Bosnia And Herzegovina",
- "countryCode": "BA",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.rsgmedia.ba/listen/radio_stari_grad/radio.mp3",
- "homepage": "https://radio.rsg.ba/",
- "logoUrl": "https://radio.rsg.ba/static/assets/rsg-logo.svg",
- "votes": 5,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "407e5834-b84d-4e28-914e-39fad39555e2"
- },
{
"id": "090ac8e3-e46a-4e45-ba7f-6cc578e62137",
"name": "Kalman Radio",
@@ -4118,6 +7653,23 @@
"source": "radio-browser",
"sourceStationUuid": "5cab177d-49de-492b-af93-f4467fd25690"
},
+ {
+ "id": "407e5834-b84d-4e28-914e-39fad39555e2",
+ "name": "RSG Sarajevo",
+ "country": "Bosnia And Herzegovina",
+ "countryCode": "BA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.rsgmedia.ba/listen/radio_stari_grad/radio.mp3",
+ "homepage": "https://radio.rsg.ba/",
+ "logoUrl": "https://radio.rsg.ba/static/assets/rsg-logo.svg",
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "407e5834-b84d-4e28-914e-39fad39555e2"
+ },
{
"id": "08963e11-87c0-4a7b-8c05-4eb2321f29ef",
"name": "Antena Radio, Jelah Tešanj",
@@ -5010,6 +8562,3582 @@
"source": "radio-browser",
"sourceStationUuid": "2f1f3d95-d30f-428e-a15d-6ec1f982b486"
},
+ {
+ "id": "5dcbb03d-423a-4f97-8af5-b95981094c69",
+ "name": "Rádio Saudade FM 99.7",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "adult",
+ "classic hits",
+ "flashback"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SAUDADE_FMAAC.aac",
+ "homepage": "https://www.saudadefm.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio8_1626274312.png",
+ "votes": 10166,
+ "clickcount": 64,
+ "source": "radio-browser",
+ "sourceStationUuid": "5dcbb03d-423a-4f97-8af5-b95981094c69"
+ },
+ {
+ "id": "570cc99a-9159-4d91-9a8f-96ddb5b30797",
+ "name": "Rádio Antena 1 94.7 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "adult",
+ "flashback"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://antenaone.crossradio.com.br/stream/1;",
+ "homepage": "https://www.antena1.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio9505_1574106966.jpg",
+ "votes": 631,
+ "clickcount": 53,
+ "source": "radio-browser",
+ "sourceStationUuid": "570cc99a-9159-4d91-9a8f-96ddb5b30797"
+ },
+ {
+ "id": "7ada8a81-5ae1-418c-8f18-51d2f38d86a4",
+ "name": "Bossa Jazz Brasil",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "bossa nova",
+ "jazz",
+ "mpb"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://centova5.transmissaodigital.com:20104/live",
+ "homepage": "https://bossajazzbrasil.com/",
+ "logoUrl": "https://bossajazzbrasil.com/wp-content/uploads/2020/12/cropped-bjs-app-180x180.png",
+ "votes": 8056,
+ "clickcount": 44,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ada8a81-5ae1-418c-8f18-51d2f38d86a4"
+ },
+ {
+ "id": "901c92bd-a757-449a-b8ce-652b079fd38a",
+ "name": "Rádio Mix 106.3 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "chr",
+ "pop-rock",
+ "youth"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/MIXFM_SAOPAULOAAC.aac",
+ "homepage": "https://aovivo.radiomixfm.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio13955_1720711597.png",
+ "votes": 1258,
+ "clickcount": 43,
+ "source": "radio-browser",
+ "sourceStationUuid": "901c92bd-a757-449a-b8ce-652b079fd38a"
+ },
+ {
+ "id": "447a1a5f-aee6-4b21-b85f-10ceb1896ad3",
+ "name": "Alpha FM 101.7 MHz (São Paulo - SP)",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "light",
+ "misc",
+ "portuguese music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIO_ALPHAFM_ADP.aac",
+ "homepage": "https://www.alphafm.com.br/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s8129/images/logod.jpg",
+ "votes": 2588,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "447a1a5f-aee6-4b21-b85f-10ceb1896ad3"
+ },
+ {
+ "id": "c8cfc213-6a39-4b45-b925-3c6acb3f8b68",
+ "name": "Rádio Band FM 96.1 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "pop"
+ ],
+ "codec": "FLV",
+ "bitrate": 0,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BANDFM_SPAAC",
+ "homepage": "https://www.band.uol.com.br/band-fm",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio10358_1526480428.jpg",
+ "votes": 3050,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "c8cfc213-6a39-4b45-b925-3c6acb3f8b68"
+ },
+ {
+ "id": "f66f08c3-1616-4dd6-a54f-75aa29aa8249",
+ "name": "Rádio Itatiaia 95.7 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "soccer",
+ "sports"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://8903.brasilstream.com.br/stream",
+ "homepage": "https://www.itatiaia.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio14_1646746883.jpeg",
+ "votes": 1461,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "f66f08c3-1616-4dd6-a54f-75aa29aa8249"
+ },
+ {
+ "id": "4a17b7fa-42a0-4c32-bdc6-dc1c59066c96",
+ "name": "bandnews fm sp",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,português brasil",
+ "tags": [
+ "news",
+ "news talk"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BANDNEWSFM_SPAAC.m3u8",
+ "homepage": "https://www.band.uol.com.br/radios/bandnews-fm/sao-paulo",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio24477_1579261235.jpg",
+ "votes": 3652,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "4a17b7fa-42a0-4c32-bdc6-dc1c59066c96"
+ },
+ {
+ "id": "8e9b5ba4-dcc1-4dad-8ddf-e7cc04c33a00",
+ "name": "Rádio Jovem Pan 100.9 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "entertainment",
+ "journalism",
+ "music",
+ "sport"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/c45wbq2us3buv",
+ "homepage": "https://jovempan.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio8829_1708517690.png",
+ "votes": 338,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "8e9b5ba4-dcc1-4dad-8ddf-e7cc04c33a00"
+ },
+ {
+ "id": "00bc4f1d-050c-49ae-bc42-a8aaa5d0ff5b",
+ "name": "Sertaneja 106.7",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "country",
+ "sertanejo"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://sc4s.cdn.upx.com:8067/stream",
+ "homepage": "https://www.106sertaneja.com.br/",
+ "logoUrl": "https://assets.clubefm.com.br/uploads/site/logo/2/106-sertaneja-4fff3e1f118ab621432fa4d74136e042e86b6eedbabf561ded0dfd61123d980e.png",
+ "votes": 476,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "00bc4f1d-050c-49ae-bc42-a8aaa5d0ff5b"
+ },
+ {
+ "id": "3998f9ae-ed80-4319-8109-0acb29efb256",
+ "name": "BH FM 102,1 MHz ZYC690 (Belo Horizonte - MG)",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "funk",
+ "internacional",
+ "nacional",
+ "pagode",
+ "pop",
+ "samba",
+ "sertanejo"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BHFMAAC.aac",
+ "homepage": "https://bhfm.globo.com/",
+ "logoUrl": "https://i.postimg.cc/ncT9hqH6/04008003142.png",
+ "votes": 246,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "3998f9ae-ed80-4319-8109-0acb29efb256"
+ },
+ {
+ "id": "2eb41659-1b7c-43e5-9b98-36634086a73c",
+ "name": "Radio Jovem Pan 99.1 FM Belo Horizonte",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "90s",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://8062.brasilstream.com.br//stream?origem=jovem_pan_site",
+ "homepage": "https://jovempan.com.br/afiliada/bh-fm",
+ "logoUrl": "https://s.jpimg.com.br/wp-content/themes/jovempan/assets/build/images/favicons/favicon-32x32.png",
+ "votes": 225,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "2eb41659-1b7c-43e5-9b98-36634086a73c"
+ },
+ {
+ "id": "84a51775-4137-48c8-b72b-85f4b5edc7e5",
+ "name": "Super Radio Tupi 96.5",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,português brasil",
+ "tags": [
+ "local news",
+ "news talk",
+ "variety"
+ ],
+ "codec": "AAC",
+ "bitrate": 32,
+ "streamUrl": "https://8923.brasilstream.com.br/stream",
+ "homepage": "https://tupi.fm/",
+ "logoUrl": null,
+ "votes": 4976,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "84a51775-4137-48c8-b72b-85f4b5edc7e5"
+ },
+ {
+ "id": "2ca712c4-2d5f-4dbd-a2e3-1961136eec4e",
+ "name": "Fita Cassete",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portugues do brasil",
+ "tags": [
+ "adult",
+ "adulta",
+ "flashback"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://server01.ouvir.radio.br:8018/stream",
+ "homepage": "https://./",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio162745_1603505533.jpg",
+ "votes": 2440,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "2ca712c4-2d5f-4dbd-a2e3-1961136eec4e"
+ },
+ {
+ "id": "65908a60-3a4c-4d8c-b66c-d8eb96faefc6",
+ "name": "89 A Radio Rock",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "alternative rock",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIO_89FM_ADP.aac?dist=site-89fm",
+ "homepage": "https://www.radiorock.com.br/",
+ "logoUrl": null,
+ "votes": 6620,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "65908a60-3a4c-4d8c-b66c-d8eb96faefc6"
+ },
+ {
+ "id": "39f1f009-2ec7-4d81-b28e-b8298885bb1b",
+ "name": "GOLD INSTRUMENTAL",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "orquestrada"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://centova.svdns.com.br:19373/stream1",
+ "homepage": "http://www.radiogold.com.br/",
+ "logoUrl": "https://static.wixstatic.com/ficons/688516_5438a05ca6d2407493112faa1c5ccdd2%7emv2.ico",
+ "votes": 2327,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "39f1f009-2ec7-4d81-b28e-b8298885bb1b"
+ },
+ {
+ "id": "b6d2dba2-acfd-4add-ab3a-085527279f2e",
+ "name": "Rádio Grenal",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "sports"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://grenal.audiostream.com.br:20000/aac",
+ "homepage": "https://www.radiogrenal.com.br/",
+ "logoUrl": null,
+ "votes": 2877,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "b6d2dba2-acfd-4add-ab3a-085527279f2e"
+ },
+ {
+ "id": "52994d67-31ea-448f-b6bc-7eaeb6a3504b",
+ "name": "CBN São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "sports"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/CBN_SPAAC.aac",
+ "homepage": "https://cbn.globoradio.globo.com/programas/cbn-sao-paulo/CBN-SAO-PAULO.htm",
+ "logoUrl": null,
+ "votes": 2558,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "52994d67-31ea-448f-b6bc-7eaeb6a3504b"
+ },
+ {
+ "id": "46d02cdb-49a6-11e9-a4d7-52543be04c81",
+ "name": "Gaúcha",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "futebol",
+ "notícias"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 1000,
+ "streamUrl": "https://1132747t.ha.azioncdn.net/primary/gaucha_rbs.sdp/playlist.m3u8",
+ "homepage": "https://gauchazh.clicrbs.com.br/",
+ "logoUrl": "https://gauchazh.clicrbs.com.br/static/icons/mstile-70x70.png",
+ "votes": 3331,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "46d02cdb-49a6-11e9-a4d7-52543be04c81"
+ },
+ {
+ "id": "6da066a5-eddf-4640-8bfb-25070c52858d",
+ "name": "Rádio Transamérica 100.1 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "adult",
+ "soccer"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RT_SPAAC.aac",
+ "homepage": "https://transamericafm.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio8803_1578516680.png",
+ "votes": 1642,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "6da066a5-eddf-4640-8bfb-25070c52858d"
+ },
+ {
+ "id": "ef07dbb2-1176-4b09-bb87-9e841300c3cf",
+ "name": "Smooth Jazz Lounge",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "american english,english",
+ "tags": [
+ "jazz",
+ "smooth jazz",
+ "smooth lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio4.vip-radios.fm:18060/stream-128kmp3-SmoothJazzLounge",
+ "homepage": "https://www.vip-radios.fm/station/smooth-jazz-lounge",
+ "logoUrl": "https://www.vip-radios.fm/favicon.ico",
+ "votes": 4328,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "ef07dbb2-1176-4b09-bb87-9e841300c3cf"
+ },
+ {
+ "id": "bf64595a-eed4-49de-94e5-87c1bb813a74",
+ "name": "Jovem Pan FM - Florianópolis - SC",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "chr",
+ "contemporary hits radio",
+ "dance",
+ "electronic dance music",
+ "jovem",
+ "jovem pan",
+ "pop",
+ "pop rock",
+ "top 40"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://live.paineldj.com.br/proxy/jfloripa?mp=/stream",
+ "homepage": "https://jovempan.com.br/afiliada/floripa-fm",
+ "logoUrl": "https://jpimg.com.br/uploads/2024/02/avatar-florianopolis-rgb-500x500.png",
+ "votes": 481,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "bf64595a-eed4-49de-94e5-87c1bb813a74"
+ },
+ {
+ "id": "d12439b1-0bfe-4caa-9dec-6f19af01db3a",
+ "name": "Kiss FM São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIO_KISSFMAAC.aac?1655609055880",
+ "homepage": "https://kissfm.com.br/",
+ "logoUrl": null,
+ "votes": 1065,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "d12439b1-0bfe-4caa-9dec-6f19af01db3a"
+ },
+ {
+ "id": "345cc08c-a5e3-43d9-9543-0626f2081177",
+ "name": "Bons Tempos FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portuguese",
+ "tags": [
+ "nostalgia",
+ "nostalgic",
+ "rock",
+ "romantic"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://server02.ouvir.radio.br:8050/stream?1609720768800",
+ "homepage": "https://www.radios.com.br/aovivo/bons-tempos-fm/37027",
+ "logoUrl": "https://static.radios.com.br/img/apple-touch-icon.png",
+ "votes": 7221,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "345cc08c-a5e3-43d9-9543-0626f2081177"
+ },
+ {
+ "id": "4e265a9e-1f74-4269-b550-5510a56920f6",
+ "name": "Classic Pan",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/rtk4pzcome3vv",
+ "homepage": "https://jovempan.com.br/classic-pan",
+ "logoUrl": "https://s.jpimg.com.br/wp-content/themes/jovempan/assets/src/images/classic-pan/Classic-Pan-Logo-Branco-RGB.png",
+ "votes": 222,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "4e265a9e-1f74-4269-b550-5510a56920f6"
+ },
+ {
+ "id": "195f2990-e0d3-4b34-8aab-5b173ddb6c6e",
+ "name": "BR - The Classic Rock",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "classic rock",
+ "hard rock",
+ "heavy metal",
+ "oldies",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/nbq1aq62gd0uv",
+ "homepage": "https://radiorockfm.com.br/br",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/5/94775.v6.png",
+ "votes": 154,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "195f2990-e0d3-4b34-8aab-5b173ddb6c6e"
+ },
+ {
+ "id": "c4335568-5976-4275-8f21-b9bae8adae78",
+ "name": "CBN São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "sports"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/CBN_SPAAC_SC",
+ "homepage": "https://cbn.globoradio.globo.com/programas/cbn-sao-paulo/CBN-SAO-PAULO.htm",
+ "logoUrl": null,
+ "votes": 725,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "c4335568-5976-4275-8f21-b9bae8adae78"
+ },
+ {
+ "id": "ce5aac6c-e499-4714-a28b-a1a94baa1b74",
+ "name": "Nova Brasil Fm São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/NOVABRASIL_SPAAC.aac",
+ "homepage": "https://novabrasilfm.com.br/",
+ "logoUrl": null,
+ "votes": 1534,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "ce5aac6c-e499-4714-a28b-a1a94baa1b74"
+ },
+ {
+ "id": "354d8c7e-a490-4b67-bc23-dd719ea54c83",
+ "name": "Rádio Bandeirantes 90.9 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "soccer"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8?dist=radios.com.br",
+ "homepage": "https://www.band.uol.com.br/radio-bandeirantes",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio10410_1722854885.png",
+ "votes": 259,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "354d8c7e-a490-4b67-bc23-dd719ea54c83"
+ },
+ {
+ "id": "b8999692-0fba-4660-8934-c74167efc9e0",
+ "name": "Antena 1 - Porto Alegre",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://antenaone.crossradio.com.br/stream/1",
+ "homepage": "https://www.antena1.com.br/",
+ "logoUrl": "https://www.antena1.com.br/apple-touch-icon.png",
+ "votes": 863,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "b8999692-0fba-4660-8934-c74167efc9e0"
+ },
+ {
+ "id": "f0ef5702-7eae-4751-8049-484ff571a4df",
+ "name": "JB FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 40,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/JBFMAAC1.aac",
+ "homepage": "https://jb.fm/",
+ "logoUrl": "https://jb.fm/static-images/logo-jb.png",
+ "votes": 1149,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0ef5702-7eae-4751-8049-484ff571a4df"
+ },
+ {
+ "id": "ad039169-2969-4a7a-be83-86f079f4a55e",
+ "name": "Rádio Bandeirantes - São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "local news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RadioBandeirantesAAC.m3u8",
+ "homepage": "https://www.band.uol.com.br/radios/radio-bandeirantes/sao-paulo",
+ "logoUrl": null,
+ "votes": 5344,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "ad039169-2969-4a7a-be83-86f079f4a55e"
+ },
+ {
+ "id": "cef8689a-a858-4400-aaaf-f6e57a633836",
+ "name": "Radio Reggae Brasil",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "reggae"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://casthttps.suaradionanet.net/13805/stream",
+ "homepage": "https://radioreggaebrasil.com.br/",
+ "logoUrl": "https://manager.suaradionanet.net/storage/radios/reggaebrasil/site_basic/63f193d9235468.08684969.png",
+ "votes": 798,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "cef8689a-a858-4400-aaaf-f6e57a633836"
+ },
+ {
+ "id": "31d064a7-5452-4f7d-8d78-1f5784778f20",
+ "name": "Clube FM 99.1",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portuguese",
+ "tags": [
+ "hits",
+ "pop",
+ "popular"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.saopaulo01.com.br:10913/stream",
+ "homepage": "http://www.clubepe.fm/",
+ "logoUrl": null,
+ "votes": 3200,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "31d064a7-5452-4f7d-8d78-1f5784778f20"
+ },
+ {
+ "id": "1a198419-3083-4cd0-a8fe-42fef3f488e1",
+ "name": "MGT GOSPEL",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "brasil",
+ "cristã",
+ "gospel",
+ "jesus"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://cast.mgtradio.net/radio/8040/aac",
+ "homepage": "https://www.mgtradio.net/",
+ "logoUrl": "https://www.mgtradio.net/favicon.ico",
+ "votes": 639,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "1a198419-3083-4cd0-a8fe-42fef3f488e1"
+ },
+ {
+ "id": "4317dca3-9e67-4226-82a8-8f650ba50219",
+ "name": "Rádio FM O Dia 99.7 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português brasil",
+ "tags": [
+ "popular",
+ "samba pagode"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://wz7.servidoresbrasil.com:8274/stream",
+ "homepage": "https://macae.fmodia.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio229211_1706128532.jpeg",
+ "votes": 162,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "4317dca3-9e67-4226-82a8-8f650ba50219"
+ },
+ {
+ "id": "02fb63e7-410d-4dcb-a85f-1665cbd67a83",
+ "name": "Rádio Gaúcha 93.7 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "soccer"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 1000,
+ "streamUrl": "https://liverdgaupoa.rbsdirect.com.br/primary/gaucha_rbs.sdp/playlist.m3u8",
+ "homepage": "https://radiogauchafm.com/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio13176_1628168105.png",
+ "votes": 627,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "02fb63e7-410d-4dcb-a85f-1665cbd67a83"
+ },
+ {
+ "id": "39a5bc65-90b4-4f61-b03a-b17e9efb98b5",
+ "name": "Sertanejo FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/qcwuy1y3tm0uv",
+ "homepage": "https://www.sertanejofm.com.br/",
+ "logoUrl": "https://lh3.googleusercontent.com/H_nSVfHmD_7wr5Lwldg1W2MTPDkn4M-NNv64GR_Syq4TsBz2yF16S4_iTg8GtFWPLJMQpmH8ekucmbbtkiFrsxU=w1280",
+ "votes": 319,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "39a5bc65-90b4-4f61-b03a-b17e9efb98b5"
+ },
+ {
+ "id": "b3a2b935-fa76-4086-9db3-22da3bb1ee9c",
+ "name": "BandNews FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "sports"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BANDNEWSFM_SPAAC_SC",
+ "homepage": "https://www.bandnewsfm.com.br/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/YjB73sNAHd.png",
+ "votes": 1011,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3a2b935-fa76-4086-9db3-22da3bb1ee9c"
+ },
+ {
+ "id": "7e1c7041-c288-4f9a-b859-1a461cf728dc",
+ "name": "Clube FM 96,5 MHz ZYC692 (Belo Horizonte - MG)",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "internacional",
+ "nacional",
+ "samba",
+ "sertanejo"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://8112.brasilstream.com.br/stream",
+ "homepage": "https://clube.fm/",
+ "logoUrl": "https://i.postimg.cc/CxFCvF1V/04008017011.jpg",
+ "votes": 43,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "7e1c7041-c288-4f9a-b859-1a461cf728dc"
+ },
+ {
+ "id": "d4f0f5ca-b0a5-4de4-be3b-e686920d94b0",
+ "name": "Jovem Pan FM - Belo Horizonte - MG - 99.1 Mhz",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://8062.brasilstream.com.br/stream?origem=task_site",
+ "homepage": "https://jovempan.com.br/afiliada/bh-fm",
+ "logoUrl": null,
+ "votes": 356,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "d4f0f5ca-b0a5-4de4-be3b-e686920d94b0"
+ },
+ {
+ "id": "45b2f3d4-b188-42ae-bb8c-d57e95d652ce",
+ "name": "Massa FM 101,1 (Ponta Grossa - PR)",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português brasil",
+ "tags": [
+ "pop music",
+ "pop rock",
+ "sertanejo",
+ "sertanejo raiz"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://live.virtualcast.com.br/massapontagrossa",
+ "homepage": "https://massa.com.br/massa-fm-ponta-grossa/",
+ "logoUrl": "https://tudoradio.com/img/uploads/radios/radio_massafmpontagrossa.png",
+ "votes": 94,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "45b2f3d4-b188-42ae-bb8c-d57e95d652ce"
+ },
+ {
+ "id": "1eaf6810-41de-4a43-827b-dcf8070748e5",
+ "name": "Rádio Globo 98.1 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "discussions",
+ "interviews",
+ "popular",
+ "sports"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://24493.live.streamtheworld.com:443/RADIO_GLOBO_RJAAC.aac?dist=radioscombr",
+ "homepage": "https://radioglobo.globo.com/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio8817_1676300226.png",
+ "votes": 304,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "1eaf6810-41de-4a43-827b-dcf8070748e5"
+ },
+ {
+ "id": "c064c241-a2c2-4dd9-b889-b292535397fe",
+ "name": "Rádio Studio Flashback",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "00's",
+ "00s",
+ "2000's",
+ "2000s",
+ "70's",
+ "70s",
+ "80's",
+ "80s",
+ "90's",
+ "90s",
+ "adult contemporary",
+ "adult hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream-163.zeno.fm/6gv76f1xruquv?zs=SvdWy-tsTtCXPZ9IZC0ASA",
+ "homepage": "https://studioflashback.com.br/",
+ "logoUrl": "https://pbs.twimg.com/media/GE7jNgZWQAEcxNb?format=png&name=240x240",
+ "votes": 480,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "c064c241-a2c2-4dd9-b889-b292535397fe"
+ },
+ {
+ "id": "fea104fc-d92f-4c73-bd5d-450634063dcb",
+ "name": "Rádio T 105,3 FM Ponta Grossa - PR",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portugues do brasil",
+ "tags": [
+ "pop music",
+ "sertanejo",
+ "sertanejo raiz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s1.mediacp.com.br:8984/stream",
+ "homepage": "https://www.radiot.fm/",
+ "logoUrl": "https://www.radiot.fm/images/logo4.fw.png",
+ "votes": 15,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "fea104fc-d92f-4c73-bd5d-450634063dcb"
+ },
+ {
+ "id": "a61eff3f-323b-4c7c-95da-8c9f804d5e88",
+ "name": "Bahia FM 88.7",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "brazilian music",
+ "entretenimento",
+ "música popular brasileira"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://ice.fabricahost.com.br/radiobahiafm",
+ "homepage": "https://www.ibahia.com/mundobahiafm",
+ "logoUrl": null,
+ "votes": 110,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "a61eff3f-323b-4c7c-95da-8c9f804d5e88"
+ },
+ {
+ "id": "07b05c0b-a80b-4654-8e60-a6f8128a613d",
+ "name": "CLUBE FM BRASILIA",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://8157.brasilstream.com.br/stream",
+ "homepage": "https://clube.fm/",
+ "logoUrl": "https://painel.clube.fm/wp-content/uploads/2022/05/Logo-Clube-105_5-min.png",
+ "votes": 108,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "07b05c0b-a80b-4654-8e60-a6f8128a613d"
+ },
+ {
+ "id": "7b630dda-fb58-4c39-ba30-2f6eed3361ef",
+ "name": "Piatã FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "axé",
+ "local music",
+ "local news",
+ "local radio",
+ "pagode"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.livespanel.com:9430/stream",
+ "homepage": "https://piatafm.com.br/",
+ "logoUrl": null,
+ "votes": 124,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b630dda-fb58-4c39-ba30-2f6eed3361ef"
+ },
+ {
+ "id": "78b66dbe-5b3d-4966-8844-02a2eee24faf",
+ "name": "R.VALE VERDE FM 96,66",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://ice.fabricahost.com.br/valeverdefm",
+ "homepage": "https://www.valeverdefm.com.br/",
+ "logoUrl": "https://valeverdefm.com.br/img/b1477f6674fb80a945ea178ecb46e51c.png",
+ "votes": 83,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "78b66dbe-5b3d-4966-8844-02a2eee24faf"
+ },
+ {
+ "id": "06da0d92-28c2-11e9-a80b-52543be04c81",
+ "name": "Rádio Cidade - Rio de Janeiro - 102.9 FM - ZYD462",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "brazilian rock",
+ "classic rock",
+ "hot adult contemporary",
+ "soft rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIOCIDADEAAC.aac",
+ "homepage": "https://radiocidade.fm/",
+ "logoUrl": null,
+ "votes": 5042,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "06da0d92-28c2-11e9-a80b-52543be04c81"
+ },
+ {
+ "id": "abd14170-1077-4330-b0a6-91a2f389310d",
+ "name": "Rádio Nova Paradiso Rio",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portugues do braasil",
+ "tags": [
+ "flashback"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/NOVABRASIL_RIOAAC.aac",
+ "homepage": "https://novaparadiso.com/",
+ "logoUrl": "https://novaparadiso.com/assets/img/logo_horizontal_colorida.png?v=1746670052262",
+ "votes": 27,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "abd14170-1077-4330-b0a6-91a2f389310d"
+ },
+ {
+ "id": "9f0466be-b6b0-4f7c-baff-f64555494804",
+ "name": "Groove Wave Lounge",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "english,portuguese,spanish",
+ "tags": [
+ "ambient lounge",
+ "jazz lounge",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stm1.srvif.com:7576/;",
+ "homepage": "https://www.groovewave.com/lounge/lounge.htm",
+ "logoUrl": "https://www.groovewave.com/favicon.ico",
+ "votes": 541,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f0466be-b6b0-4f7c-baff-f64555494804"
+ },
+ {
+ "id": "4a5e0a7c-8daf-4168-b125-d3aec2ee28a6",
+ "name": "Jovem Pan Patos de Minas",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://shout25.crossradio.com.br:24030//1",
+ "homepage": "https://jovempan.com.br/afiliada/patosdeminas-fm",
+ "logoUrl": "https://s.jpimg.com.br/wp-content/themes/jovempan/assets/build/images/favicons/apple-touch-icon.png",
+ "votes": 127,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4a5e0a7c-8daf-4168-b125-d3aec2ee28a6"
+ },
+ {
+ "id": "f0d81ba6-285c-4b93-97c9-4398d20c7797",
+ "name": "Kiss FM - 92.5 - São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://26593.live.streamtheworld.com/RADIO_KISSFM_ADP.aac",
+ "homepage": "https://kissfm.com.br/aovivo/",
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0d81ba6-285c-4b93-97c9-4398d20c7797"
+ },
+ {
+ "id": "3c835bae-67a2-48d1-adf6-c1d967ad3d31",
+ "name": "Rádio Campeira FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "gaúcha",
+ "nativa",
+ "pampa"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://servidor34-3.brlogic.com:8164/live?source=website",
+ "homepage": "https://campeirafm.com/",
+ "logoUrl": "https://public-rf-upload.minhawebradio.net/1952/favicon/bb8a3d7a6f6907b67bfd0b31ab9f1ff0.png",
+ "votes": 228,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "3c835bae-67a2-48d1-adf6-c1d967ad3d31"
+ },
+ {
+ "id": "247e4d32-39b8-48d7-a86a-ec6effea7723",
+ "name": "Radio Energia 97 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "esportes futebol",
+ "futebol",
+ "musica",
+ "noticias"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://streaming.inweb.com.br/energia",
+ "homepage": "https://www.97fm.com.br/",
+ "logoUrl": null,
+ "votes": 507,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "247e4d32-39b8-48d7-a86a-ec6effea7723"
+ },
+ {
+ "id": "0617d31e-d210-4b30-9763-6cf87104ca2f",
+ "name": "Rádio Metropolitana 98.5 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://ice.fabricahost.com.br/metropolitana985sp",
+ "homepage": "https://metropolitanafm.com.br/",
+ "logoUrl": "https://metropolitanafm.com.br/wp-content/themes/metro/assets/imgs/favicon/favicon-96x96-2.png",
+ "votes": 444,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0617d31e-d210-4b30-9763-6cf87104ca2f"
+ },
+ {
+ "id": "13dea9bd-e0f0-4bd6-b5f1-f56ed8a91f45",
+ "name": "89 Goiânia",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portuguese",
+ "tags": [
+ "alternative rock",
+ "classic rock",
+ "hard rock",
+ "indie rock",
+ "pop rock",
+ "rock",
+ "rock'n'roll",
+ "soft rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://ice.fabricahost.com.br/89aradiorockgo",
+ "homepage": "http://89goiania.com.br/",
+ "logoUrl": "http://89goiania.com.br/favicon.ico",
+ "votes": 185,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "13dea9bd-e0f0-4bd6-b5f1-f56ed8a91f45"
+ },
+ {
+ "id": "686f4b44-b40e-45da-9142-b712f2511302",
+ "name": "98FM BH",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://9554.brasilstream.com.br/stream?1736286819232",
+ "homepage": null,
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio18495_1565281774.png",
+ "votes": 52,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "686f4b44-b40e-45da-9142-b712f2511302"
+ },
+ {
+ "id": "2c3bf58f-fd12-4e93-bcde-4d7f1899faf1",
+ "name": "GFM Salvador Bahia FM 90.1",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "adult contemporary",
+ "brazilian music",
+ "classic hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://ice.fabricahost.com.br/radiogfm",
+ "homepage": "https://mytuner-radio.com/pt/radio/gfm-salvador-402269/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s5998/images/logod.png",
+ "votes": 103,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "2c3bf58f-fd12-4e93-bcde-4d7f1899faf1"
+ },
+ {
+ "id": "f39f6d0e-a534-4d21-9352-e35e3bdddd48",
+ "name": "Hunter FM - Pagode",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português brasil",
+ "tags": [
+ "pagode"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://live.hunter.fm/pagode_normal",
+ "homepage": "https://hunter.fm/",
+ "logoUrl": "https://hunter.fm/_nuxt/icons/icon_64x64.5c2fd0.png",
+ "votes": 122,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f39f6d0e-a534-4d21-9352-e35e3bdddd48"
+ },
+ {
+ "id": "fd792bab-3d55-4396-9c5d-81e122eb5edd",
+ "name": "Jovem Pan FM - Sorocaba 91.1",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "local news",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast2.hoost.com.br:8039/stream",
+ "homepage": "https://jovempan.com.br/afiliada/sorocaba-fm",
+ "logoUrl": "https://s.jpimg.com.br/wp-content/themes/jovempan/assets/build/images/favicons/apple-touch-icon.png",
+ "votes": 350,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "fd792bab-3d55-4396-9c5d-81e122eb5edd"
+ },
+ {
+ "id": "6a8fa132-f234-41b1-8160-76405b2ddf22",
+ "name": "MGT FORRÓ",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "forró"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://cast.mgtradio.net/radio/8050/aac",
+ "homepage": "https://www.mgtradio.net/",
+ "logoUrl": "https://www.mgtradio.net/favicon.ico",
+ "votes": 741,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6a8fa132-f234-41b1-8160-76405b2ddf22"
+ },
+ {
+ "id": "59b79175-8524-45ad-ba89-bb6c16d7e2c0",
+ "name": "Mix FM - Porto Alegre",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "jovem",
+ "pop-rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/MIXFM_POAAAC.aac",
+ "homepage": "http://www.mixfmpoa.com.br/",
+ "logoUrl": null,
+ "votes": 310,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "59b79175-8524-45ad-ba89-bb6c16d7e2c0"
+ },
+ {
+ "id": "f5a792cd-ad3a-47d8-97d4-f9e3d7817303",
+ "name": "Rádio Band 106.7 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "pagode",
+ "popular",
+ "samba",
+ "sertanejo"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://stm2.xcast.com.br:11264/stream",
+ "homepage": "https://www.bandfmcampinas.com/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio10362_1526480554.jpg",
+ "votes": 34,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f5a792cd-ad3a-47d8-97d4-f9e3d7817303"
+ },
+ {
+ "id": "09d32090-d718-4168-8720-ea4517e3481e",
+ "name": "Rádio CBN Campinas 99.1 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "debates & interviews",
+ "journalism",
+ "soccer"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://8214.brasilstream.com.br/stream",
+ "homepage": "http://www.portalcbncampinas.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio11233_1573682868.jpg",
+ "votes": 102,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "09d32090-d718-4168-8720-ea4517e3481e"
+ },
+ {
+ "id": "6be9089f-3fef-4b9f-ae3d-277c21986092",
+ "name": "Radio Clube do Pará",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "música y noticias"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://carajas2.jmvstream.com/live",
+ "homepage": "https://radioclube.dol.com.br/",
+ "logoUrl": null,
+ "votes": 36,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6be9089f-3fef-4b9f-ae3d-277c21986092"
+ },
+ {
+ "id": "8a600121-77ef-465a-a348-b814f056ed9e",
+ "name": "Radio Nova Instrumental",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português brasil",
+ "tags": [
+ "classic",
+ "instrumental",
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.radioempresabrasil.com.br/proxy/novainstrumental/stream",
+ "homepage": "https://streaming.radioempresabrasil.com.br/proxy/novainstrumental/stream",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240706_175522378.jpg?alt=media&token=09e9d779-5d6c-4e15-9f93-ce6616c54c1f",
+ "votes": 64,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "8a600121-77ef-465a-a348-b814f056ed9e"
+ },
+ {
+ "id": "c7d6315c-3bcd-40f6-a1b5-4bc1c8efecee",
+ "name": "Tropical Smooth Jazz",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "jazz",
+ "smooth jazz",
+ "suave"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://servidor32-3.brlogic.com:8230/live",
+ "homepage": "https://tropicalsmoothjazz.com/",
+ "logoUrl": "https://public-rf-upload.minhawebradio.net/47137/favicon/6c0b5a4fbc04adeb8117f49ccabeb70b.jpg",
+ "votes": 676,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c7d6315c-3bcd-40f6-a1b5-4bc1c8efecee"
+ },
+ {
+ "id": "4c51a2e0-b7b5-45bd-ba54-6ec2ec9743f4",
+ "name": "VIOLA VIVA CAIPIRA",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "caipira"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://centova.euroti.com.br:20055/stream",
+ "homepage": "https://violaviva.com.br/",
+ "logoUrl": "http://violaviva.com.br/wp-content/uploads/2024/12/4.png",
+ "votes": 136,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c51a2e0-b7b5-45bd-ba54-6ec2ec9743f4"
+ },
+ {
+ "id": "c69b53f2-0b2b-4f9f-9e68-5b84b499f06a",
+ "name": "Adoro Flashback",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "adulta",
+ "flashback",
+ "românticas"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://server01.ouvir.radio.br:8018/stream?1771866095421",
+ "homepage": "https://www.radiosnet.com/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio151308_1593879965.jpg",
+ "votes": 7,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c69b53f2-0b2b-4f9f-9e68-5b84b499f06a"
+ },
+ {
+ "id": "8c2922b9-b375-4a3d-97dd-7f8fa8d09512",
+ "name": "CBN Rio de Janeiro 92.5 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "live sports",
+ "local news",
+ "news",
+ "news talk",
+ "sports",
+ "sports news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/CBN_RJ_ADP.m3u8",
+ "homepage": "https://m.cbn.globoradio.globo.com/",
+ "logoUrl": null,
+ "votes": 564,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8c2922b9-b375-4a3d-97dd-7f8fa8d09512"
+ },
+ {
+ "id": "f548865c-6a60-4e56-9313-733e0ad66e2b",
+ "name": "cbn salvador 100.7 - link 2",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,português brasil",
+ "tags": [
+ "esportes",
+ "musica",
+ "noticias"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://sv1.audiostream.com.br/radio/8030/stream",
+ "homepage": "https://tudoradio.com/player/radio/2482-cbn",
+ "logoUrl": null,
+ "votes": 42,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f548865c-6a60-4e56-9313-733e0ad66e2b"
+ },
+ {
+ "id": "982497ba-0b80-4597-9ea0-f9789ea6d5ef",
+ "name": "instrumentales",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "español - latinoamerica",
+ "tags": [
+ "instrumental"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://protvradiostream.com:8350/live",
+ "homepage": "https://protvradiostream.com:8350/live",
+ "logoUrl": "null",
+ "votes": 150,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "982497ba-0b80-4597-9ea0-f9789ea6d5ef"
+ },
+ {
+ "id": "a071b291-88e7-46b9-ad93-c27e22efc3a9",
+ "name": "Jovem Pan Campinas",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "rádio 1900 - ponte preta"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://ssl.srvstm.com:6808/;",
+ "homepage": "https://jovempannewscampinas.com.br/",
+ "logoUrl": "https://jovempannewscampinas.com.br/wp-content/uploads/2020/10/JP-CAMPINAS-Logo-site-4.png",
+ "votes": 383,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a071b291-88e7-46b9-ad93-c27e22efc3a9"
+ },
+ {
+ "id": "77c0088f-9ae7-4bd3-a1de-edfc17f5ce86",
+ "name": "Jovem Pan FM - Brasília - DF - 106.3",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "contemporary hits radio",
+ "jovem",
+ "jovem pan",
+ "pop",
+ "pop rock",
+ "top 40"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://shout25.crossradio.com.br:18022/1",
+ "homepage": "https://jovempan.com.br/afiliada/brasilia-fm",
+ "logoUrl": "https://jpimg.com.br/uploads/2022/12/afiliadas-brasilia-106.3-500x500.jpg",
+ "votes": 139,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "77c0088f-9ae7-4bd3-a1de-edfc17f5ce86"
+ },
+ {
+ "id": "334768d5-38df-4e20-bd97-285acfaec937",
+ "name": "Massa FM São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "entertainment",
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stm01.virtualcast.com.br:8000/massasaopaulo",
+ "homepage": "https://www.massafm.com.br/",
+ "logoUrl": null,
+ "votes": 107,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "334768d5-38df-4e20-bd97-285acfaec937"
+ },
+ {
+ "id": "5839c451-da02-421a-b270-8932b162f627",
+ "name": "Melodia FM 97.5",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portugues do brasil,portuguese,português brasil",
+ "tags": [
+ "gospel"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://server01.ouvir.radio.br:8033/stream",
+ "homepage": "https://melodia.com.br/",
+ "logoUrl": "https://melodia.com.br/favicon.ico",
+ "votes": 417,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5839c451-da02-421a-b270-8932b162f627"
+ },
+ {
+ "id": "34559f57-54f4-4f03-b3c7-cb63316f3864",
+ "name": "Rádio Amigos do Samba",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português brasil",
+ "tags": [
+ "samba pagode"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stm8.voxhd.com.br:8342/",
+ "homepage": "https://amigosdoflashback2.wixsite.com/radioamigosdosamba",
+ "logoUrl": null,
+ "votes": 4,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "34559f57-54f4-4f03-b3c7-cb63316f3864"
+ },
+ {
+ "id": "29ca7136-4747-4dcf-92db-69ad65e2182b",
+ "name": "Rádio Buteco Sertanejo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portugues do brasil,portuguese",
+ "tags": [
+ "country music",
+ "moda de viola",
+ "modao",
+ "musica romantica",
+ "radio online",
+ "sertaneja",
+ "sertanejo",
+ "sertanejo raiz"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/6kumndewqbruv",
+ "homepage": "https://www.radiobutecosertanejo.com/",
+ "logoUrl": null,
+ "votes": 813,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "29ca7136-4747-4dcf-92db-69ad65e2182b"
+ },
+ {
+ "id": "13e3e176-b32a-49d2-86e3-9869dc5baab6",
+ "name": "RÁDIO SÓ MPB",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s27.maxcast.com.br:8103/live",
+ "homepage": "http://sompb.com.br/",
+ "logoUrl": null,
+ "votes": 416,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "13e3e176-b32a-49d2-86e3-9869dc5baab6"
+ },
+ {
+ "id": "60633a59-98ab-4372-a33d-b7f83513de0c",
+ "name": "Rádio Universidade 105.1 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português (brasil)",
+ "tags": [
+ "adulta",
+ "eclética"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://stm20.srvstm.com:7264/;?type=https&nocache=1",
+ "homepage": "https://universidadefm.com.br/",
+ "logoUrl": "https://universidadefm.com.br/favicon.ico",
+ "votes": 3,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "60633a59-98ab-4372-a33d-b7f83513de0c"
+ },
+ {
+ "id": "c371db98-d7af-46ed-b9d5-e749ac4e3c93",
+ "name": "Rádio Verdinha 92.5 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "português (brasil)",
+ "tags": [
+ "mix"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://5a1c76baf08c0.streamlock.net/z18-live/stream/playlist.m3u8",
+ "homepage": "https://verdinha.verdesmares.com.br/",
+ "logoUrl": "https://verdinha.verdesmares.com.br/static/verdinha/assets/img/favicon/favicon-196x196.png",
+ "votes": 24,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c371db98-d7af-46ed-b9d5-e749ac4e3c93"
+ },
+ {
+ "id": "b8c3bf71-6363-4658-aea7-72ce7efe0e61",
+ "name": "105 FM - É só alegria!",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "rap"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://appradio.app:8010//live",
+ "homepage": "https://radio105fm.com.br/",
+ "logoUrl": null,
+ "votes": 136,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b8c3bf71-6363-4658-aea7-72ce7efe0e61"
+ },
+ {
+ "id": "7379f99a-0f90-44a2-9f3c-fcc8fd9687a3",
+ "name": "BandNews FM Belo Horizonte",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "sports",
+ "talk"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BANDNEWSFM_BHAAC.aac",
+ "homepage": "https://www.band.uol.com.br/bandnews-fm",
+ "logoUrl": "https://commons.wikimedia.org/wiki/File:BandNews_FM_logo_2019.png",
+ "votes": 5,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7379f99a-0f90-44a2-9f3c-fcc8fd9687a3"
+ },
+ {
+ "id": "8b71f4cf-04aa-4d88-a340-b1c1cdf6e4e4",
+ "name": "BAVARIAN RADIO",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://br.lucasmultimedia.com/stream.ogg",
+ "homepage": "https://bavarianradio.com/",
+ "logoUrl": null,
+ "votes": 14,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "8b71f4cf-04aa-4d88-a340-b1c1cdf6e4e4"
+ },
+ {
+ "id": "d0823979-3e98-4d12-a5f6-3a995ec0e52f",
+ "name": "Conquista FM 97,7 Sertaneja",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese",
+ "tags": [
+ "country",
+ "sertanejo"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://rrdns-megasistema.webnow.com.br/conquista.mp3",
+ "homepage": "https://www.conquistafm.com.br/",
+ "logoUrl": null,
+ "votes": 140,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d0823979-3e98-4d12-a5f6-3a995ec0e52f"
+ },
+ {
+ "id": "2ecd468b-523e-4f35-8f5b-251390b642f0",
+ "name": "Hunter FM - Hits Brasil",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,português brasil",
+ "tags": [
+ "sertaneja",
+ "sertanejo"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://live.hunter.fm/hitsbrasil_normal",
+ "homepage": "https://hunter.fm/",
+ "logoUrl": "https://hunter.fm/_nuxt/icons/icon_64x64.5c2fd0.png",
+ "votes": 296,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "2ecd468b-523e-4f35-8f5b-251390b642f0"
+ },
+ {
+ "id": "72e626b2-aba6-4afa-933f-a6c5a61f16b6",
+ "name": "MIX São Paulo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/MIXFM_SAOPAULOAAC.aac?dist=mix-web-player-radio-ao-vivo&934992.6600449783",
+ "homepage": "https://radiomixfm.com.br/",
+ "logoUrl": "http://radiomixfm.com.br/wp-content/uploads/2017/06/logo-mix-pequeno.png",
+ "votes": 4,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "72e626b2-aba6-4afa-933f-a6c5a61f16b6"
+ },
+ {
+ "id": "962b7909-0601-11e8-ae97-52543be04c81",
+ "name": "Radio América Latina",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "brazilian music",
+ "paulista avenue",
+ "rsl",
+ "salsa"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.radiostreamlive.com/radioamericalatina_devices",
+ "homepage": "http://www.radioamericalatina.com/",
+ "logoUrl": "https://cdn-elements.radiostreamlive.com/v1/images/favicon.ico",
+ "votes": 1378,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "962b7909-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "030efc7c-8bd0-4fd2-9b52-e5d4e5d72f96",
+ "name": "Rádio Bandeirantes 85.7 FM",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "portuguese",
+ "tags": [
+ "journalism",
+ "soccer"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stm23.xcast.com.br:11284/stream",
+ "homepage": "https://www.radiobandeirantescampinas.com.br/",
+ "logoUrl": "https://img.radios.com.br/radio/lg/radio10412_1630622638.png",
+ "votes": 268,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "030efc7c-8bd0-4fd2-9b52-e5d4e5d72f96"
+ },
+ {
+ "id": "b0d6222c-8bf8-4fe9-8666-e4b66f7a9057",
+ "name": "Rádio Café Viola",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": "brazilian portuguese,portugues do brasil,portuguese",
+ "tags": [
+ "sertaneja",
+ "sertanejo",
+ "sertanejo raiz"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stm6.xcast.com.br:9328/;?1685284162874",
+ "homepage": "https://radiocafeviola.com.br/",
+ "logoUrl": null,
+ "votes": 283,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0d6222c-8bf8-4fe9-8666-e4b66f7a9057"
+ },
+ {
+ "id": "ab764881-4afe-4436-9582-1339fe0357ef",
+ "name": "Rádio Metropolitana 98.5 FM Sertanejo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://ice.fabricahost.com.br/metrospsertanejo",
+ "homepage": "https://metropolitanafm.com.br/",
+ "logoUrl": "https://metropolitanafm.com.br/wp-content/themes/metro/assets/imgs/favicon/favicon-96x96-2.png",
+ "votes": 1791,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ab764881-4afe-4436-9582-1339fe0357ef"
+ },
+ {
+ "id": "f4b06e3c-abd4-4ab8-b8d8-04b83e324cc2",
+ "name": "Rádio MGT Sertanejo",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://cast.mgtradio.net/radio/8000/aac",
+ "homepage": "https://www.mgtradio.net/",
+ "logoUrl": null,
+ "votes": 2636,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f4b06e3c-abd4-4ab8-b8d8-04b83e324cc2"
+ },
+ {
+ "id": "912ff6c7-afd2-45ab-b529-fd37e11b2900",
+ "name": "Terra FM Goiânia 104.3",
+ "country": "Brazil",
+ "countryCode": "BR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://12.stmip.net:8956/stream",
+ "homepage": "https://radioterrafm.com.br/",
+ "logoUrl": "https://radioterrafm.com.br/wp-content/uploads/2020/06/PR-LOGO-MOBV2-1.png",
+ "votes": 25,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "912ff6c7-afd2-45ab-b529-fd37e11b2900"
+ },
+ {
+ "id": "f4f82780-1bcb-4f5f-9f58-b0db5af0d568",
+ "name": "Radio Veselina",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "AAC",
+ "bitrate": 105,
+ "streamUrl": "https://bss1.neterra.tv/veselina/veselina.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 1938,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "f4f82780-1bcb-4f5f-9f58-b0db5af0d568"
+ },
+ {
+ "id": "2091bc8a-ced6-43cd-8f38-5b05d62ce3c5",
+ "name": "BadRock Hard & Heavy",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "hard rock",
+ "hardcore",
+ "heavy metal",
+ "heavy power metal",
+ "heavy rock",
+ "metal",
+ "power metal",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://play-radio0.jump.bg:7049/live",
+ "homepage": "https://badrockradio.net/",
+ "logoUrl": "https://www.badrockradio.net/wp-content/uploads/2024/06/960x0-100x100.webp",
+ "votes": 1512,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "2091bc8a-ced6-43cd-8f38-5b05d62ce3c5"
+ },
+ {
+ "id": "3a3b1465-6a6f-4289-901c-bd5890cb8370",
+ "name": "BNR Horizont",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://play.global.audio/testb.aac?dist=RADIOPLAY",
+ "homepage": "https://www.radioplay.bg/?radio=bnr",
+ "logoUrl": null,
+ "votes": 63,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a3b1465-6a6f-4289-901c-bd5890cb8370"
+ },
+ {
+ "id": "9f5946d9-301f-4cf7-a1e8-7bdf7280d924",
+ "name": "City HipHop R&B",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "hiphop r&b"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://play.global.audio/cityrabhi.aac",
+ "homepage": "https://radioplay.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/cityrab.png",
+ "votes": 687,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f5946d9-301f-4cf7-a1e8-7bdf7280d924"
+ },
+ {
+ "id": "736c9d38-8947-4d73-b5d8-347c592654fc",
+ "name": "Extreme Deep House Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "deep house",
+ "nu disco",
+ "vocal house"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://whsh4u-panel.com/proxy/yfryujzw/stream",
+ "homepage": "https://www.extremedeephouse.com/",
+ "logoUrl": "https://scontent.fbre4-1.fna.fbcdn.net/v/t39.30808-6/294865141_110190498433524_6398220129326637406_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=5f2048&_nc_ohc=gM8-afZumNgAX_ZBvv7&_nc_ht=scontent.fbre4-1.fna&oh=00_AfAuZDwZvdbnXoKWuNCS_pjQFLhTjwwOpzpD2aKQuDVF3Q&oe=65F139C1",
+ "votes": 1087,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "736c9d38-8947-4d73-b5d8-347c592654fc"
+ },
+ {
+ "id": "8fc1369b-c2fa-4cba-8563-548110540b12",
+ "name": "folk mix",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://listen.radiofolkmix.com/folkmixios",
+ "homepage": "https://radiofolkmix.com/",
+ "logoUrl": "https://radiofolkmix.com/wp-content/uploads/2024/01/cropped-radiofolkmix-180x180.png",
+ "votes": 111,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "8fc1369b-c2fa-4cba-8563-548110540b12"
+ },
+ {
+ "id": "96163d8b-0601-11e8-ae97-52543be04c81",
+ "name": "BG Estrada",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://play.global.audio/bgestrada",
+ "homepage": "https://bgradio.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/bgestrada.png",
+ "votes": 6196,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "96163d8b-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "7a9787ef-210e-4915-b604-c5b1e63ed525",
+ "name": "Avto Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/AVTORADIOAAC_L.aac",
+ "homepage": "https://www.avtoradio.bg/",
+ "logoUrl": "https://www.avtoradio.bg/ar_logo.f88b409f.png",
+ "votes": 295,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "7a9787ef-210e-4915-b604-c5b1e63ed525"
+ },
+ {
+ "id": "f7f48681-9777-47e4-9cb4-9ee86fd09229",
+ "name": "bTV Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cdn.bweb.bg/radio/btv-radio.mp3",
+ "homepage": "https://btvradio.bg/",
+ "logoUrl": "https://btvradio.bg/static/bg/microsites/btv/img/favicon.ico",
+ "votes": 245,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f7f48681-9777-47e4-9cb4-9ee86fd09229"
+ },
+ {
+ "id": "61f28b98-91ee-476b-9863-099b2aa58d10",
+ "name": "Balkan Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian,english,greek,macedonian,serbian",
+ "tags": [
+ "america",
+ "balkan",
+ "balkansko",
+ "best",
+ "bulgarian",
+ "folk",
+ "gracko",
+ "greek",
+ "macedonian",
+ "narodna",
+ "north",
+ "pop folk"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://samcloud.spacial.com/api/listen?sid=99064&m=sc&rid=175019&t=ssl",
+ "homepage": "https://balkanradio.com/",
+ "logoUrl": "https://balkanradio.com/img/Icon.png",
+ "votes": 18,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "61f28b98-91ee-476b-9863-099b2aa58d10"
+ },
+ {
+ "id": "d59e3d12-3052-4626-8092-27a2b83d1f6e",
+ "name": "BG Rap Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian,english",
+ "tags": [
+ "best",
+ "bg",
+ "dance",
+ "hip-hop",
+ "hiphop",
+ "music",
+ "pop",
+ "r&b",
+ "r&b/urban",
+ "radio",
+ "rap"
+ ],
+ "codec": "AAC",
+ "bitrate": 140,
+ "streamUrl": "https://home.radionrg.com/hls/bgrapradio/live.m3u8",
+ "homepage": "https://bgrapradio.com/",
+ "logoUrl": "https://bgrapradio.com/img/bgrapradio.png",
+ "votes": 16,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "d59e3d12-3052-4626-8092-27a2b83d1f6e"
+ },
+ {
+ "id": "968079d6-451b-44a9-9602-9ea06169e212",
+ "name": "Jazz FM - Sofia",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://cdn.bweb.bg/radio/jazz-fm.mp3",
+ "homepage": "https://jazzfm.bg/",
+ "logoUrl": "https://jazzfm.bg/static/bg/microsites/jazzfm/img/logo.png",
+ "votes": 37,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "968079d6-451b-44a9-9602-9ea06169e212"
+ },
+ {
+ "id": "6dae7585-bf43-4c4f-a3dd-6a6b44354c64",
+ "name": "Deep House Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "american english,english",
+ "tags": [
+ "best",
+ "deep",
+ "deep house",
+ "deep house edm music",
+ "deep house music radio",
+ "deep house online radio",
+ "deep house radio",
+ "house",
+ "radio",
+ "the best deep house music radio",
+ "the best deep house radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 140,
+ "streamUrl": "https://home.radionrg.com/hls/deephouse/live.m3u8",
+ "homepage": "https://deephouseradio.co/",
+ "logoUrl": "https://deephouseradio.co/img/deephouseradio.png",
+ "votes": 13,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6dae7585-bf43-4c4f-a3dd-6a6b44354c64"
+ },
+ {
+ "id": "0f928ada-4e0b-4306-a585-2c9b41bbca63",
+ "name": "EasyRadio.Bg (FLAC)",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "relaxation music"
+ ],
+ "codec": "OGG",
+ "bitrate": 128,
+ "streamUrl": "https://c30.radioboss.fm:8758/live",
+ "homepage": "https://easyradio.bg/",
+ "logoUrl": "https://static-media.streema.com/media/cache/be/44/be44390943e863372f8c554897327595.png",
+ "votes": 57,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f928ada-4e0b-4306-a585-2c9b41bbca63"
+ },
+ {
+ "id": "5ecd2cab-8138-4023-ba47-c8c2d8308d5f",
+ "name": "MAGIC FM",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 105,
+ "streamUrl": "https://bss1.neterra.tv/magicfm/magicfm.m3u8",
+ "homepage": "https://m.magic.bg/",
+ "logoUrl": "http://www.liveonlineradio.net/wp-content/uploads/2016/11/Magic-FM-Bulgaria.jpg",
+ "votes": 1147,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ecd2cab-8138-4023-ba47-c8c2d8308d5f"
+ },
+ {
+ "id": "1d93cdf8-81a1-4be7-bd96-57ea52341823",
+ "name": "Radio Nostalgia",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "2010s music",
+ "2010",
+ "2000s",
+ "hit music",
+ "pop music",
+ "pop",
+ "dance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/radionostalgia.mp3",
+ "homepage": "https://notefmbg.free.bg",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/note/radio-nostalgia.png",
+ "votes": 70,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d93cdf8-81a1-4be7-bd96-57ea52341823"
+ },
+ {
+ "id": "dacd257b-5478-4ed6-a588-c18f1bd7c27c",
+ "name": "Radio Vitosha",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 105,
+ "streamUrl": "https://bss1.neterra.tv/vitosha/vitosha.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 676,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "dacd257b-5478-4ed6-a588-c18f1bd7c27c"
+ },
+ {
+ "id": "3f107ac4-949c-4c65-8bea-d1cba3a7e728",
+ "name": "Vanilla",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "chill out"
+ ],
+ "codec": "AAC",
+ "bitrate": 160,
+ "streamUrl": "https://play.global.audio/vanillahi.aac",
+ "homepage": "https://radioplay.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/vanilla.png",
+ "votes": 1084,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f107ac4-949c-4c65-8bea-d1cba3a7e728"
+ },
+ {
+ "id": "8a6a10ac-1a60-4c18-a91b-0573d086d798",
+ "name": "Bg Estrada",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "bg only",
+ "dance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/BG_ESTRADAAAC_L.aac?dist=onlineradiobox",
+ "homepage": "https://www.bgradio.bg/",
+ "logoUrl": null,
+ "votes": 176,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8a6a10ac-1a60-4c18-a91b-0573d086d798"
+ },
+ {
+ "id": "685133a7-f3df-428c-aca7-e24ffd649049",
+ "name": "Darik",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "news",
+ "politics",
+ "sport"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a12.asurahosting.com/listen/darik_radio/radio.mp3",
+ "homepage": "https://darik.bg/",
+ "logoUrl": null,
+ "votes": 19,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "685133a7-f3df-428c-aca7-e24ffd649049"
+ },
+ {
+ "id": "d112f1ff-0501-4449-82c9-3d5935fc1a90",
+ "name": "Dark Wave Radomir",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "alternative",
+ "avantgarde",
+ "dark wave",
+ "ebm",
+ "experimental",
+ "grindcore",
+ "new wave",
+ "noise",
+ "post-punk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://dwrstream.eu/",
+ "homepage": "https://dwr.radio/",
+ "logoUrl": "https://dwr.radio/wp-content/uploads/2023/10/cropped-favicon.png",
+ "votes": 82,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "d112f1ff-0501-4449-82c9-3d5935fc1a90"
+ },
+ {
+ "id": "f6ccb065-120e-44e5-b230-75d3e800d3b6",
+ "name": "Deep Lounge",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "bulgarian",
+ "electro",
+ "english",
+ "house",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://radio.jump.bg/proxy/georgi18/stream",
+ "homepage": "https://deepradio.eu/lounge/",
+ "logoUrl": "https://deepradio.eu/wp-content/uploads/2019/10/cropped-DEEPRADIONEWLOGOfluterrre-192x192.png",
+ "votes": 273,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f6ccb065-120e-44e5-b230-75d3e800d3b6"
+ },
+ {
+ "id": "8dc17c0b-d06b-4cdc-8218-9847696c4d01",
+ "name": "Radio Party Mix",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast6.asurahosting.com/proxy/iliyan12/stream.mp3",
+ "homepage": "https://pozdravite.net/",
+ "logoUrl": "https://pozdravite.net/images/favicon.png",
+ "votes": 101,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8dc17c0b-d06b-4cdc-8218-9847696c4d01"
+ },
+ {
+ "id": "4fead057-98ce-4341-a7a8-b86b1784711d",
+ "name": "Darik Nostalgie",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://a10.asurahosting.com:7600/radio.mp3",
+ "homepage": "https://dariknostalgie.bg/",
+ "logoUrl": null,
+ "votes": 7,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4fead057-98ce-4341-a7a8-b86b1784711d"
+ },
+ {
+ "id": "b3a8e73b-f079-4f5f-adc3-3f75d219a3a5",
+ "name": "Metro DANCE Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian,english",
+ "tags": [
+ "club",
+ "dance",
+ "in the morning",
+ "news",
+ "talk show"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.reliastream.com/proxy/mdr?mp=/MDR",
+ "homepage": "https://metrocast.top/dance",
+ "logoUrl": "https://metrocast.top/wp-content/uploads/2021/09/metrodance.png",
+ "votes": 409,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3a8e73b-f079-4f5f-adc3-3f75d219a3a5"
+ },
+ {
+ "id": "a4dd70ed-9120-43db-95a2-47fc09205fe4",
+ "name": "Metro Love 80s",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.reliastream.com/proxy/love80?mp=/MLR80S",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 174,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4dd70ed-9120-43db-95a2-47fc09205fe4"
+ },
+ {
+ "id": "fcf6e570-c7ea-4982-8b50-8ece3e6837c6",
+ "name": "Metro Top Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://eu1.reliastream.com/proxy/mgr?mp=/MGR",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 81,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "fcf6e570-c7ea-4982-8b50-8ece3e6837c6"
+ },
+ {
+ "id": "5fbd494e-5350-4c9f-b6c9-4fbfc18dfc2d",
+ "name": "N-Joy BG",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://cdn.bweb.bg/radio/njoy.mp3",
+ "homepage": "https://njoy.bg/",
+ "logoUrl": "null",
+ "votes": 49,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5fbd494e-5350-4c9f-b6c9-4fbfc18dfc2d"
+ },
+ {
+ "id": "6b681eda-9c8f-4a3d-82db-6d6c8ac7cb08",
+ "name": "RADIO VERONIKA",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://play.global.audio/veronika64",
+ "homepage": "http://radioveronika.bg/",
+ "logoUrl": "https://radioveronika.bg/theme_assets/radioveronika/images/logo.png",
+ "votes": 148,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "6b681eda-9c8f-4a3d-82db-6d6c8ac7cb08"
+ },
+ {
+ "id": "d89f7a54-c6fa-4e60-a7ff-f787a4749576",
+ "name": "Radioplay Cafe",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "cafe"
+ ],
+ "codec": "AAC",
+ "bitrate": 160,
+ "streamUrl": "https://play.global.audio/cafehi.aac",
+ "homepage": "https://radioplay.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/cafe.png",
+ "votes": 74,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d89f7a54-c6fa-4e60-a7ff-f787a4749576"
+ },
+ {
+ "id": "24361df3-7795-4c09-a2a9-604b563f2f26",
+ "name": "Abdulbasit Abdulsamad",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "arabic",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.mp3islam.com/listen/abdulbasit/radio.mp3",
+ "homepage": "https://mp3islam.com/",
+ "logoUrl": "null",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "24361df3-7795-4c09-a2a9-604b563f2f26"
+ },
+ {
+ "id": "33b4fadb-b0ed-4db9-99d3-af347a1141f0",
+ "name": "Bad Rock Radio-Classic Rock",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.jump.bg:7489/live",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 70,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "33b4fadb-b0ed-4db9-99d3-af347a1141f0"
+ },
+ {
+ "id": "010265c7-9bf7-401b-8cf1-6dd124efc916",
+ "name": "Bad Rock Radio-Hard & Heavy Rock",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.jump.bg:7049/live",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 121,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "010265c7-9bf7-401b-8cf1-6dd124efc916"
+ },
+ {
+ "id": "6a52f8f9-4ff1-4443-b501-4507d6070dbb",
+ "name": "BadRock Classic Rock",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://play-radio0.jump.bg:7489/live",
+ "homepage": "https://play-radio0.jump.bg:7489/live",
+ "logoUrl": null,
+ "votes": 466,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6a52f8f9-4ff1-4443-b501-4507d6070dbb"
+ },
+ {
+ "id": "25608063-9335-43a9-a911-4697ea76a0ad",
+ "name": "BadRock Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "hard rock",
+ "hardcore",
+ "heavy metal",
+ "heavy power metal",
+ "heavy rock",
+ "metal",
+ "power metal",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.jump.bg:7028/live",
+ "homepage": "https://www.badrockradio.net/",
+ "logoUrl": "https://www.badrockradio.net/wp-content/uploads/2024/06/960x0-100x100.webp",
+ "votes": 180,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "25608063-9335-43a9-a911-4697ea76a0ad"
+ },
+ {
+ "id": "68db2b22-56ab-4f8e-96a6-e50012884f65",
+ "name": "BadRock Radio National",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radiocp.jump.bg/proxy/stan1?mp=/live",
+ "homepage": "https://www.badrockradio.net/",
+ "logoUrl": "https://badrockradio.net/wp-content/uploads/2025/01/max1-2.png",
+ "votes": 96,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "68db2b22-56ab-4f8e-96a6-e50012884f65"
+ },
+ {
+ "id": "5912285f-4424-49e8-bb24-9fe9a456891b",
+ "name": "City HipHop RaB",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "hiphop r&b"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://play.global.audio/cityrab.aac",
+ "homepage": "https://radioplay.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/cityrab.png",
+ "votes": 173,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5912285f-4424-49e8-bb24-9fe9a456891b"
+ },
+ {
+ "id": "8d6ccb47-cf6b-4bdf-a174-12578c07dd9e",
+ "name": "City Latin",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "latin"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://play.global.audio/citylatinhi.aac",
+ "homepage": "https://radioplay.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/citylatin.png",
+ "votes": 82,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8d6ccb47-cf6b-4bdf-a174-12578c07dd9e"
+ },
+ {
+ "id": "f659afac-bcf5-4122-9773-0c1c6e151893",
+ "name": "Classic FM",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://cdn.bweb.bg/radio/classic-fm.mp3",
+ "homepage": "http://www.classicfm.bg/",
+ "logoUrl": "https://classicfm.bg/static/bg/microsites/classicfm/img/logo_header.png",
+ "votes": 42,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f659afac-bcf5-4122-9773-0c1c6e151893"
+ },
+ {
+ "id": "f8b18196-6a49-40ab-b1bc-63ad45b3da50",
+ "name": "Easy Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://live.easyradio.bg/aac?type=.mp3",
+ "homepage": "https://easyradio.bg/#",
+ "logoUrl": "https://easyradio.bg/apple-touch-icon.png",
+ "votes": 52,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f8b18196-6a49-40ab-b1bc-63ad45b3da50"
+ },
+ {
+ "id": "abd6bf4b-210a-45da-ad7a-c87241c68040",
+ "name": "Euronews Bulgaria",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "bulgaria",
+ "euronews",
+ "news",
+ "новини"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://play.euronews.bg/stream?1710950223133",
+ "homepage": "https://radio.euronews.bg/",
+ "logoUrl": "https://radio.euronews.bg/wp-content/uploads/2024/12/Radio-Logo-Blue.jpg",
+ "votes": 89,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "abd6bf4b-210a-45da-ad7a-c87241c68040"
+ },
+ {
+ "id": "3539dc4a-670a-4c74-91e3-eb4d54a42ea6",
+ "name": "Maxx FM Bulgaria | HQ",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "dance",
+ "deep house",
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://play.radiomaxxfm.com/maxx-high",
+ "homepage": "https://radiomaxxfm.com/",
+ "logoUrl": "https://radiomaxxfm.com/wp-content/uploads/2021/09/maxxfmlogo.png",
+ "votes": 57,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3539dc4a-670a-4c74-91e3-eb4d54a42ea6"
+ },
+ {
+ "id": "652b1a93-eb0f-41d9-b030-a9215a73b21f",
+ "name": "Note FM",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/notefm.mp3",
+ "homepage": "https://notefmbg.free.bg/",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/note/note-fm.png",
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "652b1a93-eb0f-41d9-b030-a9215a73b21f"
+ },
+ {
+ "id": "de3b4926-f22f-4704-9b8d-29fd3c1337d1",
+ "name": "onlineDJradio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://play.onlinedjradio.com:7000/live",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 221,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "de3b4926-f22f-4704-9b8d-29fd3c1337d1"
+ },
+ {
+ "id": "de10a769-c277-4fa1-9549-9f98be87265b",
+ "name": "Radio 1 Bulgaria",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "90s",
+ "classic pop",
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://play.global.audio:80/radio164",
+ "homepage": "https://radio1.bg/",
+ "logoUrl": null,
+ "votes": 145,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "de10a769-c277-4fa1-9549-9f98be87265b"
+ },
+ {
+ "id": "345d48b7-bfe4-4e33-afeb-b5ab1d07aa96",
+ "name": "Radio Jugomania",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s8.yesstreaming.net:17051/autodj",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 1281,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "345d48b7-bfe4-4e33-afeb-b5ab1d07aa96"
+ },
+ {
+ "id": "77017883-8042-45a8-89ef-78b7d3d1ade0",
+ "name": "Radio Ruse",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.ruse.bg:8010/radioruse",
+ "homepage": "https://radioruse.com/",
+ "logoUrl": null,
+ "votes": 52,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "77017883-8042-45a8-89ef-78b7d3d1ade0"
+ },
+ {
+ "id": "8b700f14-99e7-4f77-84eb-3ff9d0ad69a0",
+ "name": "Radio The Voice",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 105,
+ "streamUrl": "https://bss1.neterra.tv/thevoicefm/thevoicefm.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 888,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8b700f14-99e7-4f77-84eb-3ff9d0ad69a0"
+ },
+ {
+ "id": "d994df65-5c71-48ec-b675-96b8d14bd4e9",
+ "name": "SWEET RADIO - BULGARIA",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "english",
+ "tags": [
+ "dance",
+ "deep house",
+ "nu disco"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.sweetradio.online:8001/HD",
+ "homepage": "https://sweetradio.online/",
+ "logoUrl": "https://sweetradio.online/wp-content/uploads/cropped-sweet-1a.png",
+ "votes": 139,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "d994df65-5c71-48ec-b675-96b8d14bd4e9"
+ },
+ {
+ "id": "adc3d8e1-abab-478f-9730-852e749f9504",
+ "name": "XRaydio 1 – Your Kaleidoscope Of Sounds",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "acid house",
+ "americana",
+ "disco",
+ "dream pop",
+ "electro",
+ "garage punk",
+ "indie",
+ "noise rock",
+ "post punk",
+ "psychedelic",
+ "shoegaze",
+ "synthwave"
+ ],
+ "codec": "AAC",
+ "bitrate": 160,
+ "streamUrl": "https://xraydio.ddns.net/live",
+ "homepage": "https://xraydio.net/",
+ "logoUrl": null,
+ "votes": 51,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "adc3d8e1-abab-478f-9730-852e749f9504"
+ },
+ {
+ "id": "55bca38f-f222-405a-98f9-7f809c43539d",
+ "name": "XRaydio 2 – Your Vintage Jukebox",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "vintage",
+ "oldies",
+ "jet set lounge",
+ "garage",
+ "mod",
+ "vintage soul",
+ "roughneck country",
+ "bubblegum pop",
+ "glam rock",
+ "funk",
+ "soundtracks",
+ "library music"
+ ],
+ "codec": "AAC",
+ "bitrate": 160,
+ "streamUrl": "https://xraydio.ddns.net/jukebox",
+ "homepage": "https://xraydio.net/",
+ "logoUrl": "https://xraydio.net/wp-content/uploads/2024/03/2.jpg",
+ "votes": 67,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "55bca38f-f222-405a-98f9-7f809c43539d"
+ },
+ {
+ "id": "e00ed8d4-5a16-4361-8142-0aad6b0326fd",
+ "name": "XRaydio 3 – Your Rock & Roll Partner In Crime",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "blues punk",
+ "garage rock",
+ "glam rock",
+ "outlaw country",
+ "power pop",
+ "psychobilly",
+ "pub rock",
+ "rock & roll",
+ "sludge",
+ "southern rock",
+ "space rock",
+ "stoner rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 160,
+ "streamUrl": "https://xraydio.ddns.net/xraydio3",
+ "homepage": "https://xraydio.net/",
+ "logoUrl": "https://xraydio.net/wp-content/uploads/2024/03/3.jpg",
+ "votes": 58,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e00ed8d4-5a16-4361-8142-0aad6b0326fd"
+ },
+ {
+ "id": "9ff0313b-5adf-4b1a-85f8-0eda7926f8d3",
+ "name": "Bad Rock Radio 1",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://play-radio0.jump.bg:7028/live",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 158,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9ff0313b-5adf-4b1a-85f8-0eda7926f8d3"
+ },
+ {
+ "id": "0c5c526f-d09f-49d7-89c6-4e82fe55b470",
+ "name": "Braille FM",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.jump.bg:7181/live",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 19,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c5c526f-d09f-49d7-89c6-4e82fe55b470"
+ },
+ {
+ "id": "0affe3d8-31d1-49a8-aa4e-6087255b1951",
+ "name": "Cherveniat Papagal",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-64.zeno.fm/80qzq207rm0uv?zs=_xFVUn2nS3qDiPZ-lCCmIQ",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 36,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "0affe3d8-31d1-49a8-aa4e-6087255b1951"
+ },
+ {
+ "id": "a149f4b4-db63-4c6b-ab20-b6f9296d0eb6",
+ "name": "City Latin",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "latin"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://play.global.audio/citylatin.aac",
+ "homepage": "https://radioplay.bg/",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/citylatin.png",
+ "votes": 149,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a149f4b4-db63-4c6b-ab20-b6f9296d0eb6"
+ },
+ {
+ "id": "19962207-b878-4e0b-9ec6-f23bcd8b70b6",
+ "name": "City Radio Bulgaria",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian,english",
+ "tags": [
+ "hits"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://play.global.audio/city.opus",
+ "homepage": "http://www.city.bg/",
+ "logoUrl": null,
+ "votes": 82,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "19962207-b878-4e0b-9ec6-f23bcd8b70b6"
+ },
+ {
+ "id": "88f7e954-62de-4a53-88c2-4d25caf4c5a6",
+ "name": "DanPen Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://server.danpenradio.net/listen/danpen_radio/radio.mp3",
+ "homepage": "https://danpenradio.net/",
+ "logoUrl": "https://danpenradio.net/wp-content/uploads/2024/07/cropped-7-192x192.png",
+ "votes": 2,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "88f7e954-62de-4a53-88c2-4d25caf4c5a6"
+ },
+ {
+ "id": "413f8cb1-81d9-46b2-a329-18c97075d705",
+ "name": "Easy Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "OGG",
+ "bitrate": 16,
+ "streamUrl": "https://live.easyradio.bg/flac",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "413f8cb1-81d9-46b2-a329-18c97075d705"
+ },
+ {
+ "id": "280a4ae0-6946-4db7-8f5f-9cf122cfca1c",
+ "name": "EILO Techno Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "techno"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://eilo.org/streamer.php?ch=techno",
+ "homepage": "https://www.eilo.org/",
+ "logoUrl": "https://i.postimg.cc/jdVgYPdj/logo600.jpg",
+ "votes": 59,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "280a4ae0-6946-4db7-8f5f-9cf122cfca1c"
+ },
+ {
+ "id": "c7b0ec29-d191-41bd-8294-6086902b4166",
+ "name": "EILO Trance Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://eilo.org/streamer.php?ch=trance",
+ "homepage": "https://www.eilo.org/",
+ "logoUrl": null,
+ "votes": 47,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c7b0ec29-d191-41bd-8294-6086902b4166"
+ },
+ {
+ "id": "70176545-10de-4ea3-9073-e8f06ec04261",
+ "name": "Metro Country Rock HD",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "country",
+ "country rock",
+ "metro",
+ "modern country",
+ "rock",
+ "андрей",
+ "бодра",
+ "гергана",
+ "смяна"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.jump.bg/proxy/feed104?mp=/MSRR",
+ "homepage": "https://metrocast.top/",
+ "logoUrl": "https://metrocast.top/wp-content/uploads/2023/03/COUNTRY-ROCK-HD-LOGO-FINAL.png",
+ "votes": 39,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "70176545-10de-4ea3-9073-e8f06ec04261"
+ },
+ {
+ "id": "7128ba37-7fd9-4e14-95f3-71178e101526",
+ "name": "Metro Love Hits",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.reliastream.com/proxy/service?mp=/service",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 38,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "7128ba37-7fd9-4e14-95f3-71178e101526"
+ },
+ {
+ "id": "3ad3c940-88ca-497b-986e-e8dca1951b28",
+ "name": "Metro Love Xmas Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "128k",
+ "christmas",
+ "hd",
+ "love",
+ "mp3",
+ "xmas",
+ "коледа",
+ "коледна музика"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.jump.bg/proxy/feedyyy02?mp=/MLR70S",
+ "homepage": "https://metrocast.top/",
+ "logoUrl": "https://metrocast.top/wp-content/uploads/2022/10/metro-love-xmas.png",
+ "votes": 18,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ad3c940-88ca-497b-986e-e8dca1951b28"
+ },
+ {
+ "id": "3cca606d-6b4f-4644-8139-5d11fb897500",
+ "name": "radio Maia",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.rn-tv.com:8000/stream/1/",
+ "homepage": "https://radiomaia.com/",
+ "logoUrl": "https://radiomaia.com/wp-content/themes/radio/images/favicons/apple-touch-icon-120x120.png",
+ "votes": 397,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3cca606d-6b4f-4644-8139-5d11fb897500"
+ },
+ {
+ "id": "8035abbd-9c9a-4a00-a789-cd76449687c4",
+ "name": "Radio Nova",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://25453.live.streamtheworld.com/RADIO_NOVAAAC_H.aac",
+ "homepage": "https://www.radionova.bg/",
+ "logoUrl": "https://i.postimg.cc/x8sLgGC6/radio-default-banner.jpg",
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8035abbd-9c9a-4a00-a789-cd76449687c4"
+ },
+ {
+ "id": "277a3721-3418-4fe4-9a6e-1ea87f4db9d5",
+ "name": "Radio Zorana Sofia",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radio.jump.bg/proxy/radio12/stream",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 409,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "277a3721-3418-4fe4-9a6e-1ea87f4db9d5"
+ },
+ {
+ "id": "72ed6ad2-92b4-47f1-9cea-b203fe237f9d",
+ "name": "Радио „Епархийски глас“",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.mitropolia-sofia.org:7610/stream",
+ "homepage": "https://radio-glas.mitropolia-sofia.org/",
+ "logoUrl": "https://mitropolia-sofia.org/wp-content/uploads/2023/09/heder-newvision5-1-150x150.png",
+ "votes": 30,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "72ed6ad2-92b4-47f1-9cea-b203fe237f9d"
+ },
+ {
+ "id": "020ffe98-a5dc-4b6e-9913-864ab12a2f58",
+ "name": "Радио Зиг Заг - Най-яките парчета",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "dance",
+ "pop",
+ "rnb and 90's"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radyo.yayin.com.tr:4474/stream",
+ "homepage": "https://radio-zigzag.free.bg/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20250508_104302681.jpg?alt=media&token=1d8d60a0-15a3-4887-8a66-97cbe389bc00",
+ "votes": 11,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "020ffe98-a5dc-4b6e-9913-864ab12a2f58"
+ },
+ {
+ "id": "971e9589-29d4-4db3-872b-542e3562b3c3",
+ "name": "Deluxe Radio Bulgaria | HQ",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "ambient",
+ "chillout",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://play.radiomaxxfm.com/deluxe-high",
+ "homepage": "https://radiomaxxfm.com/",
+ "logoUrl": "https://radiomaxxfm.com/wp-content/uploads/2021/09/deluxe.png",
+ "votes": 80,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "971e9589-29d4-4db3-872b-542e3562b3c3"
+ },
+ {
+ "id": "80561ce4-5000-4b59-bb2b-67567473230e",
+ "name": "DJ ZONE House Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.djzone.mobi/?nocache=1772715340631",
+ "homepage": "https://djzone.mobi/",
+ "logoUrl": "https://djzone.mobi/wp-content/themes/fortunato-child/icons/icon-192.png",
+ "votes": 4,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "80561ce4-5000-4b59-bb2b-67567473230e"
+ },
+ {
+ "id": "eeab63e3-9d8c-4b8e-8139-44412206400a",
+ "name": "Easy Radio BG",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "internet"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.easyradio.bg/192?type=.mp3",
+ "homepage": "https://live.easyradio.bg/192?type=.mp3",
+ "logoUrl": "null",
+ "votes": 12,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "eeab63e3-9d8c-4b8e-8139-44412206400a"
+ },
+ {
+ "id": "c0404432-079d-41c3-b492-2ca708c4e35d",
+ "name": "House Music Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "american english,english",
+ "tags": [
+ "house"
+ ],
+ "codec": "AAC",
+ "bitrate": 140,
+ "streamUrl": "https://home.radionrg.com/hls/housemusic/live.m3u8",
+ "homepage": "https://housemusic.co/",
+ "logoUrl": "https://housemusic.co/img/housemusic.png",
+ "votes": 5,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "c0404432-079d-41c3-b492-2ca708c4e35d"
+ },
+ {
+ "id": "55829f8a-368b-493c-85fe-baa9065412a8",
+ "name": "Metro Love 00s",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://eu1.reliastream.com/proxy/metroplusc?mp=/MLR2K",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 28,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "55829f8a-368b-493c-85fe-baa9065412a8"
+ },
+ {
+ "id": "6866b413-18de-4eff-92d2-2405598a43a7",
+ "name": "Metro Love 90s Plus",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.reliastream.com/proxy/love80?mp=/MLR90S",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 291,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "6866b413-18de-4eff-92d2-2405598a43a7"
+ },
+ {
+ "id": "c10f82ec-a899-469f-a371-2466ffca524c",
+ "name": "Metro Urban Hits",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "rap"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.reliastream.com/proxy/metroxmas?mp=/MCR",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "c10f82ec-a899-469f-a371-2466ffca524c"
+ },
+ {
+ "id": "f610872e-d45f-4830-b792-1be6f49dccec",
+ "name": "Metro Virtuoso Hits",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.reliastream.com/proxy/mvr?mp=/MVR",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 29,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "f610872e-d45f-4830-b792-1be6f49dccec"
+ },
+ {
+ "id": "8123fac5-890c-4dd1-b306-71f511d3fbf1",
+ "name": "Radio NRG",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "best",
+ "dance",
+ "hip-hop",
+ "hit",
+ "hits",
+ "modern",
+ "music",
+ "nrg",
+ "nrj",
+ "party",
+ "party hits",
+ "party mix"
+ ],
+ "codec": "AAC",
+ "bitrate": 140,
+ "streamUrl": "https://home.radionrg.com/hls/live/live.m3u8",
+ "homepage": "https://radionrg.com/",
+ "logoUrl": "https://radionrg.com/img/radionrg.png",
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "8123fac5-890c-4dd1-b306-71f511d3fbf1"
+ },
+ {
+ "id": "7c1f1bff-d7d3-41b3-b640-8ce2757b2f4a",
+ "name": "Sunny Beach Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://sunny-beachradio.stream.laut.fm/sunny-beachradio",
+ "homepage": "https://www.facebook.com/SunnyBeachRadio.Bulgaria/",
+ "logoUrl": null,
+ "votes": 116,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c1f1bff-d7d3-41b3-b640-8ce2757b2f4a"
+ },
+ {
+ "id": "bec81518-f9d9-48b5-a390-834be7f15223",
+ "name": "Victoria Radio",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": null,
+ "tags": [
+ "dance",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://play.radiomaxxfm.com/victoriafm",
+ "homepage": "https://radiomaxxfm.com/",
+ "logoUrl": "https://radiomaxxfm.com/wp-content/uploads/2021/09/victoriafm.png",
+ "votes": 25,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "bec81518-f9d9-48b5-a390-834be7f15223"
+ },
+ {
+ "id": "73f63aaa-b9f6-4a2b-b7fb-47b7a246b04c",
+ "name": "Коледно радио",
+ "country": "Bulgaria",
+ "countryCode": "BG",
+ "language": "bulgarian",
+ "tags": [
+ "aac",
+ "christmas",
+ "hd",
+ "коледа",
+ "коледна музика",
+ "коледно радио"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://play.global.audio/radio1-koledahi.aac",
+ "homepage": "https://www.radio1.bg/article/xmas-radio",
+ "logoUrl": "https://www.radioplay.bg/assets/logos/koledno_lilly.png",
+ "votes": 53,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "73f63aaa-b9f6-4a2b-b7fb-47b7a246b04c"
+ },
{
"id": "7afae7e3-8d06-42f5-b59e-a52d6e09e60e",
"name": "# RdMix Classic Rock 70s 80s 90s",
@@ -5036,7 +12164,7 @@
"homepage": "https://radiodimensionemix.torontocast.stream/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_1bad7e5fb9a54196b2ac2c2fe71d6e4f~mv2.jpg",
"votes": 3883,
- "clickcount": 75,
+ "clickcount": 72,
"source": "radio-browser",
"sourceStationUuid": "7afae7e3-8d06-42f5-b59e-a52d6e09e60e"
},
@@ -5066,7 +12194,7 @@
"homepage": "https://zeno.fm/radio/100-best-ibiza-deep-house-/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_cf8747dc2b804de09c56359c324dd1f5~mv2.jpg",
"votes": 1154,
- "clickcount": 58,
+ "clickcount": 57,
"source": "radio-browser",
"sourceStationUuid": "64d74c72-025e-4cea-8a32-906812691731"
},
@@ -5096,7 +12224,7 @@
"homepage": "https://radiodimensionemix.torontocast.stream/",
"logoUrl": null,
"votes": 1439,
- "clickcount": 46,
+ "clickcount": 45,
"source": "radio-browser",
"sourceStationUuid": "cf14b5ee-f03e-4468-8ce1-379f171fd8c4"
},
@@ -5154,7 +12282,7 @@
"homepage": "https://radiosuitenetwork.torontocast.stream/airport-lounge-radio/",
"logoUrl": "https://favicon-generator.org/favicon-generator/htdocs/favicons/2023-12-16/9274e8a4803971186ff5c45359ab77a4.ico.png",
"votes": 2052,
- "clickcount": 39,
+ "clickcount": 40,
"source": "radio-browser",
"sourceStationUuid": "02569932-0b3c-4938-9d3e-b00b2158d40b"
},
@@ -5180,7 +12308,7 @@
"homepage": "https://radiosuitenetwork.torontocast.stream/",
"logoUrl": null,
"votes": 7875,
- "clickcount": 32,
+ "clickcount": 33,
"source": "radio-browser",
"sourceStationUuid": "a3253a96-a1ba-4cf5-bf4b-ec7988afcfd3"
},
@@ -5230,10 +12358,40 @@
"homepage": "https://ici.radio-canada.ca/premiere",
"logoUrl": "https://ici.radio-canada.ca/favicon.ico",
"votes": 4591,
- "clickcount": 31,
+ "clickcount": 27,
"source": "radio-browser",
"sourceStationUuid": "cc527ea6-060f-4fe8-b31a-cad732ff7d3e"
},
+ {
+ "id": "e9577c10-e299-4bb8-9313-c6cc2070c1f3",
+ "name": "# RdMix Italo Disco 80s",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "1980",
+ "1980s",
+ "1980s hits",
+ "80's",
+ "80er",
+ "80s",
+ "anni 80",
+ "classic hits",
+ "club dance",
+ "club hits",
+ "dance",
+ "dance music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://cast1.torontocast.com:2130/stream",
+ "homepage": "https://radiodimensionemix.torontocast.stream/",
+ "logoUrl": "https://static.wixstatic.com/media/f361b3_12e18c80af1f44a283eb3115b0ddd750~mv2.jpg",
+ "votes": 1140,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "e9577c10-e299-4bb8-9313-c6cc2070c1f3"
+ },
{
"id": "89b63085-db05-4c2b-86a4-ee2f17ed2018",
"name": "# 100 GREATEST CLASSICAL MUSIC",
@@ -5260,7 +12418,7 @@
"homepage": "https://100-greatest-network.torontocast.stream/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_f977feb1ff14484cb53e8bf0fbff1801~mv2.jpg",
"votes": 779,
- "clickcount": 27,
+ "clickcount": 25,
"source": "radio-browser",
"sourceStationUuid": "89b63085-db05-4c2b-86a4-ee2f17ed2018"
},
@@ -5290,40 +12448,10 @@
"homepage": "https://100-greatest-network.torontocast.stream/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_a5ce07773ea14d209785044fbeb26dca~mv2.jpg",
"votes": 2365,
- "clickcount": 27,
+ "clickcount": 24,
"source": "radio-browser",
"sourceStationUuid": "d0df2a51-9cd3-4f3e-977d-aab92ddef7a3"
},
- {
- "id": "e9577c10-e299-4bb8-9313-c6cc2070c1f3",
- "name": "# RdMix Italo Disco 80s",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "1980",
- "1980s",
- "1980s hits",
- "80's",
- "80er",
- "80s",
- "anni 80",
- "classic hits",
- "club dance",
- "club hits",
- "dance",
- "dance music"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://cast1.torontocast.com:2130/stream",
- "homepage": "https://radiodimensionemix.torontocast.stream/",
- "logoUrl": "https://static.wixstatic.com/media/f361b3_12e18c80af1f44a283eb3115b0ddd750~mv2.jpg",
- "votes": 1140,
- "clickcount": 27,
- "source": "radio-browser",
- "sourceStationUuid": "e9577c10-e299-4bb8-9313-c6cc2070c1f3"
- },
{
"id": "34a15ee8-a71b-4004-8fce-83650b46af66",
"name": "100% ACID JAZZ",
@@ -5350,7 +12478,7 @@
"homepage": "https://radiosuitenetwork.torontocast.stream/100-acid-jazz/",
"logoUrl": "https://d1ujqdpfgkvqfi.cloudfront.net/favicon-generator/htdocs/favicons/2024-10-25/f83dbfeda4fbcf3399eb5afd0949c4b1.ico.png",
"votes": 527,
- "clickcount": 27,
+ "clickcount": 24,
"source": "radio-browser",
"sourceStationUuid": "34a15ee8-a71b-4004-8fce-83650b46af66"
},
@@ -5369,10 +12497,40 @@
"homepage": "https://www.cbc.ca/listen/live-radio",
"logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse1.mm.bing.net%2Fth%3Fid%3DOIP._kBBu0jkxW7vsBMbUIlxpwHaJA%26pid%3DApi&f=1",
"votes": 4606,
- "clickcount": 17,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "147a830e-fbc3-4260-9504-6dcc62530923"
},
+ {
+ "id": "77871905-48cd-465c-8d25-dd14ae536656",
+ "name": "100 % COVERS LOUNGE",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "ambient",
+ "ambient and relaxation music",
+ "bossa nova",
+ "canada",
+ "chillout+lounge",
+ "covers",
+ "deep ambient",
+ "deep house",
+ "dub",
+ "house",
+ "jazz",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://az1.mediacp.eu/listen/100coverslounge/radio.mp3",
+ "homepage": "https://radiosuitenetwork.torontocast.stream/100-covers-lounge/",
+ "logoUrl": null,
+ "votes": 183,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "77871905-48cd-465c-8d25-dd14ae536656"
+ },
{
"id": "75db29d2-9abd-4b2b-b16c-a8decd86a587",
"name": "SENSUAL LOUNGE RADIO",
@@ -5399,7 +12557,7 @@
"homepage": "https://radiosuitenetwork.torontocast.stream/sensual-lounge",
"logoUrl": "https://d1ujqdpfgkvqfi.cloudfront.net/favicon-generator/htdocs/favicons/2025-02-16/253ad4a8eaed27bf80efa9d428914089.ico.png",
"votes": 328,
- "clickcount": 17,
+ "clickcount": 18,
"source": "radio-browser",
"sourceStationUuid": "75db29d2-9abd-4b2b-b16c-a8decd86a587"
},
@@ -5429,40 +12587,10 @@
"homepage": "https://radiosuitenetwork.torontocast.stream/smooth-jazz-deluxe/",
"logoUrl": "https://d1ujqdpfgkvqfi.cloudfront.net/favicon-generator/htdocs/favicons/2025-04-29/b4058cf6abde795b40675623669b665f.ico.png",
"votes": 493,
- "clickcount": 17,
+ "clickcount": 18,
"source": "radio-browser",
"sourceStationUuid": "f98c7b97-e67c-4aea-b91c-b08ffcef8343"
},
- {
- "id": "77871905-48cd-465c-8d25-dd14ae536656",
- "name": "100 % COVERS LOUNGE",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "ambient",
- "ambient and relaxation music",
- "bossa nova",
- "canada",
- "chillout+lounge",
- "covers",
- "deep ambient",
- "deep house",
- "dub",
- "house",
- "jazz",
- "lounge"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://az1.mediacp.eu/listen/100coverslounge/radio.mp3",
- "homepage": "https://radiosuitenetwork.torontocast.stream/100-covers-lounge/",
- "logoUrl": null,
- "votes": 183,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "77871905-48cd-465c-8d25-dd14ae536656"
- },
{
"id": "cff0d32f-9773-4239-8f0c-0e4d44ccb356",
"name": "CFIX-FM \"Rouge FM 96.9\" Saguenay, QC",
@@ -5480,31 +12608,10 @@
"homepage": "https://www.iheartradio.ca/rouge-fm/rouge-fm-saguenay/",
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/CFIX_Rouge96%2C9fm_logo.png/250px-CFIX_Rouge96%2C9fm_logo.png",
"votes": 100,
- "clickcount": 13,
+ "clickcount": 14,
"source": "radio-browser",
"sourceStationUuid": "cff0d32f-9773-4239-8f0c-0e4d44ccb356"
},
- {
- "id": "9034682c-5121-11e8-a4d1-52543be04c81",
- "name": "WEFUNK",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "funk",
- "hip hop",
- "soul"
- ],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://s-17.wefunkradio.com:8443/wefunk64.mp3",
- "homepage": "http://www.wefunkradio.com/",
- "logoUrl": "https://cache.wefunkradio.com/images-small/apple-touch-icon.png",
- "votes": 386,
- "clickcount": 13,
- "source": "radio-browser",
- "sourceStationUuid": "9034682c-5121-11e8-a4d1-52543be04c81"
- },
{
"id": "4cc3e959-b572-4285-99e2-069151d03b5e",
"name": "# 100 GREATEST JAZZ LOUNGE BAR",
@@ -5531,7 +12638,7 @@
"homepage": "https://100-greatest-network.torontocast.stream/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_2722a2a63db342f0901576a0168f2571~mv2.jpg",
"votes": 1043,
- "clickcount": 12,
+ "clickcount": 13,
"source": "radio-browser",
"sourceStationUuid": "4cc3e959-b572-4285-99e2-069151d03b5e"
},
@@ -5555,6 +12662,27 @@
"source": "radio-browser",
"sourceStationUuid": "8c957443-7a60-4fa2-9597-a30dac191a70"
},
+ {
+ "id": "9034682c-5121-11e8-a4d1-52543be04c81",
+ "name": "WEFUNK",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "funk",
+ "hip hop",
+ "soul"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://s-17.wefunkradio.com:8443/wefunk64.mp3",
+ "homepage": "http://www.wefunkradio.com/",
+ "logoUrl": "https://cache.wefunkradio.com/images-small/apple-touch-icon.png",
+ "votes": 386,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "9034682c-5121-11e8-a4d1-52543be04c81"
+ },
{
"id": "a2fa1a45-616d-48cd-8fe2-a866b205c4f8",
"name": "80s New Wave Radio",
@@ -5614,26 +12742,33 @@
"homepage": "https://www.1019rock.ca/",
"logoUrl": null,
"votes": 393,
- "clickcount": 9,
+ "clickcount": 10,
"source": "radio-browser",
"sourceStationUuid": "336f18d8-6a0d-4422-9e70-785648d6c61f"
},
{
- "id": "44db1e25-6942-11ea-b1cf-52543be04c81",
- "name": "680 News Toronto",
+ "id": "aa6ee95d-e208-4592-a121-047056106596",
+ "name": "Ancient FM",
"country": "Canada",
"countryCode": "CA",
- "language": "english",
- "tags": [],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://rogers-hls.leanstream.co/rogers/tor680.stream/playlist.m3u8",
- "homepage": "https://www.680news.com/",
- "logoUrl": "https://www.680news.com/favicon.ico",
- "votes": 5680,
- "clickcount": 9,
+ "language": "english,french",
+ "tags": [
+ "ancient music",
+ "classical",
+ "folk",
+ "medieval",
+ "mittelalter",
+ "renaissance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediaserv73.live-streams.nl:18058/stream",
+ "homepage": "https://www.ancientfm.com/",
+ "logoUrl": null,
+ "votes": 3114,
+ "clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "44db1e25-6942-11ea-b1cf-52543be04c81"
+ "sourceStationUuid": "aa6ee95d-e208-4592-a121-047056106596"
},
{
"id": "f2f12449-3eb6-46c2-92bb-1ee912ac208c",
@@ -5658,70 +12793,21 @@
"sourceStationUuid": "f2f12449-3eb6-46c2-92bb-1ee912ac208c"
},
{
- "id": "56afb6c6-b221-45ae-9c50-03ae736a49fd",
- "name": "98.5FM",
- "country": "Canada",
- "countryCode": "CA",
- "language": null,
- "tags": [
- "talk & speech"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/CHMPFMAAC.aac",
- "homepage": null,
- "logoUrl": null,
- "votes": 266,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "56afb6c6-b221-45ae-9c50-03ae736a49fd"
- },
- {
- "id": "aa6ee95d-e208-4592-a121-047056106596",
- "name": "Ancient FM",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english,french",
- "tags": [
- "ancient music",
- "classical",
- "folk",
- "medieval",
- "mittelalter",
- "renaissance"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://mediaserv73.live-streams.nl:18058/stream",
- "homepage": "https://www.ancientfm.com/",
- "logoUrl": null,
- "votes": 3114,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "aa6ee95d-e208-4592-a121-047056106596"
- },
- {
- "id": "e3cebe3a-feaf-4f15-955f-3efbf9b8e6e0",
- "name": "CBC Music Pacific (Vancouver) MP3 Stream",
+ "id": "44db1e25-6942-11ea-b1cf-52543be04c81",
+ "name": "680 News Toronto",
"country": "Canada",
"countryCode": "CA",
"language": "english",
- "tags": [
- "blues",
- "classical",
- "eclectic",
- "folk",
- "jazz"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://29243.live.streamtheworld.com/CBUFM_CBC_SC",
- "homepage": "https://www.cbc.ca/music",
- "logoUrl": "https://www.cbc.ca/favicon.ico",
- "votes": 115,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://rogers-hls.leanstream.co/rogers/tor680.stream/playlist.m3u8",
+ "homepage": "https://www.680news.com/",
+ "logoUrl": "https://www.680news.com/favicon.ico",
+ "votes": 5680,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "e3cebe3a-feaf-4f15-955f-3efbf9b8e6e0"
+ "sourceStationUuid": "44db1e25-6942-11ea-b1cf-52543be04c81"
},
{
"id": "de478916-6d8d-4997-9894-9d068bcf1857",
@@ -5786,28 +12872,46 @@
"sourceStationUuid": "35fa9c1c-4f62-4cdc-93fc-b895f6f91b73"
},
{
- "id": "d360268f-8f23-4386-b062-bcd368f1f211",
- "name": "100 GREATEST OF THE 80'S",
+ "id": "56afb6c6-b221-45ae-9c50-03ae736a49fd",
+ "name": "98.5FM",
"country": "Canada",
"countryCode": "CA",
"language": null,
"tags": [
- "1980's",
- "80s",
- "80s radio",
- "80s rock",
- "the best decade 80s radio around.",
- "the best of 80's"
+ "talk & speech"
],
"codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://maggie.torontocast.com:2020/stream/100greatestofthe80s",
- "homepage": "https://100-greatest-network.torontocast.stream/",
+ "bitrate": 0,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/CHMPFMAAC.aac",
+ "homepage": null,
"logoUrl": null,
- "votes": 3660,
+ "votes": 266,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "d360268f-8f23-4386-b062-bcd368f1f211"
+ "sourceStationUuid": "56afb6c6-b221-45ae-9c50-03ae736a49fd"
+ },
+ {
+ "id": "e3cebe3a-feaf-4f15-955f-3efbf9b8e6e0",
+ "name": "CBC Music Pacific (Vancouver) MP3 Stream",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "blues",
+ "classical",
+ "eclectic",
+ "folk",
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://29243.live.streamtheworld.com/CBUFM_CBC_SC",
+ "homepage": "https://www.cbc.ca/music",
+ "logoUrl": "https://www.cbc.ca/favicon.ico",
+ "votes": 115,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "e3cebe3a-feaf-4f15-955f-3efbf9b8e6e0"
},
{
"id": "76b52e19-fe98-4a68-a6fe-a6e82cf866fd",
@@ -5884,23 +12988,28 @@
"sourceStationUuid": "5865e229-fe6b-4409-98b7-4f3beeb5fd9e"
},
{
- "id": "d1229ae6-3fa4-4d02-8d83-7b6ab8b6b08e",
- "name": "Radio Canada Ici Première - Montréal, QC",
+ "id": "d360268f-8f23-4386-b062-bcd368f1f211",
+ "name": "100 GREATEST OF THE 80'S",
"country": "Canada",
"countryCode": "CA",
- "language": "french",
+ "language": null,
"tags": [
- "radio publique"
+ "1980's",
+ "80s",
+ "80s radio",
+ "80s rock",
+ "the best decade 80s radio around.",
+ "the best of 80's"
],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/master.m3u8",
- "homepage": "https://ici.radio-canada.ca/ohdio/premiere",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/ICI_Radio-Canada_Premi%C3%A8re.svg/200px-ICI_Radio-Canada_Premi%C3%A8re.svg.png",
- "votes": 719,
- "clickcount": 7,
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://maggie.torontocast.com:2020/stream/100greatestofthe80s",
+ "homepage": "https://100-greatest-network.torontocast.stream/",
+ "logoUrl": null,
+ "votes": 3660,
+ "clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "d1229ae6-3fa4-4d02-8d83-7b6ab8b6b08e"
+ "sourceStationUuid": "d360268f-8f23-4386-b062-bcd368f1f211"
},
{
"id": "db3aaa9d-6e55-4175-956a-1ecd3d64420b",
@@ -5942,27 +13051,6 @@
"source": "radio-browser",
"sourceStationUuid": "278df5f8-6b73-4254-a8df-07c62e07da8b"
},
- {
- "id": "4bb85759-d22b-433b-b256-29ad8a6e9ecd",
- "name": "CBC Radio One - Toronto, ON (MP3 stream)",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "features",
- "news",
- "public radio"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://26733.live.streamtheworld.com/CBLAFM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/canada/toronto",
- "logoUrl": "https://subscriptions.cbc.ca/newsletter_static/images/1581432928232-cbc-toronto.png",
- "votes": 118,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "4bb85759-d22b-433b-b256-29ad8a6e9ecd"
- },
{
"id": "462202cd-e2b2-482a-80a5-04a2a71eb3c5",
"name": "CBC Radio One - Winnipeg, MB (MP3 stream)",
@@ -6028,72 +13116,23 @@
"sourceStationUuid": "69cdf0f5-ed69-4bf2-be17-719a17c5681f"
},
{
- "id": "fcbd7124-cde1-4d70-ab58-5dd85f9d3c3e",
- "name": "Royalty Free Music 24/7 - Ogg FLAC - Lossless Stereo",
+ "id": "d1229ae6-3fa4-4d02-8d83-7b6ab8b6b08e",
+ "name": "Radio Canada Ici Première - Montréal, QC",
"country": "Canada",
"countryCode": "CA",
- "language": null,
+ "language": "french",
"tags": [
- "royalty free"
+ "radio publique"
],
- "codec": "OGG",
- "bitrate": 1500,
- "streamUrl": "https://streams.radiomast.io/ref-lossless-ogg-flac-stereo",
- "homepage": "https://www.radiomast.io/reference-streams",
- "logoUrl": "https://www.radiomast.io/static/stations/logo_offset.svg",
- "votes": 244,
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://rcavliveaudio.akamaized.net/hls/live/2006635/P-2QMTL0_MTL/master.m3u8",
+ "homepage": "https://ici.radio-canada.ca/ohdio/premiere",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/ICI_Radio-Canada_Premi%C3%A8re.svg/200px-ICI_Radio-Canada_Premi%C3%A8re.svg.png",
+ "votes": 719,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "fcbd7124-cde1-4d70-ab58-5dd85f9d3c3e"
- },
- {
- "id": "cf2078fc-abd7-459f-80bc-518ee0aba85b",
- "name": "Toronto Global Radio - Freestyle",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "freestyle"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://london-dedicated.myautodj.com:3199/proxy/freestyle/stream",
- "homepage": "https://www.torontoglobalradio.com/freestyle/",
- "logoUrl": null,
- "votes": 347,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "cf2078fc-abd7-459f-80bc-518ee0aba85b"
- },
- {
- "id": "7cb8a87f-454d-4b6d-8e09-bd16348e2182",
- "name": "#1 RdMix Love Songs",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "00's",
- "00s",
- "70's",
- "70s",
- "80's",
- "80s",
- "90's",
- "90s",
- "classic hits",
- "decades",
- "fm",
- "love"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://maggie.torontocast.com:2020/stream/rdmixlovesongs",
- "homepage": "https://radiodimensionemix.torontocast.stream/",
- "logoUrl": null,
- "votes": 351,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "7cb8a87f-454d-4b6d-8e09-bd16348e2182"
+ "sourceStationUuid": "d1229ae6-3fa4-4d02-8d83-7b6ab8b6b08e"
},
{
"id": "9717bbf2-b2de-4fe3-a5e2-0358649365fe",
@@ -6116,6 +13155,26 @@
"source": "radio-browser",
"sourceStationUuid": "9717bbf2-b2de-4fe3-a5e2-0358649365fe"
},
+ {
+ "id": "dff9392e-26ba-4874-af56-5e4ddbefc270",
+ "name": "CBC Radio 1 Vancouver",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": null,
+ "tags": [
+ "news",
+ "public radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://cbcradiolive.akamaized.net/hls/live/2041050/ES_R1PVC/master.m3u8",
+ "homepage": "https://www.cbc.ca/listen/live-radio",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/archive/3/3b/20210720194227%21CBC_logo.svg",
+ "votes": 463,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "dff9392e-26ba-4874-af56-5e4ddbefc270"
+ },
{
"id": "84924e50-0be6-4b4b-a4e8-b6151840e226",
"name": "CBC Radio One - Halifax, NS (MP3 stream)",
@@ -6138,8 +13197,8 @@
"sourceStationUuid": "84924e50-0be6-4b4b-a4e8-b6151840e226"
},
{
- "id": "88912e94-951a-4558-b1e5-024c9a033742",
- "name": "CBC Radio One - Kingston, ON (MP3 stream)",
+ "id": "4bb85759-d22b-433b-b256-29ad8a6e9ecd",
+ "name": "CBC Radio One - Toronto, ON (MP3 stream)",
"country": "Canada",
"countryCode": "CA",
"language": "english",
@@ -6150,56 +13209,37 @@
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://27243.live.streamtheworld.com/CBCKFM_CBC_SC",
- "homepage": "https://www.cbc.ca/listen/live-radio",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/CBCRadioOne.svg/320px-CBCRadioOne.svg.png",
- "votes": 22,
+ "streamUrl": "https://26733.live.streamtheworld.com/CBLAFM_CBC_SC",
+ "homepage": "https://www.cbc.ca/news/canada/toronto",
+ "logoUrl": "https://subscriptions.cbc.ca/newsletter_static/images/1581432928232-cbc-toronto.png",
+ "votes": 118,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "88912e94-951a-4558-b1e5-024c9a033742"
+ "sourceStationUuid": "4bb85759-d22b-433b-b256-29ad8a6e9ecd"
},
{
- "id": "a434678c-3198-4293-9819-707b183c0215",
- "name": "CBC Radio One - Vancouver, BC (MP3 stream)",
+ "id": "364e1ed5-b415-4633-b6f4-78edb0ff4d1c",
+ "name": "CFMZ 96.3 \"The New Classical FM\"",
"country": "Canada",
"countryCode": "CA",
"language": "english",
"tags": [
- "features",
- "news",
- "public radio"
+ "baroque",
+ "classical",
+ "easy listening",
+ "opera",
+ "orchestral",
+ "romantic"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://18303.live.streamtheworld.com/CBU2FM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/topic/Collections/CBC%20METRO%20VANCOUVER",
- "logoUrl": "https://www.cbc.ca/mediacentre/content/images/CBC_BC_logo.JPG",
- "votes": 163,
+ "streamUrl": "https://live.amperwave.net/direct/mzmedia-cfmzfmmp3-ibc2",
+ "homepage": "https://classicalfm.ca/",
+ "logoUrl": "https://classicalfm.ca/favicon.ico",
+ "votes": 11,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "a434678c-3198-4293-9819-707b183c0215"
- },
- {
- "id": "e9e2c2ac-1916-4f2e-a7ba-a3669bea3bcd",
- "name": "CBC Radio One Edmonton",
- "country": "Canada",
- "countryCode": "CA",
- "language": null,
- "tags": [
- "cbc",
- "features",
- "news",
- "public radio"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://26373.live.streamtheworld.com/CBXAM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/canada/edmonton",
- "logoUrl": "https://subscriptions.cbc.ca/newsletter_static/images/1581432976501-cbc-edmonton.png",
- "votes": 93,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "e9e2c2ac-1916-4f2e-a7ba-a3669bea3bcd"
+ "sourceStationUuid": "364e1ed5-b415-4633-b6f4-78edb0ff4d1c"
},
{
"id": "e032cab0-e438-4cb5-9ac8-91a228413c49",
@@ -6261,27 +13301,84 @@
"sourceStationUuid": "2e9d19e2-1909-488f-9551-d29c259924fb"
},
{
- "id": "8341eba1-7175-42bd-ac8d-a901a18714f9",
- "name": "Gritty Rock Radio",
+ "id": "d8275ce6-a7dd-4d91-9703-55eca0410744",
+ "name": "CJAD 800",
"country": "Canada",
"countryCode": "CA",
"language": "english",
"tags": [
- "blues rock",
- "country rock",
- "garage rock",
- "southern rock",
- "stoner rock"
+ "local news",
+ "news talk",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 48,
+ "streamUrl": "https://27243.live.streamtheworld.com/CJADAM_SC",
+ "homepage": "https://www.cjad800.com/",
+ "logoUrl": "https://www.cjad800.com/content/dam/audio/iheart-stations-logos/logo-cjad.svg",
+ "votes": 72,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "d8275ce6-a7dd-4d91-9703-55eca0410744"
+ },
+ {
+ "id": "960309f6-b093-4422-93b0-ab489aec467a",
+ "name": "OZ FM Newfoundland",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": null,
+ "tags": [
+ "contemporary hits",
+ "jigs and reels",
+ "newfoundland"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://ozfm.streamb.live/SB00174",
+ "homepage": "https://ozfm.com/",
+ "logoUrl": "https://ozfm.com/favicon.ico",
+ "votes": 22,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "960309f6-b093-4422-93b0-ab489aec467a"
+ },
+ {
+ "id": "fcbd7124-cde1-4d70-ab58-5dd85f9d3c3e",
+ "name": "Royalty Free Music 24/7 - Ogg FLAC - Lossless Stereo",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": null,
+ "tags": [
+ "royalty free"
+ ],
+ "codec": "OGG",
+ "bitrate": 1500,
+ "streamUrl": "https://streams.radiomast.io/ref-lossless-ogg-flac-stereo",
+ "homepage": "https://www.radiomast.io/reference-streams",
+ "logoUrl": "https://www.radiomast.io/static/stations/logo_offset.svg",
+ "votes": 244,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "fcbd7124-cde1-4d70-ab58-5dd85f9d3c3e"
+ },
+ {
+ "id": "cf2078fc-abd7-459f-80bc-518ee0aba85b",
+ "name": "Toronto Global Radio - Freestyle",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "freestyle"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://listen.radioking.com/radio/10713/stream/21674",
- "homepage": "https://www.grittyrockradio.com/",
- "logoUrl": "https://www.grittyrockradio.com/apple-touch-icon.png",
- "votes": 473,
+ "streamUrl": "https://london-dedicated.myautodj.com:3199/proxy/freestyle/stream",
+ "homepage": "https://www.torontoglobalradio.com/freestyle/",
+ "logoUrl": null,
+ "votes": 347,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "8341eba1-7175-42bd-ac8d-a901a18714f9"
+ "sourceStationUuid": "cf2078fc-abd7-459f-80bc-518ee0aba85b"
},
{
"id": "deff2201-eeb9-4ea6-b18b-71dc61936e67",
@@ -6301,21 +13398,28 @@
"sourceStationUuid": "deff2201-eeb9-4ea6-b18b-71dc61936e67"
},
{
- "id": "3a9513f3-f381-4c7e-ab8c-3d41ea247f50",
- "name": "1 Pure Alternative Radio",
+ "id": "410f7868-8184-436e-b189-bb6d9cd686ba",
+ "name": "70 80 90 ITALIA D'AUTORE",
"country": "Canada",
"countryCode": "CA",
- "language": null,
- "tags": [],
+ "language": "english",
+ "tags": [
+ "70",
+ "80",
+ "90",
+ "classic italian pop",
+ "italian pop",
+ "musica italiana"
+ ],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://kathy.torontocast.com:2475/stream",
- "homepage": "https://www.1pureradio.com/",
- "logoUrl": "https://i0.wp.com/1pureradio.com/wp-content/uploads/2022/04/cropped-1595449437_1-pure-alternative-radio.jpg?fit=180%2c180&ssl=1",
- "votes": 118,
+ "streamUrl": "https://maggie.torontocast.com:2020/stream/708090italiadautore",
+ "homepage": "https://radiosuitenetwork.torontocast.stream/70-80-90-italia-dautore/",
+ "logoUrl": null,
+ "votes": 1266,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "3a9513f3-f381-4c7e-ab8c-3d41ea247f50"
+ "sourceStationUuid": "410f7868-8184-436e-b189-bb6d9cd686ba"
},
{
"id": "e03db9c8-dc8f-4334-97c1-56e94a4abaae",
@@ -6369,28 +13473,8 @@
"sourceStationUuid": "964fb436-21c5-4729-8958-fe5991b81dfd"
},
{
- "id": "dff9392e-26ba-4874-af56-5e4ddbefc270",
- "name": "CBC Radio 1 Vancouver",
- "country": "Canada",
- "countryCode": "CA",
- "language": null,
- "tags": [
- "news",
- "public radio"
- ],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://cbcradiolive.akamaized.net/hls/live/2041050/ES_R1PVC/master.m3u8",
- "homepage": "https://www.cbc.ca/listen/live-radio",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/archive/3/3b/20210720194227%21CBC_logo.svg",
- "votes": 463,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "dff9392e-26ba-4874-af56-5e4ddbefc270"
- },
- {
- "id": "09af4773-c409-4ee9-a461-d345b1ac71cc",
- "name": "CBC Radio One - Moncton, NB (MP3 stream)",
+ "id": "88912e94-951a-4558-b1e5-024c9a033742",
+ "name": "CBC Radio One - Kingston, ON (MP3 stream)",
"country": "Canada",
"countryCode": "CA",
"language": "english",
@@ -6401,13 +13485,13 @@
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://14123.live.streamtheworld.com/CBAMFM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/canada/new-brunswick",
+ "streamUrl": "https://27243.live.streamtheworld.com/CBCKFM_CBC_SC",
+ "homepage": "https://www.cbc.ca/listen/live-radio",
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/CBCRadioOne.svg/320px-CBCRadioOne.svg.png",
- "votes": 15,
+ "votes": 22,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "09af4773-c409-4ee9-a461-d345b1ac71cc"
+ "sourceStationUuid": "88912e94-951a-4558-b1e5-024c9a033742"
},
{
"id": "a217c189-5124-48ea-a1b1-606766141ea1",
@@ -6431,8 +13515,8 @@
"sourceStationUuid": "a217c189-5124-48ea-a1b1-606766141ea1"
},
{
- "id": "c4760826-f845-4a29-985c-3e25849a5c6a",
- "name": "CBC Radio One - Quebec City, QC (MP3)",
+ "id": "a434678c-3198-4293-9819-707b183c0215",
+ "name": "CBC Radio One - Vancouver, BC (MP3 stream)",
"country": "Canada",
"countryCode": "CA",
"language": "english",
@@ -6443,58 +13527,55 @@
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://27033.live.streamtheworld.com/CBVEFM_CBC_SC",
- "homepage": "https://www.cbc.ca/mediacentre/program/cbc-radio-one-quebec-city",
- "logoUrl": "https://www.cbc.ca/favicon.ico",
- "votes": 47,
+ "streamUrl": "https://18303.live.streamtheworld.com/CBU2FM_CBC_SC",
+ "homepage": "https://www.cbc.ca/news/topic/Collections/CBC%20METRO%20VANCOUVER",
+ "logoUrl": "https://www.cbc.ca/mediacentre/content/images/CBC_BC_logo.JPG",
+ "votes": 163,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "c4760826-f845-4a29-985c-3e25849a5c6a"
+ "sourceStationUuid": "a434678c-3198-4293-9819-707b183c0215"
},
{
- "id": "33408a3b-5af4-4d50-9dcb-1860cca8aad5",
- "name": "CBC Radio One - Victoria, BC (MP3 stream)",
+ "id": "e9e2c2ac-1916-4f2e-a7ba-a3669bea3bcd",
+ "name": "CBC Radio One Edmonton",
"country": "Canada",
"countryCode": "CA",
- "language": "english",
+ "language": null,
"tags": [
+ "cbc",
"features",
"news",
"public radio"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://27033.live.streamtheworld.com/CBCVFM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/topic/Collections/CBC%20VICTORIA",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/CBCRadioOne.svg/320px-CBCRadioOne.svg.png",
- "votes": 68,
+ "streamUrl": "https://26373.live.streamtheworld.com/CBXAM_CBC_SC",
+ "homepage": "https://www.cbc.ca/news/canada/edmonton",
+ "logoUrl": "https://subscriptions.cbc.ca/newsletter_static/images/1581432976501-cbc-edmonton.png",
+ "votes": 93,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "33408a3b-5af4-4d50-9dcb-1860cca8aad5"
+ "sourceStationUuid": "e9e2c2ac-1916-4f2e-a7ba-a3669bea3bcd"
},
{
- "id": "364e1ed5-b415-4633-b6f4-78edb0ff4d1c",
- "name": "CFMZ 96.3 \"The New Classical FM\"",
+ "id": "4510efc3-6eb8-4365-9ca2-1eb191a964cd",
+ "name": "CFQR 600 Montreal, QC",
"country": "Canada",
"countryCode": "CA",
"language": "english",
"tags": [
- "baroque",
- "classical",
- "easy listening",
- "opera",
- "orchestral",
- "romantic"
+ "classic hits",
+ "news talk"
],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://live.amperwave.net/direct/mzmedia-cfmzfmmp3-ibc2",
- "homepage": "https://classicalfm.ca/",
- "logoUrl": "https://classicalfm.ca/favicon.ico",
- "votes": 11,
+ "bitrate": 160,
+ "streamUrl": "https://centova.radioservers.biz/proxy/canadai1/stream",
+ "homepage": "https://cfqr600.com/",
+ "logoUrl": null,
+ "votes": 31,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "364e1ed5-b415-4633-b6f4-78edb0ff4d1c"
+ "sourceStationUuid": "4510efc3-6eb8-4365-9ca2-1eb191a964cd"
},
{
"id": "39d6e63e-9f1a-4bdf-8eb1-ab3c73087e00",
@@ -6515,26 +13596,6 @@
"source": "radio-browser",
"sourceStationUuid": "39d6e63e-9f1a-4bdf-8eb1-ab3c73087e00"
},
- {
- "id": "bb26c777-f445-4155-b3d2-313f98ca7a8c",
- "name": "CILV-FM 88.5 \"Live Eighty Eight Five\" - Ottawa, ON",
- "country": "Canada",
- "countryCode": "CA",
- "language": null,
- "tags": [
- "alternative rock",
- "stingray network"
- ],
- "codec": "AAC",
- "bitrate": 130,
- "streamUrl": "https://newcap.leanstream.co/CILVFM",
- "homepage": "https://www.live885.com/",
- "logoUrl": "https://media.socastsrm.com/uploads/station/834/site_header_logo-5909303754d14.png",
- "votes": 12,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "bb26c777-f445-4155-b3d2-313f98ca7a8c"
- },
{
"id": "9c97dc62-a2bf-438f-b765-6b5cff56983c",
"name": "CITI 92.1 Winnipeg, MB",
@@ -6556,44 +13617,21 @@
"sourceStationUuid": "9c97dc62-a2bf-438f-b765-6b5cff56983c"
},
{
- "id": "e3be73d2-e30a-413e-addc-e039597dfc20",
- "name": "CIUP-FM \"Up 99.3\" Edmonton, AB",
+ "id": "3c8ece15-4bb1-4479-be00-3fb95ea3c716",
+ "name": "CIUT 89.5FM",
"country": "Canada",
"countryCode": "CA",
- "language": "english",
- "tags": [
- "adult hits"
- ],
+ "language": null,
+ "tags": [],
"codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://stream.jpbgdigital.com/CIUP.m3u8",
- "homepage": "https://www.up993.com/",
- "logoUrl": "https://media.socastsrm.com/wordpress/wp-content/blogs.dir/354/files/2018/11/Website-Logo-Yellow.png",
- "votes": 29,
+ "bitrate": 32,
+ "streamUrl": "https://ice23.securenetsystems.net/CIUT",
+ "homepage": "https://ciut.fm/",
+ "logoUrl": null,
+ "votes": 23,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "e3be73d2-e30a-413e-addc-e039597dfc20"
- },
- {
- "id": "d8275ce6-a7dd-4d91-9703-55eca0410744",
- "name": "CJAD 800",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "local news",
- "news talk",
- "talk"
- ],
- "codec": "MP3",
- "bitrate": 48,
- "streamUrl": "https://27243.live.streamtheworld.com/CJADAM_SC",
- "homepage": "https://www.cjad800.com/",
- "logoUrl": "https://www.cjad800.com/content/dam/audio/iheart-stations-logos/logo-cjad.svg",
- "votes": 72,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "d8275ce6-a7dd-4d91-9703-55eca0410744"
+ "sourceStationUuid": "3c8ece15-4bb1-4479-be00-3fb95ea3c716"
},
{
"id": "f76b8625-7cc5-4fe3-ba11-de80c6563d6a",
@@ -6633,26 +13671,6 @@
"source": "radio-browser",
"sourceStationUuid": "4dcb69d2-1b10-4831-9d4f-363133b9b022"
},
- {
- "id": "f56bbbdd-9331-4796-89fe-41c51c6aa01c",
- "name": "CKLX-FM 91.9 \"BPM Sports\" Montreal, QC",
- "country": "Canada",
- "countryCode": "CA",
- "language": "french",
- "tags": [
- "bpm sports",
- "sports"
- ],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://stream.bpmsports.ca/cklx.aac",
- "homepage": "https://bpmsports.ca/",
- "logoUrl": "https://bpmsports.ca/wp-content/themes/bpmsports-pro/img/91,9.svg",
- "votes": 33,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "f56bbbdd-9331-4796-89fe-41c51c6aa01c"
- },
{
"id": "9a3ba304-c9e9-464f-a570-21076153ed4d",
"name": "CKMN 96.5 FM",
@@ -6695,6 +13713,29 @@
"source": "radio-browser",
"sourceStationUuid": "6951a500-c7f4-435e-a4ee-e250431db94d"
},
+ {
+ "id": "8341eba1-7175-42bd-ac8d-a901a18714f9",
+ "name": "Gritty Rock Radio",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "blues rock",
+ "country rock",
+ "garage rock",
+ "southern rock",
+ "stoner rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen.radioking.com/radio/10713/stream/21674",
+ "homepage": "https://www.grittyrockradio.com/",
+ "logoUrl": "https://www.grittyrockradio.com/apple-touch-icon.png",
+ "votes": 473,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8341eba1-7175-42bd-ac8d-a901a18714f9"
+ },
{
"id": "cccfcd65-5d33-4400-973b-5dfc3e91c4fd",
"name": "Labgate Alternative Rock and Grunge",
@@ -6713,49 +13754,51 @@
"sourceStationUuid": "cccfcd65-5d33-4400-973b-5dfc3e91c4fd"
},
{
- "id": "960309f6-b093-4422-93b0-ab489aec467a",
- "name": "OZ FM Newfoundland",
- "country": "Canada",
- "countryCode": "CA",
- "language": null,
- "tags": [
- "contemporary hits",
- "jigs and reels",
- "newfoundland"
- ],
- "codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://ozfm.streamb.live/SB00174",
- "homepage": "https://ozfm.com/",
- "logoUrl": "https://ozfm.com/favicon.ico",
- "votes": 22,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "960309f6-b093-4422-93b0-ab489aec467a"
- },
- {
- "id": "410f7868-8184-436e-b189-bb6d9cd686ba",
- "name": "70 80 90 ITALIA D'AUTORE",
+ "id": "7cb8a87f-454d-4b6d-8e09-bd16348e2182",
+ "name": "#1 RdMix Love Songs",
"country": "Canada",
"countryCode": "CA",
"language": "english",
"tags": [
- "70",
- "80",
- "90",
- "classic italian pop",
- "italian pop",
- "musica italiana"
+ "00's",
+ "00s",
+ "70's",
+ "70s",
+ "80's",
+ "80s",
+ "90's",
+ "90s",
+ "classic hits",
+ "decades",
+ "fm",
+ "love"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://maggie.torontocast.com:2020/stream/708090italiadautore",
- "homepage": "https://radiosuitenetwork.torontocast.stream/70-80-90-italia-dautore/",
+ "streamUrl": "https://maggie.torontocast.com:2020/stream/rdmixlovesongs",
+ "homepage": "https://radiodimensionemix.torontocast.stream/",
"logoUrl": null,
- "votes": 1266,
+ "votes": 351,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "410f7868-8184-436e-b189-bb6d9cd686ba"
+ "sourceStationUuid": "7cb8a87f-454d-4b6d-8e09-bd16348e2182"
+ },
+ {
+ "id": "3a9513f3-f381-4c7e-ab8c-3d41ea247f50",
+ "name": "1 Pure Alternative Radio",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:2475/stream",
+ "homepage": "https://www.1pureradio.com/",
+ "logoUrl": "https://i0.wp.com/1pureradio.com/wp-content/uploads/2022/04/cropped-1595449437_1-pure-alternative-radio.jpg?fit=180%2c180&ssl=1",
+ "votes": 118,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a9513f3-f381-4c7e-ab8c-3d41ea247f50"
},
{
"id": "64054158-c2db-431e-8e17-38fc2b1a7a78",
@@ -6775,29 +13818,27 @@
"sourceStationUuid": "64054158-c2db-431e-8e17-38fc2b1a7a78"
},
{
- "id": "6b5949de-b9ea-4aa1-af15-17dbd30b1b19",
- "name": "CBC Radio One - Ottawa, ON (MP3 stream)",
+ "id": "c970ccf5-732d-4633-bb24-dc9a9033ebe5",
+ "name": "Bolly radio Canada",
"country": "Canada",
"countryCode": "CA",
- "language": "english",
+ "language": "hindi",
"tags": [
- "features",
- "news",
- "public radio"
+ "music"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://29243.live.streamtheworld.com/CBOFM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/canada/ottawa",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/CBCRadioOne.svg/320px-CBCRadioOne.svg.png",
- "votes": 235,
+ "streamUrl": "https://carina.streamerr.co/stream/8206",
+ "homepage": "https://carina.streamerr.co/stream/8206",
+ "logoUrl": "null",
+ "votes": 60,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "6b5949de-b9ea-4aa1-af15-17dbd30b1b19"
+ "sourceStationUuid": "c970ccf5-732d-4633-bb24-dc9a9033ebe5"
},
{
- "id": "e6be7ded-c648-49e1-b0ee-501bac3bb035",
- "name": "CBC Radio One - Regina, SK (MP3 stream)",
+ "id": "09af4773-c409-4ee9-a461-d345b1ac71cc",
+ "name": "CBC Radio One - Moncton, NB (MP3 stream)",
"country": "Canada",
"countryCode": "CA",
"language": "english",
@@ -6808,34 +13849,13 @@
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://27033.live.streamtheworld.com/CBKRFM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/canada/saskatchewan",
- "logoUrl": "https://www.cbc.ca/favicon.ico",
- "votes": 38,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "e6be7ded-c648-49e1-b0ee-501bac3bb035"
- },
- {
- "id": "9b55a8d7-17f8-48b7-85ce-43f5e5c1fa47",
- "name": "CBC Radio One - Sudbury, ON (MP3 stream)",
- "country": "Canada",
- "countryCode": "CA",
- "language": "english",
- "tags": [
- "features",
- "news",
- "public radio"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://26283.live.streamtheworld.com/CBCSFM_CBC_SC",
- "homepage": "https://www.cbc.ca/news/canada/sudbury",
+ "streamUrl": "https://14123.live.streamtheworld.com/CBAMFM_CBC_SC",
+ "homepage": "https://www.cbc.ca/news/canada/new-brunswick",
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/CBCRadioOne.svg/320px-CBCRadioOne.svg.png",
- "votes": 82,
+ "votes": 15,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "9b55a8d7-17f8-48b7-85ce-43f5e5c1fa47"
+ "sourceStationUuid": "09af4773-c409-4ee9-a461-d345b1ac71cc"
},
{
"id": "9617c1a7-0601-11e8-ae97-52543be04c81",
@@ -6880,6 +13900,66 @@
"source": "radio-browser",
"sourceStationUuid": "307d156c-3848-4b1e-acd2-ad8fa49d4636"
},
+ {
+ "id": "2269d582-68ff-4365-bc10-f425e50b8885",
+ "name": "CFMY-FM 96.1 \"My 96FM\" Medicine Hat, AB",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "adult contemporary"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://stream.jpbgdigital.com/CFMY/HEAAC/48k/playlist.m3u8",
+ "homepage": "https://my96fm.com/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "2269d582-68ff-4365-bc10-f425e50b8885"
+ },
+ {
+ "id": "23c77648-c076-49ed-bb40-d4f6aa8a7cbd",
+ "name": "CFOB-FM \"93.1 The Border\" Fort Frances, ON",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "classic hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://ais-sa1.streamon.fm/7235_128k.aac/playlist.m3u8",
+ "homepage": "https://www.931theborder.ca/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/en/thumb/b/bd/CFOB-FM_2014.png/200px-CFOB-FM_2014.png",
+ "votes": 17,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "23c77648-c076-49ed-bb40-d4f6aa8a7cbd"
+ },
+ {
+ "id": "a8ed6cf6-9335-453f-9928-58c7f3449809",
+ "name": "CFXN 106.3 \"Jet FM\" North Bay, ON",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "english",
+ "tags": [
+ "classic hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 57,
+ "streamUrl": "https://vistaradio.streamb.live/SB00100",
+ "homepage": "https://www.mynorthbaynow.com/",
+ "logoUrl": "https://www.mynorthbaynow.com/wp-content/uploads/2023/06/1063-jetfm-web-800.png",
+ "votes": 12,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a8ed6cf6-9335-453f-9928-58c7f3449809"
+ },
{
"id": "eaf13335-827f-45df-b9c8-a983b3778bd8",
"name": "CHAH \"My Radio 580\" Edmonton, AB",
@@ -7019,6 +14099,25 @@
"source": "radio-browser",
"sourceStationUuid": "6a38a4f5-3c66-413e-b3e2-33d0b1420e0a"
},
+ {
+ "id": "094463de-d198-4d0c-9248-a7db5d4f66ea",
+ "name": "FM93 Québec",
+ "country": "Canada",
+ "countryCode": "CA",
+ "language": "french",
+ "tags": [
+ "family"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/CJMFFM_SC.aac",
+ "homepage": "http://www.fm93.com/",
+ "logoUrl": "http://www.fm93.com/fm93.com.ico",
+ "votes": 64,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "094463de-d198-4d0c-9248-a7db5d4f66ea"
+ },
{
"id": "b7aefb22-0ab1-403d-950e-237773113269",
"name": "Radio Canada Ici Musique - Québec City, QC",
@@ -7094,6 +14193,1803 @@
"source": "radio-browser",
"sourceStationUuid": "2469aeb8-3b45-471e-82cc-29b061f24632"
},
+ {
+ "id": "2bf82625-6e78-445d-afff-e51e53c369a9",
+ "name": "CCTV-13新闻伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv13_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 13910,
+ "clickcount": 156,
+ "source": "radio-browser",
+ "sourceStationUuid": "2bf82625-6e78-445d-afff-e51e53c369a9"
+ },
+ {
+ "id": "ab0cc7f6-df03-4923-ac83-f4a7d8c55916",
+ "name": "国际新闻",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "information",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/20500172/64k.mp3",
+ "homepage": "http://www.ajmide.com/",
+ "logoUrl": "https://pic.qtfm.cn/sso/48/1678171152584_a6BwhQSVz.png",
+ "votes": 6422,
+ "clickcount": 83,
+ "source": "radio-browser",
+ "sourceStationUuid": "ab0cc7f6-df03-4923-ac83-f4a7d8c55916"
+ },
+ {
+ "id": "24711f7f-8ff5-4141-8e0f-ab17f3da1b89",
+ "name": "怀集音乐之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qingting.fm/live/4804/64k.mp3",
+ "homepage": "http://www.hj0758.cn/",
+ "logoUrl": "http://www.hj0758.cn/favicon.ico",
+ "votes": 9159,
+ "clickcount": 70,
+ "source": "radio-browser",
+ "sourceStationUuid": "24711f7f-8ff5-4141-8e0f-ab17f3da1b89"
+ },
+ {
+ "id": "835070cd-bf45-4e48-88a4-e9f9a0d7dd9e",
+ "name": "CNR-1 中国之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/15318317/64k.mp3",
+ "homepage": "http://www.cnr.cn/",
+ "logoUrl": null,
+ "votes": 9344,
+ "clickcount": 58,
+ "source": "radio-browser",
+ "sourceStationUuid": "835070cd-bf45-4e48-88a4-e9f9a0d7dd9e"
+ },
+ {
+ "id": "3f6d52c1-9373-4fd2-8bef-5dd476e4e7d2",
+ "name": "新闻联播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://rfienchinois64k.ice.infomaniak.ch//rfienchinois-64.mp3",
+ "homepage": "https://www.rfi.fr/cn/",
+ "logoUrl": "https://www.rfi.fr/apple-touch-icon.png",
+ "votes": 1626,
+ "clickcount": 57,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f6d52c1-9373-4fd2-8bef-5dd476e4e7d2"
+ },
+ {
+ "id": "7478cbd8-9217-4e39-8da7-a0d4385685ce",
+ "name": "CCTV-4中文国际伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv4_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 2730,
+ "clickcount": 46,
+ "source": "radio-browser",
+ "sourceStationUuid": "7478cbd8-9217-4e39-8da7-a0d4385685ce"
+ },
+ {
+ "id": "ef678e2d-beea-40a2-b152-f73d57de4f52",
+ "name": "CRI环球资迅广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "905fm",
+ "china",
+ "information",
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://sk.cri.cn/905.m3u8",
+ "homepage": "https://newsradio.cri.cn/",
+ "logoUrl": "https://newsradio.cri.cn/favicon.ico",
+ "votes": 1438,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "ef678e2d-beea-40a2-b152-f73d57de4f52"
+ },
+ {
+ "id": "ba8cf3a2-70c7-4567-9d9f-e6d028aecb2a",
+ "name": "两广之声音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "cantonese,chinese",
+ "tags": [
+ "internet radio",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/20500149/64k.mp3",
+ "homepage": "https://www.qingting.fm/radios/20500149/",
+ "logoUrl": "https://pic.qtfm.cn/2022/0619/20220619063631.jpeg",
+ "votes": 2293,
+ "clickcount": 38,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba8cf3a2-70c7-4567-9d9f-e6d028aecb2a"
+ },
+ {
+ "id": "a9354e1c-92fc-4a7a-9650-fa2d5c208196",
+ "name": "动听音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "cantonese,chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/5022107/64k.mp3",
+ "homepage": "https://www.qtfm.cn/radios/5022107",
+ "logoUrl": "https://pic.qtfm.cn/2021/0411/20210411040015.jpeg",
+ "votes": 340,
+ "clickcount": 34,
+ "source": "radio-browser",
+ "sourceStationUuid": "a9354e1c-92fc-4a7a-9650-fa2d5c208196"
+ },
+ {
+ "id": "815f20d0-3ecd-49d2-8449-9725e82b5f64",
+ "name": "500首华语经典",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/5022308/64k.mp3",
+ "homepage": "https://www.qingting.fm/radios/5022308",
+ "logoUrl": null,
+ "votes": 4279,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "815f20d0-3ecd-49d2-8449-9725e82b5f64"
+ },
+ {
+ "id": "714279f8-7e0e-4ebd-9152-215d3a6164f9",
+ "name": "50首经典古典音乐",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "classic",
+ "classical",
+ "classical music",
+ "instrumental"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/5022308/64k.mp3",
+ "homepage": "https://www.qtfm.cn/",
+ "logoUrl": "http://pic.qtfm.cn/2015/0206/20150206120225287.jpg!200",
+ "votes": 223,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "714279f8-7e0e-4ebd-9152-215d3a6164f9"
+ },
+ {
+ "id": "f3638a83-ac26-4b05-b0b9-0245b023ae0f",
+ "name": "AsiaFM 亚洲粤语台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "地方台",
+ "粤语",
+ "音乐"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/15318569/64k.mp3",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 1866,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "f3638a83-ac26-4b05-b0b9-0245b023ae0f"
+ },
+ {
+ "id": "0ab8efd5-9110-4fc0-a961-f397d00ea93f",
+ "name": "德云社相声合集",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "crosstalk",
+ "entertainment"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/yqawwmweq8mtv",
+ "homepage": "https://zeno.fm/radio/de-yun-she-xiang-sheng-he-ji/",
+ "logoUrl": null,
+ "votes": 2074,
+ "clickcount": 25,
+ "source": "radio-browser",
+ "sourceStationUuid": "0ab8efd5-9110-4fc0-a961-f397d00ea93f"
+ },
+ {
+ "id": "a09db942-832d-4932-8c05-494e17dc37e0",
+ "name": "CNR-3 音乐之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://ngcdn001.cnr.cn/live/yyzs/index.m3u8",
+ "homepage": "http://www.cnr.cn/",
+ "logoUrl": "https://cnvod.cnr.cn/audio2017/ondemand/img/1100/20191224/1577155745280.png",
+ "votes": 501,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "a09db942-832d-4932-8c05-494e17dc37e0"
+ },
+ {
+ "id": "9d277131-2267-46d4-ac53-eb46ed3d78e4",
+ "name": "CCTV-15音乐伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv15_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 1254,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "9d277131-2267-46d4-ac53-eb46ed3d78e4"
+ },
+ {
+ "id": "fd5d7353-3298-4242-918f-dd7ef527b950",
+ "name": "北京文艺广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "87.6",
+ "87.6 fm",
+ "entertainment"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/333/64k.mp3",
+ "homepage": "https://www.rbc.cn/",
+ "logoUrl": null,
+ "votes": 479,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "fd5d7353-3298-4242-918f-dd7ef527b950"
+ },
+ {
+ "id": "9d7f295c-ba89-4903-af7e-0e52b4a2051c",
+ "name": "BBN 中文",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "bible"
+ ],
+ "codec": "AAC",
+ "bitrate": 56,
+ "streamUrl": "https://streams.radiomast.io/ce298b32-8776-4192-9900-092f44b63e7f",
+ "homepage": "https://bbn1.bbnradio.org/",
+ "logoUrl": null,
+ "votes": 1218,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "9d7f295c-ba89-4903-af7e-0e52b4a2051c"
+ },
+ {
+ "id": "90cefd55-a82f-4ef8-96da-cc1723f7f544",
+ "name": "广东珠江经济台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "cantonese",
+ "tags": [
+ "economics"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/1259/64k.mp3",
+ "homepage": "https://m.gdtv.cn/",
+ "logoUrl": "https://m.gdtv.cn/statics/images/logo.png",
+ "votes": 1749,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "90cefd55-a82f-4ef8-96da-cc1723f7f544"
+ },
+ {
+ "id": "d84ba969-f1a3-49ef-830a-bd38e57c8e83",
+ "name": "AisaFM亚洲粤语台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "cantonese",
+ "tags": [
+ "music"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://live.ximalaya.com/radio-first-page-app/live/999/64.m3u8?transcode=ts",
+ "homepage": "http://www.asiafm.hk/",
+ "logoUrl": "https://imagev2.xmcdn.com/storages/20ef-audiofreehighqps/00/CA/GMCoOR8HJFh9AAMCbwGzjNlB.jpg!strip=1&quality=7&magick=jpg&op_type=5&upload_type=cover&name=web_large&device_type=ios",
+ "votes": 1771,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "d84ba969-f1a3-49ef-830a-bd38e57c8e83"
+ },
+ {
+ "id": "948c6e7c-aee1-4d50-87bf-ce338e38e311",
+ "name": "CCTV-2财经伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv2_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 1693,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "948c6e7c-aee1-4d50-87bf-ce338e38e311"
+ },
+ {
+ "id": "e5545833-d1f0-4030-bb16-8b5baaed4714",
+ "name": "周杰伦音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/zibntg5gtr7vv",
+ "homepage": "https://zeno.fm/radio/jay-chou-station/",
+ "logoUrl": "https://so1.360tres.com/t011b75e6e56cb532bb.jpg",
+ "votes": 521,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "e5545833-d1f0-4030-bb16-8b5baaed4714"
+ },
+ {
+ "id": "e58589d8-a286-4d40-81b8-d5b345d100be",
+ "name": "Chinese Classical Music (Mp3 stream)",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese,english",
+ "tags": [
+ "classical",
+ "instrumental",
+ "traditional"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.chinesemusicworld.com/chinesemusic.mp3",
+ "homepage": "https://chinesemusicworld.com/",
+ "logoUrl": "https://mytunein.com/images/logos/chineseclassicalmusiconlineradio.jpg",
+ "votes": 233,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "e58589d8-a286-4d40-81b8-d5b345d100be"
+ },
+ {
+ "id": "1bc7f31f-da6b-424e-82a4-4d14c1d48699",
+ "name": "CityFM城市音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "internet radio",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/20500153/64k.mp3",
+ "homepage": "https://www.qingting.fm/radios/20500153",
+ "logoUrl": null,
+ "votes": 533,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "1bc7f31f-da6b-424e-82a4-4d14c1d48699"
+ },
+ {
+ "id": "acbeaef9-17d7-498f-ace0-dfbb78caa430",
+ "name": "CNR-3 音乐之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://satellitepull.cnr.cn/live/wxyyzs/playlist.m3u8?wsSession=28e11e3debee46427a9d53dc-174908117055114&wsIPSercert=f7b6cfa8467acd0836b62cf14aa786d3",
+ "homepage": "https://www.cnr.cn/",
+ "logoUrl": "https://ytmedia.radio.cn/CCYT/202302/09/17/j5t4Bt3drpLhkZnDREc2023020917793.png",
+ "votes": 114,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "acbeaef9-17d7-498f-ace0-dfbb78caa430"
+ },
+ {
+ "id": "7f0d6d5c-7707-4812-bbc1-a44eb9ccc74a",
+ "name": "怀旧音乐广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "89.5",
+ "895",
+ "music",
+ "地方台",
+ "怀旧",
+ "音乐"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://live.ximalaya.com/radio-first-page-app/live/2629/64.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 1318,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f0d6d5c-7707-4812-bbc1-a44eb9ccc74a"
+ },
+ {
+ "id": "1328e18b-ab1a-4471-a7c4-99bf68d34dbc",
+ "name": "AsiaFM亚洲音乐台(新)",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music",
+ "pop"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://live.xmcdn.com/live/764/64.m3u8",
+ "homepage": "https://www.radiotaiwan.tw/asia-fm-ya-zhou-dian-tai-wei-xing-liu-xing-yin-le-tai",
+ "logoUrl": "https://www.radiotaiwan.tw/favicon.ico",
+ "votes": 723,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "1328e18b-ab1a-4471-a7c4-99bf68d34dbc"
+ },
+ {
+ "id": "ecbe92bf-a35b-439f-8bcf-55da0ece14ee",
+ "name": "BRTV北京音乐广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://brtv-radiolive.rbc.cn/alive/fm974.m3u8",
+ "homepage": "https://www.brtv.org.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2017/0424/20170424025444.jpeg",
+ "votes": 186,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "ecbe92bf-a35b-439f-8bcf-55da0ece14ee"
+ },
+ {
+ "id": "47ee61a3-e45f-460e-8384-ee79d7e40934",
+ "name": "CCTV-1综合伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "full service",
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv1_2.m3u8",
+ "homepage": "https://tv.cctv.com/cctv1/index.shtml",
+ "logoUrl": "https://pic.baike.soso.com/ugc/baikepic2/0/20220901170948-721334708_jpeg_536_536_33977.jpg/800",
+ "votes": 79,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "47ee61a3-e45f-460e-8384-ee79d7e40934"
+ },
+ {
+ "id": "e87de336-49bb-4f67-887c-ddfb25de6384",
+ "name": "北京新闻广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "94.5",
+ "94.5 fm",
+ "am828",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/339/64k.mp3",
+ "homepage": "https://www.rbc.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2015/0514/2015051417385422.jpg",
+ "votes": 1068,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "e87de336-49bb-4f67-887c-ddfb25de6384"
+ },
+ {
+ "id": "d01fcb00-226d-44ef-8188-7663fccb1d00",
+ "name": "105.1成都简单音乐广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "105.1",
+ "105.1 fm"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/7brqs9rsbc9uv",
+ "homepage": "https://top-radio.org/china/chengdu-simple-music-fm1051/",
+ "logoUrl": "https://i0.wp.com/top-radio.org/wp-content/uploads/2023/04/cropped-cropped-top-radio-512x512-1.png?fit=180%2c180&ssl=1",
+ "votes": 251,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "d01fcb00-226d-44ef-8188-7663fccb1d00"
+ },
+ {
+ "id": "e67cf735-d4db-4497-babe-5f35763d41d3",
+ "name": "CCTV-12社会与法伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv12_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 891,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "e67cf735-d4db-4497-babe-5f35763d41d3"
+ },
+ {
+ "id": "11db0398-6c49-41f3-97c9-411cbc794dfa",
+ "name": "CNR-15 中国交通广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "entertainment",
+ "information",
+ "lifestyle",
+ "music",
+ "traffic information"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://satellitepull.cnr.cn/live/wxzgjtgb/playlist.m3u8?wsSession=28e11e3debee46427a9d53dc-174908170190549&wsIPSercert=f7b6cfa8467acd0836b62cf14aa786d3",
+ "homepage": "https://www.cnr.cn/",
+ "logoUrl": "https://ytmedia.radio.cn/CCYT/202505/19/18/8jLzVYGQuoQrHLIljfYQxUeOssaU12f5xAiFGZr2025051918831.jpg",
+ "votes": 77,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "11db0398-6c49-41f3-97c9-411cbc794dfa"
+ },
+ {
+ "id": "b09047c9-8d8c-4a68-aee0-c04aa22944c1",
+ "name": "Fm891线上音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "internet radio",
+ "music",
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/20500215/64k.mp3",
+ "homepage": "https://www.fm891.net/",
+ "logoUrl": "https://fm891.net/891logo.jpg",
+ "votes": 116,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "b09047c9-8d8c-4a68-aee0-c04aa22944c1"
+ },
+ {
+ "id": "63b86021-7d2a-42cd-aff8-96860a0bc8d5",
+ "name": "云梦音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "internet radio",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/20500187/64k.mp3",
+ "homepage": "http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=XaH2pt6TEUo8nb1a3WgZyZZNWZeJxG3D&authKey=D1dLycK1I%2BUvgnHTbwUl7%2FJJgSBC01xPZgMX13Nph2VdWTze9X7xE9y7%2BPPe%2B65P&noverify=0&group_code=849566628",
+ "logoUrl": "https://pic.qtfm.cn/2023/0717/20230717031145.png",
+ "votes": 296,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "63b86021-7d2a-42cd-aff8-96860a0bc8d5"
+ },
+ {
+ "id": "29044ec4-7e4a-4f72-9499-82bc378640b7",
+ "name": "179music",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/mss1yzbbbm8uv",
+ "homepage": "https://zeno.fm/radio/184179/",
+ "logoUrl": "https://zeno.fm/_ipx/q_85&fit_cover&s_288x288/https://images.zeno.fm/m2s_GHlJCj8KPIkj295khgQ3xtVZdh116e45WAjrdHo/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvYWd4emZucGxibTh0YzNSaGRITnlNZ3NTQ2tGMWRHaERiR2xsYm5RWWdJRFE5LWYtb3dvTUN4SU9VM1JoZEdsdmJsQnliMlpwYkdVWWdJRFFwNWlnbmdvTW9nRUVlbVZ1YncvaW1hZ2UvP3U9MTY2MTU2MTgxNzAwMA.webp",
+ "votes": 55,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "29044ec4-7e4a-4f72-9499-82bc378640b7"
+ },
+ {
+ "id": "5b510903-0b95-4ae1-bb6d-02f2cfb31517",
+ "name": "CCTV-11戏曲伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "opera"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv11_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 486,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "5b510903-0b95-4ae1-bb6d-02f2cfb31517"
+ },
+ {
+ "id": "1bd95c33-9c29-452a-a44c-9c5cb02441b6",
+ "name": "CCTV-4中文国际美洲伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctvamerica_2.m3u8",
+ "homepage": "http://tv.cctv.com/cctv4america/",
+ "logoUrl": "http://p2.img.cctvpic.com/photoAlbum/page/performance/img/2022/3/18/1647595459147_432.png",
+ "votes": 772,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "1bd95c33-9c29-452a-a44c-9c5cb02441b6"
+ },
+ {
+ "id": "b15b81c9-9961-45a4-bb3f-b087a5881bf7",
+ "name": "CGTN Radio",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "english",
+ "tags": [
+ "news",
+ "propaganda",
+ "talks"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://sk.cri.cn/am846.m3u8",
+ "homepage": "https://radio.cgtn.com/",
+ "logoUrl": "https://radio-res.cgtn.com/image/2112/1639986367791.jpg",
+ "votes": 656,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "b15b81c9-9961-45a4-bb3f-b087a5881bf7"
+ },
+ {
+ "id": "c6f6b3d8-c63d-40db-a1be-f1ca31095117",
+ "name": "SDBA Classics 94.7 Shanghai",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "mandarin",
+ "tags": [
+ "classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qingting.fm/live/267/64k.mp3?listening-from-radio-garden=1696445196",
+ "homepage": "https://www.smgradio.cn/",
+ "logoUrl": null,
+ "votes": 60,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "c6f6b3d8-c63d-40db-a1be-f1ca31095117"
+ },
+ {
+ "id": "5b9133a9-2fc6-4b96-ab0f-a6338a7938ad",
+ "name": "上海流行音乐广播 动感101 FM101.7",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/274/64k.mp3",
+ "homepage": "https://www.smg.cn/review/index.html",
+ "logoUrl": "http://pic.qingting.fm/2014/0909/20140909123511693.jpg",
+ "votes": 221,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "5b9133a9-2fc6-4b96-ab0f-a6338a7938ad"
+ },
+ {
+ "id": "5562c062-8a94-47dc-857f-73430c6d4020",
+ "name": "广东交通之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "cantonese",
+ "tags": [
+ "traffic",
+ "羊城交通广播"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/1262/64k.mp3",
+ "homepage": "https://m.gdtv.cn/",
+ "logoUrl": null,
+ "votes": 958,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "5562c062-8a94-47dc-857f-73430c6d4020"
+ },
+ {
+ "id": "53ec59f3-9b3f-41b3-b5d3-89fecf58ec78",
+ "name": "济南故事广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "culture",
+ "educational",
+ "science",
+ "storytelling",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/1672/64k.mp3",
+ "homepage": "http://jnradio.ijntv.cn/fm1043/",
+ "logoUrl": null,
+ "votes": 654,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "53ec59f3-9b3f-41b3-b5d3-89fecf58ec78"
+ },
+ {
+ "id": "28c77f6f-3fb6-4bf0-b95f-41480fb7716a",
+ "name": "CCTV-10科教伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "education",
+ "educational",
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv10_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 815,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "28c77f6f-3fb6-4bf0-b95f-41480fb7716a"
+ },
+ {
+ "id": "15b3f8fb-dd33-4c0e-a0c2-ee98399c7faa",
+ "name": "CCTV-6电影频道伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "film",
+ "movie",
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv6_2.m3u8",
+ "homepage": "https://www.1905.com/",
+ "logoUrl": "https://so1.360tres.com/t01ad075de98c89d27d.jpg",
+ "votes": 57,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "15b3f8fb-dd33-4c0e-a0c2-ee98399c7faa"
+ },
+ {
+ "id": "8cf69c8e-0d32-4f6c-ac83-2e7c3acf4349",
+ "name": "KBS韩国国际广播电台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://api.xmgspace.me/api/kbs-stream/",
+ "homepage": "https://kbsworld.kbs.co.kr/program/list.php",
+ "logoUrl": "https://media2.fishtank.my/stations/astro-kbs-world/updated/square_md.png",
+ "votes": 62,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "8cf69c8e-0d32-4f6c-ac83-2e7c3acf4349"
+ },
+ {
+ "id": "82a2903d-b2d7-49c6-93f1-c1d734a9d21a",
+ "name": "REPLAY NEWS - 中文 每5分钟播报一次新闻的电台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://replaynewszh.ice.infomaniak.ch/replaynewszh-128.mp3",
+ "homepage": "https://www.replaynews.net/",
+ "logoUrl": "https://www.publicsante.com/BIENVENU/LOGO REPLAY NEWS-ZH.png",
+ "votes": 112,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "82a2903d-b2d7-49c6-93f1-c1d734a9d21a"
+ },
+ {
+ "id": "041fd8c1-df76-4173-bb88-1fb3728c5e8f",
+ "name": "河南戏曲广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "entertainment"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream.hndt.com/live/yule/playlist.m3u8",
+ "homepage": "http://www.hndt.com/",
+ "logoUrl": null,
+ "votes": 405,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "041fd8c1-df76-4173-bb88-1fb3728c5e8f"
+ },
+ {
+ "id": "0e375ab8-4a5c-4cb2-83db-7ea38cccc52e",
+ "name": "179白陽經典",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/v5169mx3cm8uv",
+ "homepage": "https://zeno.fm/radio/179scriptureofBaiyang/",
+ "logoUrl": "https://zeno.fm/_ipx/q_85&fit_cover&s_288x288/https://images.zeno.fm/DAvt8GYW2S2vl1G2db0FOGqfzSNJ_XC0JPp-4v9j32k/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvYWd4emZucGxibTh0YzNSaGRITnlNZ3NTQ2tGMWRHaERiR2xsYm5RWWdJRFF0NlRWckFnTUN4SU9VM1JoZEdsdmJsQnliMlpwYkdVWWdJRFExN3Yxd2drTW9nRUVlbVZ1YncvaW1hZ2UvP3U9MTY2MTUwMTM2ODAwMA.webp",
+ "votes": 54,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e375ab8-4a5c-4cb2-83db-7ea38cccc52e"
+ },
+ {
+ "id": "315b2172-4d81-4ee0-8294-983690b6eb3a",
+ "name": "CCTV-3综艺伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "entertainment"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv3_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 812,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "315b2172-4d81-4ee0-8294-983690b6eb3a"
+ },
+ {
+ "id": "6fc00fa2-1583-4638-9a90-cfe14fa7375a",
+ "name": "CCTV-4中文国际欧洲伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctveurope_2.m3u8",
+ "homepage": "http://tv.cctv.com/cctv4europe/",
+ "logoUrl": null,
+ "votes": 511,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6fc00fa2-1583-4638-9a90-cfe14fa7375a"
+ },
+ {
+ "id": "ba6847f1-6ef1-4d44-9410-815be75e4333",
+ "name": "CCTV-5体育伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "sports",
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv5_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 988,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba6847f1-6ef1-4d44-9410-815be75e4333"
+ },
+ {
+ "id": "143b4f95-c111-40d2-93f6-23ada6047a99",
+ "name": "CCTV-8电视剧伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv8_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": "https://p3.img.cctvpic.com/photoAlbum/page/performance/img/2022/3/18/1647597522993_467.png",
+ "votes": 1080,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "143b4f95-c111-40d2-93f6-23ada6047a99"
+ },
+ {
+ "id": "be0fc56b-aff0-4724-8b1f-32e6f7161444",
+ "name": "Russian Chinese Music Radio 俄中音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese,russian",
+ "tags": [
+ "chinese",
+ "chinese pop",
+ "russian",
+ "russian pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/txtltqtgns3vv",
+ "homepage": "https://zeno.fm/radio/ruschmusradio/",
+ "logoUrl": "https://zeno.fm/_ipx/s_144x144/https://images.zeno.fm/mbJSwjdvufKSZwd5muvETvRtJzrpGbRPcDzloeSzJMc/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvNjVhMTJkM2EtYWM4NC00Njg4LTlmYjktN2RmZjZmMTgzMWNhL2ltYWdlLz91PTE3Mzg4NTk2NzIwMDA.webp",
+ "votes": 188,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "be0fc56b-aff0-4724-8b1f-32e6f7161444"
+ },
+ {
+ "id": "6420a400-38fe-47e4-ab5c-28f0d00667bf",
+ "name": "广东新闻广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/1254/64k.mp3",
+ "homepage": "https://m.gdtv.cn/",
+ "logoUrl": null,
+ "votes": 1150,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6420a400-38fe-47e4-ab5c-28f0d00667bf"
+ },
+ {
+ "id": "85cc79df-510b-42c6-a4c2-9c7c1e347f1f",
+ "name": "故事广播-阿基米德故事会",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "storytelling"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/20500182/64k.mp3",
+ "homepage": "http://www.ajmide.com/",
+ "logoUrl": "https://pic.qtfm.cn/sso/48/1681194685101_C-GRakvDz.png",
+ "votes": 833,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "85cc79df-510b-42c6-a4c2-9c7c1e347f1f"
+ },
+ {
+ "id": "751de35b-f169-45fa-9fd5-ef4284fbe91e",
+ "name": "Big B Radio亚洲音乐台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese,japanese,korean",
+ "tags": [
+ "music",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://antares.dribbcast.com/proxy/apop?mp=/s",
+ "homepage": "https://bigbradio.net/",
+ "logoUrl": null,
+ "votes": 361,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "751de35b-f169-45fa-9fd5-ef4284fbe91e"
+ },
+ {
+ "id": "d67ef458-8c9e-4b21-ab68-aeb6d62b203a",
+ "name": "BIG BIG MIX – 乐享音乐",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music",
+ "oldies"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://play.gojoy.org/web/stream",
+ "homepage": "http://bigbigmix.com/",
+ "logoUrl": "http://www.bigbigmix.com/wp-content/uploads/2023/09/cropped-MIX-LOGO-INDEX.png",
+ "votes": 62,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "d67ef458-8c9e-4b21-ab68-aeb6d62b203a"
+ },
+ {
+ "id": "c6fc8290-7244-44f2-a40e-af01822b52e8",
+ "name": "BIG BIG MIX – 乐享音乐 标清",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/4913/64k.mp3",
+ "homepage": "http://bigbigmix.com/",
+ "logoUrl": "http://www.bigbigmix.com/wp-content/uploads/2023/09/cropped-MIX-LOGO-INDEX.png",
+ "votes": 25,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c6fc8290-7244-44f2-a40e-af01822b52e8"
+ },
+ {
+ "id": "49a3c31b-b635-4af2-94f0-e072d9eab328",
+ "name": "CGTN - English",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "english",
+ "tags": [
+ "documentaries",
+ "news",
+ "variety"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://english-livetx.cgtn.com/hls/yypdyyctzb_sd.m3u8",
+ "homepage": "https://www.cgtn.com/",
+ "logoUrl": "https://i.imgur.com/rn2H3o8.png",
+ "votes": 225,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "49a3c31b-b635-4af2-94f0-e072d9eab328"
+ },
+ {
+ "id": "b22f1554-9aa0-4c10-af51-4b159e6990e9",
+ "name": "CNR-1 中国之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "information",
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://satellitepull.cnr.cn/live/wxzgzs/playlist.m3u8?wsSession=28e11e3debee46427a9d53dc-174908087306150&wsIPSercert=f7b6cfa8467acd0836b62cf14aa786d3",
+ "homepage": "https://www.cnr.cn/",
+ "logoUrl": "https://ytmedia.radio.cn/CCYT/202302/09/16/ooaRWbtET4tHDAMFR2023020916528.png",
+ "votes": 178,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "b22f1554-9aa0-4c10-af51-4b159e6990e9"
+ },
+ {
+ "id": "bbf759be-1a54-4c46-b4eb-71995af299d0",
+ "name": "Phate Radio 飛特電台 - anime, games and pop",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "anime",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://phate.io/listen",
+ "homepage": "https://phate.io/",
+ "logoUrl": "https://myradio.com.tw/_next/image?url=https://image.myradio.com.tw/A3301.jpg&w=256&q=75",
+ "votes": 74,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "bbf759be-1a54-4c46-b4eb-71995af299d0"
+ },
+ {
+ "id": "7be5ab8a-720f-4561-a3ae-0717a5190a47",
+ "name": "上海新闻广播 FM93.4 AM990",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/270/64k.mp3",
+ "homepage": "https://www.smg.cn/review/index.html",
+ "logoUrl": "http://pic.qingting.fm/2015/0202/20150202170847551.jpg",
+ "votes": 131,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7be5ab8a-720f-4561-a3ae-0717a5190a47"
+ },
+ {
+ "id": "fdd2ed7c-1b5d-487b-8e11-9d4032d47484",
+ "name": "东方卫视伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/dongfang_2.m3u8",
+ "homepage": "https://www.smg.cn/review/index.html",
+ "logoUrl": "https://www.smg.cn/favicon.ico",
+ "votes": 518,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "fdd2ed7c-1b5d-487b-8e11-9d4032d47484"
+ },
+ {
+ "id": "85bd17c9-e8ef-436f-9699-5de0d180a56f",
+ "name": "星空电台 STAR RADIO",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "cantonese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/5022379/64k.mp3",
+ "homepage": "https://www.douyin.com/hashtag/1601349392489475",
+ "logoUrl": "https://so1.360tres.com/t017f7678dc1805885e.jpg",
+ "votes": 371,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "85bd17c9-e8ef-436f-9699-5de0d180a56f"
+ },
+ {
+ "id": "030d3fc5-a775-4c61-a671-497766a51f32",
+ "name": "綠邨電台",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "china",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://fm995.ddns.net/hls1/fm995.m3u8",
+ "homepage": "https://mfm995.com/",
+ "logoUrl": "https://mfm995.com/wp-content/uploads/2022/09/cropped-icon20220930_1.png",
+ "votes": 307,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "030d3fc5-a775-4c61-a671-497766a51f32"
+ },
+ {
+ "id": "07137225-a17f-4d3e-9347-7dbbedb94cfc",
+ "name": "AikosRadio",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/7tlyb215x5xtv",
+ "homepage": "https://zeno.fm/radio/aikosradio/",
+ "logoUrl": "https://zeno.fm/_ipx/f_webp&q_85&fit_cover&s_288x288/https://images.zeno.fm/MhQ8IBSotEfp2jy0J5Fn1p_6zqhpQDwEpGrkcqkAWko/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvODk4NzkwM2UtNDViMS00ZjYxLTkyNTctZTA5MTQ3YjZmNTE0L2ltYWdlLz91PTE3MTY4MTQ2MzMwMDA.webp",
+ "votes": 32,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "07137225-a17f-4d3e-9347-7dbbedb94cfc"
+ },
+ {
+ "id": "892b8bae-b7b4-47bc-810b-9200ab1124af",
+ "name": "CCTV-7国防军事伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "information",
+ "military",
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv7_2.m3u8",
+ "homepage": "https://tv.cctv.com/cctv7/index.shtml",
+ "logoUrl": "https://so1.360tres.com/t012431846557889e55.png",
+ "votes": 35,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "892b8bae-b7b4-47bc-810b-9200ab1124af"
+ },
+ {
+ "id": "2f44f436-9768-4198-bb79-9611754d4062",
+ "name": "CETV-1伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cetv1_2.m3u8",
+ "homepage": "http://www.centv.cn/",
+ "logoUrl": null,
+ "votes": 150,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "2f44f436-9768-4198-bb79-9611754d4062"
+ },
+ {
+ "id": "7f1ccba3-9fa0-4636-afc1-91ac4d8f8cf5",
+ "name": "Chinese Classical Music (Ogg stream)",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese,english",
+ "tags": [
+ "classical",
+ "instrumental",
+ "traditional"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://radio.chinesemusicworld.com/chinesemusic.ogg",
+ "homepage": "https://chinesemusicworld.com/",
+ "logoUrl": "https://mytunein.com/images/logos/chineseclassicalmusiconlineradio.jpg",
+ "votes": 126,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f1ccba3-9fa0-4636-afc1-91ac4d8f8cf5"
+ },
+ {
+ "id": "701e4c8c-b2c2-42db-a535-65ac13de0e0f",
+ "name": "CNR-1 中国之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv2_2.m3u8?",
+ "homepage": "http://china.cnr.cn/",
+ "logoUrl": null,
+ "votes": 891,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "701e4c8c-b2c2-42db-a535-65ac13de0e0f"
+ },
+ {
+ "id": "c1e9b8db-6f73-4d6f-be89-f5c1a4e834c7",
+ "name": "Tiktok网络电台-英语频道",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/advmk81bu68uv",
+ "homepage": "https://www.mcbngroup.com/",
+ "logoUrl": "https://zeno.fm/_ipx/f_webp&q_85&fit_cover&s_288x288/https://images.zeno.fm/fA-43wjtrcbtfJwGLa4oJtyTGQR8c-UgcJq7T3vGUZU/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvYWd4emZucGxibTh0YzNSaGRITnlNZ3NTQ2tGMWRHaERiR2xsYm5RWWdJRFE4dlQ4cVFzTUN4SU9VM1JoZEdsdmJsQnliMlpwYkdVWWdJRHdnTWo4aEFnTW9nRUVlbVZ1YncvaW1hZ2UvP3U9MTY5MTkyOTU0MDAwMA.webp",
+ "votes": 110,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1e9b8db-6f73-4d6f-be89-f5c1a4e834c7"
+ },
+ {
+ "id": "0c2da55a-4ea0-45a6-b3a9-b8281dca1b2f",
+ "name": "上海经典音乐广播 FM94.7",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/267/64k.mp3",
+ "homepage": "https://www.smg.cn/review/index.html",
+ "logoUrl": "http://pic.qingting.fm/sso/48/1641437907698_k0NNOUP54.jpeg",
+ "votes": 242,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c2da55a-4ea0-45a6-b3a9-b8281dca1b2f"
+ },
+ {
+ "id": "7c4fb276-5340-4e47-8c1c-8cacae66f98a",
+ "name": "中文课程朗读",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "educational"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/rnxvrexlnajvv",
+ "homepage": "https://zeno.fm/radio/zhong-wen-ke-cheng-lang-du/",
+ "logoUrl": "https://zeno.fm/_ipx/q_85&fit_cover&s_288x288/https://images.zeno.fm/VSU1C6cOIlb_UMMNWbT_USscNMis4KRsXDyhg0_5gjM/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvZjg5NWExY2UtYjBiYy00MWJiLTg5Y2ItYThmZTdmZjU5YzQ5L2ltYWdlLz91PTE3MzU5NzMwOTIwMDA.webp",
+ "votes": 143,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c4fb276-5340-4e47-8c1c-8cacae66f98a"
+ },
+ {
+ "id": "93bfca91-d775-4811-866f-d39613e99239",
+ "name": "包头综合广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qingting.fm/live/1889/64k.mp3",
+ "homepage": "http://www.btgdt.com/",
+ "logoUrl": null,
+ "votes": 100,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "93bfca91-d775-4811-866f-d39613e99239"
+ },
+ {
+ "id": "96c7720c-3164-46a4-8ca3-f44455a1e0be",
+ "name": "华藏净宗弘化网净空老法师",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://vod.amtb.de/liveedge/_definst_/smil:livetv.smil/chunklist_b828000.m3u8",
+ "homepage": "https://www.hwadzan.tv/",
+ "logoUrl": "https://www.hwadzan.tv/wp-content/uploads/2021/04/favicon.ico",
+ "votes": 174,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "96c7720c-3164-46a4-8ca3-f44455a1e0be"
+ },
+ {
+ "id": "e020e342-c7d8-4c1d-ad99-a5b2ce1c3907",
+ "name": "士兵突击",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "soldiers sortie"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/vs4zinqldp2vv",
+ "homepage": "https://zeno.fm/radio/shibing",
+ "logoUrl": "https://zeno.fm/_ipx/q_85&fit_cover&s_224x224/https://images.zeno.fm/Dehy7LocbG9uNEPfaRliO0enHnh63W5W8zNQhS8Hwqc/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvOWE1NTYyN2QtNDFkMi00ODIzLTlkOGYtOWEwYmE3YmUwZTg5L2ltYWdlLz91PTE3MzM2ODQwNzYwMDA.webp",
+ "votes": 69,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "e020e342-c7d8-4c1d-ad99-a5b2ce1c3907"
+ },
+ {
+ "id": "72fa86ec-a990-43d6-98f8-ecc6236ea61e",
+ "name": "雨声轻音乐",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "ambient",
+ "instrumental",
+ "relax"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/689zc32y4x8uv",
+ "homepage": "https://zeno.fm/radio/rain-songs/",
+ "logoUrl": "https://zeno.fm/favicon.ico",
+ "votes": 2376,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "72fa86ec-a990-43d6-98f8-ecc6236ea61e"
+ },
+ {
+ "id": "b5f0cac4-a29f-420a-8913-dfb0d2a24f7b",
+ "name": "CCTV-少儿伴音",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "children"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://piccpndali.v.myalicdn.com/audio/cctv14_2.m3u8",
+ "homepage": "https://www.cctv.com/",
+ "logoUrl": null,
+ "votes": 292,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b5f0cac4-a29f-420a-8913-dfb0d2a24f7b"
+ },
+ {
+ "id": "4c6f028a-7a17-48d2-9789-14278ec37c13",
+ "name": "上海经典金曲广播 FM103.7",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/273/64k.mp3",
+ "homepage": "https://www.smg.cn/review/index.html",
+ "logoUrl": "http://pic.qingting.fm/2014/0909/20140909125130474.jpg",
+ "votes": 282,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c6f028a-7a17-48d2-9789-14278ec37c13"
+ },
+ {
+ "id": "35b66907-f49b-408b-a593-2b747b02e231",
+ "name": "中国风的歌曲",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/ftaareifzcyvv",
+ "homepage": "https://zeno.fm/radio/zhong-guo-feng-de-ge-qu/",
+ "logoUrl": "https://zeno.fm/_ipx/_/https://images.zeno.fm/i8lvTJJ4RxTAg2LCFe8whtXQfuLEpneivqCRq1e8qc4/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvYmEzMGM5MzItODBmMy00NTljLTkzNjAtYTRjYmYyZTViYzhmL2ltYWdlLz91PTE2OTI0Mjg5ODkwMDA.webp",
+ "votes": 19,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "35b66907-f49b-408b-a593-2b747b02e231"
+ },
+ {
+ "id": "3e41dc10-ebdd-4bab-b6ba-41806ee8b204",
+ "name": "内蒙古新闻广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/1881/64k.mp3",
+ "homepage": "https://www.nmtv.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2011/0926/20110926100610683.jpg",
+ "votes": 51,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e41dc10-ebdd-4bab-b6ba-41806ee8b204"
+ },
+ {
+ "id": "fabad597-7864-4cad-9e11-649c3ab8bb4a",
+ "name": "内蒙古新闻综合广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "full service"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/1883/64k.mp3",
+ "homepage": "https://www.nmtv.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2015/0324/20150324134139396.jpg",
+ "votes": 27,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "fabad597-7864-4cad-9e11-649c3ab8bb4a"
+ },
+ {
+ "id": "51ff0c65-86bf-444d-abc4-9bd3318ee4b7",
+ "name": "包头交通广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music",
+ "traffic"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qingting.fm/live/1890/64k.mp3",
+ "homepage": "http://www.btgdt.com/",
+ "logoUrl": null,
+ "votes": 93,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "51ff0c65-86bf-444d-abc4-9bd3318ee4b7"
+ },
+ {
+ "id": "f82a41ce-251d-459a-bee9-4e2efd5c3982",
+ "name": "北京音乐广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "97.4",
+ "97.4 fm",
+ "music",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/332/64k.mp3",
+ "homepage": "https://www.rbc.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2017/0424/20170424025444.jpeg",
+ "votes": 329,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f82a41ce-251d-459a-bee9-4e2efd5c3982"
+ },
+ {
+ "id": "93a367e3-5d44-4fc7-b394-957358647c66",
+ "name": "南京音乐广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/4963/64k.mp3",
+ "homepage": "http://www.njgb.com/",
+ "logoUrl": "http://pic.qingting.fm/2015/1223/20151223210750357.jpg",
+ "votes": 52,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "93a367e3-5d44-4fc7-b394-957358647c66"
+ },
+ {
+ "id": "2a196f5e-1a14-4f97-b1e3-c4b67d092cfe",
+ "name": "广东音乐之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp.qtfm.cn/live/1260/64k.mp3",
+ "homepage": "https://m.gdtv.cn/",
+ "logoUrl": null,
+ "votes": 1213,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "2a196f5e-1a14-4f97-b1e3-c4b67d092cfe"
+ },
+ {
+ "id": "f77cc04a-16fc-4748-ab6a-77c9699a9407",
+ "name": "广西交通广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "traffic radio broadcast"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/1758/64k.mp3",
+ "homepage": "https://www.gxtv.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2022/0528/20220528105727.jpeg",
+ "votes": 49,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f77cc04a-16fc-4748-ab6a-77c9699a9407"
+ },
+ {
+ "id": "f8bf234d-d145-48e3-8ba7-3252bb5afc5a",
+ "name": "延边朝鲜语文艺生活广播 문예생활방송",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "korean",
+ "tags": [
+ "culture"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://srs.iybtv.cn/audio/FM1023/index.m3u8",
+ "homepage": "https://www.iybtv.cn/",
+ "logoUrl": "http://pic.qtfm.cn/2025/0806/20250806094845.png!200",
+ "votes": 1,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f8bf234d-d145-48e3-8ba7-3252bb5afc5a"
+ },
+ {
+ "id": "3793a99b-2299-47d3-8205-36b735652aef",
+ "name": "延边朝鲜语新闻综合广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "korean",
+ "tags": [
+ "full service"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/20324/64k.mp3",
+ "homepage": "http://www.iyb983.cn/",
+ "logoUrl": "https://pic.qtfm.cn/2025/0806/20250806094845.png",
+ "votes": 1,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3793a99b-2299-47d3-8205-36b735652aef"
+ },
+ {
+ "id": "5cbea812-27f1-4e4a-b84a-d079b5f962aa",
+ "name": "枣强综合广播 年代995",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "99.5",
+ "99.5 fm",
+ "classic hits",
+ "music",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/20500202/64k.mp3",
+ "homepage": "http://www.hspeace.gov.cn/zqx/zqxw/",
+ "logoUrl": "https://pic.qtfm.cn/2024/0109/20240109105403.png",
+ "votes": 12,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5cbea812-27f1-4e4a-b84a-d079b5f962aa"
+ },
+ {
+ "id": "a0f3ac2c-df6d-456d-a7c6-03fa5588668b",
+ "name": "河北新闻广播",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "chinese",
+ "tags": [
+ "news"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://radio.pull.hebtv.com/live/hebxw.m3u8",
+ "homepage": "https://www.hebtv.com/",
+ "logoUrl": "https://www.hebtv.com/public/img/icon_ie.jpg",
+ "votes": 675,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a0f3ac2c-df6d-456d-a7c6-03fa5588668b"
+ },
+ {
+ "id": "ca8b505a-c4d0-4b66-9fdf-e1379f484a68",
+ "name": "轮台之声",
+ "country": "China",
+ "countryCode": "CN",
+ "language": "uyghur",
+ "tags": [
+ "full service",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://lhttp-hw.qtfm.cn/live/20500099/64k.mp3",
+ "homepage": "http://www.xjlt.gov.cn/xjltx/c110353/list_2.shtml",
+ "logoUrl": "https://pic.qtfm.cn/sso/198/1615950062021_f6kGDDG7Y.jpeg",
+ "votes": 3,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ca8b505a-c4d0-4b66-9fdf-e1379f484a68"
+ },
{
"id": "ac78d4f5-ac2b-4d9e-8f33-2187a41fb539",
"name": "Yammat FM",
@@ -7107,7 +16003,7 @@
"homepage": "https://www.yammat.fm/",
"logoUrl": "https://www.yammat.fm/wp-content/themes/yammat/src/img/favicon/1024x1024.png",
"votes": 4239,
- "clickcount": 27,
+ "clickcount": 28,
"source": "radio-browser",
"sourceStationUuid": "ac78d4f5-ac2b-4d9e-8f33-2187a41fb539"
},
@@ -7141,7 +16037,7 @@
"homepage": "https://www.facebook.com/groups/2984818395119540",
"logoUrl": "https://static.mytuner.mobi/media/tvos_radios/KEAX5uaryr.png",
"votes": 247,
- "clickcount": 22,
+ "clickcount": 24,
"source": "radio-browser",
"sourceStationUuid": "94ec1212-bbd5-45fe-ae26-3f107c5c18c0"
},
@@ -7158,7 +16054,7 @@
"homepage": "https://topradio.hr/",
"logoUrl": "https://topradio.hr/favicon.ico",
"votes": 4028,
- "clickcount": 21,
+ "clickcount": 20,
"source": "radio-browser",
"sourceStationUuid": "82214351-bd2f-4826-9b4c-c8bc5459c789"
},
@@ -7175,7 +16071,7 @@
"homepage": "https://www.radio-banovina.hr/bozic",
"logoUrl": "https://www.radio-banovina.hr/turbo/tmp/images/logo.1642614175.png",
"votes": 350,
- "clickcount": 13,
+ "clickcount": 14,
"source": "radio-browser",
"sourceStationUuid": "16b39855-7723-4bec-b2cb-c439ea3f90af"
},
@@ -7208,47 +16104,29 @@
"streamUrl": "https://c8.hostingcentar.com/streams/radiotvornica?type=http&nocache=50001",
"homepage": "https://www.radiotvornica.hr/#",
"logoUrl": "https://www.radiotvornica.hr/favicon.png",
- "votes": 1580,
+ "votes": 1581,
"clickcount": 9,
"source": "radio-browser",
"sourceStationUuid": "960125a3-5b14-4dfc-970f-0a508dbd618d"
},
{
- "id": "297d7c8c-caaf-4630-8869-2d8070ae76d5",
- "name": "CMC Radio",
- "country": "Croatia",
- "countryCode": "HR",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://radio-stream.cmc.com.hr:9011/live",
- "homepage": "https://radio.cmc.com.hr/",
- "logoUrl": "https://radio.cmc.com.hr/favicon.ico",
- "votes": 70,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "297d7c8c-caaf-4630-8869-2d8070ae76d5"
- },
- {
- "id": "38b81da5-2a3b-43c0-b444-ee0f7ad1c18d",
- "name": "Radio Kaj",
+ "id": "d853347f-202a-49bc-9b13-2f2bea321c19",
+ "name": "Radio Max 99.3 (Cerje Nebojse, Maruševec)",
"country": "Croatia",
"countryCode": "HR",
"language": "croatian",
"tags": [
- "pop",
- "regional"
+ "folk"
],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://s8.iqstreaming.com:2020/stream/radio-kaj2/stream",
- "homepage": "http://www.radio-kaj.hr/",
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://azuracast.novi-net.net/listen/radiomax/radiomax.aac?refresh=1676766574706",
+ "homepage": "https://www.radiomax.hr/",
"logoUrl": null,
- "votes": 3595,
+ "votes": 70,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "38b81da5-2a3b-43c0-b444-ee0f7ad1c18d"
+ "sourceStationUuid": "d853347f-202a-49bc-9b13-2f2bea321c19"
},
{
"id": "bd003058-619d-443e-ade2-4e95d191dab3",
@@ -7267,6 +16145,23 @@
"source": "radio-browser",
"sourceStationUuid": "bd003058-619d-443e-ade2-4e95d191dab3"
},
+ {
+ "id": "297d7c8c-caaf-4630-8869-2d8070ae76d5",
+ "name": "CMC Radio",
+ "country": "Croatia",
+ "countryCode": "HR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio-stream.cmc.com.hr:9011/live",
+ "homepage": "https://radio.cmc.com.hr/",
+ "logoUrl": "https://radio.cmc.com.hr/favicon.ico",
+ "votes": 70,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "297d7c8c-caaf-4630-8869-2d8070ae76d5"
+ },
{
"id": "32a9a354-3bfb-4ff0-86e0-78463fba41a1",
"name": "Radio Đakovo",
@@ -7289,45 +16184,24 @@
"sourceStationUuid": "32a9a354-3bfb-4ff0-86e0-78463fba41a1"
},
{
- "id": "d853347f-202a-49bc-9b13-2f2bea321c19",
- "name": "Radio Max 99.3 (Cerje Nebojse, Maruševec)",
+ "id": "38b81da5-2a3b-43c0-b444-ee0f7ad1c18d",
+ "name": "Radio Kaj",
"country": "Croatia",
"countryCode": "HR",
"language": "croatian",
"tags": [
- "folk"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://azuracast.novi-net.net/listen/radiomax/radiomax.aac?refresh=1676766574706",
- "homepage": "https://www.radiomax.hr/",
- "logoUrl": null,
- "votes": 70,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "d853347f-202a-49bc-9b13-2f2bea321c19"
- },
- {
- "id": "6e5f90fa-a898-4f20-8f97-74843e988e33",
- "name": "Zagorski radio",
- "country": "Croatia",
- "countryCode": "HR",
- "language": "croatian",
- "tags": [
- "folk",
- "news",
"pop",
"regional"
],
"codec": "AAC+",
"bitrate": 64,
- "streamUrl": "https://s8.iqstreaming.com:2020/stream/zagorski/stream",
- "homepage": "http://www.zagorski-radio.hr/",
+ "streamUrl": "https://s8.iqstreaming.com:2020/stream/radio-kaj2/stream",
+ "homepage": "http://www.radio-kaj.hr/",
"logoUrl": null,
- "votes": 842,
+ "votes": 3595,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "6e5f90fa-a898-4f20-8f97-74843e988e33"
+ "sourceStationUuid": "38b81da5-2a3b-43c0-b444-ee0f7ad1c18d"
},
{
"id": "5d429726-08ac-4785-8e12-292054d1d6cc",
@@ -7370,6 +16244,28 @@
"source": "radio-browser",
"sourceStationUuid": "76ca4ca5-20aa-4015-9825-7fd035dfb077"
},
+ {
+ "id": "6e5f90fa-a898-4f20-8f97-74843e988e33",
+ "name": "Zagorski radio",
+ "country": "Croatia",
+ "countryCode": "HR",
+ "language": "croatian",
+ "tags": [
+ "folk",
+ "news",
+ "pop",
+ "regional"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://s8.iqstreaming.com:2020/stream/zagorski/stream",
+ "homepage": "http://www.zagorski-radio.hr/",
+ "logoUrl": null,
+ "votes": 842,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6e5f90fa-a898-4f20-8f97-74843e988e33"
+ },
{
"id": "8a15a9d8-9d83-4671-8d43-1b616f63beef",
"name": "057 radio, Zadar, Croatia",
@@ -7442,26 +16338,6 @@
"source": "radio-browser",
"sourceStationUuid": "d2f49a4a-54e3-4059-8f5c-2120962ae81e"
},
- {
- "id": "a43fe521-6b1b-4297-9d0d-26e0b903b328",
- "name": "Radio 105 Selnica (HR)",
- "country": "Croatia",
- "countryCode": "HR",
- "language": "croatian",
- "tags": [
- "folk",
- "pop"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://azuracast.novi-net.net/radio/8050/radio105.aac",
- "homepage": "https://www.radio105.hr/#",
- "logoUrl": "https://www.radio105.hr/favicon.ico",
- "votes": 47,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "a43fe521-6b1b-4297-9d0d-26e0b903b328"
- },
{
"id": "e5a8ffd5-58c7-453a-b286-1197a6b317ad",
"name": "Radio Max",
@@ -7496,23 +16372,6 @@
"source": "radio-browser",
"sourceStationUuid": "08d2313f-5550-4e51-8179-bd2c066d7e2e"
},
- {
- "id": "9f09baec-8c93-4327-ac7a-6d5b7bba9bcc",
- "name": "Club Music Radio - Dance",
- "country": "Croatia",
- "countryCode": "HR",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://cmr-hosting.com:7002/;stream/1",
- "homepage": "https://clubmusic-1.com/",
- "logoUrl": null,
- "votes": 70,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "9f09baec-8c93-4327-ac7a-6d5b7bba9bcc"
- },
{
"id": "2cf7f232-2209-4f21-837c-8bf83c3eed12",
"name": "Club Music Radio - FOLK",
@@ -7530,23 +16389,6 @@
"source": "radio-browser",
"sourceStationUuid": "2cf7f232-2209-4f21-837c-8bf83c3eed12"
},
- {
- "id": "03abf0e3-7903-4f3f-a757-053631819f43",
- "name": "Club Music Radio - LOVE SONG",
- "country": "Croatia",
- "countryCode": "HR",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://cmr-hosting.com:7004/;stream/1",
- "homepage": "https://clubmusic-1.com/",
- "logoUrl": "https://clubmusic-1.com/wp-content/uploads/2017/12/Logo-za-header-e1515976776641.png",
- "votes": 53,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "03abf0e3-7903-4f3f-a757-053631819f43"
- },
{
"id": "8c567bfe-84b4-40bc-8d35-94fac68a674e",
"name": "HRT HR 2",
@@ -7599,27 +16441,24 @@
"sourceStationUuid": "4e57d9c6-267a-47c8-a55e-6473b3d2228c"
},
{
- "id": "c889187f-310f-4e2b-898b-6cb79122e200",
- "name": "Otvoreni LIVE",
+ "id": "a43fe521-6b1b-4297-9d0d-26e0b903b328",
+ "name": "Radio 105 Selnica (HR)",
"country": "Croatia",
"countryCode": "HR",
"language": "croatian",
"tags": [
- "croatia",
- "croatian",
- "hrvatska",
- "pop",
- "pop rock"
+ "folk",
+ "pop"
],
"codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://stream.otvoreni.hr/stream48",
- "homepage": "https://www.otvoreni.hr/",
- "logoUrl": null,
- "votes": 1260,
+ "bitrate": 128,
+ "streamUrl": "https://azuracast.novi-net.net/radio/8050/radio105.aac",
+ "homepage": "https://www.radio105.hr/#",
+ "logoUrl": "https://www.radio105.hr/favicon.ico",
+ "votes": 47,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "c889187f-310f-4e2b-898b-6cb79122e200"
+ "sourceStationUuid": "a43fe521-6b1b-4297-9d0d-26e0b903b328"
},
{
"id": "c5dce470-a681-4130-86fd-66e000dc120e",
@@ -7663,21 +16502,27 @@
"sourceStationUuid": "684e0b7e-bd37-4176-9d6d-bae63e3fc1ae"
},
{
- "id": "cf16320d-d519-431e-b972-93e691cce9ab",
- "name": "Tamburaški radio",
+ "id": "ea27ccc6-affb-4264-a54f-e7b791f31088",
+ "name": "Slavonski Radio",
"country": "Croatia",
"countryCode": "HR",
- "language": null,
- "tags": [],
+ "language": "croatian",
+ "tags": [
+ "hits",
+ "pop",
+ "rock",
+ "slavonija",
+ "various"
+ ],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://listen.radioking.com/radio/552965/stream/612287",
- "homepage": null,
+ "streamUrl": "https://ec2s.crolive.com.hr:8035/stream",
+ "homepage": "https://www.slavonskiradio.hr/",
"logoUrl": null,
- "votes": 22,
+ "votes": 625,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "cf16320d-d519-431e-b972-93e691cce9ab"
+ "sourceStationUuid": "ea27ccc6-affb-4264-a54f-e7b791f31088"
},
{
"id": "7ffae44d-4d6c-49f3-a448-d2342b084841",
@@ -7785,6 +16630,40 @@
"source": "radio-browser",
"sourceStationUuid": "ec4bd980-b14f-4ed3-a717-396dee87f436"
},
+ {
+ "id": "9f09baec-8c93-4327-ac7a-6d5b7bba9bcc",
+ "name": "Club Music Radio - Dance",
+ "country": "Croatia",
+ "countryCode": "HR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cmr-hosting.com:7002/;stream/1",
+ "homepage": "https://clubmusic-1.com/",
+ "logoUrl": null,
+ "votes": 70,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f09baec-8c93-4327-ac7a-6d5b7bba9bcc"
+ },
+ {
+ "id": "03abf0e3-7903-4f3f-a757-053631819f43",
+ "name": "Club Music Radio - LOVE SONG",
+ "country": "Croatia",
+ "countryCode": "HR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cmr-hosting.com:7004/;stream/1",
+ "homepage": "https://clubmusic-1.com/",
+ "logoUrl": "https://clubmusic-1.com/wp-content/uploads/2017/12/Logo-za-header-e1515976776641.png",
+ "votes": 53,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "03abf0e3-7903-4f3f-a757-053631819f43"
+ },
{
"id": "90d73285-1813-43e2-bbf4-7e1607217f85",
"name": "Club Music Radio - TAMBURA",
@@ -7802,6 +16681,26 @@
"source": "radio-browser",
"sourceStationUuid": "90d73285-1813-43e2-bbf4-7e1607217f85"
},
+ {
+ "id": "08a81254-0bf7-40c2-844b-304f22717236",
+ "name": "Drama radio Dubrovnik",
+ "country": "Croatia",
+ "countryCode": "HR",
+ "language": "croatian",
+ "tags": [
+ "news talk",
+ "pop music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://listen.radioking.com/radio/626884/stream/689500",
+ "homepage": "https://dramaradio.hr/",
+ "logoUrl": "https://images.keepone.net/1725392485-2024-09-03.png",
+ "votes": 37,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "08a81254-0bf7-40c2-844b-304f22717236"
+ },
{
"id": "f3872ca2-f642-4e02-8d61-f3f4fcc3093c",
"name": "HRT Radio Sljeme (mp3)",
@@ -7853,6 +16752,29 @@
"source": "radio-browser",
"sourceStationUuid": "9f21fc9f-6cc0-4aea-b6d3-60ba1b546f71"
},
+ {
+ "id": "c889187f-310f-4e2b-898b-6cb79122e200",
+ "name": "Otvoreni LIVE",
+ "country": "Croatia",
+ "countryCode": "HR",
+ "language": "croatian",
+ "tags": [
+ "croatia",
+ "croatian",
+ "hrvatska",
+ "pop",
+ "pop rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://stream.otvoreni.hr/stream48",
+ "homepage": "https://www.otvoreni.hr/",
+ "logoUrl": null,
+ "votes": 1260,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c889187f-310f-4e2b-898b-6cb79122e200"
+ },
{
"id": "43556d25-3197-4143-a4ee-dffdd63a64a1",
"name": "Otvoreni Radio - Love",
@@ -8013,23 +16935,27 @@
"sourceStationUuid": "157bb662-814f-462d-8ab5-a6bef938dde2"
},
{
- "id": "82c6de29-905b-42bc-8f77-7d269403d15d",
- "name": "Radio Ritam",
+ "id": "6a60f518-c951-4d19-8f7a-1e69ecbbda04",
+ "name": "Radio Ritam Šibenik",
"country": "Croatia",
"countryCode": "HR",
"language": "croatian",
"tags": [
- "various music"
+ "dalmatia",
+ "hits",
+ "pop",
+ "regional",
+ "šibenik"
],
"codec": "MP3",
"bitrate": 128,
"streamUrl": "https://ec2s.crolive.com.hr:8455/stream",
- "homepage": "https://radioritam.hr/",
- "logoUrl": "https://radioritam.hr/wp-content/uploads/elementor/thumbs/Radio-Ritam-SQUARE-LOGO-RED-PNG-FINAL-pzj6jx2x1xqqsmjhwrtijmkext8d5d8dtec4vbbzb0.png",
- "votes": 11,
+ "homepage": "https://www.radioritam.hr/",
+ "logoUrl": null,
+ "votes": 109,
"clickcount": 1,
"source": "radio-browser",
- "sourceStationUuid": "82c6de29-905b-42bc-8f77-7d269403d15d"
+ "sourceStationUuid": "6a60f518-c951-4d19-8f7a-1e69ecbbda04"
},
{
"id": "d19ffbcd-0e72-4d25-a2e4-b4de50883e1d",
@@ -8072,27 +16998,21 @@
"sourceStationUuid": "2ef6c612-6306-4daa-b666-55d086ed0ca6"
},
{
- "id": "ea27ccc6-affb-4264-a54f-e7b791f31088",
- "name": "Slavonski Radio",
+ "id": "cf16320d-d519-431e-b972-93e691cce9ab",
+ "name": "Tamburaški radio",
"country": "Croatia",
"countryCode": "HR",
- "language": "croatian",
- "tags": [
- "hits",
- "pop",
- "rock",
- "slavonija",
- "various"
- ],
+ "language": null,
+ "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://ec2s.crolive.com.hr:8035/stream",
- "homepage": "https://www.slavonskiradio.hr/",
+ "streamUrl": "https://listen.radioking.com/radio/552965/stream/612287",
+ "homepage": null,
"logoUrl": null,
- "votes": 625,
+ "votes": 22,
"clickcount": 1,
"source": "radio-browser",
- "sourceStationUuid": "ea27ccc6-affb-4264-a54f-e7b791f31088"
+ "sourceStationUuid": "cf16320d-d519-431e-b972-93e691cce9ab"
},
{
"id": "29330e29-0a70-414d-973a-a69a5b2e4258",
@@ -8135,23 +17055,6 @@
"source": "radio-browser",
"sourceStationUuid": "38dba53f-b60a-4dac-bf3a-40c2f5878847"
},
- {
- "id": "1101d001-561f-4cbd-85b9-c4eef205072d",
- "name": "Abdulbasit Abdulsamad",
- "country": "Croatia",
- "countryCode": "HR",
- "language": "arabic",
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://radio.mp3islam.com/listen/abdulbasit/radio.mp3",
- "homepage": "https://mp3islam.com/",
- "logoUrl": "null",
- "votes": 8,
- "clickcount": 0,
- "source": "radio-browser",
- "sourceStationUuid": "1101d001-561f-4cbd-85b9-c4eef205072d"
- },
{
"id": "74b351da-f9f9-4eb0-861e-6e307e078d58",
"name": "Banovina Light",
@@ -8169,26 +17072,6 @@
"source": "radio-browser",
"sourceStationUuid": "74b351da-f9f9-4eb0-861e-6e307e078d58"
},
- {
- "id": "08a81254-0bf7-40c2-844b-304f22717236",
- "name": "Drama radio Dubrovnik",
- "country": "Croatia",
- "countryCode": "HR",
- "language": "croatian",
- "tags": [
- "news talk",
- "pop music"
- ],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://listen.radioking.com/radio/626884/stream/689500",
- "homepage": "https://dramaradio.hr/",
- "logoUrl": "https://images.keepone.net/1725392485-2024-09-03.png",
- "votes": 37,
- "clickcount": 0,
- "source": "radio-browser",
- "sourceStationUuid": "08a81254-0bf7-40c2-844b-304f22717236"
- },
{
"id": "6153764f-fb00-4496-a66c-4de307603d97",
"name": "dvb.digital",
@@ -8709,6 +17592,442 @@
"source": "radio-browser",
"sourceStationUuid": "3c0d3177-d2fb-4c04-ac6f-0e03173c42cb"
},
+ {
+ "id": "9699f00f-7251-4f5b-b887-e20fe4b4d048",
+ "name": "Active 107.4",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "greek",
+ "tags": [
+ "local news",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://securestreams3.autopo.st:1417/active",
+ "homepage": "https://activeradio.com.cy/",
+ "logoUrl": null,
+ "votes": 94,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "9699f00f-7251-4f5b-b887-e20fe4b4d048"
+ },
+ {
+ "id": "b2ab79d2-1954-4cf1-944c-46fa90b9021b",
+ "name": "MixFM Cyprus",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "english,greek",
+ "tags": [
+ "chillout",
+ "pop music",
+ "pop rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://link.radiojar.com/c27wx6pdh8vtv",
+ "homepage": "https://www.mixfmradio.com/",
+ "logoUrl": "https://www.mixfmradio.com/upload/design/5d79f253b101f9.01147538.png",
+ "votes": 195,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "b2ab79d2-1954-4cf1-944c-46fa90b9021b"
+ },
+ {
+ "id": "a440e2d9-37cf-4b4e-adb3-b94e65541f60",
+ "name": "Radio Sfera 102.2",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "greek",
+ "tags": [
+ "greek pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://securestreams3.autopo.st:1417/sfera",
+ "homepage": "https://sfera.com.cy/",
+ "logoUrl": null,
+ "votes": 238,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "a440e2d9-37cf-4b4e-adb3-b94e65541f60"
+ },
+ {
+ "id": "7758bd16-da9a-40db-9333-48a550b0801f",
+ "name": "BitrRcord",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://c10.radioboss.fm:18095/stream",
+ "homepage": "https://bitrecord.one/",
+ "logoUrl": "https://bitrecord.one/favicon.ico",
+ "votes": 96,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "7758bd16-da9a-40db-9333-48a550b0801f"
+ },
+ {
+ "id": "76b72808-097a-4777-91db-6641628e2c34",
+ "name": "塞浦路斯CCN欧洲中国平台",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "chinese",
+ "tags": [
+ "culture"
+ ],
+ "codec": "AAC,H.264",
+ "bitrate": 948,
+ "streamUrl": "https://cdn.istoikona.com/ccnrtv/live/playlist.m3u8",
+ "homepage": "https://ccnnetwork.cn/",
+ "logoUrl": "https://ccnnetwork.cn/wp-content/uploads/2021/07/newccnlogo2021.png",
+ "votes": 163,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "76b72808-097a-4777-91db-6641628e2c34"
+ },
+ {
+ "id": "0b42d20d-3351-4005-82bb-21a0de5b1233",
+ "name": "塞浦路斯中文广播",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "chinese",
+ "tags": [
+ "chinese"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cdn.istoikona.com/ccnradio/ccnradio/icecast.audio",
+ "homepage": "https://ccnnetwork.cn/",
+ "logoUrl": null,
+ "votes": 463,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b42d20d-3351-4005-82bb-21a0de5b1233"
+ },
+ {
+ "id": "73e9c84f-87cd-4c11-bb8d-492caa909c11",
+ "name": "FEELGOOD.FM",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "english,german",
+ "tags": [
+ "various"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.feelgood.fm/mp3",
+ "homepage": "https://feelgood.fm/",
+ "logoUrl": "https://feelgood.fm/wp-content/uploads/2025/01/Logo-600x600-1.png",
+ "votes": 58,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "73e9c84f-87cd-4c11-bb8d-492caa909c11"
+ },
+ {
+ "id": "5c8ec37e-f584-4af2-93d7-d942ae6bf41c",
+ "name": "KISS FM 89.0 - 88.5",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://securestreams3.autopo.st:1417/89FM",
+ "homepage": "https://kissfm.com.cy/",
+ "logoUrl": "https://kissfm.com.cy/wp-content/uploads/2016/04/Untitled-5.png",
+ "votes": 31,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5c8ec37e-f584-4af2-93d7-d942ae6bf41c"
+ },
+ {
+ "id": "552fde98-3aab-4433-b48b-69725b0fcbf9",
+ "name": "MIX FM Cyprus",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "AAC,H.264",
+ "bitrate": 1500,
+ "streamUrl": "https://strm.mixlive.eu/mixfm/index.m3u8",
+ "homepage": "https://www.mixfmradio.com/",
+ "logoUrl": "https://www.mixfmradio.com/upload/design/66e7d8af577fa9.28585462.png",
+ "votes": 4,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "552fde98-3aab-4433-b48b-69725b0fcbf9"
+ },
+ {
+ "id": "ebeb167e-f696-445f-9160-43fa76f0c816",
+ "name": "Dance FM",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.enerjiplay.com/stream/dancefm",
+ "homepage": "https://www.nrgplay.com/",
+ "logoUrl": "http://api.nrgplay.com/upload/logo/4700c4e0ed5f0a635114cd0df7c8ed39.jpg",
+ "votes": 137,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ebeb167e-f696-445f-9160-43fa76f0c816"
+ },
+ {
+ "id": "83f965c4-a71d-439e-949b-45621908dd8b",
+ "name": "Rock FM Cyprus",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live3.istoikona.net/proxy/rockfm/stream",
+ "homepage": "https://rockfmcyprus.com/",
+ "logoUrl": "https://rockfmcyprus.com/wp-content/uploads/2019/06/rock-fm-cyprus-logo-gold-retina.webp",
+ "votes": 14,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "83f965c4-a71d-439e-949b-45621908dd8b"
+ },
+ {
+ "id": "6c543391-af11-46b2-a169-f59bf37df92a",
+ "name": "Super Sport FM 104.0",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "greek",
+ "tags": [
+ "greek",
+ "sports"
+ ],
+ "codec": "MP3",
+ "bitrate": 56,
+ "streamUrl": "https://r1.cloudskep.com/radio3/supersportfm/icecast.audio",
+ "homepage": "https://www.sport-fm.com.cy/",
+ "logoUrl": "https://sport-fm.com.cy/wp-content/themes/dm-sportfm/images/favicons/apple-icon-114x114.png",
+ "votes": 651,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6c543391-af11-46b2-a169-f59bf37df92a"
+ },
+ {
+ "id": "57e9fe17-be3c-4911-aa7e-a302e056b119",
+ "name": "Zenith",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live3.istoikona.net:9836/stream",
+ "homepage": "https://zenithfm.com.cy/live/",
+ "logoUrl": "https://zenithfm.com.cy/favicon.ico",
+ "votes": 63,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "57e9fe17-be3c-4911-aa7e-a302e056b119"
+ },
+ {
+ "id": "9eba90af-2db9-4803-af1b-508656254c43",
+ "name": "Chillout Breeze",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [
+ "chillout"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen.radionomy.com/chilloutbreeze",
+ "homepage": "http://www.chillout-zone.weebly.com/",
+ "logoUrl": null,
+ "votes": 85,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9eba90af-2db9-4803-af1b-508656254c43"
+ },
+ {
+ "id": "5f9e8bee-c061-47d8-9fd7-9bb2dcf99c2f",
+ "name": "Mix4.me uplifitng trance web radio",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "english",
+ "tags": [
+ "balearic",
+ "cyprus",
+ "trance",
+ "uplifting trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s9.webradio-hosting.com/proxy/mix4me/stream",
+ "homepage": "https://www.mix4.me/",
+ "logoUrl": "https://www.mix4.me/favicon.ico",
+ "votes": 50,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "5f9e8bee-c061-47d8-9fd7-9bb2dcf99c2f"
+ },
+ {
+ "id": "22ee0638-4a0b-4f08-96e3-54e6451a8b97",
+ "name": "NJOY Radio",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiojar.com/mg7kftnzka3vv",
+ "homepage": "https://www.njoyradio.com.cy/",
+ "logoUrl": "https://www.njoyradio.com.cy/wp-content/uploads/2021/11/njoy_logo.png",
+ "votes": 32,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "22ee0638-4a0b-4f08-96e3-54e6451a8b97"
+ },
+ {
+ "id": "a217bafc-5165-46cf-9d78-142809f9efe8",
+ "name": "Ναυάγιο",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": "greek",
+ "tags": [
+ "greek music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio-navagio.com/stream",
+ "homepage": "https://radio-navagio.com/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/c69cf970-f33b-4c0e-ac4e-5a5ab8d17c81.png",
+ "votes": 22,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a217bafc-5165-46cf-9d78-142809f9efe8"
+ },
+ {
+ "id": "5de82a19-5894-498e-935b-4c02cd826aa0",
+ "name": "РУССКОЕ РАДИО КИПР",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.veblot.net/proxy/russianradio/stream/",
+ "homepage": "https://russianradio.cy/",
+ "logoUrl": "https://russianradio.cy/wp-content/uploads/2024/06/cropped-rr-favico-180x180.png",
+ "votes": 68,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "5de82a19-5894-498e-935b-4c02cd826aa0"
+ },
+ {
+ "id": "90a9493d-1735-45a4-bf6b-4d85eac05066",
+ "name": "Enerji",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.enerjiplay.com/stream/enerji",
+ "homepage": "https://www.nrgplay.com/",
+ "logoUrl": "http://api.nrgplay.com/upload/logo/c2099d61294d8975748f15118ddecbc8.jpg",
+ "votes": 11,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "90a9493d-1735-45a4-bf6b-4d85eac05066"
+ },
+ {
+ "id": "53cfef35-635f-4c9d-a125-8f627981628e",
+ "name": "Politis 107.6 FM",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cdn.istoikona.com/politis/live/icecast.audio",
+ "homepage": "https://politis.com.cy/radio",
+ "logoUrl": "https://politis.com.cy/images/favicon/favicon-32x32.png",
+ "votes": 35,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "53cfef35-635f-4c9d-a125-8f627981628e"
+ },
+ {
+ "id": "7a0523b9-8d11-4be9-b50a-18343bf8cc8c",
+ "name": "Radio ReyMod",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://server.streamcasthd.com:7092/;",
+ "homepage": "https://www.reymod.com/radio",
+ "logoUrl": "https://www.reymod.com/img/apple-touch-icon.png",
+ "votes": 0,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "7a0523b9-8d11-4be9-b50a-18343bf8cc8c"
+ },
+ {
+ "id": "1064b224-2700-4d55-979f-b1a570211289",
+ "name": "Radio T.O.A",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live3.istoikona.net/proxy/radiotoa/stream",
+ "homepage": "https://sites.google.com/site/toalarnacas/on-line-radio",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "1064b224-2700-4d55-979f-b1a570211289"
+ },
+ {
+ "id": "f755cfdd-7d89-409d-84b7-a7fa8158589d",
+ "name": "VIVA FM 104.3",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream1.themediasite.co.uk/8060/stream",
+ "homepage": "https://vivafmcyprus.com/",
+ "logoUrl": null,
+ "votes": 24,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "f755cfdd-7d89-409d-84b7-a7fa8158589d"
+ },
+ {
+ "id": "33cdfba0-cc12-4a39-ae71-1127e6bf9600",
+ "name": "Zucca",
+ "country": "Cyprus",
+ "countryCode": "CY",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.zuccaradio.com/stream?",
+ "homepage": "https://zuccaradio.com/",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "33cdfba0-cc12-4a39-ae71-1127e6bf9600"
+ },
{
"id": "fac2e54e-c199-46fb-afd9-e47b6f7ee5d4",
"name": "Kiss Radio - 128MP3",
@@ -8722,7 +18041,7 @@
"homepage": "https://kiss.cz/",
"logoUrl": "https://www.kiss.cz/assets/favicon/apple-touch-icon.png",
"votes": 484,
- "clickcount": 67,
+ "clickcount": 68,
"source": "radio-browser",
"sourceStationUuid": "fac2e54e-c199-46fb-afd9-e47b6f7ee5d4"
},
@@ -8762,7 +18081,7 @@
"homepage": "https://www.svoboda.org/",
"logoUrl": "https://www.svoboda.org/content/responsive/rfe/img/webapp/ico-128x128.png",
"votes": 13214,
- "clickcount": 37,
+ "clickcount": 36,
"source": "radio-browser",
"sourceStationUuid": "9d2b7b0b-f0cf-4c32-a1ce-bc6e964a7c1a"
},
@@ -8799,7 +18118,7 @@
"homepage": "https://www.radiobeat.cz/",
"logoUrl": "https://www.radiobeat.cz/img/logo@2x.png",
"votes": 1453,
- "clickcount": 21,
+ "clickcount": 20,
"source": "radio-browser",
"sourceStationUuid": "c80ec3dc-15ca-4b52-8dcd-c03efa77c95c"
},
@@ -8819,32 +18138,10 @@
"homepage": "http://www.radiodiana.cz/",
"logoUrl": null,
"votes": 612,
- "clickcount": 18,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "b2e362d0-b8e0-11e9-acb2-52543be04c81"
},
- {
- "id": "c1f742d6-b2c4-4b73-a9ad-30ddf194345e",
- "name": "ČRO Radiožurnál Sport",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "czech",
- "tags": [
- "news",
- "public radio",
- "sport",
- "talk"
- ],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://rozhlas.stream/radiozurnal_sport_high.aac",
- "homepage": "https://rozhlas.cz/",
- "logoUrl": null,
- "votes": 299,
- "clickcount": 16,
- "source": "radio-browser",
- "sourceStationUuid": "c1f742d6-b2c4-4b73-a9ad-30ddf194345e"
- },
{
"id": "c15295f4-561f-47a5-8c4f-9bdb40210582",
"name": "Rock Radio",
@@ -8860,7 +18157,7 @@
"homepage": "https://rockovyradio.cz/",
"logoUrl": "https://rockovyradio.cz/design/img/logo.svg",
"votes": 1342,
- "clickcount": 16,
+ "clickcount": 17,
"source": "radio-browser",
"sourceStationUuid": "c15295f4-561f-47a5-8c4f-9bdb40210582"
},
@@ -8881,6 +18178,28 @@
"source": "radio-browser",
"sourceStationUuid": "ffc0040e-5e9c-4e08-8c57-94db090c9e7a"
},
+ {
+ "id": "c1f742d6-b2c4-4b73-a9ad-30ddf194345e",
+ "name": "ČRO Radiožurnál Sport",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": "czech",
+ "tags": [
+ "news",
+ "public radio",
+ "sport",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://rozhlas.stream/radiozurnal_sport_high.aac",
+ "homepage": "https://rozhlas.cz/",
+ "logoUrl": null,
+ "votes": 299,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1f742d6-b2c4-4b73-a9ad-30ddf194345e"
+ },
{
"id": "5c65222f-7623-4cda-8d02-110b1dd35b18",
"name": "Rádio humor 2",
@@ -8919,25 +18238,6 @@
"source": "radio-browser",
"sourceStationUuid": "848caf0f-5992-11ea-be63-52543be04c81"
},
- {
- "id": "0e8a50f5-5f1a-4d5f-9350-83eff4efea9f",
- "name": "Český rozhlas Brno",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "česky",
- "tags": [
- "local"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://rozhlas.stream/brno.mp3",
- "homepage": "https://rozhlas.stream/brno.mp3",
- "logoUrl": "null",
- "votes": 233,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "0e8a50f5-5f1a-4d5f-9350-83eff4efea9f"
- },
{
"id": "927edba2-7db7-40f2-96bd-8a9316de90f4",
"name": "FREKVENCE 1",
@@ -8955,6 +18255,25 @@
"source": "radio-browser",
"sourceStationUuid": "927edba2-7db7-40f2-96bd-8a9316de90f4"
},
+ {
+ "id": "0e8a50f5-5f1a-4d5f-9350-83eff4efea9f",
+ "name": "Český rozhlas Brno",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": "česky",
+ "tags": [
+ "local"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rozhlas.stream/brno.mp3",
+ "homepage": "https://rozhlas.stream/brno.mp3",
+ "logoUrl": "null",
+ "votes": 233,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e8a50f5-5f1a-4d5f-9350-83eff4efea9f"
+ },
{
"id": "6e24e63f-a100-4df7-bc25-bc9fa327ac07",
"name": "Cesky Rozhlas Jazz",
@@ -9006,6 +18325,25 @@
"source": "radio-browser",
"sourceStationUuid": "c34f97eb-de1b-4164-9344-b9f0a4f9ac91"
},
+ {
+ "id": "917790a4-3209-4d61-84b7-b2356ae78b61",
+ "name": "ČRo Plus",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": null,
+ "tags": [
+ "talk & speech"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://rozhlas.stream/plus_low.aac",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 27,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "917790a4-3209-4d61-84b7-b2356ae78b61"
+ },
{
"id": "8552af34-2284-41bd-9a0e-2c534fcc59b0",
"name": "Evropa 2 - aac",
@@ -9025,23 +18363,6 @@
"source": "radio-browser",
"sourceStationUuid": "8552af34-2284-41bd-9a0e-2c534fcc59b0"
},
- {
- "id": "056e5ad2-c0d5-4e72-a719-d39c86fc734b",
- "name": "Hitrádio Faktor",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "czech",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice.abradio.cz/faktor128.mp3",
- "homepage": "https://hitradiofaktor.cz/",
- "logoUrl": "https://cdn-profiles.tunein.com/s10545/images/logog.jpg",
- "votes": 284,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "056e5ad2-c0d5-4e72-a719-d39c86fc734b"
- },
{
"id": "8941361f-cba8-4c53-892a-446cc399a31d",
"name": "Classic Prague",
@@ -9059,6 +18380,23 @@
"source": "radio-browser",
"sourceStationUuid": "8941361f-cba8-4c53-892a-446cc399a31d"
},
+ {
+ "id": "b371f892-5d45-413c-bd65-d6143c1245b5",
+ "name": "CRo Vysocina",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://rozhlas.stream/vysocina_high.aac",
+ "homepage": "https://www.mujrozhlas.cz/zive/vysocina",
+ "logoUrl": "https://www.mujrozhlas.cz/themes/mr_frontend/img/favicons/apple-touch-icon.png",
+ "votes": 31,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "b371f892-5d45-413c-bd65-d6143c1245b5"
+ },
{
"id": "07eb56e1-0eb8-4070-a68e-4bd24b545db3",
"name": "Český rozhlas České Budějovice",
@@ -9079,23 +18417,24 @@
"sourceStationUuid": "07eb56e1-0eb8-4070-a68e-4bd24b545db3"
},
{
- "id": "917790a4-3209-4d61-84b7-b2356ae78b61",
+ "id": "50c08114-84d3-41ac-9f40-02b09e4913fe",
"name": "ČRo Plus",
"country": "Czechia",
"countryCode": "CZ",
- "language": null,
+ "language": "czech",
"tags": [
- "talk & speech"
+ "news",
+ "public radio"
],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://rozhlas.stream/plus_low.aac",
- "homepage": null,
- "logoUrl": null,
- "votes": 27,
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rozhlas.stream/plus_mp3_128.mp3",
+ "homepage": "http://plus.rozhlas.cz/",
+ "logoUrl": "http://plus.rozhlas.cz/favicon.ico",
+ "votes": 255,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "917790a4-3209-4d61-84b7-b2356ae78b61"
+ "sourceStationUuid": "50c08114-84d3-41ac-9f40-02b09e4913fe"
},
{
"id": "3963a7f3-d1cc-4fe1-831b-36499ca21b6f",
@@ -9156,21 +18495,21 @@
"sourceStationUuid": "7feb3c60-f5b5-4796-8c4c-a0acd40d4895"
},
{
- "id": "1bbe1a17-ce95-431f-a113-e8887ebb5326",
- "name": "Radio Bonton",
+ "id": "056e5ad2-c0d5-4e72-a719-d39c86fc734b",
+ "name": "Hitrádio Faktor",
"country": "Czechia",
"countryCode": "CZ",
- "language": null,
+ "language": "czech",
"tags": [],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://27753.live.streamtheworld.com/BONTONAAC.aac?tdsdk=js-2.9&swm=false&pname=TDSdk&pversion=2.9&banners=none&burst-time=15&sbmid=4ef04b1d-096f-4273-f8be-4c056d2bd182",
- "homepage": "https://www.radiobonton.cz/",
- "logoUrl": "https://www.radiobonton.cz/favicons/apple-touch-icon.png",
- "votes": 16,
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice.abradio.cz/faktor128.mp3",
+ "homepage": "https://hitradiofaktor.cz/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s10545/images/logog.jpg",
+ "votes": 284,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "1bbe1a17-ce95-431f-a113-e8887ebb5326"
+ "sourceStationUuid": "056e5ad2-c0d5-4e72-a719-d39c86fc734b"
},
{
"id": "9991af65-746a-4a1c-a61f-51e5eb19e0a7",
@@ -9217,58 +18556,21 @@
"sourceStationUuid": "b744d69a-928e-4c04-a630-1076a2e586af"
},
{
- "id": "b371f892-5d45-413c-bd65-d6143c1245b5",
- "name": "CRo Vysocina",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://rozhlas.stream/vysocina_high.aac",
- "homepage": "https://www.mujrozhlas.cz/zive/vysocina",
- "logoUrl": "https://www.mujrozhlas.cz/themes/mr_frontend/img/favicons/apple-touch-icon.png",
- "votes": 31,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "b371f892-5d45-413c-bd65-d6143c1245b5"
- },
- {
- "id": "bf1e3292-ec5e-499d-9d75-d00269f003d6",
- "name": "Čas Rock Natvrdo",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.sepia.sk:8000/rnt128.mp3",
- "homepage": "https://natvrdo.casrock.cz/",
- "logoUrl": null,
- "votes": 3,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "bf1e3292-ec5e-499d-9d75-d00269f003d6"
- },
- {
- "id": "50c08114-84d3-41ac-9f40-02b09e4913fe",
- "name": "ČRo Plus",
+ "id": "a3c8b03b-0139-4067-a677-79392598f242",
+ "name": "Český Impuls",
"country": "Czechia",
"countryCode": "CZ",
"language": "czech",
- "tags": [
- "news",
- "public radio"
- ],
+ "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://rozhlas.stream/plus_mp3_128.mp3",
- "homepage": "http://plus.rozhlas.cz/",
- "logoUrl": "http://plus.rozhlas.cz/favicon.ico",
- "votes": 255,
+ "streamUrl": "https://icecast6.play.cz/cesky-impuls.mp3",
+ "homepage": "https://www.ceskyimpuls.cz/",
+ "logoUrl": "https://1gr.cz/o/impuls/ceskyimpuls/hlava2.jpg",
+ "votes": 19,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "50c08114-84d3-41ac-9f40-02b09e4913fe"
+ "sourceStationUuid": "a3c8b03b-0139-4067-a677-79392598f242"
},
{
"id": "f002d018-670f-4c11-8d9c-81828afee68e",
@@ -9400,6 +18702,23 @@
"source": "radio-browser",
"sourceStationUuid": "86ade1ec-0b06-4ede-97a1-04ab18299265"
},
+ {
+ "id": "1bbe1a17-ce95-431f-a113-e8887ebb5326",
+ "name": "Radio Bonton",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://27753.live.streamtheworld.com/BONTONAAC.aac?tdsdk=js-2.9&swm=false&pname=TDSdk&pversion=2.9&banners=none&burst-time=15&sbmid=4ef04b1d-096f-4273-f8be-4c056d2bd182",
+ "homepage": "https://www.radiobonton.cz/",
+ "logoUrl": "https://www.radiobonton.cz/favicons/apple-touch-icon.png",
+ "votes": 16,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "1bbe1a17-ce95-431f-a113-e8887ebb5326"
+ },
{
"id": "979f5cb0-a052-456d-95e7-48d032aedd00",
"name": "Radio Svoboda (ru) (official stream)",
@@ -9477,58 +18796,21 @@
"sourceStationUuid": "4f6c6980-ecb1-439b-95f8-cf74abfc60e6"
},
{
- "id": "a3c8b03b-0139-4067-a677-79392598f242",
- "name": "Český Impuls",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "czech",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast6.play.cz/cesky-impuls.mp3",
- "homepage": "https://www.ceskyimpuls.cz/",
- "logoUrl": "https://1gr.cz/o/impuls/ceskyimpuls/hlava2.jpg",
- "votes": 19,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "a3c8b03b-0139-4067-a677-79392598f242"
- },
- {
- "id": "de4f53b1-3a55-447d-b3e8-29b9f09833a4",
- "name": "ČRo Olomouc",
+ "id": "bf1e3292-ec5e-499d-9d75-d00269f003d6",
+ "name": "Čas Rock Natvrdo",
"country": "Czechia",
"countryCode": "CZ",
"language": null,
"tags": [],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://rozhlas.stream/olomouc_low.aac",
- "homepage": "https://olomouc.rozhlas.cz/",
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.sepia.sk:8000/rnt128.mp3",
+ "homepage": "https://natvrdo.casrock.cz/",
"logoUrl": null,
- "votes": 42,
+ "votes": 3,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "de4f53b1-3a55-447d-b3e8-29b9f09833a4"
- },
- {
- "id": "56359e3e-8447-4c27-a577-60d54a8e9b39",
- "name": "ČRo Ostrava",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "czech",
- "tags": [
- "general",
- "regional radio"
- ],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://rozhlas.stream/ostrava_high.aac",
- "homepage": "https://ostrava.rozhlas.cz/",
- "logoUrl": "https://ostrava.rozhlas.cz/favicon.ico",
- "votes": 119,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "56359e3e-8447-4c27-a577-60d54a8e9b39"
+ "sourceStationUuid": "bf1e3292-ec5e-499d-9d75-d00269f003d6"
},
{
"id": "d45dca1f-d3ab-4bc6-a247-ad98d91cb09e",
@@ -9620,23 +18902,6 @@
"source": "radio-browser",
"sourceStationUuid": "7f727b20-8a77-4978-8bec-b5101a1867cc"
},
- {
- "id": "3f4770f8-6f5b-44f6-a606-0ce5de461411",
- "name": "Hvězda",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "czech",
- "tags": [],
- "codec": "MP4",
- "bitrate": 128000,
- "streamUrl": "https://hls.hvezda.info/session01/128k/s.m3u8",
- "homepage": "https://hvezda.info/",
- "logoUrl": null,
- "votes": 4,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "3f4770f8-6f5b-44f6-a606-0ce5de461411"
- },
{
"id": "4e9b0f36-3b10-4e00-baa0-ab2e18322dbe",
"name": "Phonk Nation Radio",
@@ -9675,25 +18940,6 @@
"source": "radio-browser",
"sourceStationUuid": "edbb4c24-20ff-49a9-889e-7faeaa98c2cd"
},
- {
- "id": "75700bcd-72d7-4398-9e20-df1e9633adcc",
- "name": "Radio Blaník Morava a Slezsko",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": null,
- "tags": [
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice.abradio.cz/blanikmorava128.mp3?gdpr=1&gdpr_consent=Q084aEUyaE84aEUyaEFjQUJCRU5BX0NnQVBfQUFIX0FBQVlnRjVvQmhEeEVCU0ZDQUdKb1lOa2dBQUFXeHdBQUFDQUNBQUFBb0FBQUFCb0FBQVFBQUFBQUFBQWdCQUFBQUJJQUlBSUFBQUJBR0VBQUFBQUFBQUFBQUFBQUFFQUFBQUFBSVFBQUFBQUFBQ0JBQUFBQUFBQUFBQUFBQUFBQVFBQUFnWG5BZUFBV0FCVUFDNEFIQUFRQUFxQUJvQURrQUlnQVRBQW5nQlZBQzRBRjhBTVFBaElCRUFFVUFLVUFXSUF5d0Jtd0R1QU84QWhBQkZnQzBnRjFBTUNBYXdCTm9DOHdBQUFBLllBQUFBQUFBQUFBQQ==",
- "homepage": null,
- "logoUrl": null,
- "votes": 1296,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "75700bcd-72d7-4398-9e20-df1e9633adcc"
- },
{
"id": "5192677e-a070-4b94-b570-d93f1103ca19",
"name": "Radio Punctum",
@@ -9778,6 +19024,43 @@
"source": "radio-browser",
"sourceStationUuid": "0e8e5dec-9bac-40d4-8f60-163e6aa4b10e"
},
+ {
+ "id": "de4f53b1-3a55-447d-b3e8-29b9f09833a4",
+ "name": "ČRo Olomouc",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://rozhlas.stream/olomouc_low.aac",
+ "homepage": "https://olomouc.rozhlas.cz/",
+ "logoUrl": null,
+ "votes": 42,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "de4f53b1-3a55-447d-b3e8-29b9f09833a4"
+ },
+ {
+ "id": "56359e3e-8447-4c27-a577-60d54a8e9b39",
+ "name": "ČRo Ostrava",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": "czech",
+ "tags": [
+ "general",
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://rozhlas.stream/ostrava_high.aac",
+ "homepage": "https://ostrava.rozhlas.cz/",
+ "logoUrl": "https://ostrava.rozhlas.cz/favicon.ico",
+ "votes": 119,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "56359e3e-8447-4c27-a577-60d54a8e9b39"
+ },
{
"id": "380525e0-e2bb-4419-98ee-fc21c83f45c5",
"name": "čro Radiožurnál Sport AdHoc stream 1",
@@ -9817,47 +19100,21 @@
"sourceStationUuid": "04602093-2633-4f1a-9e22-c0007e9436af"
},
{
- "id": "3321ebec-e7f8-46bc-bf47-3a4de512ecf1",
- "name": "Óčko Star",
+ "id": "3f4770f8-6f5b-44f6-a606-0ce5de461411",
+ "name": "Hvězda",
"country": "Czechia",
"countryCode": "CZ",
"language": "czech",
- "tags": [
- "goldies",
- "music",
- "tv"
- ],
- "codec": "UNKNOWN",
- "bitrate": 928,
- "streamUrl": "https://ocko-live-dash.ssl.cdn.cra.cz/cra_live2/ocko_gold.stream.1.smil/playlist.m3u8",
- "homepage": "https://ocko.tv/",
+ "tags": [],
+ "codec": "MP4",
+ "bitrate": 128000,
+ "streamUrl": "https://hls.hvezda.info/session01/128k/s.m3u8",
+ "homepage": "https://hvezda.info/",
"logoUrl": null,
- "votes": 49,
+ "votes": 4,
"clickcount": 1,
"source": "radio-browser",
- "sourceStationUuid": "3321ebec-e7f8-46bc-bf47-3a4de512ecf1"
- },
- {
- "id": "8e221247-8103-4209-a119-519b4bd9fb93",
- "name": "Plzeň TV",
- "country": "Czechia",
- "countryCode": "CZ",
- "language": "czech",
- "tags": [
- "local news",
- "news",
- "regional",
- "tv"
- ],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://vysilani.zaktv.cz/broadcast/hls/ptv/index.m3u8",
- "homepage": "https://tv.plzen.cz/",
- "logoUrl": "https://tv.plzen.cz/templates/theme3241/images/plzentv-icon.svg",
- "votes": 17,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "8e221247-8103-4209-a119-519b4bd9fb93"
+ "sourceStationUuid": "3f4770f8-6f5b-44f6-a606-0ce5de461411"
},
{
"id": "192e541a-dc73-405b-9a00-c3a4f0505a30",
@@ -9876,6 +19133,25 @@
"source": "radio-browser",
"sourceStationUuid": "192e541a-dc73-405b-9a00-c3a4f0505a30"
},
+ {
+ "id": "75700bcd-72d7-4398-9e20-df1e9633adcc",
+ "name": "Radio Blaník Morava a Slezsko",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice.abradio.cz/blanikmorava128.mp3?gdpr=1&gdpr_consent=Q084aEUyaE84aEUyaEFjQUJCRU5BX0NnQVBfQUFIX0FBQVlnRjVvQmhEeEVCU0ZDQUdKb1lOa2dBQUFXeHdBQUFDQUNBQUFBb0FBQUFCb0FBQVFBQUFBQUFBQWdCQUFBQUJJQUlBSUFBQUJBR0VBQUFBQUFBQUFBQUFBQUFFQUFBQUFBSVFBQUFBQUFBQ0JBQUFBQUFBQUFBQUFBQUFBQVFBQUFnWG5BZUFBV0FCVUFDNEFIQUFRQUFxQUJvQURrQUlnQVRBQW5nQlZBQzRBRjhBTVFBaElCRUFFVUFLVUFXSUF5d0Jtd0R1QU84QWhBQkZnQzBnRjFBTUNBYXdCTm9DOHdBQUFBLllBQUFBQUFBQUFBQQ==",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 1296,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "75700bcd-72d7-4398-9e20-df1e9633adcc"
+ },
{
"id": "3107a066-eebd-4dcf-834c-eaa3ab106354",
"name": "Rádio Blaník Oldies",
@@ -10249,6 +19525,47 @@
"source": "radio-browser",
"sourceStationUuid": "f94d6ffa-4eaf-41ac-9d17-9db568814d7b"
},
+ {
+ "id": "8e221247-8103-4209-a119-519b4bd9fb93",
+ "name": "Plzeň TV",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": "czech",
+ "tags": [
+ "local news",
+ "news",
+ "regional",
+ "tv"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://vysilani.zaktv.cz/broadcast/hls/ptv/index.m3u8",
+ "homepage": "https://tv.plzen.cz/",
+ "logoUrl": "https://tv.plzen.cz/templates/theme3241/images/plzentv-icon.svg",
+ "votes": 17,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "8e221247-8103-4209-a119-519b4bd9fb93"
+ },
+ {
+ "id": "15de457c-67d9-4153-9bce-c70cbeb7adf2",
+ "name": "Radia.cz - Fire",
+ "country": "Czechia",
+ "countryCode": "CZ",
+ "language": "czech",
+ "tags": [
+ "ambient"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://ice2.radia.cz/relax-fire64.aac",
+ "homepage": "https://radia.cz/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "15de457c-67d9-4153-9bce-c70cbeb7adf2"
+ },
{
"id": "511c1130-53b9-478c-8ec7-29d36f7e90aa",
"name": "Radio Fonlord",
@@ -10397,6 +19714,4498 @@
"source": "radio-browser",
"sourceStationUuid": "fbc0f7d3-49e6-4dbb-b768-c4a4318be7ee"
},
+ {
+ "id": "3a0e373c-ba86-40a0-8dde-6aff355293ac",
+ "name": "DR P4 København (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4kobenhavn/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 184,
+ "clickcount": 59,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a0e373c-ba86-40a0-8dde-6aff355293ac"
+ },
+ {
+ "id": "b0f1b100-23b5-4c7b-bdb1-a2c68006d6bf",
+ "name": "DR P3 (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p3/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p3",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p3.28743ad0.svg",
+ "votes": 317,
+ "clickcount": 40,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0f1b100-23b5-4c7b-bdb1-a2c68006d6bf"
+ },
+ {
+ "id": "4c288b10-8af2-40ff-8c11-932730a45fc2",
+ "name": "DR P4 Østjylland (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4ostjylland/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 199,
+ "clickcount": 33,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c288b10-8af2-40ff-8c11-932730a45fc2"
+ },
+ {
+ "id": "65490fd6-c55b-4704-9638-35445a4c4f1a",
+ "name": "DR P5 København (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5kobenhavn/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 151,
+ "clickcount": 28,
+ "source": "radio-browser",
+ "sourceStationUuid": "65490fd6-c55b-4704-9638-35445a4c4f1a"
+ },
+ {
+ "id": "1def7d71-46ce-45e8-b4f5-e3e3ccc38ee7",
+ "name": "DR P4 Sjælland (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4sjaelland/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 78,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "1def7d71-46ce-45e8-b4f5-e3e3ccc38ee7"
+ },
+ {
+ "id": "4bcb11ad-0ac0-4bb6-8b36-603ba1a4effd",
+ "name": "Nova FM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/nova_dk_mp3",
+ "homepage": "http://www.novafm.dk/",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigWebListenBarLogoImageUrl/174.jpg?ver=1490690222",
+ "votes": 110,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "4bcb11ad-0ac0-4bb6-8b36-603ba1a4effd"
+ },
+ {
+ "id": "cab6fb5c-c9f3-43fd-aa7f-536dab0f1a46",
+ "name": "DR P5 Sjælland (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5sjaelland/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 35,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "cab6fb5c-c9f3-43fd-aa7f-536dab0f1a46"
+ },
+ {
+ "id": "9298e58e-3dd2-418c-bd39-6798f59b8b10",
+ "name": "DR P8 JAZZ (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "jazz"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p8jazz/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p8jazz",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p8jazz.3748d702.svg",
+ "votes": 383,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "9298e58e-3dd2-418c-bd39-6798f59b8b10"
+ },
+ {
+ "id": "49b20332-4ee4-440a-b874-3d4b3edf0adf",
+ "name": "DR P4 Midt-Vest (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4midtvest/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 31,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "49b20332-4ee4-440a-b874-3d4b3edf0adf"
+ },
+ {
+ "id": "4b7fdc14-64c5-4bf9-8924-615e81b812dc",
+ "name": "DR P2 (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p2/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p2",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p2.041e766f.svg",
+ "votes": 90,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b7fdc14-64c5-4bf9-8924-615e81b812dc"
+ },
+ {
+ "id": "28b58640-e317-4778-9bba-a1992f8f0bf7",
+ "name": "DR P1 (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p1/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p1",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p1.29c35f9c.svg",
+ "votes": 127,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "28b58640-e317-4778-9bba-a1992f8f0bf7"
+ },
+ {
+ "id": "0c468b6f-f529-41e9-9dc6-83f687d67d81",
+ "name": "DR P4 Fyn (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4fyn/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 35,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c468b6f-f529-41e9-9dc6-83f687d67d81"
+ },
+ {
+ "id": "a1631bea-d910-4fc2-bc88-a163009484d2",
+ "name": "DR P4 Nordjylland (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4nordjylland/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 81,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "a1631bea-d910-4fc2-bc88-a163009484d2"
+ },
+ {
+ "id": "2fec1d56-0045-44ae-9ead-c975cbcb3af1",
+ "name": "Radio 100",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish,english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/radio100_dk_mp3",
+ "homepage": "https://radioplay.dk/radio-100/",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigWebHeaderLogoSVGImageUrl/178.svg",
+ "votes": 69,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "2fec1d56-0045-44ae-9ead-c975cbcb3af1"
+ },
+ {
+ "id": "b67044c5-7e2a-4ed7-b370-2164c2c890f9",
+ "name": "80's Hits",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/DK_HQ_RP04.aac",
+ "homepage": "https://radiostationer.dk/187-80-s-hits.html",
+ "logoUrl": "https://radiostationer.dk",
+ "votes": 76,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "b67044c5-7e2a-4ed7-b370-2164c2c890f9"
+ },
+ {
+ "id": "0d939aa0-cce8-4841-92fe-1a03d36da0d3",
+ "name": "Classic Rock Danmark",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "classic rock",
+ "hard rock",
+ "progressive rock",
+ "punk rock",
+ "retro",
+ "rock fra dit liv!"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.classicfm.dk/classicrock",
+ "homepage": "https://classicrock.dk/station/dk",
+ "logoUrl": null,
+ "votes": 241,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "0d939aa0-cce8-4841-92fe-1a03d36da0d3"
+ },
+ {
+ "id": "1acd0e04-ea0c-46e8-9d5c-bd7d0233532c",
+ "name": "DR P4 Trekanten (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4trekanten/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 38,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "1acd0e04-ea0c-46e8-9d5c-bd7d0233532c"
+ },
+ {
+ "id": "2d422514-5893-4845-808b-1292447d3144",
+ "name": "DR P6 BEAT (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "beat"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p6beat/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p6beat",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p6beat.4efb4634.svg",
+ "votes": 112,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "2d422514-5893-4845-808b-1292447d3144"
+ },
+ {
+ "id": "b4d7f87f-89c8-4d1b-af0b-fc2fcafd8d66",
+ "name": "myROCK",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/myrock_dk_mp3",
+ "homepage": "https://radioplay.dk/myrock/",
+ "logoUrl": "https://radioplay.dk/tesla/static/favicons/radioplay-dk/apple-touch-icon.png",
+ "votes": 227,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "b4d7f87f-89c8-4d1b-af0b-fc2fcafd8d66"
+ },
+ {
+ "id": "7feafe93-aa70-4661-80e3-f3d3f370ec3d",
+ "name": "Classic FM (Fyn)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.classicfm.dk/cla12a",
+ "homepage": "https://classicfm.dk/",
+ "logoUrl": "https://classicfm.dk/wp-content/uploads/2024/08/cropped-favicon_classic_fm-180x180.png",
+ "votes": 28,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "7feafe93-aa70-4661-80e3-f3d3f370ec3d"
+ },
+ {
+ "id": "f03cd652-2231-4120-b255-bc80f0745fd9",
+ "name": "Dansktop Kanalen",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.classicfm.dk/dansktop",
+ "homepage": "https://dansktopkanalen.dk/",
+ "logoUrl": null,
+ "votes": 51,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "f03cd652-2231-4120-b255-bc80f0745fd9"
+ },
+ {
+ "id": "93f651cc-1bfa-466e-aeb0-00ec61bd9ded",
+ "name": "DR P4 Syd (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4syd/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 38,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "93f651cc-1bfa-466e-aeb0-00ec61bd9ded"
+ },
+ {
+ "id": "8db642b4-c560-4231-ba8b-5895b3b5c465",
+ "name": "DR P5 Østjylland (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5ostjylland/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 18,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "8db642b4-c560-4231-ba8b-5895b3b5c465"
+ },
+ {
+ "id": "d5080e47-531e-4871-a4c2-bd98ba726311",
+ "name": "POP FM 80er",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "1980s",
+ "80's",
+ "80er",
+ "80s"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com//popfm80.mp3",
+ "homepage": "https://radioplay.dk/pop-fm-80er",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/hmpru8q4znst.jpg",
+ "votes": 27,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "d5080e47-531e-4871-a4c2-bd98ba726311"
+ },
+ {
+ "id": "6a9abc1c-66f2-11ea-be63-52543be04c81",
+ "name": "Danmarks Radio P6",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "danish",
+ "music",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-icy.dr.dk/A/A29H.mp3",
+ "homepage": "https://www.dr.dk/radio/oversigt",
+ "logoUrl": "https://www.dr.dk/favicon.ico",
+ "votes": 135,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6a9abc1c-66f2-11ea-be63-52543be04c81"
+ },
+ {
+ "id": "2b50701c-3337-4264-bd4a-92b3973c8786",
+ "name": "DR P5 Fyn (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5fyn/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 23,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "2b50701c-3337-4264-bd4a-92b3973c8786"
+ },
+ {
+ "id": "1eb0a70c-2cc1-11e9-a35e-52543be04c81",
+ "name": "Nova 100% Dansk",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "danish",
+ "dansk",
+ "danske",
+ "hits",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/DK_HQ_RP11.aac",
+ "homepage": "https://radioplay.dk/nova-100-dansk/",
+ "logoUrl": "https://listenapi.s3.amazonaws.com/img/ConfigWebListenBarLogoImageUrl/202.jpg?ver=1490698010",
+ "votes": 673,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "1eb0a70c-2cc1-11e9-a35e-52543be04c81"
+ },
+ {
+ "id": "104098d5-7b92-457d-8851-6ef6000aeb7b",
+ "name": "Skala FM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.skala.fm/ska8d",
+ "homepage": "https://skala.fm/",
+ "logoUrl": "https://skala.fm/wp-content/uploads/sites/2/2024/08/cropped-favicon_skala-180x180.png",
+ "votes": 35,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "104098d5-7b92-457d-8851-6ef6000aeb7b"
+ },
+ {
+ "id": "632fe760-a124-4385-9061-6acb4bd14d0f",
+ "name": "The Voice - Danmarks Hitstation",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/thevoice_dk_mp3",
+ "homepage": "https://radioplay.dk/the-voice/",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigWebListenBarLogoImageUrl/173.jpg",
+ "votes": 166,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "632fe760-a124-4385-9061-6acb4bd14d0f"
+ },
+ {
+ "id": "3dbfe861-a8f0-4366-89bf-275e87cb1b7a",
+ "name": "Danmarks Radio p2",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-icy.dr.dk/A/A04L.mp3",
+ "homepage": "https://www.dr.dk/lyd/p2",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p2.041e766f.svg",
+ "votes": 6,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3dbfe861-a8f0-4366-89bf-275e87cb1b7a"
+ },
+ {
+ "id": "14c0f0ff-3aa6-4e6d-a764-0fad7c365f3c",
+ "name": "Danmarks Radio P3",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "classical music",
+ "intelligent",
+ "modern rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-icy.dr.dk/A/A27L.mp3",
+ "homepage": "https://www.dr.dk/lyd/oversigt",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "14c0f0ff-3aa6-4e6d-a764-0fad7c365f3c"
+ },
+ {
+ "id": "72efb250-a217-495a-ac1a-2b7f3fc134b5",
+ "name": "DR P5 Nordjylland (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5nordjylland/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 23,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "72efb250-a217-495a-ac1a-2b7f3fc134b5"
+ },
+ {
+ "id": "1d8e56d5-b3d7-478a-a439-d1678b3d7edf",
+ "name": "Globus Guld Country",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "country"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://stream.probroadcast.dk/guldcountrymp3",
+ "homepage": "https://globusguld.dk/",
+ "logoUrl": "https://globusguld.dk/favicon.ico",
+ "votes": 8,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d8e56d5-b3d7-478a-a439-d1678b3d7edf"
+ },
+ {
+ "id": "16e4f32b-81d3-42e5-b6ac-38a15ef148f1",
+ "name": "Radio ABC",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radioserver.dk/abc",
+ "homepage": "https://radioabc.dk/",
+ "logoUrl": "https://radio.side-walk.dk/logos/KXRtPsQK5qjFmR5jvUpGRjSlQVsz7m2icSZsSfUs.png",
+ "votes": 206,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "16e4f32b-81d3-42e5-b6ac-38a15ef148f1"
+ },
+ {
+ "id": "801ce973-f3d8-4c0f-b11f-832b5f6377d9",
+ "name": "Radio Alfa",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/alfa",
+ "homepage": "https://www.radioalfa.dk/",
+ "logoUrl": "http://www.radioalfa.dk/wp-content/uploads/goliath/Radio-Alfa_Logo%20%282%29.png",
+ "votes": 85,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "801ce973-f3d8-4c0f-b11f-832b5f6377d9"
+ },
+ {
+ "id": "ea949437-acea-40e1-ab43-045fb7aed40b",
+ "name": "Always ELVIS Radio",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [
+ "1950s",
+ "elvis presley",
+ "oldies",
+ "oldies 50's/60's"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/alwayselvisradio",
+ "homepage": "https://www.memphismansion.com/",
+ "logoUrl": null,
+ "votes": 133,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ea949437-acea-40e1-ab43-045fb7aed40b"
+ },
+ {
+ "id": "9fb61667-1d5d-4b5d-b22f-88708afa8b05",
+ "name": "DR P2 HLS 96",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "classical",
+ "culture"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p2/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p2",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/DR_P2_4184x184.png",
+ "votes": 45,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9fb61667-1d5d-4b5d-b22f-88708afa8b05"
+ },
+ {
+ "id": "608e7e03-7c4d-4a44-a55a-f83967d00170",
+ "name": "DR P4 København HLS 96",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "news",
+ "pop",
+ "regional radio"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4kobenhavn/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4kbh",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/DR_P4_4184x184.png",
+ "votes": 32,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "608e7e03-7c4d-4a44-a55a-f83967d00170"
+ },
+ {
+ "id": "df9fda53-e237-4905-b977-bb293a57adc0",
+ "name": "DR P5 Trekanten (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5trekanten/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "df9fda53-e237-4905-b977-bb293a57adc0"
+ },
+ {
+ "id": "f8125a54-33ed-469d-a10e-a2829e947b5b",
+ "name": "go!FM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "pop rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radioserver.dk/gofm",
+ "homepage": "https://www.gofm.dk/",
+ "logoUrl": "https://www.gofm.dk/wp-content/uploads/2017/08/cropped-gofm-logo-512-32x32.png",
+ "votes": 62,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f8125a54-33ed-469d-a10e-a2829e947b5b"
+ },
+ {
+ "id": "39334888-fb45-432f-8066-173b05d1af01",
+ "name": "Radio Alfa Aarhus",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/alfaaarhus",
+ "homepage": "https://www.radioalfa.dk/",
+ "logoUrl": "http://www.radioalfa.dk/wp-content/uploads/goliath/Radio-Alfa_Logo%20%282%29.png",
+ "votes": 26,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "39334888-fb45-432f-8066-173b05d1af01"
+ },
+ {
+ "id": "21b4d1bd-3119-4215-b8f7-87dc38fbf783",
+ "name": "Radio Alfa Midtjylland",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/alfamidt",
+ "homepage": "https://www.radioalfa.dk/",
+ "logoUrl": "https://alfa.side-walk.dk/logos/xEEssAXlAQ8G3lsJEBO21sOH2bkrz0SoiG1ZroEs.png",
+ "votes": 10,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "21b4d1bd-3119-4215-b8f7-87dc38fbf783"
+ },
+ {
+ "id": "f35d7138-3266-4865-981f-99762ca33b63",
+ "name": "Radio Diablo (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "news",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://radio1.jfmtech.dk/diablo.aac",
+ "homepage": "https://radiodiablo.dk/",
+ "logoUrl": "https://radiodiablo.dk/wp-content/uploads/2024/05/Diablo-Logo-BLACK-768x241.png",
+ "votes": 8,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f35d7138-3266-4865-981f-99762ca33b63"
+ },
+ {
+ "id": "a401551f-88a3-400c-9f02-2bfb592a1ae0",
+ "name": "Radio Viborg",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "local news",
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://webradio.radioviborg.dk/viborg",
+ "homepage": "https://radioviborg.dk/#",
+ "logoUrl": "https://radioviborg.dk/wp-content/uploads/2017/09/cropped-favicon-180x180.png",
+ "votes": 67,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a401551f-88a3-400c-9f02-2bfb592a1ae0"
+ },
+ {
+ "id": "e463f4fd-8de9-44e7-b139-7ffc309c4520",
+ "name": "Alfa Gold",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radioserver.dk/alfaevent",
+ "homepage": "https://www.radioalfa.dk/",
+ "logoUrl": "https://alfa.side-walk.dk/logos/kbuDQjAaWNzpjRIfEl9MXPUWj7CHYH9BJcZAIEo9.png",
+ "votes": 51,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e463f4fd-8de9-44e7-b139-7ffc309c4520"
+ },
+ {
+ "id": "87069ec6-7cfc-446d-b1be-e56c8b8d2287",
+ "name": "DLF aktuelle Presseschau",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "german",
+ "tags": [
+ "internationale presseschau",
+ "lokale presseschau",
+ "nachrichten"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://ondemand-mp3.dradio.de/file/dradio/presseschau/presseschau.mp3",
+ "homepage": "https://www.deutschlandfunk.de/",
+ "logoUrl": "https://www.deutschlandfunk.de/presseschauen-100.html",
+ "votes": 31,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "87069ec6-7cfc-446d-b1be-e56c8b8d2287"
+ },
+ {
+ "id": "308ec8a5-4473-4cf5-8318-1c827acc9b95",
+ "name": "DR P1 HLS 96",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "culture",
+ "information",
+ "news",
+ "talk"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p1/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p1",
+ "logoUrl": "https://www.dr.dk/favicon.ico",
+ "votes": 37,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "308ec8a5-4473-4cf5-8318-1c827acc9b95"
+ },
+ {
+ "id": "813fe40d-5afb-4fd5-a56a-7a24c6c6db3d",
+ "name": "DR P3 HLS 96",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "entertainment",
+ "pop"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p3/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p3",
+ "logoUrl": "https://www.radio.de/images/broadcasts/ea/89/10773/2/c300.png",
+ "votes": 27,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "813fe40d-5afb-4fd5-a56a-7a24c6c6db3d"
+ },
+ {
+ "id": "45f65836-5e76-4d16-a755-e99b2d0be65b",
+ "name": "DR P4 Bornholm (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p4bornholm/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p4",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p4.a9a465ed.svg",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "45f65836-5e76-4d16-a755-e99b2d0be65b"
+ },
+ {
+ "id": "b69d7997-fec2-419b-b33d-d01f7ebba8b8",
+ "name": "DR P5 Østjylland",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-icy.dr.dk/A/A24H.mp3",
+ "homepage": "https://www.dr.dk/lyd/programmer",
+ "logoUrl": "https://www.dr.dk/nyhedsbrev/images/drlyd.png",
+ "votes": 13,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b69d7997-fec2-419b-b33d-d01f7ebba8b8"
+ },
+ {
+ "id": "eb6ef47c-ae5b-448e-9075-086655e6a149",
+ "name": "DR P6 Beat HLS 96",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "alternative",
+ "indie",
+ "pop",
+ "rock"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p6beat/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p6beat",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/DR_P6_4184x184.png",
+ "votes": 37,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "eb6ef47c-ae5b-448e-9075-086655e6a149"
+ },
+ {
+ "id": "992df62a-154d-4434-9da9-9b5e17e8664d",
+ "name": "Limfjord Slager",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://media.limfjordnetradio.dk/plusslageraac",
+ "homepage": "http://limfjordslager.dk/index.html",
+ "logoUrl": "http://limfjordslager.dk/____impro/1/onewebmedia/Limfjord-Slager_horisontal%20ny.png?etag=W%2F%221a02b-5a3eace3%22&sourceContentType=image%2Fpng&ignoreAspectRatio&resize=300%2B77&extract=0%2B0%2B300%2B77",
+ "votes": 23,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "992df62a-154d-4434-9da9-9b5e17e8664d"
+ },
+ {
+ "id": "7017408d-aae6-4565-a615-5654c1dc32cb",
+ "name": "Mix FM Gribskov, Retro Nord",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://netradio.mixfm.dk/stream",
+ "homepage": "https://www.flrnord.dk/",
+ "logoUrl": null,
+ "votes": 23,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7017408d-aae6-4565-a615-5654c1dc32cb"
+ },
+ {
+ "id": "be78f00b-0f84-4b22-abeb-feb6206f1839",
+ "name": "Radio Alfa Skive",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/alfaskive",
+ "homepage": "https://www.radioalfa.dk/",
+ "logoUrl": "http://www.radioalfa.dk/wp-content/uploads/goliath/Radio-Alfa_Logo%20%282%29.png",
+ "votes": 16,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "be78f00b-0f84-4b22-abeb-feb6206f1839"
+ },
+ {
+ "id": "df2f6bd2-73c2-4398-ae78-3222fdba454a",
+ "name": "Radio FLR",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://faxe.jtw.dk/stream",
+ "homepage": "https://radioflr.dk/",
+ "logoUrl": "http://radioflr.dk/wp-content/uploads/2025/12/RadioFLR_Logo.png",
+ "votes": 0,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "df2f6bd2-73c2-4398-ae78-3222fdba454a"
+ },
+ {
+ "id": "15d1a95a-abcc-478a-a87f-7cf5d2b242ae",
+ "name": "Radio Globus",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "dan",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.probroadcast.dk/radioglobus",
+ "homepage": "https://www.radioglobus.dk/",
+ "logoUrl": null,
+ "votes": 40,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "15d1a95a-abcc-478a-a87f-7cf5d2b242ae"
+ },
+ {
+ "id": "6491342a-6d10-45da-87fd-edca5464367f",
+ "name": "Radio Humleborg",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [
+ "big band",
+ "crooners",
+ "jazz",
+ "pop",
+ "rock",
+ "swing",
+ "talk",
+ "vocal jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream2.rcast.net/64145",
+ "homepage": "https://humleborg.dk/",
+ "logoUrl": "https://humleborg.dk/templates/yootheme/vendor/yootheme/theme-joomla/assets/images/favicon.png",
+ "votes": 22,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6491342a-6d10-45da-87fd-edca5464367f"
+ },
+ {
+ "id": "c8eb07de-d4e7-48b2-a997-5768a875df48",
+ "name": "Radio IIII",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "news",
+ "political talk",
+ "talk & speech",
+ "talk radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://netradio.radio4.dk/radio4",
+ "homepage": "https://radio4.dk/",
+ "logoUrl": null,
+ "votes": 13,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "c8eb07de-d4e7-48b2-a997-5768a875df48"
+ },
+ {
+ "id": "5ef52e34-5c0d-41b8-b2ff-24bb3df52065",
+ "name": "Radio Solo",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radioserver.dk/solo",
+ "homepage": "https://radiosolo.dk/",
+ "logoUrl": "https://radiosolo.dk/wp-content/uploads/2021/06/radiosolo.svg",
+ "votes": 44,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ef52e34-5c0d-41b8-b2ff-24bb3df52065"
+ },
+ {
+ "id": "3afb7b74-5946-44d5-98c5-f70808d4526d",
+ "name": "Radio Viva - Kolding",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.probroadcast.dk/radioviva",
+ "homepage": "https://radioviva.dk/",
+ "logoUrl": "https://radioviva.dk/wp-content/themes/radioviva_dk/images/viva_logo.png",
+ "votes": 79,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3afb7b74-5946-44d5-98c5-f70808d4526d"
+ },
+ {
+ "id": "9a5f3b79-13c6-4a0e-a41f-6b5ad048c1a4",
+ "name": "Retro Radio",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://tx-2.retro-radio.dk/TX-2",
+ "homepage": "https://retro-radio.dk/",
+ "logoUrl": null,
+ "votes": 44,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9a5f3b79-13c6-4a0e-a41f-6b5ad048c1a4"
+ },
+ {
+ "id": "37e84ac0-5336-4ce8-badb-6fdc7ed8923e",
+ "name": "Tango Copenhagen",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://tangocopenhagen.stream.laut.fm/tangocopenhagen?pl=m3u&t302=2026-01-15_07-29-52&uuid=2ce4484f-6ce9-4c5b-893f-fae1c3a7de8c",
+ "homepage": "https://tangocopenhagen.radio/",
+ "logoUrl": "https://tangocopenhagen.radio/wp-content/uploads/2019/03/logo-square-large-2-comp.png",
+ "votes": 31,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "37e84ac0-5336-4ce8-badb-6fdc7ed8923e"
+ },
+ {
+ "id": "d8167c19-b09e-476a-a593-ceb7841b9d6a",
+ "name": "2town Radio",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://streaming.radio.co/sd9d980ff0/listen",
+ "homepage": "https://www.2town.dk/tag/radio/",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d8167c19-b09e-476a-a593-ceb7841b9d6a"
+ },
+ {
+ "id": "94745bf8-1b99-4260-9bdc-90ef54742e7f",
+ "name": "DR P5 Esbjerg (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5esbjerg/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "94745bf8-1b99-4260-9bdc-90ef54742e7f"
+ },
+ {
+ "id": "9dad9743-9cb9-41c3-a093-4158ae9bb4eb",
+ "name": "DR P5 Fyn",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio.akamaized.net/hls/live/2022411/p5fyn/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/programmer",
+ "logoUrl": "https://www.dr.dk/nyhedsbrev/images/drlyd.png",
+ "votes": 12,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9dad9743-9cb9-41c3-a093-4158ae9bb4eb"
+ },
+ {
+ "id": "0c26b12e-5a5a-4fbe-990f-a4f7bc20aa10",
+ "name": "DR P5 Midt-Vest (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5midtvest/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/favicon.ico",
+ "votes": 18,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c26b12e-5a5a-4fbe-990f-a4f7bc20aa10"
+ },
+ {
+ "id": "7d898b16-158e-4920-b008-f2591f2cb340",
+ "name": "DR P5 Syd",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio.akamaized.net/hls/live/2022411/p5syd/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/programmer",
+ "logoUrl": "https://www.dr.dk/favicon.ico",
+ "votes": 12,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "7d898b16-158e-4920-b008-f2591f2cb340"
+ },
+ {
+ "id": "176bd1f9-0033-46fe-b39a-348ba4e2e7b9",
+ "name": "DR P5 Syd (AAC)",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "regional radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 324,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p5syd/masterab.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p5",
+ "logoUrl": "https://www.dr.dk/lyd/_next/static/media/p5.1704bd78.svg",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "176bd1f9-0033-46fe-b39a-348ba4e2e7b9"
+ },
+ {
+ "id": "f27942a0-068b-401c-baf6-c5922b814a8f",
+ "name": "DR P8 Jazz HLS 96",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish",
+ "tags": [
+ "jazz"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio1.akamaized.net/hls/live/2097651/p8jazz/playlist-96000.m3u8",
+ "homepage": "https://www.dr.dk/lyd/p8jazz",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/DR_P8_5184x184.png",
+ "votes": 95,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f27942a0-068b-401c-baf6-c5922b814a8f"
+ },
+ {
+ "id": "6c6a6e97-3311-4ed5-b867-76ce6ebb70d3",
+ "name": "Esbjerg Classic FM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://webradio.classicfm.dk/classicvejle",
+ "homepage": "https://classicfm.dk/",
+ "logoUrl": "https://classicfm.dk/wp-content/uploads/2024/08/cropped-favicon_classic_fm-180x180.png",
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "6c6a6e97-3311-4ed5-b867-76ce6ebb70d3"
+ },
+ {
+ "id": "552a021a-95cf-4dfe-bf0d-83e2dbe34fd3",
+ "name": "Globus Guld Jul",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "danish,english",
+ "tags": [
+ "christmas",
+ "holiday"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.probroadcast.dk/guldjul",
+ "homepage": "https://globusguld.dk/globus-guld-jul/",
+ "logoUrl": null,
+ "votes": 67,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "552a021a-95cf-4dfe-bf0d-83e2dbe34fd3"
+ },
+ {
+ "id": "8a3c3b8c-58ab-4556-83d7-446b9a787b68",
+ "name": "Limfjord Mix",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://media.limfjordnetradio.dk/limfjord128",
+ "homepage": "https://limfjordnetradio.dk/",
+ "logoUrl": null,
+ "votes": 13,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8a3c3b8c-58ab-4556-83d7-446b9a787b68"
+ },
+ {
+ "id": "60791543-e494-4bcd-af3e-f2f198881b98",
+ "name": "Radio Alfa Viborg",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/alfaviborg",
+ "homepage": "https://radioserver.dk/alfaviborg",
+ "logoUrl": null,
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "60791543-e494-4bcd-af3e-f2f198881b98"
+ },
+ {
+ "id": "fae582e4-d87a-4cc6-aa8c-b1129bb51804",
+ "name": "Radio Fasanen Frederiksberg",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://c14.radioboss.fm:18228/stream",
+ "homepage": "https://www.radiokultur.dk/",
+ "logoUrl": "https://www.radiokultur.dk/favicon.ico",
+ "votes": 18,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fae582e4-d87a-4cc6-aa8c-b1129bb51804"
+ },
+ {
+ "id": "5854189c-c4a2-4f10-861a-b095e7e4bcf9",
+ "name": "Radio Helsingør FM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.radiohelsingor.dk/rh",
+ "homepage": "https://fmscan.org/net.php?sid=27452&pxf=Radio+Helsing%F8r+FM&m=s&r=f&itu=0",
+ "logoUrl": "https://fmscan.org/favicon.ico",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "5854189c-c4a2-4f10-861a-b095e7e4bcf9"
+ },
+ {
+ "id": "4578e504-5cb0-47c5-bcd0-1baa78719a01",
+ "name": "Radio M",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radioserver.dk/radiom",
+ "homepage": "https://radiom.dk/",
+ "logoUrl": null,
+ "votes": 41,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4578e504-5cb0-47c5-bcd0-1baa78719a01"
+ },
+ {
+ "id": "4b4e418e-b536-48f8-b970-78bab26845c5",
+ "name": "Radio Mars",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio2.digidi.net/listen/mars/radio_mid.mp3",
+ "homepage": "https://radiomars.dk/",
+ "logoUrl": "https://radiomars.dk/wp-content/uploads/2025/02/logo-300x300.png",
+ "votes": 31,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b4e418e-b536-48f8-b970-78bab26845c5"
+ },
+ {
+ "id": "cd6cac01-31ef-4ea0-ade2-9189d68ed443",
+ "name": "Radio Panini",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "english",
+ "tags": [
+ "club",
+ "community radio",
+ "music",
+ "variety"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radi-panini.radiocult.fm/stream",
+ "homepage": "https://www.radiopanini.com/",
+ "logoUrl": "https://www.radiopanini.com/favicon.ico",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cd6cac01-31ef-4ea0-ade2-9189d68ed443"
+ },
+ {
+ "id": "cbf46457-152d-4d64-bec5-266e5796c91a",
+ "name": "Radio Soft - Københavns NR - Bispebjerg LR - Bella Chr",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerdk.sharp-stream.com/radiosoft_dk_tunein_mp3",
+ "homepage": "https://www.knr.dk/",
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cbf46457-152d-4d64-bec5-266e5796c91a"
+ },
+ {
+ "id": "d4667343-aec5-40b7-b292-e18a6cc0e92b",
+ "name": "Radio VLR",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.vlr.dk/vlr8d",
+ "homepage": "https://vlr.dk/",
+ "logoUrl": "https://vlr.dk/wp-content/uploads/sites/3/2024/08/cropped-favicon_vlr-1-180x180.png",
+ "votes": 37,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d4667343-aec5-40b7-b292-e18a6cc0e92b"
+ },
+ {
+ "id": "143f751d-32b2-456d-9219-d2e24a3d48fb",
+ "name": "Radio VLR - Classic Christmas",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.vlr.dk/popup2",
+ "homepage": "https://vlr.dk/",
+ "logoUrl": "https://vlr.dk/wp-content/uploads/sites/3/2024/08/cropped-favicon_vlr-1-180x180.png",
+ "votes": 26,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "143f751d-32b2-456d-9219-d2e24a3d48fb"
+ },
+ {
+ "id": "d20c9c7c-3787-4e67-abf6-7486b57c78a9",
+ "name": "SkagaFM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://stream.probroadcast.dk/skagafm",
+ "homepage": "https://skagafm.dk/radio/",
+ "logoUrl": "https://skagafm.dk/skagafm/wp-content/uploads/2024/08/cropped-Skaermbillede-2024-08-29-kl.-14.20.49-180x180.png",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d20c9c7c-3787-4e67-abf6-7486b57c78a9"
+ },
+ {
+ "id": "d1aff0af-3e9e-4ad2-a9d6-cfed3ffd6a66",
+ "name": "Tango Copenhagen Radio",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": "english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://tangocopenhagen.stream.laut.fm/tangocopenhagen?t302=2021-01-15_18-47-40&uuid=64db9a91-4a6e-4bc8-ba24-26a2fa7f24d0",
+ "homepage": "https://tangocopenhagen.radio/",
+ "logoUrl": null,
+ "votes": 798,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1aff0af-3e9e-4ad2-a9d6-cfed3ffd6a66"
+ },
+ {
+ "id": "bd2c8477-0702-4efe-aa9b-207880a1d68f",
+ "name": "UMLANDO Radio",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a2.asurahosting.com:6520/radio.mp3",
+ "homepage": "http://www.umlando.dk/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "bd2c8477-0702-4efe-aa9b-207880a1d68f"
+ },
+ {
+ "id": "220f0cf1-029f-459f-bdee-890995f037b2",
+ "name": "WMR - World Music Radio",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [
+ "world music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://stream.probroadcast.dk/wmr",
+ "homepage": "https://www.wmr.dk/#",
+ "logoUrl": null,
+ "votes": 176,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "220f0cf1-029f-459f-bdee-890995f037b2"
+ },
+ {
+ "id": "f39c3428-372e-4c3d-b506-7d59b3fda596",
+ "name": "X FM K",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://uniradio.out.airtime.pro/uniradio_a",
+ "homepage": "https://uniradioen.dk/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f39c3428-372e-4c3d-b506-7d59b3fda596"
+ },
+ {
+ "id": "3877366e-eb34-4cb8-84a1-b7b187a97a67",
+ "name": "DR P6 Jazz",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://drliveradio.akamaized.net/hls/live/2022411/p8jazz/playlist-320000.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 57,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "3877366e-eb34-4cb8-84a1-b7b187a97a67"
+ },
+ {
+ "id": "a4053cb4-7fd0-4c3b-9228-a93a1275c6ad",
+ "name": "FemernFM",
+ "country": "Denmark",
+ "countryCode": "DK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast1.asurahosting.com/proxy/femernfm/stream",
+ "homepage": "https://www.femernfm.dk/",
+ "logoUrl": "https://mmo.aiircdn.com/1027/6435447863904.jpg",
+ "votes": 35,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4053cb4-7fd0-4c3b-9228-a93a1275c6ad"
+ },
+ {
+ "id": "1ee96040-bfb6-4209-9ab8-14a26ff73ad0",
+ "name": "Raadio Elmar",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://le06.euddn.net/06c6e9fec40c66f08e914c03863f9414453544f91420595482312a9fc4000bf6d1f2e38af14516a218d89b5a897a16f9500a64a80ed0da449f729d7f78de8bc5dcd07fb3a5925334697756f363102f773f78583b0e9c83bec1004f9b69bd211a11d59a39d295ac79d1f8c9848c83f83ffe16c9a65cb41f122ddcdc8c974c35a5f8d85b07cbd33b90325ddfd49b6a3e5666c05d27f019b6f1128741421b3d1e84/elmar.aac",
+ "homepage": "https://elmar.pleier.ee/",
+ "logoUrl": null,
+ "votes": 1233,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "1ee96040-bfb6-4209-9ab8-14a26ff73ad0"
+ },
+ {
+ "id": "3586ad23-e161-4dd2-aaa8-b8dc372ab0e9",
+ "name": "Retro FM Estonia",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edge02.cdn.bitflip.ee:8888/RETRO?_i=258f436b",
+ "homepage": "https://sky.ee/retrofm",
+ "logoUrl": "https://sky.ee/favicon.ico",
+ "votes": 899,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "3586ad23-e161-4dd2-aaa8-b8dc372ab0e9"
+ },
+ {
+ "id": "3f930fbb-d418-459e-8923-3584620a2428",
+ "name": "Sky Plus",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://skymedia-live.bitflip.ee/SKYPLUS",
+ "homepage": "https://sky.ee/skyplus",
+ "logoUrl": "https://sky.ee/favicon.ico",
+ "votes": 118,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f930fbb-d418-459e-8923-3584620a2428"
+ },
+ {
+ "id": "a2624589-8279-4be3-9ea0-514dcd29cef8",
+ "name": "Võmba FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian,finnish",
+ "tags": [
+ "1990s",
+ "90s",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 320,
+ "streamUrl": "https://c4.radioboss.fm:18123/stream",
+ "homepage": "https://xn--vmbafm-pxa.fi/",
+ "logoUrl": null,
+ "votes": 663,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "a2624589-8279-4be3-9ea0-514dcd29cef8"
+ },
+ {
+ "id": "7cde649e-2976-4311-8e6a-62cdcd6edb44",
+ "name": "Duo Party",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonia",
+ "tags": [
+ "dance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://le06.euddn.net/279bb1630f135084caa1ff583ca3033a5af28635cd98c5054a0fa7c91d1158b29ddd2089f845c9a2cbffc0490e8dd2fc22e20f561ca25b616e663652a55374ce5dc45b1a5aede252bf5e3df5574a261d1657c8f31cd2492f484ee70a1ccfd63c5f5a77195682bf1efcafdd9ff711aa0c243bdfdeedcc8d2a9c1a3a8721597acaa1313ac70837a5a0d415257abb29501f1253b9b029063a9ba2ef175e8c8f26935285961fd373a829ad4ab2607c39b7b9/duodance.aac",
+ "homepage": "https://raadioduo.pleier.ee/duo-party",
+ "logoUrl": "https://f302.pmo.ee/L3qQOIrm8IQjKoZDAoI7ouLHfe8=/460x460/smart/filters:quality(90)/https://f303.pmo.ee/media/2024/03/duoparty-ruut.jpg",
+ "votes": 161,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "7cde649e-2976-4311-8e6a-62cdcd6edb44"
+ },
+ {
+ "id": "208c966b-0df4-4939-943f-1ac7bfe9d2ee",
+ "name": "Rock FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edge02.cdn.bitflip.ee:8888/rck?_i=5f5ab186",
+ "homepage": "https://sky.ee/rockfm",
+ "logoUrl": "https://sky.ee/favicon.ico",
+ "votes": 4933,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "208c966b-0df4-4939-943f-1ac7bfe9d2ee"
+ },
+ {
+ "id": "08824e6f-0f14-4dc4-9e84-b100c3c1a338",
+ "name": "Tre Raadio Ring FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "community radio",
+ "regional"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://cdn.treraadio.ee/ringfm",
+ "homepage": "https://ringfm.treraadio.ee/",
+ "logoUrl": "https://ringfm.treraadio.ee/apple-touch-icon.png",
+ "votes": 401,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "08824e6f-0f14-4dc4-9e84-b100c3c1a338"
+ },
+ {
+ "id": "a2a7db6e-e625-11e8-a9cc-52543be04c81",
+ "name": "Äripäeva Raadio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "business news",
+ "estonia"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://www.aripaev.ee/raadio/stream.mp3",
+ "homepage": "https://www.aripaev.ee/raadio/",
+ "logoUrl": "https://www.aripaev.ee/favicons/aripaev/favicon.ico",
+ "votes": 252,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a2a7db6e-e625-11e8-a9cc-52543be04c81"
+ },
+ {
+ "id": "694c17ea-4de8-4055-a6a5-a2b1dcadfb91",
+ "name": "Star FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://ice.leviracloud.eu/star320-mp3",
+ "homepage": "https://raadiod.com/star-fm/",
+ "logoUrl": "https://cdn.instant.audio/images/logos/raadiod-com/star-fm.png",
+ "votes": 41,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "694c17ea-4de8-4055-a6a5-a2b1dcadfb91"
+ },
+ {
+ "id": "31946e60-f679-4d3b-933f-d7dbda58d6ba",
+ "name": "Raadio Kadi",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edge06.cdn.bitflip.ee:8888/kadi",
+ "homepage": "https://kadi.ee/",
+ "logoUrl": null,
+ "votes": 20,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "31946e60-f679-4d3b-933f-d7dbda58d6ba"
+ },
+ {
+ "id": "3055ea31-af16-4a32-91b9-1a81366fc73a",
+ "name": "Retro fm disco",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://edge05.cdn.bitflip.ee:8888/retro1.mp3?",
+ "homepage": "https://edge05.cdn.bitflip.ee:8888/retro1.mp3?",
+ "logoUrl": null,
+ "votes": 18,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3055ea31-af16-4a32-91b9-1a81366fc73a"
+ },
+ {
+ "id": "05d3034c-7599-4fa4-a2c5-3b8cfb055849",
+ "name": "Sky Plus DnB",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "dance",
+ "dnb",
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://edge03.cdn.bitflip.ee:8888/NRJdnb",
+ "homepage": "https://sky.ee/skyplus",
+ "logoUrl": "https://sky.ee/favicon.ico",
+ "votes": 560,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "05d3034c-7599-4fa4-a2c5-3b8cfb055849"
+ },
+ {
+ "id": "91ff5c64-9080-4976-b506-aee6c755a94a",
+ "name": "Star FM Eesti",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonia",
+ "tags": [
+ "00's",
+ "10's",
+ "20's",
+ "80's",
+ "90's",
+ "top 40"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://ice.leviracloud.eu/starFMEesti96-aac",
+ "homepage": "https://starfm.tv3.ee/",
+ "logoUrl": "https://starfm.tv3.ee/ui/images/icons//apple-icon-120x120.png",
+ "votes": 75,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "91ff5c64-9080-4976-b506-aee6c755a94a"
+ },
+ {
+ "id": "266acf45-a1ad-4a67-9a81-3cdf54dc8ceb",
+ "name": "Duo Gold (Estonia)",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "eesti,estonia,estonian",
+ "tags": [
+ "gold",
+ "oldies"
+ ],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://le03.euddn.net/4df6a80de9754b0e96ad4f84e1c81111811f7aba47d2379509ac3cbf474a04b02b5cc342cbe85748a652849ef6b557dda027a1725d936e8d1f25fd0e841b894709b70f0f525144b33433c8b11a853594c38c2f95f06d924d1909db25332562e9198fa4958617b73f0901c7b4bdee50e54299aed5b34df299926ffc79562e4040987dd1987c98e6f11b4b79430ce2294e9d29e186016d517792d06519c9185df1/kuld.aac",
+ "homepage": "https://raadioduo.pleier.ee/duo-gold",
+ "logoUrl": "https://pleier.ee/favicons/pleier/favicon-32x32.png",
+ "votes": 15,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "266acf45-a1ad-4a67-9a81-3cdf54dc8ceb"
+ },
+ {
+ "id": "a13e6834-cb4c-423d-912b-d8b25962b88b",
+ "name": "Elmari Kuld",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "1970s",
+ "1980s",
+ "1990s",
+ "classic pop",
+ "estonia",
+ "vintage"
+ ],
+ "codec": "AAC+",
+ "bitrate": 160,
+ "streamUrl": "https://le11.euddn.net/d15d071d4f73afad16807c29a8cfe7447ef9fb6dc8928de64be3300e8ca0f3ca5c5b547137da3e2640917468e13ac1d7701b052f6ec9a2a3e207246d31ad7e936db6e1331b35e581cf1c988b303c617e81caf69b44a4afdcaceb809a218d0a9dd4aec230d75e57587a911bdb0faaaaa126ba9f040b7014729c340e2ab241ccfc0af5a1112d14756b8f322bf7a153eace53f699eeebaffdff8ab7ca1c91e4b2505f8f7dee05e2d8150305addddea91bd3/elmarikuld.aac",
+ "homepage": "https://elmar.pleier.ee/elmari-kuld",
+ "logoUrl": "https://elmar.pleier.ee/favicons/elmar/apple-touch-icon.png",
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a13e6834-cb4c-423d-912b-d8b25962b88b"
+ },
+ {
+ "id": "37723443-7b1f-4001-a9ec-d37a12b63ceb",
+ "name": "IDA Radio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian,finnish",
+ "tags": [
+ "alternative",
+ "music",
+ "popular music"
+ ],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://broadcast.idaidaida.net:8000/stream",
+ "homepage": "https://idaidaida.net/",
+ "logoUrl": "https://idaidaida.net/favicons/favicon-16x16.png",
+ "votes": 7,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "37723443-7b1f-4001-a9ec-d37a12b63ceb"
+ },
+ {
+ "id": "af1616c5-56b9-49b0-b7c2-38dfb3c07a49",
+ "name": "Kiss FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edge02.cdn.bitflip.ee:8888/KISS",
+ "homepage": "https://sky.ee/kissfm",
+ "logoUrl": "https://sky.ee/favicon.ico",
+ "votes": 77,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "af1616c5-56b9-49b0-b7c2-38dfb3c07a49"
+ },
+ {
+ "id": "f257abd4-9397-4110-b810-c7ca9fb8fbf7",
+ "name": "KlaRa Jazz",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.err.ee/klarajazz.mp3",
+ "homepage": "https://klara.err.ee/jazz",
+ "logoUrl": null,
+ "votes": 82,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f257abd4-9397-4110-b810-c7ca9fb8fbf7"
+ },
+ {
+ "id": "a2cbad2f-eaef-4c44-9a9a-c162d7dd301d",
+ "name": "NRJ",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edge01.cdn.bitflip.ee:8888/NRJ?_i=5b8169cb",
+ "homepage": "https://sky.ee/nrj",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2021-08/nrj.svg",
+ "votes": 181,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a2cbad2f-eaef-4c44-9a9a-c162d7dd301d"
+ },
+ {
+ "id": "5be25c88-4f25-4a69-96ff-e48979e796f5",
+ "name": "Raadio Duo",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://le03.euddn.net/643e1d6549b37ef476e9291c8a2416f4c7a26fd8c57720075bfc75e9f8989cec756cd63e9bedeab335cb6d27c3cf06643a3b5e57c811be0e6789ef0d2b81e1d1a37bb18b37f32cd4af628f7044d43fa5f323de0c4edf8f1019b07a3fdeb4bac2410fbbe27a31a7c3f9c3d63da38af0935a770bf4447693219bf8317e70ab02c958b988455d7b1b47dc0715c9eaf503c9ecccde7213c5b4c9a328e2377aeac41517a186c7148f9b516b9cd799b32b8d8c/radioduo.aac",
+ "homepage": "https://raadioduo.pleier.ee/",
+ "logoUrl": "https://raadioduo.pleier.ee/favicons/duo/apple-touch-icon.png",
+ "votes": 71,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5be25c88-4f25-4a69-96ff-e48979e796f5"
+ },
+ {
+ "id": "99dba6ec-5162-498b-a7f6-4f9d67a1eae2",
+ "name": "Raadio Kidzone",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonian",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 160,
+ "streamUrl": "https://le01.euddn.net/d3234a63af1bebda7d8bf0638f93824f6667da6c452d3a510c06997367525934f604f84c3e966dfa65e330d3b40a4bb1a0ee63ae0f23e6a0203776e0a42bb03365cf559300967b9a4c739e5e9ab4f3f9fb8b5755ab42aaad4507cf3e35c5f5a23cd197d1b435a8c66c22298f65e41ec8a0e8818d86273bd1713706c829829d0e80a749ca4f59004ff5d62b3573eccf55420c548828e0157c66d487a91ab0c488e680b84ac7ae25af76ef1494f6032a9c/kidzone.aac",
+ "homepage": "https://raadioduo.pleier.ee/uudised/raadio-kidzone-eesti-esimene-lasteraadio",
+ "logoUrl": "https://f302.pmo.ee/XCwVL9vwguHbm8jFYYsRXolq8Xg=/460x460/smart/filters:quality(90)/https://f303.pmo.ee/media/2023/12/raadio-kidzone-logo.png",
+ "votes": 24,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "99dba6ec-5162-498b-a7f6-4f9d67a1eae2"
+ },
+ {
+ "id": "c66ba12b-c041-4a07-8bcd-ca21e732bf6d",
+ "name": "Raadio Relax FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 88,
+ "streamUrl": "https://stream.relaxfm.ee/relax",
+ "homepage": "https://www.relaxfm.ee/",
+ "logoUrl": null,
+ "votes": 583,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "c66ba12b-c041-4a07-8bcd-ca21e732bf6d"
+ },
+ {
+ "id": "7ad100e7-b1b9-4b0d-bd9a-3030586766cc",
+ "name": "Raadio Relax International",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.relaxfm.ee/international",
+ "homepage": "https://www.relaxfm.ee/",
+ "logoUrl": null,
+ "votes": 621,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ad100e7-b1b9-4b0d-bd9a-3030586766cc"
+ },
+ {
+ "id": "10429bd3-40b5-4047-a307-821aa8dad8e0",
+ "name": "Relax cafe",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "jazz",
+ "smooth jazz"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.relaxfm.ee/cafe",
+ "homepage": "https://www.relaxfm.ee/",
+ "logoUrl": null,
+ "votes": 105,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "10429bd3-40b5-4047-a307-821aa8dad8e0"
+ },
+ {
+ "id": "619c88a6-f858-4c39-861e-da47fcd77b85",
+ "name": "Star Fm",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://ice.leviracloud.eu/star96-aac",
+ "homepage": "https://starfm.tv3.ee/",
+ "logoUrl": "https://www.tv3.ee/wp-content/themes/amb/assets/favicons/favicon-128.png",
+ "votes": 1276,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "619c88a6-f858-4c39-861e-da47fcd77b85"
+ },
+ {
+ "id": "fd410917-333f-42e7-bbbb-8800819d2d7b",
+ "name": "All The Best Radio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://c4.radioboss.fm/stream/537",
+ "homepage": "http://www.allthebestradio.ee/",
+ "logoUrl": null,
+ "votes": 41,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fd410917-333f-42e7-bbbb-8800819d2d7b"
+ },
+ {
+ "id": "5e498e8c-9025-4b6d-b49a-e0d5ed9285f2",
+ "name": "FinEst Radio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://shoutcast.finestfm.fi/stream/1/:80/;stream",
+ "homepage": "https://finestfm.fi/",
+ "logoUrl": "https://finestfm.fi/upload/623c699818c312.68089185.ico",
+ "votes": 1410,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e498e8c-9025-4b6d-b49a-e0d5ed9285f2"
+ },
+ {
+ "id": "1842c0ab-efa4-4e7d-bf50-6bd3f9ded92a",
+ "name": "Hitmix Estonia",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.hitmix.ee:8443/HIT_320",
+ "homepage": "https://hitmix.ee/",
+ "logoUrl": "https://hitmix.ee/wp-content/uploads/2020/12/cropped-hitmix-fav-180x180.png",
+ "votes": 100,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1842c0ab-efa4-4e7d-bf50-6bd3f9ded92a"
+ },
+ {
+ "id": "b759ab6c-2a20-4b05-bf27-d29100716029",
+ "name": "Hits Show Radio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonia",
+ "tags": [
+ "dance",
+ "electronic",
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/7sreyeyustkuv",
+ "homepage": "https://kuula-raadiojaama.online/",
+ "logoUrl": "https://static.wixstatic.com/media/95be61_02d07ad6f61f44d39a9d02873253eb24%7Emv2.png/v1/fill/w_192%2Ch_192%2Clg_1%2Cusm_0.66_1.00_0.01/95be61_02d07ad6f61f44d39a9d02873253eb24%7Emv2.png",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b759ab6c-2a20-4b05-bf27-d29100716029"
+ },
+ {
+ "id": "f62e23d6-8104-44e4-a994-5007428289d6",
+ "name": "Jumor FM Estonia",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://a10.asurahosting.com:7640/radio.mp3",
+ "homepage": "https://jumorfm.ee/",
+ "logoUrl": "https://jumorfm.ee/wp-content/uploads/superpwa-splashIcons/super_splash_screens/icon_640x1136.png",
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f62e23d6-8104-44e4-a994-5007428289d6"
+ },
+ {
+ "id": "af59d217-e29d-4274-b817-6be6dd78d54c",
+ "name": "Kiss FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.skymedia.ee/live/KISS",
+ "homepage": "https://sky.ee/kissfm",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2023-11/mini_kissfm.svg",
+ "votes": 14,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "af59d217-e29d-4274-b817-6be6dd78d54c"
+ },
+ {
+ "id": "cd706e3b-e435-4e5a-bf8e-c0e2c5072de0",
+ "name": "Power Hit Radio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "hot adult contemporary"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://ice.leviracloud.eu/phr96-aac?",
+ "homepage": "http://power.tv3.ee/",
+ "logoUrl": "http://power.tv3.ee/favicon.ico",
+ "votes": 173,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cd706e3b-e435-4e5a-bf8e-c0e2c5072de0"
+ },
+ {
+ "id": "1f8d651c-62b1-4b22-8fbd-5a1cbc14db08",
+ "name": "R2p",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "rap"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.err.ee/r2p.opus",
+ "homepage": "https://r2extra.err.ee/r2p",
+ "logoUrl": null,
+ "votes": 51,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1f8d651c-62b1-4b22-8fbd-5a1cbc14db08"
+ },
+ {
+ "id": "cc242589-6948-4e3c-948a-ef20195805c5",
+ "name": "Raadio 7",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "christian"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://edge05.cdn.bitflip.ee:8888/R7",
+ "homepage": "https://raadio7.ee/",
+ "logoUrl": null,
+ "votes": 385,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cc242589-6948-4e3c-948a-ef20195805c5"
+ },
+ {
+ "id": "98a2bd0a-a207-4c3c-b273-df0a0dba20dc",
+ "name": "Radio Azathoth Revival",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english",
+ "tags": [
+ "garage rock",
+ "krautrock",
+ "psychedelic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast4.asurahosting.com/proxy/aadu/stream",
+ "homepage": "https://cast4.asurahosting.com/start/aadu",
+ "logoUrl": null,
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "98a2bd0a-a207-4c3c-b273-df0a0dba20dc"
+ },
+ {
+ "id": "51a6fb08-d881-4937-8c99-c1feac025279",
+ "name": "Radio Nostalgia",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://c16.radioboss.fm:8327/stream",
+ "homepage": "https://radionostalgia.ee/",
+ "logoUrl": "https://optim.tildacdn.net/tild3738-6439-4433-a336-616635313861/-/resize/760x/-/format/webp/_-removebg-preview.png",
+ "votes": 30,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "51a6fb08-d881-4937-8c99-c1feac025279"
+ },
+ {
+ "id": "2634a58d-684b-44b1-9ed5-b0006494bec9",
+ "name": "Retro Love",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english",
+ "tags": [
+ "80s",
+ "disco",
+ "oldies",
+ "pop",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://edge05.cdn.bitflip.ee:8888/RetroJ6ulud",
+ "homepage": "https://sky.ee/retrofm",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/favicon-194x194.png",
+ "votes": 40,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "2634a58d-684b-44b1-9ed5-b0006494bec9"
+ },
+ {
+ "id": "3cca537f-0533-4810-b962-c9885527c9d6",
+ "name": "RUUT FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://a1.asurahosting.com/listen/ruut_fm/radio.mp3",
+ "homepage": "https://ruutfm.treraadio.ee/",
+ "logoUrl": "https://ruutfm.treraadio.ee/img/logo_valga.svg",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3cca537f-0533-4810-b962-c9885527c9d6"
+ },
+ {
+ "id": "8545fda3-dab7-4897-9263-462815742015",
+ "name": "Sky Plus",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.skymedia.ee/live/SKYPLUS",
+ "homepage": "https://sky.ee/",
+ "logoUrl": null,
+ "votes": 951,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8545fda3-dab7-4897-9263-462815742015"
+ },
+ {
+ "id": "df5f5446-7a0d-4072-8584-1d40c3c65707",
+ "name": "Taifuun FM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://eagle.streemlion.com/proxy/taifuunfm?mp=/stream",
+ "homepage": "https://taifuun.eu/",
+ "logoUrl": "https://taifuun.eu/favicon.ico",
+ "votes": 20,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "df5f5446-7a0d-4072-8584-1d40c3c65707"
+ },
+ {
+ "id": "1f32a224-b1fb-4bd1-90a9-d23cb176e85c",
+ "name": "XFM",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonia",
+ "tags": [
+ "hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://sc2.treraadio.ee/ttesstttinggg",
+ "homepage": "https://xfm.ee/",
+ "logoUrl": "https://www.upload.ee/image/18986375/Kuvatommis_16-1-2026_4820_xfm.ee.jpeg",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1f32a224-b1fb-4bd1-90a9-d23cb176e85c"
+ },
+ {
+ "id": "899374d2-d08d-4ea0-aefb-37cff8ef3960",
+ "name": "HITS RADIO ESTONIA",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://artemis.streamerr.co/listen/hitsradioestonia/radio.mp3",
+ "homepage": "https://hitsradio.ee/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "899374d2-d08d-4ea0-aefb-37cff8ef3960"
+ },
+ {
+ "id": "09f5298d-1eca-40e0-8831-db32d036d777",
+ "name": "Kaguraadio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonian",
+ "tags": [
+ "local news",
+ "regional",
+ "regional music"
+ ],
+ "codec": "MP3",
+ "bitrate": 115,
+ "streamUrl": "https://locomanoco.vlevelscdn.net/radio/kaguraadio.stream/playlist.m3u8",
+ "homepage": "http://kaguraadio.ee/",
+ "logoUrl": "http://www.kaguraadio.ee/wp-content/uploads/2019/11/cropped-Kaguraadio-logo4-32x32.jpg",
+ "votes": 25,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "09f5298d-1eca-40e0-8831-db32d036d777"
+ },
+ {
+ "id": "740fac1d-059d-4eb1-be47-6aa11805ae90",
+ "name": "Kiss FM Eurovision",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "eurovision"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.skymedia.ee/live/KissEurovisioon",
+ "homepage": "https://sky.ee/kissfm",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2023-11/mini_kissfm.svg",
+ "votes": 56,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "740fac1d-059d-4eb1-be47-6aa11805ae90"
+ },
+ {
+ "id": "3f862d3a-9af4-4c0c-b877-fb53ecce1ca8",
+ "name": "Kiss FM Pride",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "lgbt",
+ "lgbtq",
+ "lgbtqia+"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.skymedia.ee/live/KissPride",
+ "homepage": "https://sky.ee/kissfm",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2023-11/mini_kissfm.svg",
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f862d3a-9af4-4c0c-b877-fb53ecce1ca8"
+ },
+ {
+ "id": "1227cb0c-1047-422e-b54e-b4822ce9f281",
+ "name": "KlaRa Klassika",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.err.ee/klaraklassika.mp3",
+ "homepage": "https://klara.err.ee/klassika",
+ "logoUrl": null,
+ "votes": 87,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "1227cb0c-1047-422e-b54e-b4822ce9f281"
+ },
+ {
+ "id": "1b6fd0fd-a475-4f6d-ab49-645b744447e1",
+ "name": "KlaRa Nostalgia",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "classical",
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.err.ee/klaranostalgia.mp3",
+ "homepage": "https://klara.err.ee/nostalgia",
+ "logoUrl": null,
+ "votes": 115,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "1b6fd0fd-a475-4f6d-ab49-645b744447e1"
+ },
+ {
+ "id": "05781c28-9d5a-40c5-af53-a36d2b8e2ae9",
+ "name": "Legendaarne Raadio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonian",
+ "tags": [
+ "hip-hop",
+ "rap"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://edge01.cdn.bitflip.ee:8888/Legendaarne?_i=52831a92",
+ "homepage": "https://sky.ee/legendaarne",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2024-11/legendaarne_3.svg",
+ "votes": 8,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "05781c28-9d5a-40c5-af53-a36d2b8e2ae9"
+ },
+ {
+ "id": "278b3d8e-8f30-43cd-853d-a0cd7aba4894",
+ "name": "Legendaarne Raadio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonian",
+ "tags": [
+ "hip-hop",
+ "rap"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.skymedia.ee/live/Legendaarne",
+ "homepage": "https://sky.ee/legendaarne",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2024-11/legendaarne_3.svg",
+ "votes": 8,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "278b3d8e-8f30-43cd-853d-a0cd7aba4894"
+ },
+ {
+ "id": "0ee95d59-6288-40ea-af17-42c34b2a51a5",
+ "name": "NikRadofem",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonia,russian",
+ "tags": [
+ "ambient",
+ "breakcore",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.nikradofem.online/live",
+ "homepage": "https://nikradofem.online/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "0ee95d59-6288-40ea-af17-42c34b2a51a5"
+ },
+ {
+ "id": "f3fe9e03-7cb6-42b3-a71a-f5a94885d0da",
+ "name": "NRJ Tallinn",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "dance",
+ "edm",
+ "pop dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edge03.cdn.bitflip.ee:8888/NRJ",
+ "homepage": "https://nrj.ee/",
+ "logoUrl": null,
+ "votes": 250,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "f3fe9e03-7cb6-42b3-a71a-f5a94885d0da"
+ },
+ {
+ "id": "3b46b40f-e906-4566-9213-0f8e79e16da4",
+ "name": "R2 Eesti",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.err.ee/r2eestikorge.mp3",
+ "homepage": "https://r2extra.err.ee/r2eesti",
+ "logoUrl": null,
+ "votes": 58,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "3b46b40f-e906-4566-9213-0f8e79e16da4"
+ },
+ {
+ "id": "841ec916-508c-4948-9c16-6208f1e5015c",
+ "name": "Raadio Kuku",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://le06.euddn.net/c609d0fe2c72e9cd5237bd29bd9df83655ffab5d1c823d610d7ba65586a9433d4680ee5ab2704d2a15e826688f7267bdcf1ab20c25f6a4027d431be03d4d08107068c83415cf662173818d566f11a6eb7e2d37b015d77c3826e05b56899004fb469967cad9b2aa9c24d1ef5ecf67c01b868e48619b6fbd2137d6299f134a78e3ba9210c4266bfcb3085ca9ee7e25eb89c8b83e72c58f081bc6aa9ae33c2b487bff81ba61fee769267c7b4818b209f23a/kuku_high.mp3",
+ "homepage": "https://kuku.pleier.ee/",
+ "logoUrl": null,
+ "votes": 1328,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "841ec916-508c-4948-9c16-6208f1e5015c"
+ },
+ {
+ "id": "dd6671b8-263a-43d8-95be-a6cb08de6b20",
+ "name": "Retro FM Estonia",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 88,
+ "streamUrl": "https://stream.skymedia.ee/live/RETRO_AAC",
+ "homepage": "https://sky.ee/retrofm",
+ "logoUrl": "https://sky.ee/favicon.ico",
+ "votes": 137,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "dd6671b8-263a-43d8-95be-a6cb08de6b20"
+ },
+ {
+ "id": "d21f1a73-6718-4a79-84cc-0968e8d05d08",
+ "name": "Rock-FM Metal",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "english,estonian",
+ "tags": [
+ "metal"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://edge04.cdn.bitflip.ee:8888/rckmetal",
+ "homepage": "https://rockfm.sky.ee/",
+ "logoUrl": "https://sky.ee/storage/radio-stations/2025/12/Rock-FM-Metal-card.webp",
+ "votes": 4,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "d21f1a73-6718-4a79-84cc-0968e8d05d08"
+ },
+ {
+ "id": "d3d942e0-89e7-4c55-8f18-e6b03057d0e3",
+ "name": "Sky Plus D'N'B",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [
+ "dnb",
+ "drum 'n' bass",
+ "drum and bass"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://edge01.cdn.bitflip.ee:8888/NRJdnb",
+ "homepage": "https://sky.ee/skyplus",
+ "logoUrl": "https://site.prelive.sky.ee/sites/default/files/2021-08/skyplus.svg",
+ "votes": 19,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "d3d942e0-89e7-4c55-8f18-e6b03057d0e3"
+ },
+ {
+ "id": "a1b766be-8f2a-4556-8f6c-be42ed0accb3",
+ "name": "Sky-Radio",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "russian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.skymedia.ee/live/SKY",
+ "homepage": "http://www.sky-radio.fm/",
+ "logoUrl": null,
+ "votes": 212,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "a1b766be-8f2a-4556-8f6c-be42ed0accb3"
+ },
+ {
+ "id": "549fc715-9050-4dad-b6db-4c0e7cc9d27e",
+ "name": "Tre Raadio Rapla",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": "estonian",
+ "tags": [
+ "community radio",
+ "regional"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://cdn.treraadio.ee/rapla-tre",
+ "homepage": "https://rapla.treraadio.ee/",
+ "logoUrl": "https://rapla.treraadio.ee/favicon.ico",
+ "votes": 35,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "549fc715-9050-4dad-b6db-4c0e7cc9d27e"
+ },
+ {
+ "id": "a409b60a-c6ad-4ec4-9dcf-7ad62fc431d6",
+ "name": "XFM ESTONIA",
+ "country": "Estonia",
+ "countryCode": "EE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://sc2.flamebox.org/XFM",
+ "homepage": "https://xfm.ee/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "a409b60a-c6ad-4ec4-9dcf-7ad62fc431d6"
+ },
+ {
+ "id": "08becb2b-f5fc-4f22-8a69-ff0ec3cfe264",
+ "name": "POPfm",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.madmenmedia.se/popfm",
+ "homepage": "https://www.popfm.fi/pop/home",
+ "logoUrl": "https://www.popfm.fi/uploads/mediabank/dbd8b0c4-5184-459e-912b-661ab845b3ba.png",
+ "votes": 116,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "08becb2b-f5fc-4f22-8a69-ff0ec3cfe264"
+ },
+ {
+ "id": "35351baf-4094-429f-860c-875f2c567384",
+ "name": "Järviradio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://jarviradio.radiotaajuus.fi:9000/jr",
+ "homepage": "https://www.jarviradio.fi/",
+ "logoUrl": "https://www.jarviradio.fi/favicon.ico",
+ "votes": 259,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "35351baf-4094-429f-860c-875f2c567384"
+ },
+ {
+ "id": "85166474-fa4a-4063-acd2-4990c1644810",
+ "name": "Radio Nova",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 63,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/radionova/radionova_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/radio-nova",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigLockScreenImageUrl/254.jpg",
+ "votes": 161,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "85166474-fa4a-4063-acd2-4990c1644810"
+ },
+ {
+ "id": "f0c78ab4-e14d-40e8-8434-fcda0f3d905d",
+ "name": "Radio SuomiPop",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-suomipop.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/radiosuomipop",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/Suomipop_2560x2560.jpg?itok=PbwAfqXn",
+ "votes": 25,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0c78ab4-e14d-40e8-8434-fcda0f3d905d"
+ },
+ {
+ "id": "b302c01c-2a1b-4c8c-9440-ac3d6226c668",
+ "name": "Kasari",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "decades"
+ ],
+ "codec": "AAC",
+ "bitrate": 63,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/kasari/kasari_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/kasari/",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigWebListenBarLogoImageUrl/427.png?ver=1577957742",
+ "votes": 110,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "b302c01c-2a1b-4c8c-9440-ac3d6226c668"
+ },
+ {
+ "id": "1917621f-352f-4589-8e4d-74c0402cd11b",
+ "name": "NRJ",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/nrj/nrj_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/nrj",
+ "logoUrl": "https://w7.pngwing.com/pngs/469/239/png-transparent-nrj-group-nrj-hits-internet-radio-nrj-international-in-maintenance-text-fm-broadcasting-logo-thumbnail.png",
+ "votes": 176,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "1917621f-352f-4589-8e4d-74c0402cd11b"
+ },
+ {
+ "id": "dc975029-d89e-4536-8a7d-e0033c3a6b14",
+ "name": "YleX",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "music",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027674/in-YleX/master.m3u8",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_384,q_auto/v1718639453/ylex_square",
+ "votes": 78,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "dc975029-d89e-4536-8a7d-e0033c3a6b14"
+ },
+ {
+ "id": "7ee5f5ca-0bd0-4e53-b09a-aa5fe630ed73",
+ "name": "HitMix",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-hitmix.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/hitmix",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/HitMix_2560x2560.jpg?itok=0vJyAWi8",
+ "votes": 58,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ee5f5ca-0bd0-4e53-b09a-aa5fe630ed73"
+ },
+ {
+ "id": "218b95bb-e82c-49d6-ad7c-c8fdac9f44a4",
+ "name": "Aito Iskelmä",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-aitoiskelma.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/aitoiskelma",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/AitoIskelma_2560x2560.jpg?itok=hieHKR3-",
+ "votes": 4,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "218b95bb-e82c-49d6-ad7c-c8fdac9f44a4"
+ },
+ {
+ "id": "2c794d05-0cc1-4dfa-be31-52c0ab2cc19d",
+ "name": "Basso",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "rap"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/basso/bassoradio_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/basso/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1600857978/brand_manager/stations/urn8bckvf691ddznsnvb.png",
+ "votes": 73,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "2c794d05-0cc1-4dfa-be31-52c0ab2cc19d"
+ },
+ {
+ "id": "78b84693-1439-45a1-99ca-2d505ebaf7a6",
+ "name": "Radio Rock",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-radiorock.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/radiorock",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/RadioRock_2560x2560.jpg?itok=-t2L8AEt",
+ "votes": 30,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "78b84693-1439-45a1-99ca-2d505ebaf7a6"
+ },
+ {
+ "id": "fed9a975-d67c-44d1-8591-f44208c196e3",
+ "name": "Doubleclap Radio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english,finnish",
+ "tags": [
+ "dance",
+ "electronic",
+ "hardstyle",
+ "house",
+ "lounge",
+ "psytrance",
+ "trance"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://s3.radio.co/scfd7273b2/listen",
+ "homepage": "https://doubleclap.dance/",
+ "logoUrl": "https://doubleclap.dance/wp-content/uploads/2020/05/logo.png",
+ "votes": 506,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "fed9a975-d67c-44d1-8591-f44208c196e3"
+ },
+ {
+ "id": "cfb85c6c-76b4-11ea-b1cf-52543be04c81",
+ "name": "Radio Helsinki 98,5 Mhz",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.radiohelsinki.fi/stream",
+ "homepage": "https://www.radiohelsinki.fi/",
+ "logoUrl": null,
+ "votes": 201,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "cfb85c6c-76b4-11ea-b1cf-52543be04c81"
+ },
+ {
+ "id": "8f7ecd3e-7be3-4525-aa79-6408cef9fda8",
+ "name": "YleX",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleX/icecast.audio",
+ "homepage": "https://www.ylex.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 523,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f7ecd3e-7be3-4525-aa79-6408cef9fda8"
+ },
+ {
+ "id": "5ebce343-df89-4add-91e4-35ae5fb43f47",
+ "name": "RADIO SANDELS",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiosandels.radiotaajuus.fi:9050/radio",
+ "homepage": "https://www.radiosandels.fi/",
+ "logoUrl": "https://www.radiosandels.fi/attachments/Image/InShot_20211202_175929630_1.gif?template=generic",
+ "votes": 8,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ebce343-df89-4add-91e4-35ae5fb43f47"
+ },
+ {
+ "id": "451e4f89-5318-4995-b3ab-b10610874f6b",
+ "name": "Iskelmä",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.fi/iskelma/iskelma_128.mp3",
+ "homepage": "https://www.iskelma.fi/",
+ "logoUrl": null,
+ "votes": 104,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "451e4f89-5318-4995-b3ab-b10610874f6b"
+ },
+ {
+ "id": "dfecd929-2688-4107-90b4-766a0e0cb663",
+ "name": "Nostalgia",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "nostalgia"
+ ],
+ "codec": "AAC",
+ "bitrate": 63,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/nostalgia/nostalgia_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/radio-nostalgia",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigWebListenBarLogoImageUrl/335.png",
+ "votes": 184,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "dfecd929-2688-4107-90b4-766a0e0cb663"
+ },
+ {
+ "id": "17d8fdef-c658-4d5a-bbbe-d19ec6e82982",
+ "name": "Tampereen Kiakkoradio: Tappara",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://st.downtime.fi/kiakko-tappara.aac",
+ "homepage": "https://kiakkoradio.fi/",
+ "logoUrl": "https://kiakkoradio.fi/wp-content/uploads/2023/09/masnepp.png",
+ "votes": 53,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "17d8fdef-c658-4d5a-bbbe-d19ec6e82982"
+ },
+ {
+ "id": "ab909bf6-16f9-4066-b000-9b0b1bb5cd9c",
+ "name": "Tick Tock Radio - 1950",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "1950"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://streaming.ticktock.radio/tt/1950/icecast.audio",
+ "homepage": "https://ticktock.radio/",
+ "logoUrl": "https://ticktock.radio/static/assets/img/apple-icon-120x120.png",
+ "votes": 260,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "ab909bf6-16f9-4066-b000-9b0b1bb5cd9c"
+ },
+ {
+ "id": "727c4b71-c6ae-475a-beb1-e811f236a155",
+ "name": "Yle Radio Suomi Helsinki",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027675/in-YleRS/256/variant.m3u8",
+ "homepage": "https://areena.yle.fi/podcastit/ohjelmat/57-3gO4bl7J6",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_128,q_auto/v1730971077/yle-radio-suomi-helsinki_square",
+ "votes": 26,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "727c4b71-c6ae-475a-beb1-e811f236a155"
+ },
+ {
+ "id": "892e5cbd-bd92-494f-a96b-ecb367221666",
+ "name": "Yle Vega Västnyland",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "swedish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleVegaVastnyland/icecast.audio",
+ "homepage": "https://arenan.yle.fi/poddar/program/yle-vega?_c=radio-vega-vastnyland",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 40,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "892e5cbd-bd92-494f-a96b-ecb367221666"
+ },
+ {
+ "id": "98f551af-b40b-4035-a9cb-a531320a45d9",
+ "name": "Groove FM",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "blues",
+ "funk",
+ "groove",
+ "jazz",
+ "soul"
+ ],
+ "codec": "AAC",
+ "bitrate": 262,
+ "streamUrl": "https://aud-stream-groove.nm-elemental.nelonenmedia.fi/playlist.m3u8",
+ "homepage": "https://www.supla.fi/groovefm",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/e/e6/Groove_color_RGB.png",
+ "votes": 23,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "98f551af-b40b-4035-a9cb-a531320a45d9"
+ },
+ {
+ "id": "a32f25c3-c9cf-405e-be18-9707212f9b98",
+ "name": "Roll FM",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "alternative rock",
+ "classic rock",
+ "country",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://rollfm.online/",
+ "homepage": "https://www.rollfm.fi/",
+ "logoUrl": null,
+ "votes": 22,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a32f25c3-c9cf-405e-be18-9707212f9b98"
+ },
+ {
+ "id": "ac04007e-11f6-4f08-90a1-d5045a69410d",
+ "name": "Yle Radio 1",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "culture",
+ "music",
+ "news"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027672/in-YleRadio1/master.m3u8",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_384,q_auto/v1718639453/yle-radio-1_square",
+ "votes": 27,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ac04007e-11f6-4f08-90a1-d5045a69410d"
+ },
+ {
+ "id": "ec8d5679-6b61-49b5-9bfc-3e71a8777c44",
+ "name": "YLE Radio Suomi - Tampere",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleTampere/icecast.audio",
+ "homepage": "https://yle.fi/aihe/s/yle-radio-suomi/yle-tampere",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,fl_progressive/q_auto/w_2890,h_2890,c_crop,x_632,y_612/w_700/v1641897373/39-90051461dd5d3129248.jpg",
+ "votes": 30,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ec8d5679-6b61-49b5-9bfc-3e71a8777c44"
+ },
+ {
+ "id": "5b477c0e-5a75-42b9-af39-d7b9d73d065a",
+ "name": "Ysäri",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/ysari/ysari_128.mp3?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/ysari/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/q_auto/c_crop,g_custom/v1632725925/brand_manager/stations/zjgpsi5wjubhaer63x0j.png",
+ "votes": 6,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5b477c0e-5a75-42b9-af39-d7b9d73d065a"
+ },
+ {
+ "id": "77aa2038-a575-4517-955a-15ae8c35014b",
+ "name": "Groove FM",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-groove.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/groovefm",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/Groove_2560x2560.jpg?itok=e9AhcEY0",
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "77aa2038-a575-4517-955a-15ae8c35014b"
+ },
+ {
+ "id": "5274bf2b-c02b-4649-860b-cbc891c5d8b4",
+ "name": "Kantriradio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-kantriradio.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/kantriradio",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/Kantriradio_2560x2560.jpg?itok=HyCzbiaa",
+ "votes": 10,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5274bf2b-c02b-4649-860b-cbc891c5d8b4"
+ },
+ {
+ "id": "bfe4ba5c-8049-4095-9242-c55715f454a3",
+ "name": "Radio Keskisuomalainen",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finland,finnish,keski-suomi",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.radiokeskisuomalainen.fi/radiokeskisuomalainen",
+ "homepage": "https://www.radiokeskisuomalainen.fi/",
+ "logoUrl": "https://www.radiokeskisuomalainen.fi/wp-content/uploads/2020/04/cropped-radio-keskisuomalainen-favicon-1-192x192.png",
+ "votes": 54,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "bfe4ba5c-8049-4095-9242-c55715f454a3"
+ },
+ {
+ "id": "45c3659d-27a8-4209-910b-7e0e746301a8",
+ "name": "Radio Patmos",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "religious"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s3.yesstreaming.net:7011/radio",
+ "homepage": "https://www.patmos.fi/radio-patmos/",
+ "logoUrl": null,
+ "votes": 40,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "45c3659d-27a8-4209-910b-7e0e746301a8"
+ },
+ {
+ "id": "fecf5025-96de-11e8-a767-52543be04c81",
+ "name": "Radio Voima",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 185,
+ "streamUrl": "https://cast2.radiovoima.fi/voima.mp3",
+ "homepage": "https://www.radiovoima.fi/",
+ "logoUrl": "https://www.radiovoima.fi/wp-content/uploads/sites/2/2020/10/cropped-radio-voima-icon-180x180.png",
+ "votes": 328,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "fecf5025-96de-11e8-a767-52543be04c81"
+ },
+ {
+ "id": "ca51857b-e77e-4113-9c5a-325099e63574",
+ "name": "RAKKAUDEN WAPPURADIO",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://stream1.wappuradio.fi/wappuradio.opus",
+ "homepage": "https://wappuradio.fi/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ca51857b-e77e-4113-9c5a-325099e63574"
+ },
+ {
+ "id": "a00152c4-a3e3-416f-acf5-4e8d29709934",
+ "name": "Savon Aallot",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.savonaallot.fi/savonaallot",
+ "homepage": "https://www.savonaallot.fi/",
+ "logoUrl": "https://www.savonaallot.fi/wp-content/uploads/sites/3/2020/10/cropped-savon-aallot-ikoni-180x180.png",
+ "votes": 57,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a00152c4-a3e3-416f-acf5-4e8d29709934"
+ },
+ {
+ "id": "9848f5bd-0f75-4e6d-a2bd-fcdb551adbdd",
+ "name": "Yle Klassinen",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "classical",
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027676/in-YleKlassinen/master.m3u8",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_384,q_auto/v1718639453/yle-klassinen_square",
+ "votes": 62,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9848f5bd-0f75-4e6d-a2bd-fcdb551adbdd"
+ },
+ {
+ "id": "9d79fe27-142d-43b1-a723-0718482f6e09",
+ "name": "YLE Radio Suomi Hämeenlinna",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleHameenlinna/icecast.audio",
+ "homepage": "https://areena.yle.fi/podcastit/ohjelmat/yle-radio-suomi?_c=yle-radio-suomi-hameenlinna",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/ar_1:1,b_auto:predominant_gradient:4,c_pad,d_yle-areena.jpg,f_auto,fl_lossy,q_auto:eco,w_720/v1607003766/13-1-1416159.jpg",
+ "votes": 44,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9d79fe27-142d-43b1-a723-0718482f6e09"
+ },
+ {
+ "id": "0b9675c0-6107-4729-98dc-951581f53f3e",
+ "name": "Yle Vega Huvudstadsregionen",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "swedish",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027679/in-YleVega/master.m3u8",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_256,q_auto/v1718639453/radio-vega-huvudstadsregionen",
+ "votes": 10,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b9675c0-6107-4729-98dc-951581f53f3e"
+ },
+ {
+ "id": "60b55178-8844-4a25-b1b9-2cbf3f10bb65",
+ "name": "Yle Vega Österbotten",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleVegaOsterbotten/icecast.audio",
+ "homepage": "https://arenan.yle.fi/radio/program/yle-vega?_c=radio-vega-osterbotten",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 177,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "60b55178-8844-4a25-b1b9-2cbf3f10bb65"
+ },
+ {
+ "id": "0ac6572e-848c-4099-8bc9-3e768c0e7a87",
+ "name": "Yle X3M",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "swedish",
+ "tags": [
+ "culture",
+ "music",
+ "pop",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027678/in-YleX3M/master.m3u8",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_384,q_auto/v1718639453/yle-x3m_square",
+ "votes": 21,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0ac6572e-848c-4099-8bc9-3e768c0e7a87"
+ },
+ {
+ "id": "06bf8b75-fc48-44e8-a9b4-24c0ab8dbc80",
+ "name": "Kiss",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/kiss/kiss_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/kiss",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1590490659/brand_manager/stations/snjlzqedegeewmjwz9pd.jpg",
+ "votes": 75,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "06bf8b75-fc48-44e8-a9b4-24c0ab8dbc80"
+ },
+ {
+ "id": "63d55efd-1ccd-4831-a89f-4dfd98fff487",
+ "name": "Loop",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-loop.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/loop",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/Loop_2560x2560.jpg?itok=4Nosr7tW",
+ "votes": 10,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "63d55efd-1ccd-4831-a89f-4dfd98fff487"
+ },
+ {
+ "id": "b6280ede-e2df-4b68-b82c-63c8648aa51b",
+ "name": "Nightwish",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english",
+ "tags": [
+ "discography"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.pcradio.ru/Nightwish-hi",
+ "homepage": "https://pcradio.ru/",
+ "logoUrl": "null",
+ "votes": 19,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b6280ede-e2df-4b68-b82c-63c8648aa51b"
+ },
+ {
+ "id": "ac6dc287-20f4-4e8d-8748-ec0691acadd3",
+ "name": "NRJ Suomi",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.fi/nrj/nrj_128.mp3?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein&aw_0_1st.skey=1667679042www",
+ "homepage": "https://radioplay.fi/nrj/",
+ "logoUrl": "https://radioplay.fi/tesla/static/favicons/radioplay-fi/apple-touch-icon.png",
+ "votes": 91,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ac6dc287-20f4-4e8d-8748-ec0691acadd3"
+ },
+ {
+ "id": "a5b17fee-4e81-4d90-a1a9-284181ac3c6c",
+ "name": "Radio 957",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/radio957/radio957_128.mp3?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/radio-957/?stationId=257",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1590490408/brand_manager/stations/mqf6ugkjdlrsr7m1tb8x.png",
+ "votes": 12,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a5b17fee-4e81-4d90-a1a9-284181ac3c6c"
+ },
+ {
+ "id": "da1f2775-76f2-4b71-bb07-6795c5f0455d",
+ "name": "Radio Kaleva",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 137,
+ "streamUrl": "https://radiokaleva.digitacdn.net/radio/kaleva/master.m3u8",
+ "homepage": "https://www.radiokaleva.fi/",
+ "logoUrl": "https://www.radiokaleva.fi/wp-content/uploads/sites/337/2022/01/Kaleva_favicon_1_512x512px-300x300.png",
+ "votes": 16,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "da1f2775-76f2-4b71-bb07-6795c5f0455d"
+ },
+ {
+ "id": "3a1f4391-13bb-408a-9762-ee8b756e1d96",
+ "name": "Radio Pooki",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.fi/radiopooki/radiopooki_128.mp3?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein&aw_0_1st.skey=1697625781",
+ "homepage": "https://www.radiopooki.fi/",
+ "logoUrl": "https://www.radiopooki.fi/templates/radiopooki/images/favicon-96x96.png",
+ "votes": 33,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a1f4391-13bb-408a-9762-ee8b756e1d96"
+ },
+ {
+ "id": "f46a7f78-6fbd-4251-a44f-33024264fab6",
+ "name": "Radio Sun",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://st.downtime.fi/sun.mp3",
+ "homepage": "https://radiosun.fi/",
+ "logoUrl": "https://radiosun.fi/wp-content/uploads/2023/10/Radio-SUN-LOGO-Asiallisesti-paikallinen-1-1170x599.png",
+ "votes": 0,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f46a7f78-6fbd-4251-a44f-33024264fab6"
+ },
+ {
+ "id": "b6b4301e-7c69-4c01-b798-5083b5b11f5c",
+ "name": "Radio Tempo",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.radiotempo.fi/radiotempo",
+ "homepage": "https://www.radiotempo.fi/",
+ "logoUrl": "https://www.radiotempo.fi/wp-content/themes/radiotempo/images/logo.png",
+ "votes": 6,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b6b4301e-7c69-4c01-b798-5083b5b11f5c"
+ },
+ {
+ "id": "12f3ea7f-4041-4d54-9a57-fdb0f0c32714",
+ "name": "RadioSE.fi",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://wr2.downtime.fi/kaakko.aac",
+ "homepage": "https://www.radiose.fi/",
+ "logoUrl": "https://www.radiose.fi/wp-content/uploads/2024/06/RadioSE.fi-Suomen-monipuolisin-musiikkikanava-white-1024x327.png.webp",
+ "votes": 6,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "12f3ea7f-4041-4d54-9a57-fdb0f0c32714"
+ },
+ {
+ "id": "002859e6-fa1c-4ad8-8f4c-f204c42e36ae",
+ "name": "Rondo Classic Klasu Pro",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "OGG",
+ "bitrate": 128,
+ "streamUrl": "https://iradio.fi/klasupro.flac",
+ "homepage": "https://rondo.fi/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/UyZJwdEzqv.jpg",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "002859e6-fa1c-4ad8-8f4c-f204c42e36ae"
+ },
+ {
+ "id": "4d1a27b8-9c81-4bd1-b79d-ca43b75c1b0a",
+ "name": "Yle radio Suomi Pohjanmaa",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YlePohjanmaa/icecast.audio",
+ "homepage": "https://areena.yle.fi/podcastit/ohjelmat/57-3gO4bl7J6",
+ "logoUrl": null,
+ "votes": 14,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "4d1a27b8-9c81-4bd1-b79d-ca43b75c1b0a"
+ },
+ {
+ "id": "da91e191-4e17-4373-a900-fb3a0121d4ab",
+ "name": "Yle Radio Suomi, Lappeenranta",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027711/in-YleLPR/master.m3u8",
+ "homepage": "https://areena.yle.fi/audio/ohjelmat/57-3gO4bl7J6?_c=yle-radio-suomi-lappeenranta",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 61,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "da91e191-4e17-4373-a900-fb3a0121d4ab"
+ },
+ {
+ "id": "5ccaf433-c2df-46e7-8e38-61e4445fe43c",
+ "name": "YleRadioSuomiLahti",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleLahti/icecast.audio",
+ "homepage": "https://areena.yle.fi/podcastit/ohjelmat/57-3gO4bl7J6?_c=yle-radio-suomi-lahti",
+ "logoUrl": "https://t0.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://areena.yle.fi/podcastit/ohjelmat/57-3gO4bl7J6?_c=yle-radio-suomi-lahti&size=128",
+ "votes": 6,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ccaf433-c2df-46e7-8e38-61e4445fe43c"
+ },
+ {
+ "id": "32191e96-d5ef-413d-a602-4a359125dd8f",
+ "name": "Ysäri",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "90s",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 63,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/ysari/ysari_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/ysari",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigWebListenBarLogoImageUrl/426.png",
+ "votes": 71,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "32191e96-d5ef-413d-a602-4a359125dd8f"
+ },
+ {
+ "id": "3082ec5e-fa44-47a8-94a8-e89da4cab453",
+ "name": "Classic Hits",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-classichits.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/classichits",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/ClassicHits_2560x2560.jpg?itok=GlCBWF9m",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3082ec5e-fa44-47a8-94a8-e89da4cab453"
+ },
+ {
+ "id": "495de093-2d90-4a51-ae8c-743086872fcd",
+ "name": "DOUBLECLAP RADIO",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://s3.radio.co/scfd7273b2/low",
+ "homepage": "https://doubleclap.dance/",
+ "logoUrl": "https://doubleclap.dance/wp-content/uploads/2021/05/Doubleclap-Radio-logo-white.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "495de093-2d90-4a51-ae8c-743086872fcd"
+ },
+ {
+ "id": "617baea8-d8cc-412d-ab01-09f8b7b7ef21",
+ "name": "Kerhoradio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "ice-hockey",
+ "sport"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://c40.radioboss.fm:8056/stream",
+ "homepage": "https://kerhoradio.fi/",
+ "logoUrl": "https://kerhoradio.fi/wp-content/uploads/2025/08/Kerhoradio_logo_fix_pienikopio-3.png",
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "617baea8-d8cc-412d-ab01-09f8b7b7ef21"
+ },
+ {
+ "id": "cff46df0-7b0a-4393-b69f-3dd9b50945c4",
+ "name": "Keygen FM",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "8bit",
+ "chiptune",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://keygen-fm.kodatek.app/listen/keygen-fm/radio.mp3",
+ "homepage": "https://keygen-fm.kodatek.app/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cff46df0-7b0a-4393-b69f-3dd9b50945c4"
+ },
+ {
+ "id": "a19530b7-3549-4a93-bc7b-022a1e1cb2ff",
+ "name": "NinjaBox 24/7",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "chill",
+ "deep house",
+ "drum & bass",
+ "dubtechno",
+ "electronic",
+ "neurofunk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://djuplink.com/ninjabox.mp3",
+ "homepage": "https://www.savustamo.fi/",
+ "logoUrl": "https://www.savustamo.fi/wp-content/uploads/2025/12/cropped-0_c1bc9_14464e10_L-1590724515-300x300.jpg",
+ "votes": 1,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a19530b7-3549-4a93-bc7b-022a1e1cb2ff"
+ },
+ {
+ "id": "06e81ebd-b7fc-4bd6-8bb1-88d77f0d31a8",
+ "name": "Radio Dei Lahti",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.dei.fi:8443/lahti",
+ "homepage": "https://www.radiodei.fi/",
+ "logoUrl": "https://www.radiodei.fi/wp-content/uploads/2016/05/default.png",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "06e81ebd-b7fc-4bd6-8bb1-88d77f0d31a8"
+ },
+ {
+ "id": "7b647375-d629-11e8-a54a-52543be04c81",
+ "name": "Radio Natale",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english",
+ "tags": [
+ "christmas music",
+ "rovaniemi",
+ "rsl"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.radiostreamlive.com/radionatale_devices",
+ "homepage": "https://www.radionatale.com/",
+ "logoUrl": "https://cdn-elements.radiostreamlive.com/v1/images/favicon.ico",
+ "votes": 164,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b647375-d629-11e8-a54a-52543be04c81"
+ },
+ {
+ "id": "aab6a396-57b6-46e4-9c9d-3e1b1e81b2c1",
+ "name": "Radio Nova",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "finland",
+ "finnish",
+ "pop",
+ "rock",
+ "suomi"
+ ],
+ "codec": "AAC",
+ "bitrate": 68,
+ "streamUrl": "https://stream.bauermedia.fi/radionova/radionova_64.aac",
+ "homepage": "https://radionova.fi/",
+ "logoUrl": "https://radionova.fi/templates/radionova/images/favicon.ico",
+ "votes": 31,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "aab6a396-57b6-46e4-9c9d-3e1b1e81b2c1"
+ },
+ {
+ "id": "cae0fb22-8935-11e8-aa66-52543be04c81",
+ "name": "Radio Nova",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.fi/radionova/radionova_128.mp3",
+ "homepage": "https://www.radionova.fi/",
+ "logoUrl": "https://www.radionova.fi/templates/radionova/images/favicon-96x96.png",
+ "votes": 478,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cae0fb22-8935-11e8-aa66-52543be04c81"
+ },
+ {
+ "id": "348c186a-e554-4376-950c-12c78027050d",
+ "name": "Radio Nova",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "AAC",
+ "bitrate": 68,
+ "streamUrl": "https://stream.radioplay.fi/radionova/radionova_64.aac?aw_0_1st.skey=1692715205&aw_0_1st.bauer_loggedin=false",
+ "homepage": "https://radioplay.fi/radio-nova/",
+ "logoUrl": "https://www.radionova.fi/files/meta_images/radionova-fb-cover.png",
+ "votes": 24,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "348c186a-e554-4376-950c-12c78027050d"
+ },
+ {
+ "id": "c8b240ad-1e4c-470e-a5dc-7e48915c4564",
+ "name": "Radio Rock",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english,finnish",
+ "tags": [
+ "finland rock fm 90 92.2 100.4 100.9 supla.fi/radiorock asenne on rock mainstream rock and some shows. evening shows by klaus fleming are extremely good(mon-thr from 8 p.m to 10 p.m gmt2)",
+ "helsinki",
+ "metal",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 262,
+ "streamUrl": "https://aud-stream-radiorock.nm-elemental.nelonenmedia.fi/playlist.m3u8",
+ "homepage": "https://www.supla.fi/radiorock",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/RadioRock_2560x2560.jpg?itok=-t2L8AEt",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c8b240ad-1e4c-470e-a5dc-7e48915c4564"
+ },
+ {
+ "id": "962b509f-0601-11e8-ae97-52543be04c81",
+ "name": "Radio Santa Claus",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english",
+ "tags": [
+ "christmas music",
+ "helsinki",
+ "rsl"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.radiostreamlive.com/radiosantaclaus_devices",
+ "homepage": "http://www.radiosantaclaus.com/",
+ "logoUrl": "https://cdn-elements.radiostreamlive.com/v1/images/favicon.ico",
+ "votes": 270,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "962b509f-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "0b9f0bf8-9bd0-4a89-988b-9dd2168ceef8",
+ "name": "Radio Suomipop",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 262,
+ "streamUrl": "https://aud-stream-suomipop.nm-elemental.nelonenmedia.fi/playlist.m3u8?rp_source=1",
+ "homepage": "https://www.supla.fi/radiosuomipop",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b9f0bf8-9bd0-4a89-988b-9dd2168ceef8"
+ },
+ {
+ "id": "549e9584-1d27-4a8b-8755-dca57bbe82a8",
+ "name": "Radio Tuottaja1",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "music",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://kaupunkiradio.radiotaajuus.fi:9013/radio",
+ "homepage": "https://kaupunkikanava.fi/",
+ "logoUrl": null,
+ "votes": 31,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "549e9584-1d27-4a8b-8755-dca57bbe82a8"
+ },
+ {
+ "id": "4783bd93-7bb3-4671-8adb-2801e66ead5f",
+ "name": "RadiOwO",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.muhennos.xyz/listen/radiowo/radio.mp3",
+ "homepage": "https://stream.muhennos.xyz/public/radiowo",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4783bd93-7bb3-4671-8adb-2801e66ead5f"
+ },
+ {
+ "id": "449a2d6e-9c81-447f-a4e0-8de82963f117",
+ "name": "RattoRadio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.rattoradio.fi/ratto.mp3",
+ "homepage": "https://www.rattoradio.fi/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "449a2d6e-9c81-447f-a4e0-8de82963f117"
+ },
+ {
+ "id": "b98188e0-3392-485d-8265-c3995c9b1858",
+ "name": "REPLAY NEWS - Suomi",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finland",
+ "tags": [
+ "information",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://replaynewsfi.ice.infomaniak.ch/replaynewsfi-128.mp3",
+ "homepage": "https://www.replaynews.net/",
+ "logoUrl": "https://www.publicsante.com/BIENVENU/LOGO%20REPLAY%20NEWS-FI.png",
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b98188e0-3392-485d-8265-c3995c9b1858"
+ },
+ {
+ "id": "45be7e54-944f-4a57-9d51-8f74c88097cb",
+ "name": "Rondo Classic Klasu",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "OGG",
+ "bitrate": 128,
+ "streamUrl": "https://iradio.fi/klasu.flac",
+ "homepage": "https://rondo.fi/",
+ "logoUrl": "https://liveonlineradio.net/wp-content/uploads/2015/05/Rondo-Classic-Klasu.jpg",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "45be7e54-944f-4a57-9d51-8f74c88097cb"
+ },
+ {
+ "id": "a580840c-0e32-46f7-ba93-18343baef202",
+ "name": "TOP51",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/top51/top51_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/top51/",
+ "logoUrl": "https://radiomedia.fi/wp-content/uploads/2021/06/top51_1000x1000-300x300.png",
+ "votes": 37,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a580840c-0e32-46f7-ba93-18343baef202"
+ },
+ {
+ "id": "d1ca287d-bca5-43fd-bd88-e6b1c407cd22",
+ "name": "Yle Radio Suomi - Pori",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YlePori/icecast.audio",
+ "homepage": "https://areena.yle.fi/audio/ohjelmat/yle-radio-suomi?_c=yle-radio-suomi-pori",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 45,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1ca287d-bca5-43fd-bd88-e6b1c407cd22"
+ },
+ {
+ "id": "894979fa-cd9e-4d5e-bd01-548eb71f5c20",
+ "name": "YLE radio Suomi, Jyväskylä",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleJKL/icecast.audio",
+ "homepage": "https://areena.yle.fi/podcastit/ohjelmat/57-3gO4bl7J6?_c=yle-radio-suomi-jyvaskyla",
+ "logoUrl": null,
+ "votes": 109,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "894979fa-cd9e-4d5e-bd01-548eb71f5c20"
+ },
+ {
+ "id": "46c36cc2-e313-4a24-935a-fc667ad96730",
+ "name": "Yle Radio Suomi, Kotka",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleKotka/icecast.audio",
+ "homepage": "https://areena.yle.fi/podcastit/ohjelmat/57-3gO4bl7J6?_c=yle-radio-suomi-kotka",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/c_fill,f_auto,h_160,q_auto:eco/v0/yle-radio-suomi-kotka_vt.png",
+ "votes": 28,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "46c36cc2-e313-4a24-935a-fc667ad96730"
+ },
+ {
+ "id": "19c02f0d-5c38-46df-bd0b-088fd057e16e",
+ "name": "Yle Radio Suomi, Kuopio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleKuopio/icecast.audio",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 28,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "19c02f0d-5c38-46df-bd0b-088fd057e16e"
+ },
+ {
+ "id": "903f8f5e-541f-4296-bed8-7f3be8d43d8a",
+ "name": "Yle Radio Suomi, Mikkeli",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleMikkeli/icecast.audio",
+ "homepage": "https://areena.yle.fi/audio/ohjelmat/57-3gO4bl7J6?_c=yle-radio-suomi-mikkeli",
+ "logoUrl": "https://images.cdn.yle.fi/f_auto,w_48,h_48,dpr_4.0/v1496664710/yle-areena-app.png",
+ "votes": 58,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "903f8f5e-541f-4296-bed8-7f3be8d43d8a"
+ },
+ {
+ "id": "2ceb9095-c509-4c30-a530-1df60e2600f1",
+ "name": "Yle radio Vega Östnyland",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleVegaOstnyland/icecast.audio",
+ "homepage": "https://areena.yle.fi/radio/suorat/radio-vega-ostnyland",
+ "logoUrl": null,
+ "votes": 13,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "2ceb9095-c509-4c30-a530-1df60e2600f1"
+ },
+ {
+ "id": "dd020de4-e098-40be-8c83-a853396dda9a",
+ "name": "Yle Sámi Radio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "inari sámi,northern sámi,sami,skolt sámi,sámi",
+ "tags": [
+ "culture",
+ "inari",
+ "minority",
+ "public radio",
+ "sámi",
+ "yle sápmi"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027680/in-YleSami/master.m3u8",
+ "homepage": "https://yle.fi/sapmi",
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "dd020de4-e098-40be-8c83-a853396dda9a"
+ },
+ {
+ "id": "b0cef042-fee9-48a3-b84e-6305fe446e11",
+ "name": "Yle Suomi Kemi",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "suomi",
+ "tags": [
+ "yle radio suomi"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://yleradiolive.akamaized.net/hls/live/2027706/in-YleKemi/master.m3u8",
+ "homepage": "https://yle.fi/",
+ "logoUrl": "https://images.cdn.yle.fi/image/upload/f_auto,c_fill,ar_1:1,w_384,q_auto/v1730971077/yle-radio-suomi-kemi_square",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0cef042-fee9-48a3-b84e-6305fe446e11"
+ },
+ {
+ "id": "942a812b-1fa2-4112-8a78-65e74bf67006",
+ "name": "Ålands Radio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "swedish",
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://stream.alandsradio.ax/stream.ogg",
+ "homepage": "https://alandsradio.ax/",
+ "logoUrl": "https://alandsradio.ax/sites/all/themes/alandsradio/images/ar-default-60x60.png",
+ "votes": 33,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "942a812b-1fa2-4112-8a78-65e74bf67006"
+ },
+ {
+ "id": "e4302975-fc5a-4cf6-9535-2b9a8d966f3b",
+ "name": "Easy Hits",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://aud-stream-easyhits.nm-elemental.nelonenmedia.fi/playlist-256000.m3u8",
+ "homepage": "https://www.supla.fi/easyhits",
+ "logoUrl": "https://static.novelist.nelonenmedia.fi/files/styles/1_360x360/s3/promo-items/square/2024/EasyHits_2560x2560.jpg?itok=k1gFgGRt",
+ "votes": 8,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "e4302975-fc5a-4cf6-9535-2b9a8d966f3b"
+ },
+ {
+ "id": "43697d5f-6d6a-4390-b9eb-5974f963ffc1",
+ "name": "Radio Dei Kajaani",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "christian"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.dei.fi:8443/kajaani",
+ "homepage": "https://www.radiodei.fi/",
+ "logoUrl": "https://www.radiodei.fi/wp-content/uploads/2016/05/default.png",
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "43697d5f-6d6a-4390-b9eb-5974f963ffc1"
+ },
+ {
+ "id": "0f87e9af-461c-4399-93b6-3f626ffd8ecd",
+ "name": "Radio Natale",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://streaming.radiostreamlive.com/radionatale_devices-low?token=%3C?%20echo%20rand%20(1,200000);%20?%3E",
+ "homepage": "https://www.radionatale.com/",
+ "logoUrl": null,
+ "votes": 29,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f87e9af-461c-4399-93b6-3f626ffd8ecd"
+ },
+ {
+ "id": "d22c6215-80d5-4b54-9ccc-f712b9ba50d6",
+ "name": "Radio Nostalgia",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [
+ "nostalgia"
+ ],
+ "codec": "AAC",
+ "bitrate": 63,
+ "streamUrl": "https://streaming.radioplay.fi/nostalgia/nostalgia_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_ukrp&aw_0_req.userConsentV2=~TCSTRING~&rp_source=1&aw_0_1st.skey=1770708690",
+ "homepage": "https://www.radioplayer.fi/kanavat/radio-nostalgia",
+ "logoUrl": null,
+ "votes": 7,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "d22c6215-80d5-4b54-9ccc-f712b9ba50d6"
+ },
+ {
+ "id": "6152c69d-0fa1-493e-ae8b-fafb0f58988d",
+ "name": "Radio Nova",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream.bauermedia.fi/radionova/radionova_64.aac?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein&aw_0_1st.skey=1744811390",
+ "homepage": "https://radionova.fi/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "6152c69d-0fa1-493e-ae8b-fafb0f58988d"
+ },
+ {
+ "id": "75c67c01-bc98-4cc0-8b11-3a324bb4c565",
+ "name": "Radio Pori",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream-redirect.bauermedia.fi/radiopori/radiopori_128.mp3?aw_0_1st.bauer_loggedin=false&aw_0_1st.playerid=BMUK_tunein",
+ "homepage": "https://radioplay.fi/radio-pori/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1590476006/brand_manager/stations/gnxolu1alqpmvisgznda.png",
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "75c67c01-bc98-4cc0-8b11-3a324bb4c565"
+ },
+ {
+ "id": "af0a88c3-8936-11e8-aa66-52543be04c81",
+ "name": "Radio SuomiRock",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.fi/suomirock/suomirock_128.mp3",
+ "homepage": "https://www.radiosuomirock.fi/",
+ "logoUrl": null,
+ "votes": 399,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "af0a88c3-8936-11e8-aa66-52543be04c81"
+ },
+ {
+ "id": "d52c33e2-fb2d-46e6-ad38-8eee3c7b6bd0",
+ "name": "Sea FM",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english",
+ "tags": [
+ "dance",
+ "pop",
+ "r´n´b",
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s3.myradiostream.com/4976/listen.mp3",
+ "homepage": "https://www.seafm.fi/",
+ "logoUrl": null,
+ "votes": 29,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "d52c33e2-fb2d-46e6-ad38-8eee3c7b6bd0"
+ },
+ {
+ "id": "960c6812-0601-11e8-ae97-52543be04c81",
+ "name": "Sveriges Radio - SR Sisuradio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish,swedish",
+ "tags": [
+ "finnish",
+ "music",
+ "news",
+ "public radio",
+ "sveriges radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 296,
+ "streamUrl": "https://live1.sr.se/finska-aac-320",
+ "homepage": "https://sverigesradio.se/",
+ "logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-default.png",
+ "votes": 706,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "960c6812-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "8b24c4d7-2d16-47c1-8411-7103f1f75c97",
+ "name": "Tranceport FM",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a12.asurahosting.com/listen/tranceport_fm/radio.mp3",
+ "homepage": "https://www.tranceportfm.com/",
+ "logoUrl": "https://www.tranceportfm.com/tranceportweblogo.png",
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "8b24c4d7-2d16-47c1-8411-7103f1f75c97"
+ },
+ {
+ "id": "5f2b61c0-1663-4b82-8523-f747b91b89a1",
+ "name": "Unexplained Agency Radio",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "english",
+ "tags": [
+ "classical",
+ "dance",
+ "hip hop",
+ "house",
+ "jazz",
+ "rap",
+ "rnb",
+ "soul",
+ "spoken word",
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.unexplained.agency/stream",
+ "homepage": "https://radio.unexplained.agency/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "5f2b61c0-1663-4b82-8523-f747b91b89a1"
+ },
+ {
+ "id": "22c402d1-2a7f-4713-8e2b-646070026dba",
+ "name": "Yle Klassinen",
+ "country": "Finland",
+ "countryCode": "FI",
+ "language": "finnish",
+ "tags": [
+ "classical"
+ ],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://icecast.live.yle.fi/radio/YleKlassinen/icecast.audio",
+ "homepage": "https://yle.fi/aihe/klassinen",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Ylen_logo.svg/300px-Ylen_logo.svg.png",
+ "votes": 102,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "22c402d1-2a7f-4713-8e2b-646070026dba"
+ },
{
"id": "33960c43-0464-44b4-abfa-73591ebf647f",
"name": "France Inter",
@@ -10410,7 +24219,7 @@
"homepage": "https://www.radiofrance.fr/franceinter",
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/France_Inter_logo_2021.svg/1200px-France_Inter_logo_2021.svg.png",
"votes": 8188,
- "clickcount": 164,
+ "clickcount": 162,
"source": "radio-browser",
"sourceStationUuid": "33960c43-0464-44b4-abfa-73591ebf647f"
},
@@ -10429,7 +24238,7 @@
"homepage": "https://www.rtl.fr/",
"logoUrl": "https://duckduckgo.com/i/035a5e15d396c67a.png",
"votes": 804,
- "clickcount": 99,
+ "clickcount": 98,
"source": "radio-browser",
"sourceStationUuid": "042d3140-227c-4fac-9387-4903b692d5f2"
},
@@ -10446,7 +24255,7 @@
"homepage": "http://www.nostagie.fr/",
"logoUrl": null,
"votes": 367,
- "clickcount": 89,
+ "clickcount": 86,
"source": "radio-browser",
"sourceStationUuid": "88496158-90c1-411f-9a3b-719397a8dcca"
},
@@ -10468,7 +24277,7 @@
"homepage": "https://rmc.bfmtv.com/",
"logoUrl": "https://i1.wp.com/www.mediasportif.fr/wp-content/uploads/2014/05/Radio-RMC.jpg",
"votes": 69719,
- "clickcount": 71,
+ "clickcount": 68,
"source": "radio-browser",
"sourceStationUuid": "7a3a3989-8f26-44f7-9ae5-fa91e5cf4f9d"
},
@@ -10491,7 +24300,7 @@
"homepage": "https://eurodance90.fr/",
"logoUrl": "https://eurodance90.fr/favicon.ico",
"votes": 39055,
- "clickcount": 62,
+ "clickcount": 61,
"source": "radio-browser",
"sourceStationUuid": "60ceaabd-4efd-4f47-b961-0dab6f475731"
},
@@ -10513,8 +24322,8 @@
"streamUrl": "https://eu1.fastcast4u.com/proxy/kpmxz?mp=/1",
"homepage": "https://www.abc-lounge.com/radio/lounge-jazz-folk/#home",
"logoUrl": null,
- "votes": 15785,
- "clickcount": 57,
+ "votes": 15786,
+ "clickcount": 54,
"source": "radio-browser",
"sourceStationUuid": "4a018de7-b452-4412-b86f-86254c5d53be"
},
@@ -10553,28 +24362,11 @@
"streamUrl": "https://stream.europe1.fr/europe1.aac",
"homepage": "https://www.europe1.fr/",
"logoUrl": "https://www.europe1.fr/build/e1/images/favicon-120x120.png",
- "votes": 18763,
- "clickcount": 44,
+ "votes": 18764,
+ "clickcount": 42,
"source": "radio-browser",
"sourceStationUuid": "dfcef843-6bf9-40f6-b3fe-2b224df86e48"
},
- {
- "id": "2e5c08e4-ab83-4036-baf6-339aeffcb3b8",
- "name": "BFM Radio (128.mp3)",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [],
- "codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://audio.bfmtv.com/bfmradio_128.mp3",
- "homepage": "https://www.bfmtv.com/",
- "logoUrl": "https://www.bfmtv.com/android-icon-192x192.png",
- "votes": 3714,
- "clickcount": 39,
- "source": "radio-browser",
- "sourceStationUuid": "2e5c08e4-ab83-4036-baf6-339aeffcb3b8"
- },
{
"id": "958c558d-6b13-4829-92ff-49233f56de97",
"name": "OUI FM",
@@ -10590,26 +24382,26 @@
"homepage": "https://www.ouifm.fr/",
"logoUrl": "https://bocir-prod-bucket.s3.amazonaws.com/radios/oui-fm/images/favicon.ico",
"votes": 4272,
- "clickcount": 39,
+ "clickcount": 41,
"source": "radio-browser",
"sourceStationUuid": "958c558d-6b13-4829-92ff-49233f56de97"
},
{
- "id": "9261257f-c8a0-4dba-8cb5-a0746f3323dc",
- "name": "ABC Lounge Jazz",
+ "id": "2e5c08e4-ab83-4036-baf6-339aeffcb3b8",
+ "name": "BFM Radio (128.mp3)",
"country": "France",
"countryCode": "FR",
- "language": null,
+ "language": "french",
"tags": [],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://eu1.fastcast4u.com/proxy/kpmxz/stream",
- "homepage": "https://www.abc-lounge.com/",
- "logoUrl": "https://www.abc-lounge.com/radio/wp-content/uploads/2019/11/logo-ABC-Lounge100.png",
- "votes": 2933,
+ "bitrate": 256,
+ "streamUrl": "https://audio.bfmtv.com/bfmradio_128.mp3",
+ "homepage": "https://www.bfmtv.com/",
+ "logoUrl": "https://www.bfmtv.com/android-icon-192x192.png",
+ "votes": 3714,
"clickcount": 36,
"source": "radio-browser",
- "sourceStationUuid": "9261257f-c8a0-4dba-8cb5-a0746f3323dc"
+ "sourceStationUuid": "2e5c08e4-ab83-4036-baf6-339aeffcb3b8"
},
{
"id": "21ef0997-adba-46c7-a2e1-03e3130bd5ad",
@@ -10628,6 +24420,23 @@
"source": "radio-browser",
"sourceStationUuid": "21ef0997-adba-46c7-a2e1-03e3130bd5ad"
},
+ {
+ "id": "9261257f-c8a0-4dba-8cb5-a0746f3323dc",
+ "name": "ABC Lounge Jazz",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.fastcast4u.com/proxy/kpmxz/stream",
+ "homepage": "https://www.abc-lounge.com/",
+ "logoUrl": "https://www.abc-lounge.com/radio/wp-content/uploads/2019/11/logo-ABC-Lounge100.png",
+ "votes": 2933,
+ "clickcount": 33,
+ "source": "radio-browser",
+ "sourceStationUuid": "9261257f-c8a0-4dba-8cb5-a0746f3323dc"
+ },
{
"id": "d1aa02d7-e611-4208-b38b-da21bc236cd8",
"name": "Radio Classique",
@@ -10641,10 +24450,33 @@
"homepage": "https://www.radioclassique.fr/",
"logoUrl": "http://favicons.teamtailor-cdn.com/icon?size=80..120..200&url=https%3a%2f%2fwww.radioclassique.fr%2f",
"votes": 1455,
- "clickcount": 32,
+ "clickcount": 31,
"source": "radio-browser",
"sourceStationUuid": "d1aa02d7-e611-4208-b38b-da21bc236cd8"
},
+ {
+ "id": "188c36ae-f1ef-4b5c-8587-f29c216bfaa2",
+ "name": "Sud Radio",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "conservative",
+ "info",
+ "mp3",
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice.creacast.com/sudradio",
+ "homepage": "https://www.sudradio.fr/",
+ "logoUrl": "https://www.sudradio.fr/wp-content/uploads/2019/06/cropped-favicon-180x180.png",
+ "votes": 24382,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "188c36ae-f1ef-4b5c-8587-f29c216bfaa2"
+ },
{
"id": "97d830f4-c35f-11e9-8502-52543be04c81",
"name": "Alternative Radio",
@@ -10671,132 +24503,6 @@
"source": "radio-browser",
"sourceStationUuid": "97d830f4-c35f-11e9-8502-52543be04c81"
},
- {
- "id": "188c36ae-f1ef-4b5c-8587-f29c216bfaa2",
- "name": "Sud Radio",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "conservative",
- "info",
- "mp3",
- "news",
- "talk"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice.creacast.com/sudradio",
- "homepage": "https://www.sudradio.fr/",
- "logoUrl": "https://www.sudradio.fr/wp-content/uploads/2019/06/cropped-favicon-180x180.png",
- "votes": 24382,
- "clickcount": 24,
- "source": "radio-browser",
- "sourceStationUuid": "188c36ae-f1ef-4b5c-8587-f29c216bfaa2"
- },
- {
- "id": "ccf16787-7e0f-4b1a-9599-c318a8e0cf02",
- "name": "Skyrock Klassics",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "hip-hop and rap oldies"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://icecast.skyrock.net/s/klassiks_aac_64k?tvr_name=radiofr&tvr_section1=64aac",
- "homepage": "https://skyrock.fm/",
- "logoUrl": "https://skyrock.fm/favicon.ico",
- "votes": 2932,
- "clickcount": 23,
- "source": "radio-browser",
- "sourceStationUuid": "ccf16787-7e0f-4b1a-9599-c318a8e0cf02"
- },
- {
- "id": "797a1245-f5b0-4a8c-a450-2d74c3defa6e",
- "name": "RADIO NOVA",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "electro",
- "hip hop",
- "jazz",
- "new wave",
- "reggae",
- "world music"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://novazz.ice.infomaniak.ch/novazz-128.mp3",
- "homepage": "https://www.nova.fr/",
- "logoUrl": "https://www.nova.fr/wp-content/uploads/sites/2/2020/10/NOVA_CARD_HD.png?resize=560%2C664&quality=75",
- "votes": 819,
- "clickcount": 22,
- "source": "radio-browser",
- "sourceStationUuid": "797a1245-f5b0-4a8c-a450-2d74c3defa6e"
- },
- {
- "id": "55bdaccc-a91e-4440-9587-4832a8451745",
- "name": "FIP (no pub)",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "eclectic",
- "m3u8",
- "public radio",
- "radio france"
- ],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://stream.radiofrance.fr/fip/fip_hifi.m3u8",
- "homepage": "https://www.radiofrance.fr/fip",
- "logoUrl": "https://www.radiofrance.fr/s3/cruiser-production/2023/03/3a1422a4-6f1f-4e17-874c-bad21e67f39b/300x300_sc_fip-avatar.jpg",
- "votes": 884,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "55bdaccc-a91e-4440-9587-4832a8451745"
- },
- {
- "id": "a70cdc64-9a33-4432-91a1-957beb5ac6e7",
- "name": "Rire et Chansons",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://streaming.nrjaudio.fm/ou8o8xgk7oiu?origine=fluxradios",
- "homepage": "https://www.rireetchansons.fr/",
- "logoUrl": "https://img.nrj.fr/OImjPWH1tkT1NaUMPlxsY49g9BI=/medias%2F2024%2F03%2Fvvscnx9i3yteabtkx8nlpdusmqj6uo8hshh9iphoit8_65fbfe026c3a5.png",
- "votes": 336,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "a70cdc64-9a33-4432-91a1-957beb5ac6e7"
- },
- {
- "id": "da5f481e-f7d6-49b3-b213-514027740d39",
- "name": "RMC",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [
- "infos",
- "news",
- "talk"
- ],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://hls-rmc.nextradiotv.com/no_ssai/128k/media.m3u8",
- "homepage": "https://rmc.bfmtv.com/",
- "logoUrl": "https://yt3.ggpht.com/-56JILsUfbls/AAAAAAAAAAI/AAAAAAAAAAA/47vJXr02s6k/s900-c-k-no-mo-rj-c0xffffff/photo.jpg",
- "votes": 137,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "da5f481e-f7d6-49b3-b213-514027740d39"
- },
{
"id": "df2ef0fb-5019-4eb0-bfea-fa21e6a7e609",
"name": "Music Radio",
@@ -10823,10 +24529,74 @@
"homepage": "https://musicradio.ai/",
"logoUrl": "https://musicradio.ai/wp-content/uploads/2025/03/logo_musicradio.jpg",
"votes": 41,
- "clickcount": 20,
+ "clickcount": 22,
"source": "radio-browser",
"sourceStationUuid": "df2ef0fb-5019-4eb0-bfea-fa21e6a7e609"
},
+ {
+ "id": "da5f481e-f7d6-49b3-b213-514027740d39",
+ "name": "RMC",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [
+ "infos",
+ "news",
+ "talk"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://hls-rmc.nextradiotv.com/no_ssai/128k/media.m3u8",
+ "homepage": "https://rmc.bfmtv.com/",
+ "logoUrl": "https://yt3.ggpht.com/-56JILsUfbls/AAAAAAAAAAI/AAAAAAAAAAA/47vJXr02s6k/s900-c-k-no-mo-rj-c0xffffff/photo.jpg",
+ "votes": 137,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "da5f481e-f7d6-49b3-b213-514027740d39"
+ },
+ {
+ "id": "ccf16787-7e0f-4b1a-9599-c318a8e0cf02",
+ "name": "Skyrock Klassics",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "hip-hop and rap oldies"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.skyrock.net/s/klassiks_aac_64k?tvr_name=radiofr&tvr_section1=64aac",
+ "homepage": "https://skyrock.fm/",
+ "logoUrl": "https://skyrock.fm/favicon.ico",
+ "votes": 2932,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "ccf16787-7e0f-4b1a-9599-c318a8e0cf02"
+ },
+ {
+ "id": "797a1245-f5b0-4a8c-a450-2d74c3defa6e",
+ "name": "RADIO NOVA",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "electro",
+ "hip hop",
+ "jazz",
+ "new wave",
+ "reggae",
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://novazz.ice.infomaniak.ch/novazz-128.mp3",
+ "homepage": "https://www.nova.fr/",
+ "logoUrl": "https://www.nova.fr/wp-content/uploads/sites/2/2020/10/NOVA_CARD_HD.png?resize=560%2C664&quality=75",
+ "votes": 819,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "797a1245-f5b0-4a8c-a450-2d74c3defa6e"
+ },
{
"id": "dbdae111-2ceb-48e8-aa6b-cc544c57d043",
"name": "RFM POP-ROCK",
@@ -10845,10 +24615,49 @@
"homepage": "http://www.rfm.fr/programmes/les-webradios",
"logoUrl": "http://cdn-rfm.lanmedia.fr/apple-touch-icon-120x120.png",
"votes": 1850,
- "clickcount": 20,
+ "clickcount": 21,
"source": "radio-browser",
"sourceStationUuid": "dbdae111-2ceb-48e8-aa6b-cc544c57d043"
},
+ {
+ "id": "a70cdc64-9a33-4432-91a1-957beb5ac6e7",
+ "name": "Rire et Chansons",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.nrjaudio.fm/ou8o8xgk7oiu?origine=fluxradios",
+ "homepage": "https://www.rireetchansons.fr/",
+ "logoUrl": "https://img.nrj.fr/OImjPWH1tkT1NaUMPlxsY49g9BI=/medias%2F2024%2F03%2Fvvscnx9i3yteabtkx8nlpdusmqj6uo8hshh9iphoit8_65fbfe026c3a5.png",
+ "votes": 336,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "a70cdc64-9a33-4432-91a1-957beb5ac6e7"
+ },
+ {
+ "id": "55bdaccc-a91e-4440-9587-4832a8451745",
+ "name": "FIP (no pub)",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "eclectic",
+ "m3u8",
+ "public radio",
+ "radio france"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiofrance.fr/fip/fip_hifi.m3u8",
+ "homepage": "https://www.radiofrance.fr/fip",
+ "logoUrl": "https://www.radiofrance.fr/s3/cruiser-production/2023/03/3a1422a4-6f1f-4e17-874c-bad21e67f39b/300x300_sc_fip-avatar.jpg",
+ "votes": 884,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "55bdaccc-a91e-4440-9587-4832a8451745"
+ },
{
"id": "51775b57-e11a-40ef-8894-38b07d80bb73",
"name": "Europe 1",
@@ -10864,10 +24673,29 @@
"homepage": "https://www.europe1.fr/",
"logoUrl": "https://db.radioline.fr/pictures/radio_fa64fea9b6ccd92e058ced3fa41f58f5/logo200.jpg",
"votes": 455,
- "clickcount": 19,
+ "clickcount": 18,
"source": "radio-browser",
"sourceStationUuid": "51775b57-e11a-40ef-8894-38b07d80bb73"
},
+ {
+ "id": "58dab9ac-8bd1-4059-96c3-d2d48f84ec49",
+ "name": "OUI FM ROCK FRANCAIS",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ouifmrockfrancais.ice.infomaniak.ch/ouifmrockfrancais.mp3",
+ "homepage": "https://www.ouifm.fr/",
+ "logoUrl": "https://bocir-prod-bucket.s3.amazonaws.com/radios/oui-fm/radiostream/3fkpVzB8Cc/vignette.png",
+ "votes": 131,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "58dab9ac-8bd1-4059-96c3-d2d48f84ec49"
+ },
{
"id": "ab6a33e5-e8b5-4cf4-bfb7-ec0ae779cb7c",
"name": "France Info",
@@ -10888,28 +24716,26 @@
"homepage": "https://www.radiofrance.fr/franceinfo",
"logoUrl": "https://www.francetvinfo.fr/assets/common/images/pwa/ios/120-0cfbd6d4.png",
"votes": 816,
- "clickcount": 18,
+ "clickcount": 17,
"source": "radio-browser",
"sourceStationUuid": "ab6a33e5-e8b5-4cf4-bfb7-ec0ae779cb7c"
},
{
- "id": "58dab9ac-8bd1-4059-96c3-d2d48f84ec49",
- "name": "OUI FM ROCK FRANCAIS",
+ "id": "fad126ad-43cb-406a-91a7-7d441ca04b5e",
+ "name": "Fip Cultes",
"country": "France",
"countryCode": "FR",
- "language": "french",
- "tags": [
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ouifmrockfrancais.ice.infomaniak.ch/ouifmrockfrancais.mp3",
- "homepage": "https://www.ouifm.fr/",
- "logoUrl": "https://bocir-prod-bucket.s3.amazonaws.com/radios/oui-fm/radiostream/3fkpVzB8Cc/vignette.png",
- "votes": 131,
- "clickcount": 17,
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiofrance.fr/fipcultes/fipcultes_hifi.m3u8",
+ "homepage": "https://www.radiofrance.fr/fip/radio-cultes",
+ "logoUrl": "https://www.radioactu.com/wp-content/uploads/2025/12/fip-cultes-nouvelle-webradio-traverse-generations.webp",
+ "votes": 27,
+ "clickcount": 14,
"source": "radio-browser",
- "sourceStationUuid": "58dab9ac-8bd1-4059-96c3-d2d48f84ec49"
+ "sourceStationUuid": "fad126ad-43cb-406a-91a7-7d441ca04b5e"
},
{
"id": "924985e9-ecb4-4126-b3f1-34ddeb93f4a4",
@@ -10927,7 +24753,7 @@
"homepage": "https://www.ouifm.fr/",
"logoUrl": "https://bocir-prod-bucket.s3.amazonaws.com/radios/oui-fm/radiostream/6fo6l1uD2X/vignette.png",
"votes": 614,
- "clickcount": 16,
+ "clickcount": 14,
"source": "radio-browser",
"sourceStationUuid": "924985e9-ecb4-4126-b3f1-34ddeb93f4a4"
},
@@ -10952,44 +24778,10 @@
"homepage": "https://www.radiolabelleaventure.com/",
"logoUrl": "https://www.radiolabelleaventure.com/wp-content/uploads/2025/05/cropped-logo-transparent-192x192.png",
"votes": 33,
- "clickcount": 15,
+ "clickcount": 14,
"source": "radio-browser",
"sourceStationUuid": "c2bad206-b3ca-49a8-bfd6-a3b1ea275b09"
},
- {
- "id": "fad126ad-43cb-406a-91a7-7d441ca04b5e",
- "name": "Fip Cultes",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://stream.radiofrance.fr/fipcultes/fipcultes_hifi.m3u8",
- "homepage": "https://www.radiofrance.fr/fip/radio-cultes",
- "logoUrl": "https://www.radioactu.com/wp-content/uploads/2025/12/fip-cultes-nouvelle-webradio-traverse-generations.webp",
- "votes": 27,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "fad126ad-43cb-406a-91a7-7d441ca04b5e"
- },
- {
- "id": "f872bfc4-b09a-405f-9c7f-d535adba238e",
- "name": "FM 80 Funky Music",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://listen.radioking.com/radio/467555/stream/523739",
- "homepage": "https://www.fm80.fr/en/",
- "logoUrl": null,
- "votes": 2819,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "f872bfc4-b09a-405f-9c7f-d535adba238e"
- },
{
"id": "12e68964-5928-4623-b82e-4bf9a4963780",
"name": "RMC Info Talk Sport",
@@ -11009,43 +24801,6 @@
"source": "radio-browser",
"sourceStationUuid": "12e68964-5928-4623-b82e-4bf9a4963780"
},
- {
- "id": "c257d985-4a5a-4f5d-b861-6a1397d8a9c1",
- "name": "RTL France",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.rtl.fr/rtl-1-44-128",
- "homepage": "https://www.rtl.fr/",
- "logoUrl": "https://www.rtl.fr/favicon.ico",
- "votes": 276,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "c257d985-4a5a-4f5d-b861-6a1397d8a9c1"
- },
- {
- "id": "fb398bd6-9873-4c06-b6d3-e2e3ca6d5c3c",
- "name": "RTL France",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "news",
- "pop"
- ],
- "codec": "AAC",
- "bitrate": 64,
- "streamUrl": "https://live.m6radio.quortex.io/webpHJPXnXrN7B6J7Q8mcqmxP/grouprtl/national/long/audio-64000/index.m3u8",
- "homepage": "https://www.rtl.fr/direct",
- "logoUrl": "https://www.radio.fr/images/broadcasts/da/51/10220/c300.png",
- "votes": 754,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "fb398bd6-9873-4c06-b6d3-e2e3ca6d5c3c"
- },
{
"id": "cff87807-bbd6-44b2-9c17-f96fcfdd78d9",
"name": "* Meme dans les orties *",
@@ -11066,24 +24821,41 @@
"sourceStationUuid": "cff87807-bbd6-44b2-9c17-f96fcfdd78d9"
},
{
- "id": "4ed72eba-d787-40bb-8528-9ade9fd0113a",
- "name": "Frequence 3 Gold FLAC",
+ "id": "f872bfc4-b09a-405f-9c7f-d535adba238e",
+ "name": "FM 80 Funky Music",
"country": "France",
"countryCode": "FR",
- "language": "english,french",
- "tags": [
- "80s",
- "90s"
- ],
- "codec": "OGG",
- "bitrate": 128,
- "streamUrl": "https://frequence3.net-radio.fr/frequence3gold.flac",
- "homepage": "https://www.frequence3.com/les-radios-frequence-3/gold/",
- "logoUrl": "https://api2.frequence3.net/static/img/stations/horizontal/frequence3gold.png",
- "votes": 337,
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://listen.radioking.com/radio/467555/stream/523739",
+ "homepage": "https://www.fm80.fr/en/",
+ "logoUrl": null,
+ "votes": 2819,
"clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "4ed72eba-d787-40bb-8528-9ade9fd0113a"
+ "sourceStationUuid": "f872bfc4-b09a-405f-9c7f-d535adba238e"
+ },
+ {
+ "id": "fb398bd6-9873-4c06-b6d3-e2e3ca6d5c3c",
+ "name": "RTL France",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "news",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://live.m6radio.quortex.io/webpHJPXnXrN7B6J7Q8mcqmxP/grouprtl/national/long/audio-64000/index.m3u8",
+ "homepage": "https://www.rtl.fr/direct",
+ "logoUrl": "https://www.radio.fr/images/broadcasts/da/51/10220/c300.png",
+ "votes": 754,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "fb398bd6-9873-4c06-b6d3-e2e3ca6d5c3c"
},
{
"id": "a5331ae6-1196-46c4-b8d6-6a013018bbfe",
@@ -11107,6 +24879,27 @@
"source": "radio-browser",
"sourceStationUuid": "a5331ae6-1196-46c4-b8d6-6a013018bbfe"
},
+ {
+ "id": "ecbfc812-3f38-4157-8bdc-4fa381848ac6",
+ "name": "RTL 100% 80",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "80s",
+ "music",
+ "oldies"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://live.m6radio.quortex.io/webpHJPXnXrN7B6J7Q8mcqmxP/webradio/rtl100pc80/130/audio-64000/index.m3u8",
+ "homepage": "https://www.rtl.fr/radios",
+ "logoUrl": "https://images.rtl.fr/~c/300v300/rtl/www/1595806-rtl-radio80-1400x1400-copie.jpg",
+ "votes": 81,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "ecbfc812-3f38-4157-8bdc-4fa381848ac6"
+ },
{
"id": "1231ed9e-9697-4242-92b2-2d94a6ade243",
"name": "FIP Cultes",
@@ -11120,7 +24913,7 @@
"homepage": "https://www.radiofrance.fr/fip/radio-cultes",
"logoUrl": null,
"votes": 71,
- "clickcount": 12,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "1231ed9e-9697-4242-92b2-2d94a6ade243"
},
@@ -11144,21 +24937,24 @@
"sourceStationUuid": "f1aad29c-8013-45a8-8d94-9bb63eb90320"
},
{
- "id": "e777ff20-d45b-4ccd-81fa-ca0ab4ec229a",
- "name": "NRJ Clermont",
+ "id": "4ed72eba-d787-40bb-8528-9ade9fd0113a",
+ "name": "Frequence 3 Gold FLAC",
"country": "France",
"countryCode": "FR",
- "language": "french",
- "tags": [],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://streaming.nrjaudio.fm/oumrck8fnozc",
- "homepage": "https://www.nrj.fr/",
- "logoUrl": "https://www.nrj.fr/uploads/assets/nrj/favicon.png",
- "votes": 37,
+ "language": "english,french",
+ "tags": [
+ "80s",
+ "90s"
+ ],
+ "codec": "OGG",
+ "bitrate": 128,
+ "streamUrl": "https://frequence3.net-radio.fr/frequence3gold.flac",
+ "homepage": "https://www.frequence3.com/les-radios-frequence-3/gold/",
+ "logoUrl": "https://api2.frequence3.net/static/img/stations/horizontal/frequence3gold.png",
+ "votes": 337,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "e777ff20-d45b-4ccd-81fa-ca0ab4ec229a"
+ "sourceStationUuid": "4ed72eba-d787-40bb-8528-9ade9fd0113a"
},
{
"id": "0efe7505-f1e6-11e9-a96c-52543be04c81",
@@ -11178,94 +24974,57 @@
"sourceStationUuid": "0efe7505-f1e6-11e9-a96c-52543be04c81"
},
{
- "id": "ecbfc812-3f38-4157-8bdc-4fa381848ac6",
- "name": "RTL 100% 80",
+ "id": "493ee67f-c366-46e0-b9c9-97fdbdfb5b07",
+ "name": "Radio Larzac",
"country": "France",
"countryCode": "FR",
"language": "french",
"tags": [
- "80s",
- "music",
- "oldies"
+ "eclectic"
],
- "codec": "AAC",
- "bitrate": 64,
- "streamUrl": "https://live.m6radio.quortex.io/webpHJPXnXrN7B6J7Q8mcqmxP/webradio/rtl100pc80/130/audio-64000/index.m3u8",
- "homepage": "https://www.rtl.fr/radios",
- "logoUrl": "https://images.rtl.fr/~c/300v300/rtl/www/1595806-rtl-radio80-1400x1400-copie.jpg",
- "votes": 81,
+ "codec": "UNKNOWN",
+ "bitrate": 320,
+ "streamUrl": "https://stream.radiolarzac.org/hls/master.m3u8",
+ "homepage": "https://radiolarzac.org/",
+ "logoUrl": "https://www.radiolarzac.org/wp-content/uploads/2019/01/Petit-logo-couleurs-sans-fond.png",
+ "votes": 106,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "ecbfc812-3f38-4157-8bdc-4fa381848ac6"
+ "sourceStationUuid": "493ee67f-c366-46e0-b9c9-97fdbdfb5b07"
},
{
- "id": "7b6aca3d-dfa3-47dd-9f57-820b04c3f339",
- "name": "FIP",
+ "id": "c257d985-4a5a-4f5d-b861-6a1397d8a9c1",
+ "name": "RTL France",
"country": "France",
"countryCode": "FR",
"language": "french",
- "tags": [
- "hls",
- "m3u8",
- "musique",
- "public radio",
- "radio france"
- ],
- "codec": "AAC",
- "bitrate": 107,
- "streamUrl": "https://stream.radiofrance.fr/fip/fip.m3u8",
- "homepage": "https://www.radiofrance.fr/fip",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/fr/thumb/d/d5/FIP_logo_2005.svg/1024px-FIP_logo_2005.svg.png",
- "votes": 120,
- "clickcount": 10,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.rtl.fr/rtl-1-44-128",
+ "homepage": "https://www.rtl.fr/",
+ "logoUrl": "https://www.rtl.fr/favicon.ico",
+ "votes": 276,
+ "clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "7b6aca3d-dfa3-47dd-9f57-820b04c3f339"
+ "sourceStationUuid": "c257d985-4a5a-4f5d-b861-6a1397d8a9c1"
},
{
- "id": "0b80555f-eb5c-4fce-94d2-109eec7bee6b",
- "name": "France Inter",
+ "id": "e777ff20-d45b-4ccd-81fa-ca0ab4ec229a",
+ "name": "NRJ Clermont",
"country": "France",
"countryCode": "FR",
"language": "french",
- "tags": [
- "aac",
- "general",
- "public radio",
- "radio france"
- ],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://icecast.radiofrance.fr/franceinter-hifi.aac",
- "homepage": "https://www.franceinter.fr/",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/fr/3/39/France_Inter_logo.svg",
- "votes": 3562,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://streaming.nrjaudio.fm/oumrck8fnozc",
+ "homepage": "https://www.nrj.fr/",
+ "logoUrl": "https://www.nrj.fr/uploads/assets/nrj/favicon.png",
+ "votes": 38,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "0b80555f-eb5c-4fce-94d2-109eec7bee6b"
- },
- {
- "id": "ee24e264-06fd-46cb-8f92-798aadde0aef",
- "name": "Le Bon Mix HiFi Flac 1411 Kbps",
- "country": "France",
- "countryCode": "FR",
- "language": "english,french,spanish",
- "tags": [
- "eclectic",
- "electro",
- "jazz",
- "pop",
- "rock",
- "world"
- ],
- "codec": "OGG",
- "bitrate": 0,
- "streamUrl": "https://stream10.xdevel.com/audio17s976748-2218/stream/icecast.audio",
- "homepage": "https://www.lebonmix.radio/hifi",
- "logoUrl": "https://static.wixstatic.com/media/8f2aad_93ae56d1764947358ca5524a248f789e~mv2.png",
- "votes": 1023,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "ee24e264-06fd-46cb-8f92-798aadde0aef"
+ "sourceStationUuid": "e777ff20-d45b-4ccd-81fa-ca0ab4ec229a"
},
{
"id": "aeee1931-d6a2-4ac5-9212-dec8fb4bb4c0",
@@ -11291,48 +25050,26 @@
"sourceStationUuid": "aeee1931-d6a2-4ac5-9212-dec8fb4bb4c0"
},
{
- "id": "493ee67f-c366-46e0-b9c9-97fdbdfb5b07",
- "name": "Radio Larzac",
+ "id": "da3ad9cf-b8f2-4327-8f64-edfbaeb4f111",
+ "name": "badradio 24/7 OG Phonk, Memphis, Houston, Trap & Trill",
"country": "France",
"countryCode": "FR",
- "language": "french",
+ "language": null,
"tags": [
- "eclectic"
+ "houston",
+ "phonk",
+ "trap",
+ "trap & trill"
],
- "codec": "UNKNOWN",
+ "codec": "MP3",
"bitrate": 320,
- "streamUrl": "https://stream.radiolarzac.org/hls/master.m3u8",
- "homepage": "https://radiolarzac.org/",
- "logoUrl": "https://www.radiolarzac.org/wp-content/uploads/2019/01/Petit-logo-couleurs-sans-fond.png",
- "votes": 106,
- "clickcount": 10,
+ "streamUrl": "https://s2.radio.co/s2b2b68744/listen",
+ "homepage": "https://badradio.nz/",
+ "logoUrl": "https://yt3.ggpht.com/ytc/AMLnZu8eXtkd-wn5s-Ww_RXId5AsUc0kqfM-1hikJJtzjw=s88-c-k-c0x00ffffff-no-rj",
+ "votes": 549,
+ "clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "493ee67f-c366-46e0-b9c9-97fdbdfb5b07"
- },
- {
- "id": "50ab0fd5-bd39-4561-89c0-797de8001a16",
- "name": "Soft Radio",
- "country": "France",
- "countryCode": "FR",
- "language": "english,french",
- "tags": [
- "calm",
- "classical",
- "eclectic",
- "jazz",
- "relaxing",
- "soft",
- "soundtracks"
- ],
- "codec": "AAC+",
- "bitrate": 192,
- "streamUrl": "https://stream10.xdevel.com/audio14s976748-2279/stream/icecast.audio",
- "homepage": "https://www.softradio.net/",
- "logoUrl": "https://static.wixstatic.com/media/8f2aad_aa6143964e8d4a1f80be28d048517260~mv2.png",
- "votes": 75,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "50ab0fd5-bd39-4561-89c0-797de8001a16"
+ "sourceStationUuid": "da3ad9cf-b8f2-4327-8f64-edfbaeb4f111"
},
{
"id": "e093a1fe-1466-4c11-8cba-12db6de65b74",
@@ -11354,48 +25091,6 @@
"source": "radio-browser",
"sourceStationUuid": "e093a1fe-1466-4c11-8cba-12db6de65b74"
},
- {
- "id": "b5be28a3-4fa3-42b9-a9dd-168cc25961a3",
- "name": "Algorythme Drum & Bass",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [
- "drum n bass",
- "drum&bass"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://radio9.pro-fhi.net/flux-endvtlna/stream",
- "homepage": "https://www.algorythmeradio.com/",
- "logoUrl": "https://www.algorythmeradio.com/assets/images/icon-algo.ico",
- "votes": 2872,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "b5be28a3-4fa3-42b9-a9dd-168cc25961a3"
- },
- {
- "id": "da3ad9cf-b8f2-4327-8f64-edfbaeb4f111",
- "name": "badradio 24/7 OG Phonk, Memphis, Houston, Trap & Trill",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [
- "houston",
- "phonk",
- "trap",
- "trap & trill"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://s2.radio.co/s2b2b68744/listen",
- "homepage": "https://badradio.nz/",
- "logoUrl": "https://yt3.ggpht.com/ytc/AMLnZu8eXtkd-wn5s-Ww_RXId5AsUc0kqfM-1hikJJtzjw=s88-c-k-c0x00ffffff-no-rj",
- "votes": 549,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "da3ad9cf-b8f2-4327-8f64-edfbaeb4f111"
- },
{
"id": "efedae79-7cd7-43c0-ad23-a149466efec8",
"name": "Crooner Radio",
@@ -11412,10 +25107,33 @@
"homepage": "https://www.croonerradio.fr/",
"logoUrl": "https://www.croonerradio.fr/favicon.ico",
"votes": 179,
- "clickcount": 8,
+ "clickcount": 9,
"source": "radio-browser",
"sourceStationUuid": "efedae79-7cd7-43c0-ad23-a149466efec8"
},
+ {
+ "id": "7b6aca3d-dfa3-47dd-9f57-820b04c3f339",
+ "name": "FIP",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "hls",
+ "m3u8",
+ "musique",
+ "public radio",
+ "radio france"
+ ],
+ "codec": "AAC",
+ "bitrate": 107,
+ "streamUrl": "https://stream.radiofrance.fr/fip/fip.m3u8",
+ "homepage": "https://www.radiofrance.fr/fip",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/fr/thumb/d/d5/FIP_logo_2005.svg/1024px-FIP_logo_2005.svg.png",
+ "votes": 120,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b6aca3d-dfa3-47dd-9f57-820b04c3f339"
+ },
{
"id": "10652211-3b97-411b-ab87-128be29356ac",
"name": "France Culture",
@@ -11435,10 +25153,75 @@
"homepage": "https://www.radiofrance.fr/franceculture",
"logoUrl": "https://upload.wikimedia.org/wikipedia/fr/thumb/c/c9/France_Culture_-_2008.svg/1024px-France_Culture_-_2008.svg.png",
"votes": 181,
- "clickcount": 8,
+ "clickcount": 9,
"source": "radio-browser",
"sourceStationUuid": "10652211-3b97-411b-ab87-128be29356ac"
},
+ {
+ "id": "0b80555f-eb5c-4fce-94d2-109eec7bee6b",
+ "name": "France Inter",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "aac",
+ "general",
+ "public radio",
+ "radio france"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.radiofrance.fr/franceinter-hifi.aac",
+ "homepage": "https://www.franceinter.fr/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/fr/3/39/France_Inter_logo.svg",
+ "votes": 3562,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b80555f-eb5c-4fce-94d2-109eec7bee6b"
+ },
+ {
+ "id": "f7afd469-77b0-4950-b17e-ff82eaa291d8",
+ "name": "ICI 100% Chanson française",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "variété française 80's 90's & 2000's"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.radiofrance.fr/fbchansonfrancaise-hifi.aac",
+ "homepage": "https://www.francebleu.fr/radio/radio-chanson-francaise",
+ "logoUrl": "https://www.francebleu.fr/favicons/apple-touch-icon-180x180.png",
+ "votes": 102,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "f7afd469-77b0-4950-b17e-ff82eaa291d8"
+ },
+ {
+ "id": "ee24e264-06fd-46cb-8f92-798aadde0aef",
+ "name": "Le Bon Mix HiFi Flac 1411 Kbps",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "english,french,spanish",
+ "tags": [
+ "eclectic",
+ "electro",
+ "jazz",
+ "pop",
+ "rock",
+ "world"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://stream10.xdevel.com/audio17s976748-2218/stream/icecast.audio",
+ "homepage": "https://www.lebonmix.radio/hifi",
+ "logoUrl": "https://static.wixstatic.com/media/8f2aad_93ae56d1764947358ca5524a248f789e~mv2.png",
+ "votes": 1023,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "ee24e264-06fd-46cb-8f92-798aadde0aef"
+ },
{
"id": "3e9281cc-aa27-4ddb-8a74-e48c5f7ea854",
"name": "Melody Vintage Radio",
@@ -11457,42 +25240,25 @@
"sourceStationUuid": "3e9281cc-aa27-4ddb-8a74-e48c5f7ea854"
},
{
- "id": "689824b5-1dd7-464d-a913-8c363337a883",
- "name": "OUI FM CLASSIC ROCK",
+ "id": "8e19b386-db97-4700-8a94-54a2048d1bd3",
+ "name": "NRJ DISNEY HITS live",
"country": "France",
"countryCode": "FR",
"language": "french",
"tags": [
- "classic rock"
+ "disney",
+ "nrj",
+ "radio disney"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://ouifm3.ice.infomaniak.ch/ouifm3.mp3",
- "homepage": "https://www.ouifm.fr/",
- "logoUrl": "https://bocir-prod-bucket.s3.amazonaws.com/radios/oui-fm/radiostream/3qhtSltZ27/vignette.png",
- "votes": 308,
+ "streamUrl": "https://streaming.nrjaudio.fm/oudbxj2h9r57",
+ "homepage": "https://www.nrj.fr/webradios/mur-des-radios/nrj-disney-hits",
+ "logoUrl": "https://res.cloudinary.com/dfuxhgkej/image/upload/v1773587606/nrj-la-playlist-disney-du-genie.e889f0e6_okvkyw.jpg",
+ "votes": 1,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "689824b5-1dd7-464d-a913-8c363337a883"
- },
- {
- "id": "b0b9ed65-52e7-463c-8c0b-d16ffbbcf661",
- "name": "RADIO FRANCIA INTERNACIONAL",
- "country": "France",
- "countryCode": "FR",
- "language": "spanish",
- "tags": [
- "radio francia internacional"
- ],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://rfienespagnol64k.ice.infomaniak.ch/rfienespagnol-64.mp3",
- "homepage": "https://www.rfi.fr/es/",
- "logoUrl": "https://www.rfi.fr/apple-touch-icon.png",
- "votes": 602,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "b0b9ed65-52e7-463c-8c0b-d16ffbbcf661"
+ "sourceStationUuid": "8e19b386-db97-4700-8a94-54a2048d1bd3"
},
{
"id": "ca151a81-ce20-4dd4-b6df-66f5c52a559c",
@@ -11537,44 +25303,71 @@
"sourceStationUuid": "16d88efb-dc34-43c4-969d-ae36e8284d57"
},
{
- "id": "f956de7a-cf01-49d3-8acf-45a25e5bdf5e",
- "name": "Djam Radio - AAC192LC",
+ "id": "50ab0fd5-bd39-4561-89c0-797de8001a16",
+ "name": "Soft Radio",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "english,french",
+ "tags": [
+ "calm",
+ "classical",
+ "eclectic",
+ "jazz",
+ "relaxing",
+ "soft",
+ "soundtracks"
+ ],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://stream10.xdevel.com/audio14s976748-2279/stream/icecast.audio",
+ "homepage": "https://www.softradio.net/",
+ "logoUrl": "https://static.wixstatic.com/media/8f2aad_aa6143964e8d4a1f80be28d048517260~mv2.png",
+ "votes": 75,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "50ab0fd5-bd39-4561-89c0-797de8001a16"
+ },
+ {
+ "id": "b5be28a3-4fa3-42b9-a9dd-168cc25961a3",
+ "name": "Algorythme Drum & Bass",
"country": "France",
"countryCode": "FR",
"language": null,
- "tags": [],
- "codec": "AAC+",
- "bitrate": 0,
- "streamUrl": "https://stream9.xdevel.com/audio1s976748-1515/stream/icecast.audio",
- "homepage": "https://www.djam.radio/",
- "logoUrl": "https://static.wixstatic.com/media/8f2aad_b81fa83db54340c3af97af5cf2cd0d0e~mv2.png",
- "votes": 838,
+ "tags": [
+ "drum n bass",
+ "drum&bass"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio9.pro-fhi.net/flux-endvtlna/stream",
+ "homepage": "https://www.algorythmeradio.com/",
+ "logoUrl": "https://www.algorythmeradio.com/assets/images/icon-algo.ico",
+ "votes": 2872,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "f956de7a-cf01-49d3-8acf-45a25e5bdf5e"
+ "sourceStationUuid": "b5be28a3-4fa3-42b9-a9dd-168cc25961a3"
},
{
- "id": "c2cbf444-f09b-4407-a6d0-53c64ac05424",
- "name": "FIP",
+ "id": "76b129aa-45cc-46cf-b6b2-1fde08a2c8f9",
+ "name": "FIP Pop",
"country": "France",
"countryCode": "FR",
"language": "french",
"tags": [
- "fip",
- "hls",
- "musique",
+ "aac",
+ "pop",
"public radio",
"radio france"
],
"codec": "AAC",
- "bitrate": 107,
- "streamUrl": "https://stream.radiofrance.fr/fip/fip.m3u8?id=radiofrance",
- "homepage": "https://www.radiofrance.fr/fip",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/1/16/FIP_logo_2021.svg",
- "votes": 24,
+ "bitrate": 192,
+ "streamUrl": "https://icecast.radiofrance.fr/fippop-hifi.aac",
+ "homepage": "https://www.fip.fr/pop/webradio",
+ "logoUrl": "https://www.fip.fr/dist/favicons/logo-120.png",
+ "votes": 1320,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "c2cbf444-f09b-4407-a6d0-53c64ac05424"
+ "sourceStationUuid": "76b129aa-45cc-46cf-b6b2-1fde08a2c8f9"
},
{
"id": "50420f6a-fe77-40c5-a065-b12c5c7d5299",
@@ -11601,40 +25394,30 @@
"sourceStationUuid": "50420f6a-fe77-40c5-a065-b12c5c7d5299"
},
{
- "id": "4d34923c-c97a-48fb-8b52-93710c163105",
- "name": "GENERATION SOUL DISCO FUNK",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://gestream.fr/g-radio-sd.aac",
- "homepage": "https://www.generationdiscofunk.com/",
- "logoUrl": "https://www.generationdiscofunk.com/wp-content/uploads/2022/08/Logo_G_Radio_500px-370x370.png",
- "votes": 82,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "4d34923c-c97a-48fb-8b52-93710c163105"
- },
- {
- "id": "f7afd469-77b0-4950-b17e-ff82eaa291d8",
- "name": "ICI 100% Chanson française",
+ "id": "d41cd653-89f0-4ca9-b849-70ce516e8a99",
+ "name": "France Inter",
"country": "France",
"countryCode": "FR",
"language": "french",
"tags": [
- "variété française 80's 90's & 2000's"
+ "debate",
+ "hls",
+ "m3u8",
+ "music",
+ "news",
+ "public radio",
+ "radio france",
+ "talk"
],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://icecast.radiofrance.fr/fbchansonfrancaise-hifi.aac",
- "homepage": "https://www.francebleu.fr/radio/radio-chanson-francaise",
- "logoUrl": "https://www.francebleu.fr/favicons/apple-touch-icon-180x180.png",
- "votes": 102,
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiofrance.fr/franceinter/franceinter_hifi.m3u8",
+ "homepage": "https://www.radiofrance.fr/franceinter",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/France_Inter_logo_2021.svg/1200px-France_Inter_logo_2021.svg.png",
+ "votes": 407,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "f7afd469-77b0-4950-b17e-ff82eaa291d8"
+ "sourceStationUuid": "d41cd653-89f0-4ca9-b849-70ce516e8a99"
},
{
"id": "766f2be3-676f-40af-80e7-eab16f0da225",
@@ -11681,46 +25464,44 @@
"sourceStationUuid": "c5c08ef9-5559-4073-87a8-80bff2b4860b"
},
{
- "id": "8e19b386-db97-4700-8a94-54a2048d1bd3",
- "name": "NRJ DISNEY HITS live",
+ "id": "b0b9ed65-52e7-463c-8c0b-d16ffbbcf661",
+ "name": "RADIO FRANCIA INTERNACIONAL",
"country": "France",
"countryCode": "FR",
- "language": "french",
+ "language": "spanish",
"tags": [
- "disney",
- "nrj",
- "radio disney"
+ "radio francia internacional"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://rfienespagnol64k.ice.infomaniak.ch/rfienespagnol-64.mp3",
+ "homepage": "https://www.rfi.fr/es/",
+ "logoUrl": "https://www.rfi.fr/apple-touch-icon.png",
+ "votes": 602,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0b9ed65-52e7-463c-8c0b-d16ffbbcf661"
+ },
+ {
+ "id": "f48ce4f1-3f31-11e8-b74d-52543be04c81",
+ "name": "Reggae.fr",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [
+ "dub",
+ "reggae",
+ "roots"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://streaming.nrjaudio.fm/oudbxj2h9r57",
- "homepage": "https://www.nrj.fr/webradios/mur-des-radios/nrj-disney-hits",
- "logoUrl": "https://res.cloudinary.com/dfuxhgkej/image/upload/v1773587606/nrj-la-playlist-disney-du-genie.e889f0e6_okvkyw.jpg",
- "votes": 1,
+ "streamUrl": "https://listen.radioking.com/radio/50473/stream/87415",
+ "homepage": "http://www.reggae.fr/popup-radio.php",
+ "logoUrl": null,
+ "votes": 1488,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "8e19b386-db97-4700-8a94-54a2048d1bd3"
- },
- {
- "id": "81a41011-330f-46b3-be46-a10cf8cdc3b0",
- "name": "Radio Ici & Maintenant",
- "country": "France",
- "countryCode": "FR",
- "language": "francaise,french",
- "tags": [
- "cultural",
- "culture",
- "talk & speech"
- ],
- "codec": "AAC",
- "bitrate": 64,
- "streamUrl": "https://s64.radiolize.com/radio/8090/radio.mp3",
- "homepage": "https://didierdeplaige.com/",
- "logoUrl": "https://fr.wikipedia.org/wiki/Ici_et_Maintenant_!#/media/Fichier:RIM.jpg",
- "votes": 185,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "81a41011-330f-46b3-be46-a10cf8cdc3b0"
+ "sourceStationUuid": "f48ce4f1-3f31-11e8-b74d-52543be04c81"
},
{
"id": "64179b77-7c6f-4e74-af5b-4bf3b5a1265a",
@@ -11741,27 +25522,6 @@
"source": "radio-browser",
"sourceStationUuid": "64179b77-7c6f-4e74-af5b-4bf3b5a1265a"
},
- {
- "id": "cbca0f46-ced9-4154-8157-c87039765207",
- "name": "📺 RFI Monde",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [
- "info",
- "information",
- "rfi"
- ],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://rfiafrique64k.ice.infomaniak.ch/rfimonde-64.mp3",
- "homepage": "https://www.karibshebdo.info/radios-web/rfi-radio",
- "logoUrl": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi076SvIq9FK1ila6iO0HpdpC6f6eMrCLPrNli3Y6WYe_7cVIM8GTSIKi5L2v3bmwD298Xc2jjmRlPX9nzJseyatmlnRhmrgL7QBGiUKBWhNDpmpSigoBKW-DQg-ytDeOF-iUaikzXDJef87-Or9eBq7fXL13kARxykDqVbhhIuT_e9niBlF0ZMztzw/s1600/Capture%20d%E2%80%99%C3%A9cran_2024-11-19_14-44-01.png",
- "votes": 1344,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "cbca0f46-ced9-4154-8157-c87039765207"
- },
{
"id": "d74136e8-23e4-4397-90a4-6355005b3d73",
"name": "100% Radio 80",
@@ -11782,71 +25542,67 @@
"sourceStationUuid": "d74136e8-23e4-4397-90a4-6355005b3d73"
},
{
- "id": "76b129aa-45cc-46cf-b6b2-1fde08a2c8f9",
- "name": "FIP Pop",
+ "id": "f956de7a-cf01-49d3-8acf-45a25e5bdf5e",
+ "name": "Djam Radio - AAC192LC",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://stream9.xdevel.com/audio1s976748-1515/stream/icecast.audio",
+ "homepage": "https://www.djam.radio/",
+ "logoUrl": "https://static.wixstatic.com/media/8f2aad_b81fa83db54340c3af97af5cf2cd0d0e~mv2.png",
+ "votes": 838,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "f956de7a-cf01-49d3-8acf-45a25e5bdf5e"
+ },
+ {
+ "id": "c2cbf444-f09b-4407-a6d0-53c64ac05424",
+ "name": "FIP",
"country": "France",
"countryCode": "FR",
"language": "french",
"tags": [
- "aac",
- "pop",
+ "fip",
+ "hls",
+ "musique",
"public radio",
"radio france"
],
"codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://icecast.radiofrance.fr/fippop-hifi.aac",
- "homepage": "https://www.fip.fr/pop/webradio",
- "logoUrl": "https://www.fip.fr/dist/favicons/logo-120.png",
- "votes": 1320,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "76b129aa-45cc-46cf-b6b2-1fde08a2c8f9"
- },
- {
- "id": "b1e41584-2913-4d7e-bc12-3f2446d44a4a",
- "name": "FIP Rock",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "rock"
- ],
- "codec": "AAC",
"bitrate": 107,
- "streamUrl": "https://stream.radiofrance.fr/fiprock/fiprock.m3u8?id=radiofrance",
- "homepage": "https://www.radiofrance.fr/fip/radio-rock",
- "logoUrl": "https://cdn.radiofrance.fr/s3/cruiser-production/2019/06/f5b944ca-9a21-4970-8eed-e711dac8ac15/200x200_fip-rock_ok.jpg",
- "votes": 72,
+ "streamUrl": "https://stream.radiofrance.fr/fip/fip.m3u8?id=radiofrance",
+ "homepage": "https://www.radiofrance.fr/fip",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/1/16/FIP_logo_2021.svg",
+ "votes": 24,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "b1e41584-2913-4d7e-bc12-3f2446d44a4a"
+ "sourceStationUuid": "c2cbf444-f09b-4407-a6d0-53c64ac05424"
},
{
- "id": "d41cd653-89f0-4ca9-b849-70ce516e8a99",
- "name": "France Inter",
+ "id": "0842377e-9c21-4567-a326-6303a48b0ea1",
+ "name": "FPP Fréquence Paris Plurielle rfpp",
"country": "France",
"countryCode": "FR",
- "language": "french",
+ "language": "french,haitian creole,kurdish,lingala,malgache",
"tags": [
- "debate",
- "hls",
- "m3u8",
- "music",
- "news",
- "public radio",
- "radio france",
- "talk"
+ "political talk",
+ "politique",
+ "radio associative",
+ "radio libre",
+ "voix des sans voix"
],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://stream.radiofrance.fr/franceinter/franceinter_hifi.m3u8",
- "homepage": "https://www.radiofrance.fr/franceinter",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/France_Inter_logo_2021.svg/1200px-France_Inter_logo_2021.svg.png",
- "votes": 407,
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://direct.rfpp.net/fpp.mp3",
+ "homepage": "https://rfpp.net/",
+ "logoUrl": "https://rfpp.net/favicon.ico",
+ "votes": 98,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "d41cd653-89f0-4ca9-b849-70ce516e8a99"
+ "sourceStationUuid": "0842377e-9c21-4567-a326-6303a48b0ea1"
},
{
"id": "16e02827-f653-4d44-8229-a9c003b304c5",
@@ -11865,6 +25621,23 @@
"source": "radio-browser",
"sourceStationUuid": "16e02827-f653-4d44-8229-a9c003b304c5"
},
+ {
+ "id": "4d34923c-c97a-48fb-8b52-93710c163105",
+ "name": "GENERATION SOUL DISCO FUNK",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://gestream.fr/g-radio-sd.aac",
+ "homepage": "https://www.generationdiscofunk.com/",
+ "logoUrl": "https://www.generationdiscofunk.com/wp-content/uploads/2022/08/Logo_G_Radio_500px-370x370.png",
+ "votes": 82,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4d34923c-c97a-48fb-8b52-93710c163105"
+ },
{
"id": "c785b4aa-d774-4a2f-9d66-c168ee45ed08",
"name": "Nostalgie",
@@ -11882,6 +25655,65 @@
"source": "radio-browser",
"sourceStationUuid": "c785b4aa-d774-4a2f-9d66-c168ee45ed08"
},
+ {
+ "id": "689824b5-1dd7-464d-a913-8c363337a883",
+ "name": "OUI FM CLASSIC ROCK",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ouifm3.ice.infomaniak.ch/ouifm3.mp3",
+ "homepage": "https://www.ouifm.fr/",
+ "logoUrl": "https://bocir-prod-bucket.s3.amazonaws.com/radios/oui-fm/radiostream/3qhtSltZ27/vignette.png",
+ "votes": 308,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "689824b5-1dd7-464d-a913-8c363337a883"
+ },
+ {
+ "id": "6e7e241a-6984-4797-ab2d-6f6e80f7a0e3",
+ "name": "OUI FM ROCK INDÉ",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "indie rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://ouifm5.ice.infomaniak.ch/ouifm5.mp3",
+ "homepage": "https://www.ouifm.fr/",
+ "logoUrl": "https://bocir-prod-bucket.s3.eu-west-1.amazonaws.com/radios/oui-fm/images/favicon.ico",
+ "votes": 471,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6e7e241a-6984-4797-ab2d-6f6e80f7a0e3"
+ },
+ {
+ "id": "81a41011-330f-46b3-be46-a10cf8cdc3b0",
+ "name": "Radio Ici & Maintenant",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "francaise,french",
+ "tags": [
+ "cultural",
+ "culture",
+ "talk & speech"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://s64.radiolize.com/radio/8090/radio.mp3",
+ "homepage": "https://didierdeplaige.com/",
+ "logoUrl": "https://fr.wikipedia.org/wiki/Ici_et_Maintenant_!#/media/Fichier:RIM.jpg",
+ "votes": 185,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "81a41011-330f-46b3-be46-a10cf8cdc3b0"
+ },
{
"id": "962b49da-0601-11e8-ae97-52543be04c81",
"name": "Radio ItaloPower!",
@@ -11945,27 +25777,6 @@
"source": "radio-browser",
"sourceStationUuid": "910e7e60-d3b4-4e1a-ae3d-2860dd877b6f"
},
- {
- "id": "f48ce4f1-3f31-11e8-b74d-52543be04c81",
- "name": "Reggae.fr",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [
- "dub",
- "reggae",
- "roots"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://listen.radioking.com/radio/50473/stream/87415",
- "homepage": "http://www.reggae.fr/popup-radio.php",
- "logoUrl": null,
- "votes": 1488,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "f48ce4f1-3f31-11e8-b74d-52543be04c81"
- },
{
"id": "378e44cb-c6be-445e-bcd9-dd6c4fdbd0eb",
"name": "#1 Splash Jazz",
@@ -11996,41 +25807,23 @@
"sourceStationUuid": "378e44cb-c6be-445e-bcd9-dd6c4fdbd0eb"
},
{
- "id": "176833ee-0888-4f8a-bc51-51fc800e34d6",
- "name": "4U Classic Rock",
+ "id": "a1694c2c-8b09-4398-a6a0-56111ef7f731",
+ "name": "1000 Hits 90s",
"country": "France",
"countryCode": "FR",
- "language": "english",
+ "language": "anserma",
"tags": [
- "classic rock",
- "hits"
+ "to people of russia ... there is a war in ukraine right now ... the forces of the russian federation are attacking civilian infrastructure in kharkiv ... kyiv ... chernihiv ... sumy ... irpin and dozens of other cities ... people are dying both civilians and military servicemen including russian conscripts who were thrown into the fighting ... in order to deprive its own people of access to information the government of the russian federation has forbidden calling a war a war ... shut down independent media and is passing a number of dictatorial laws ... these laws are meant to silence all those who are against war ... you can be jailed for multiple years for simply calling for peace ... do not be silent ... silence is a sign that you accept the russian governments policy ... you can choose not to be silent"
],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://str4uice.streamakaci.com/4uclassicrock.mp3",
- "homepage": "https://www.4urock.com/",
- "logoUrl": "https://www.4urock.com/favicon.ico",
- "votes": 13,
+ "bitrate": 0,
+ "streamUrl": "https://nationalanthems.info/fr-52.mp3?https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3https://nationalanthems.info/fr-52.mp3",
+ "homepage": "https://rb.gy/jbj7y1",
+ "logoUrl": "https://rb.gy/dacp7n",
+ "votes": 9,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "176833ee-0888-4f8a-bc51-51fc800e34d6"
- },
- {
- "id": "414a268f-a043-4be7-99f0-cf031865703e",
- "name": "Ado",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://start-adofm.ice.infomaniak.ch/start-adofm-high.mp3",
- "homepage": "https://www.ado.fr/",
- "logoUrl": "https://images.lesindesradios.fr/fit-in/300x2000/filters:format(webp)/filters:quality(100)/radios/adofm/images/logo_ly42bXnqql.png",
- "votes": 159,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "414a268f-a043-4be7-99f0-cf031865703e"
+ "sourceStationUuid": "a1694c2c-8b09-4398-a6a0-56111ef7f731"
},
{
"id": "4d717d77-35bf-4d25-8cd0-32e3288ee0d0",
@@ -12052,25 +25845,6 @@
"source": "radio-browser",
"sourceStationUuid": "4d717d77-35bf-4d25-8cd0-32e3288ee0d0"
},
- {
- "id": "a61be78b-d52e-4dd4-befb-b77d4d2de2ca",
- "name": "Chante France Emotion",
- "country": "France",
- "countryCode": "FR",
- "language": "french",
- "tags": [
- "french chansons"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://chantefranceemotion.ice.infomaniak.ch/chantefranceemotion-128.mp3",
- "homepage": "http://www.chantefrance.com/",
- "logoUrl": "https://m209.syncusercontent.com/mfs-60:43ecf5b292ac1b6f285193c7c725f5dd=============================/p/Chante_France_Emotion.png?allowdd=0&datakey=i/PT4c2NxHrPaDTi+Yeso3NvhzVjXGY8e854v2JgVqcZcRzCJNt03VboxcYBmUmkQ5VZqXzxuWfBHpvJAOBJPhTkpDOl2PdazHOSQ8LGw8KqNIW+ei8epzQOcBoj0d9esLBXCgRtyMIheoK/tJ6I1aHmX1qMkJ0rhyamKh7RdTrgT4LWCQHlcPiSYpRyjmoFwjolU5GdfshKXsSzarrfgVp0po08SEV5x3qbY8QcTEWSIbEuQdAz0TUEmZ8VzFJTIjYjLXgRMEIvwRfDlMA948hMiyDHShUa1lKUFxjEfjo53q8WwX0tccXAh39Liy51s3DLgwhpRNuc0DfzCc6/HQ&engine=ln-3.1.38&errurl=b8sHYYFv+3CSKKM8U+y2mAAUUUvBJ9F7ajDZzVNEa+J2tFuqLNNhMMuhPyAwv3N1N7Ij2L63a/GXER7pk8+kJqLD98Ai2occw4p2kDEpZ4IF3Sy4gtyzvoZv6jafPMrhYeNZcvDNdMu2XlnPa/ci7vav/JfIHi99UKKGyY+lNfAj8bQ4RyHyLZwznF8vgYJ0zFjXX97q/wAA3CW0cfPmLUVHzyVsPX7AZS2qR7CaEO6oQKRMuKZfYwYvTfCGIWunFafV9q2GcqBzZP3VvTM9qiVazDfDqLc6pnJKfBroAgvW6Sg1xbyEt+z17yec5mEjnb3UqdKcqne4nffJfM8sjg==&header1=Q29udGVudC1UeXBlOiBpbWFnZS9wbmc&header2=Q29udGVudC1EaXNwb3NpdGlvbjogaW5saW5lOyBmaWxlbmFtZT0iQ2hhbnRlX0ZyYW5jZV9FbW90aW9uLnBuZyI7ZmlsZW5hbWUqPVVURi04JydDaGFudGVfRnJhbmNlX0Vtb3Rpb24ucG5nOw&ipaddress=1414030563&linkcachekey=6d4567cd0&linkoid=1991610004&mode=101&sharelink_id=17962625190004×tamp=1708274362118&uagent=3b50c75381f12107280e9099b5b7674cf455a2e5&signature=7d74438887f3bb4ff771a5a1858c57ffca49c156&cachekey=60:43ecf5b292ac1b6f285193c7c725f5dd=============================",
- "votes": 58,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "a61be78b-d52e-4dd4-befb-b77d4d2de2ca"
- },
{
"id": "cb510c9c-2445-4003-8467-0ea4fe9688e5",
"name": "Djam Radio - Flac 1411 Kbps",
@@ -12107,6 +25881,46 @@
"source": "radio-browser",
"sourceStationUuid": "2f2875a6-bf0a-41bc-b31b-d181c323654d"
},
+ {
+ "id": "75b6b22f-f4b7-43ae-aa73-96a7b47eeb4f",
+ "name": "FIP Metal",
+ "country": "France",
+ "countryCode": "FR",
+ "language": null,
+ "tags": [
+ "hard rock",
+ "metal",
+ "thrash"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.radiofrance.fr/fipmetal-hifi.aac?id=radiofrance",
+ "homepage": "https://www.radiofrance.fr/fip/radio-metal",
+ "logoUrl": "https://www.radiofrance.fr/s3/cruiser-production/2022/07/160994f8-296b-4cd8-97a0-34c9111cdd9d/400x400_fip-metal-20222x_2.webp",
+ "votes": 567,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "75b6b22f-f4b7-43ae-aa73-96a7b47eeb4f"
+ },
+ {
+ "id": "b1e41584-2913-4d7e-bc12-3f2446d44a4a",
+ "name": "FIP Rock",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 107,
+ "streamUrl": "https://stream.radiofrance.fr/fiprock/fiprock.m3u8?id=radiofrance",
+ "homepage": "https://www.radiofrance.fr/fip/radio-rock",
+ "logoUrl": "https://cdn.radiofrance.fr/s3/cruiser-production/2019/06/f5b944ca-9a21-4970-8eed-e711dac8ac15/200x200_fip-rock_ok.jpg",
+ "votes": 72,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "b1e41584-2913-4d7e-bc12-3f2446d44a4a"
+ },
{
"id": "d94c5090-1b7d-11ea-a620-52543be04c81",
"name": "France Bleu Provence",
@@ -12129,23 +25943,43 @@
"sourceStationUuid": "d94c5090-1b7d-11ea-a620-52543be04c81"
},
{
- "id": "6e7e241a-6984-4797-ab2d-6f6e80f7a0e3",
- "name": "OUI FM ROCK INDÉ",
+ "id": "e20e95c4-884f-447f-aac6-c4a685ae2eb9",
+ "name": "hotmix Lounge",
"country": "France",
"countryCode": "FR",
"language": "french",
"tags": [
- "indie rock"
+ "lounge music"
],
"codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://ouifm5.ice.infomaniak.ch/ouifm5.mp3",
- "homepage": "https://www.ouifm.fr/",
- "logoUrl": "https://bocir-prod-bucket.s3.eu-west-1.amazonaws.com/radios/oui-fm/images/favicon.ico",
- "votes": 471,
+ "bitrate": 128,
+ "streamUrl": "https://streaming.hotmixradio.com/hotmix-lounge-en-mp3?",
+ "homepage": "https://www.radio.fr/s/hotmixlounge",
+ "logoUrl": "https://www.radio.fr/300/hotmixlounge.jpeg?version=cf0ac3e994b5c65899372a763b4b9cdf",
+ "votes": 47,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "6e7e241a-6984-4797-ab2d-6f6e80f7a0e3"
+ "sourceStationUuid": "e20e95c4-884f-447f-aac6-c4a685ae2eb9"
+ },
+ {
+ "id": "5ab5b266-a643-4666-a69b-31a748c62b73",
+ "name": "OUI FM ROCK 70's",
+ "country": "France",
+ "countryCode": "FR",
+ "language": "french",
+ "tags": [
+ "70's",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ouifmrock70s.ice.infomaniak.ch/ouifmseventies.mp3",
+ "homepage": "https://www.ouifm.fr/",
+ "logoUrl": "https://bocir-prod-bucket.s3.eu-west-1.amazonaws.com/radios/oui-fm/images/favicon.ico",
+ "votes": 421,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ab5b266-a643-4666-a69b-31a748c62b73"
},
{
"id": "e1302232-248d-4433-88c6-c12b1bfafc81",
@@ -12236,28 +26070,6 @@
"source": "radio-browser",
"sourceStationUuid": "6e7900f4-a927-4bf9-b0cb-5855493b0ce5"
},
- {
- "id": "e5df2775-8ae3-4c76-a5e5-c7c3d5c50eda",
- "name": "SUN Soul & Funk",
- "country": "France",
- "countryCode": "FR",
- "language": null,
- "tags": [
- "funk",
- "hip hop",
- "jazz fusion",
- "soul"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://diffusion.lafrap.fr/sun-soul.funk.mp3",
- "homepage": "https://www.lesonunique.com/",
- "logoUrl": "https://www.lesonunique.com/datasun/images_flux/logos/HD/soulandfunk.png",
- "votes": 103,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "e5df2775-8ae3-4c76-a5e5-c7c3d5c50eda"
- },
{
"id": "2a5fdf2a-63fe-4542-8f9b-2ad4ee1f1eff",
"name": "Toulouse FM",
@@ -12303,8 +26115,8 @@
"streamUrl": "https://mangoradio.stream.laut.fm/mangoradio",
"homepage": "https://mangoradio.de/",
"logoUrl": "https://mangoradio.de/wp-content/uploads/cropped-Logo-192x192.webp",
- "votes": 801949,
- "clickcount": 479,
+ "votes": 801953,
+ "clickcount": 467,
"source": "radio-browser",
"sourceStationUuid": "78012206-1aa1-11e9-a80b-52543be04c81"
},
@@ -12325,7 +26137,7 @@
"homepage": "https://swr3.de/",
"logoUrl": "https://swr3.de/assets/swr3/icons/apple-touch-icon.png",
"votes": 17757,
- "clickcount": 378,
+ "clickcount": 382,
"source": "radio-browser",
"sourceStationUuid": "240d28b9-7858-48d2-a816-9cf8e1875fe8"
},
@@ -12347,7 +26159,7 @@
"homepage": "https://www.deutschlandfunk.de/",
"logoUrl": "https://www.deutschlandfunk.de/static/img/deutschlandfunk/icons/apple-touch-icon-128x128.png",
"votes": 10012,
- "clickcount": 323,
+ "clickcount": 322,
"source": "radio-browser",
"sourceStationUuid": "1c3e8be2-5b14-4933-bad3-87cbc227cba4"
},
@@ -12366,7 +26178,7 @@
"homepage": "https://www.bayern3.de/",
"logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:52fd25fc45de7c6a?w=512",
"votes": 4148,
- "clickcount": 159,
+ "clickcount": 165,
"source": "radio-browser",
"sourceStationUuid": "0de82079-04e7-407b-b616-e0726eba5244"
},
@@ -12391,7 +26203,7 @@
"homepage": "https://www.oldie-antenne.de/",
"logoUrl": "https://www.oldie-antenne.de/logos/oldie-antenne/apple-touch-icon.png",
"votes": 2191,
- "clickcount": 157,
+ "clickcount": 156,
"source": "radio-browser",
"sourceStationUuid": "87906f1e-5f82-4b86-9865-69e8eab8a69a"
},
@@ -12410,7 +26222,7 @@
"homepage": "https://www1.wdr.de/index.html",
"logoUrl": "https://www1.wdr.de/radio/wdr4/wdrvier_logo104~_v-ARDAustauschformat.jpg",
"votes": 2440,
- "clickcount": 152,
+ "clickcount": 151,
"source": "radio-browser",
"sourceStationUuid": "44ee797f-b7c4-4f94-8853-ce9a9c8731ed"
},
@@ -12440,32 +26252,10 @@
"homepage": "https://breakz.fm/trackliste/",
"logoUrl": "https://i.ibb.co/P7QHpGB/DJ-CLUB-CHARTS-LOGO.png",
"votes": 729,
- "clickcount": 106,
+ "clickcount": 105,
"source": "radio-browser",
"sourceStationUuid": "3d9dcff7-8fd2-4eda-9d77-cfe259c62a70"
},
- {
- "id": "717e3749-b9e8-4497-bd6a-61ccec935922",
- "name": "Deutschlandfunk | DLF | AAC 192k",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "culture",
- "news",
- "public service",
- "information"
- ],
- "codec": "AAC",
- "bitrate": 256,
- "streamUrl": "https://st01.sslstream.dlf.de/dlf/01/high/aac/stream.aac?aggregator=web",
- "homepage": "https://www.deutschlandfunk.de/",
- "logoUrl": "https://www.deutschlandfunk.de/static/img/deutschlandfunk/icons/apple-touch-icon-128x128.png",
- "votes": 1295,
- "clickcount": 87,
- "source": "radio-browser",
- "sourceStationUuid": "717e3749-b9e8-4497-bd6a-61ccec935922"
- },
{
"id": "5a6946a2-f02f-4fd1-a16b-558c90150041",
"name": "Deutschlandfunk | DLF | OPUS 24k",
@@ -12484,26 +26274,31 @@
"homepage": "https://www.deutschlandfunk.de/",
"logoUrl": "https://www.deutschlandfunk.de/static/img/deutschlandfunk/icons/apple-touch-icon-128x128.png",
"votes": 2008,
- "clickcount": 87,
+ "clickcount": 82,
"source": "radio-browser",
"sourceStationUuid": "5a6946a2-f02f-4fd1-a16b-558c90150041"
},
{
- "id": "d608bb74-0740-47e3-a1e2-c11edfeec91f",
- "name": "ROCKANTENNE Alternative (mp3)",
+ "id": "717e3749-b9e8-4497-bd6a-61ccec935922",
+ "name": "Deutschlandfunk | DLF | AAC 192k",
"country": "Germany",
"countryCode": "DE",
"language": "german",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.rockantenne.de/alternative/stream/mp3",
- "homepage": "https://www.rockantenne.de/",
- "logoUrl": "https://www.rockantenne.de/logos/station-rock-antenne/apple-touch-icon.png",
- "votes": 1378,
- "clickcount": 84,
+ "tags": [
+ "culture",
+ "news",
+ "public service",
+ "information"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://st01.sslstream.dlf.de/dlf/01/high/aac/stream.aac?aggregator=web",
+ "homepage": "https://www.deutschlandfunk.de/",
+ "logoUrl": "https://www.deutschlandfunk.de/static/img/deutschlandfunk/icons/apple-touch-icon-128x128.png",
+ "votes": 1295,
+ "clickcount": 81,
"source": "radio-browser",
- "sourceStationUuid": "d608bb74-0740-47e3-a1e2-c11edfeec91f"
+ "sourceStationUuid": "717e3749-b9e8-4497-bd6a-61ccec935922"
},
{
"id": "36a6d57a-4d8a-45e3-aad9-7931c6e43c56",
@@ -12518,10 +26313,46 @@
"homepage": "https://www.swr.de/swr1/bw/index.html",
"logoUrl": "https://www.radio.at/images/broadcasts/07/41/2273/2/c300.png",
"votes": 3773,
- "clickcount": 83,
+ "clickcount": 80,
"source": "radio-browser",
"sourceStationUuid": "36a6d57a-4d8a-45e3-aad9-7931c6e43c56"
},
+ {
+ "id": "d608bb74-0740-47e3-a1e2-c11edfeec91f",
+ "name": "ROCKANTENNE Alternative (mp3)",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.rockantenne.de/alternative/stream/mp3",
+ "homepage": "https://www.rockantenne.de/",
+ "logoUrl": "https://www.rockantenne.de/logos/station-rock-antenne/apple-touch-icon.png",
+ "votes": 1378,
+ "clickcount": 79,
+ "source": "radio-browser",
+ "sourceStationUuid": "d608bb74-0740-47e3-a1e2-c11edfeec91f"
+ },
+ {
+ "id": "787eda99-1532-4ee0-b14e-fdb88ec71530",
+ "name": "BR24",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://dispatcher.rndfnk.com/br/br24/live/mp3/mid",
+ "homepage": "https://www.br.de/radio/br24/index.html",
+ "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:c3ab9296f3b282bf?w=512",
+ "votes": 1315,
+ "clickcount": 72,
+ "source": "radio-browser",
+ "sourceStationUuid": "787eda99-1532-4ee0-b14e-fdb88ec71530"
+ },
{
"id": "dd98c499-a0c4-4019-a35e-99caa6940407",
"name": "# TOP 100 CLUB CHARTS - DANCE & DJ MIX RADIO - 24 HOURS NON-STOP MUSIC @ TikTok Hits, Ibiza House, Sunset Lounge, Melodic Music, EDM, Deep House, Dance Music, Techno & Hypertechno, Rave Charts, Top 40 Charts, Latin, Reggaeton Music, Moombahton, Urban Hits, HipHop, Party & Clubbing Radio, Trending Chartmusic, R&B, Urban, Mixtape - & LIVE DJ SET",
@@ -12548,29 +26379,10 @@
"homepage": "https://rm.fm/breakz/team",
"logoUrl": "https://i.ibb.co/T1gH75m/rb-top100clubcharts.png",
"votes": 3408,
- "clickcount": 74,
+ "clickcount": 71,
"source": "radio-browser",
"sourceStationUuid": "dd98c499-a0c4-4019-a35e-99caa6940407"
},
- {
- "id": "787eda99-1532-4ee0-b14e-fdb88ec71530",
- "name": "BR24",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "news"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://dispatcher.rndfnk.com/br/br24/live/mp3/mid",
- "homepage": "https://www.br.de/radio/br24/index.html",
- "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:c3ab9296f3b282bf?w=512",
- "votes": 1315,
- "clickcount": 72,
- "source": "radio-browser",
- "sourceStationUuid": "787eda99-1532-4ee0-b14e-fdb88ec71530"
- },
{
"id": "7a49c017-1391-4e18-a4d8-a9bab58516e6",
"name": "Bayern 1 Oberbayern",
@@ -12586,10 +26398,29 @@
"homepage": "https://www.br.de/radio/bayern1/index.html",
"logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:b366004f6196d70c?w=512",
"votes": 2184,
- "clickcount": 70,
+ "clickcount": 69,
"source": "radio-browser",
"sourceStationUuid": "7a49c017-1391-4e18-a4d8-a9bab58516e6"
},
+ {
+ "id": "9e3b0f8e-95d3-11e9-a605-52543be04c81",
+ "name": "NDR 2",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.ndr.de/ndr/ndr2/niedersachsen/mp3/128/stream.mp3",
+ "homepage": "https://www.ndr.de/ndr2/index.html",
+ "logoUrl": "https://www.ndr.de//apple-touch-icon-57x57.png",
+ "votes": 4565,
+ "clickcount": 62,
+ "source": "radio-browser",
+ "sourceStationUuid": "9e3b0f8e-95d3-11e9-a605-52543be04c81"
+ },
{
"id": "10f16cf6-bc45-4b67-8f17-9758f249a61a",
"name": "Deutschlandfunk Kultur | DLF | MP3 128k",
@@ -12608,29 +26439,10 @@
"homepage": "https://www.deutschlandfunkkultur.de/",
"logoUrl": "https://www.deutschlandfunkkultur.de/static/img/deutschlandfunk_kultur/icons/apple-touch-icon-128x128.png",
"votes": 3031,
- "clickcount": 65,
+ "clickcount": 60,
"source": "radio-browser",
"sourceStationUuid": "10f16cf6-bc45-4b67-8f17-9758f249a61a"
},
- {
- "id": "9e3b0f8e-95d3-11e9-a605-52543be04c81",
- "name": "NDR 2",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.ndr.de/ndr/ndr2/niedersachsen/mp3/128/stream.mp3",
- "homepage": "https://www.ndr.de/ndr2/index.html",
- "logoUrl": "https://www.ndr.de//apple-touch-icon-57x57.png",
- "votes": 4565,
- "clickcount": 59,
- "source": "radio-browser",
- "sourceStationUuid": "9e3b0f8e-95d3-11e9-a605-52543be04c81"
- },
{
"id": "ffd351fe-219e-4c6e-b14f-9c2e02fbe45e",
"name": "Klassik Radio - Live",
@@ -12646,7 +26458,7 @@
"homepage": "https://klassikradio.de/",
"logoUrl": "https://klassikradio.de/img/ms-mediumtile.png",
"votes": 3029,
- "clickcount": 57,
+ "clickcount": 58,
"source": "radio-browser",
"sourceStationUuid": "ffd351fe-219e-4c6e-b14f-9c2e02fbe45e"
},
@@ -12680,6 +26492,27 @@
"source": "radio-browser",
"sourceStationUuid": "be26f3f5-1ee1-4661-a3de-4544fc29e833"
},
+ {
+ "id": "b6240170-f81f-4fc7-9183-5f9ebbe8b8d8",
+ "name": "NDR 1 Niedersachsen",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "music",
+ "oldies",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.ndr.de/ndr/ndr1niedersachsen/hannover/mp3/128/stream.mp3?1728424471708&aggregator=web",
+ "homepage": "https://www.ndr.de/ndr1niedersachsen",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/NDR1_Niedersachsen2184x184.png",
+ "votes": 332,
+ "clickcount": 46,
+ "source": "radio-browser",
+ "sourceStationUuid": "b6240170-f81f-4fc7-9183-5f9ebbe8b8d8"
+ },
{
"id": "f1174669-b7ad-4668-8369-db995e6ecc8d",
"name": "- NEUERSCHEINUNGEN - Radio Charts - DJ Charts - Club Charts - Top 100 - Top 40 Club - Pop, Hip-Hop, Dance, EDM, House, Techno, R&B, Trap, Reggaeton, Afrobeat, Indie-Pop, Tropical House, Future Bass, Electro Swing, Synthwave, Deep House, Progressive House, Vocal House, DJ Sets, Remix, Mashup, Dancefloor, Festival-Hits, Club-Hits, Nightlife, Underground.",
@@ -12706,31 +26539,10 @@
"homepage": "https://www.breakz.fm/",
"logoUrl": "https://i.ibb.co/7J492pjD/neuersachein.jpg",
"votes": 368,
- "clickcount": 52,
+ "clickcount": 45,
"source": "radio-browser",
"sourceStationUuid": "f1174669-b7ad-4668-8369-db995e6ecc8d"
},
- {
- "id": "b6240170-f81f-4fc7-9183-5f9ebbe8b8d8",
- "name": "NDR 1 Niedersachsen",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "music",
- "oldies",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.ndr.de/ndr/ndr1niedersachsen/hannover/mp3/128/stream.mp3?1728424471708&aggregator=web",
- "homepage": "https://www.ndr.de/ndr1niedersachsen",
- "logoUrl": "https://www.phonostar.de/images/auto_created/NDR1_Niedersachsen2184x184.png",
- "votes": 332,
- "clickcount": 48,
- "source": "radio-browser",
- "sourceStationUuid": "b6240170-f81f-4fc7-9183-5f9ebbe8b8d8"
- },
{
"id": "1f3700b5-4875-4bdf-986d-1dcaa4e8dfbe",
"name": "Bayern 2",
@@ -12746,10 +26558,112 @@
"homepage": "https://www.br.de/radio/bayern2/index.html",
"logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:5d72d15e88d309ec?w=512",
"votes": 1144,
- "clickcount": 46,
+ "clickcount": 45,
"source": "radio-browser",
"sourceStationUuid": "1f3700b5-4875-4bdf-986d-1dcaa4e8dfbe"
},
+ {
+ "id": "6cddaca1-f2c1-11e8-a471-52543be04c81",
+ "name": "- 0 N - 70s on Radio",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "70er",
+ "70s",
+ "oldies",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://0n-70s.radionetz.de/0n-70s.mp3",
+ "homepage": "http://www.0nradio.com/",
+ "logoUrl": "https://www.0nradio.com/logos/0n-70s_600x600.jpg",
+ "votes": 9727,
+ "clickcount": 44,
+ "source": "radio-browser",
+ "sourceStationUuid": "6cddaca1-f2c1-11e8-a471-52543be04c81"
+ },
+ {
+ "id": "3a0985e9-788d-11e8-83fa-52543be04c81",
+ "name": "Bayern 1 Franken",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://dispatcher.rndfnk.com/br/br1/franken/mp3/mid",
+ "homepage": "https://www.br.de/radio/bayern1/index.html",
+ "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:b366004f6196d70c?w=512",
+ "votes": 1936,
+ "clickcount": 44,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a0985e9-788d-11e8-83fa-52543be04c81"
+ },
+ {
+ "id": "ae209b3a-d20a-48f2-b303-22d68e385bf4",
+ "name": "Absolut Relax",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://absolut-relax.live-sm.absolutradio.de/absolut-relax?__cb=130270101023249",
+ "homepage": null,
+ "logoUrl": "https://absolutradio.de/images/stations/229_relax.png",
+ "votes": 2469,
+ "clickcount": 43,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae209b3a-d20a-48f2-b303-22d68e385bf4"
+ },
+ {
+ "id": "21ab678c-ff19-4314-9969-165e15b4210d",
+ "name": "Deutschlandfunk Nova | DLF | AAC 192k",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "culture",
+ "news",
+ "public service",
+ "information"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://st03.sslstream.dlf.de/dlf/03/high/aac/stream.aac?aggregator=web",
+ "homepage": "https://www.deutschlandfunknova.de/",
+ "logoUrl": "https://www.deutschlandfunknova.de/apple-touch-icon.png",
+ "votes": 859,
+ "clickcount": 43,
+ "source": "radio-browser",
+ "sourceStationUuid": "21ab678c-ff19-4314-9969-165e15b4210d"
+ },
+ {
+ "id": "40532b34-f6a4-4009-b023-4110b8e7393f",
+ "name": "kontrafunk",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "information",
+ "news",
+ "news talk",
+ "talk radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.multhielemedia.de/listen/kontrafunk/radio.mp3",
+ "homepage": "https://kontrafunk.radio/de/",
+ "logoUrl": "https://kontrafunk.radio/templates/yootheme/cache/af/logo_KF_vogel_mittig_subline-af5b9047.png",
+ "votes": 546,
+ "clickcount": 43,
+ "source": "radio-browser",
+ "sourceStationUuid": "40532b34-f6a4-4009-b023-4110b8e7393f"
+ },
{
"id": "8cda8d0d-6166-4881-b9e3-db0994ce23be",
"name": "0R - DEEP HOUSE || Chillout, Ambient House, Chill, Lounge, Electronic, Dance, Smooth, Vocal, Club, Night, Party, Groove, Melodic, Summer, Beat",
@@ -12775,68 +26689,10 @@
"homepage": "https://plus.rm.fm/",
"logoUrl": "https://i.ibb.co/Y7PzyGxb/Deep-House-TL.png",
"votes": 54,
- "clickcount": 44,
+ "clickcount": 42,
"source": "radio-browser",
"sourceStationUuid": "8cda8d0d-6166-4881-b9e3-db0994ce23be"
},
- {
- "id": "3a0985e9-788d-11e8-83fa-52543be04c81",
- "name": "Bayern 1 Franken",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "oldies"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://dispatcher.rndfnk.com/br/br1/franken/mp3/mid",
- "homepage": "https://www.br.de/radio/bayern1/index.html",
- "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:b366004f6196d70c?w=512",
- "votes": 1936,
- "clickcount": 44,
- "source": "radio-browser",
- "sourceStationUuid": "3a0985e9-788d-11e8-83fa-52543be04c81"
- },
- {
- "id": "6cddaca1-f2c1-11e8-a471-52543be04c81",
- "name": "- 0 N - 70s on Radio",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "70er",
- "70s",
- "oldies",
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://0n-70s.radionetz.de/0n-70s.mp3",
- "homepage": "http://www.0nradio.com/",
- "logoUrl": "https://www.0nradio.com/logos/0n-70s_600x600.jpg",
- "votes": 9727,
- "clickcount": 43,
- "source": "radio-browser",
- "sourceStationUuid": "6cddaca1-f2c1-11e8-a471-52543be04c81"
- },
- {
- "id": "ae209b3a-d20a-48f2-b303-22d68e385bf4",
- "name": "Absolut Relax",
- "country": "Germany",
- "countryCode": "DE",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://absolut-relax.live-sm.absolutradio.de/absolut-relax?__cb=130270101023249",
- "homepage": null,
- "logoUrl": "https://absolutradio.de/images/stations/229_relax.png",
- "votes": 2469,
- "clickcount": 43,
- "source": "radio-browser",
- "sourceStationUuid": "ae209b3a-d20a-48f2-b303-22d68e385bf4"
- },
{
"id": "ffc0d701-f43b-4232-8be6-f7ff72add8ef",
"name": "Blasmusikradio mit Bernd",
@@ -12859,50 +26715,6 @@
"source": "radio-browser",
"sourceStationUuid": "ffc0d701-f43b-4232-8be6-f7ff72add8ef"
},
- {
- "id": "21ab678c-ff19-4314-9969-165e15b4210d",
- "name": "Deutschlandfunk Nova | DLF | AAC 192k",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "culture",
- "news",
- "public service",
- "information"
- ],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://st03.sslstream.dlf.de/dlf/03/high/aac/stream.aac?aggregator=web",
- "homepage": "https://www.deutschlandfunknova.de/",
- "logoUrl": "https://www.deutschlandfunknova.de/apple-touch-icon.png",
- "votes": 859,
- "clickcount": 42,
- "source": "radio-browser",
- "sourceStationUuid": "21ab678c-ff19-4314-9969-165e15b4210d"
- },
- {
- "id": "40532b34-f6a4-4009-b023-4110b8e7393f",
- "name": "kontrafunk",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "information",
- "news",
- "news talk",
- "talk radio"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://icecast.multhielemedia.de/listen/kontrafunk/radio.mp3",
- "homepage": "https://kontrafunk.radio/de/",
- "logoUrl": "https://kontrafunk.radio/templates/yootheme/cache/af/logo_KF_vogel_mittig_subline-af5b9047.png",
- "votes": 546,
- "clickcount": 41,
- "source": "radio-browser",
- "sourceStationUuid": "40532b34-f6a4-4009-b023-4110b8e7393f"
- },
{
"id": "9e535cb5-1bfd-4f83-9c3f-13571d01a487",
"name": "NDR 2 Hamburg",
@@ -12920,34 +26732,10 @@
"homepage": "https://www.ndr.de/ndr2/",
"logoUrl": "https://www.phonostar.de/images/auto_created/NDR22184x184.png",
"votes": 216,
- "clickcount": 39,
+ "clickcount": 40,
"source": "radio-browser",
"sourceStationUuid": "9e535cb5-1bfd-4f83-9c3f-13571d01a487"
},
- {
- "id": "d7f5a497-40ec-11e9-aa55-52543be04c81",
- "name": "- 0 N - Classic Rock on Radio",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "80er",
- "80s",
- "90er",
- "90s",
- "classic rock",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://0n-classicrock.radionetz.de/0n-classicrock.mp3",
- "homepage": "http://www.0nradio.com/",
- "logoUrl": "https://www.0nradio.com/logos/0n-classic-rock_600x600.jpg",
- "votes": 16440,
- "clickcount": 38,
- "source": "radio-browser",
- "sourceStationUuid": "d7f5a497-40ec-11e9-aa55-52543be04c81"
- },
{
"id": "01683d91-4e1e-4152-b1bc-30f2f1360b98",
"name": "Deutschlandfunk | DLF | AAC 96k",
@@ -12994,6 +26782,30 @@
"source": "radio-browser",
"sourceStationUuid": "54e4b1de-0156-4972-a14e-580111522b44"
},
+ {
+ "id": "d7f5a497-40ec-11e9-aa55-52543be04c81",
+ "name": "- 0 N - Classic Rock on Radio",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "80er",
+ "80s",
+ "90er",
+ "90s",
+ "classic rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://0n-classicrock.radionetz.de/0n-classicrock.mp3",
+ "homepage": "http://www.0nradio.com/",
+ "logoUrl": "https://www.0nradio.com/logos/0n-classic-rock_600x600.jpg",
+ "votes": 16440,
+ "clickcount": 37,
+ "source": "radio-browser",
+ "sourceStationUuid": "d7f5a497-40ec-11e9-aa55-52543be04c81"
+ },
{
"id": "b2cbd1fd-275d-432a-8b20-37dcb3572315",
"name": "1LIVE",
@@ -13017,42 +26829,6 @@
"source": "radio-browser",
"sourceStationUuid": "b2cbd1fd-275d-432a-8b20-37dcb3572315"
},
- {
- "id": "29010f42-faef-4a9e-b15c-3ad1613b45cb",
- "name": "BR-Klassik",
- "country": "Germany",
- "countryCode": "DE",
- "language": null,
- "tags": [
- "classical"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high",
- "homepage": "https://www.br-klassik.de/index.html",
- "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:476e47d76c4bbf78?w=512",
- "votes": 1028,
- "clickcount": 37,
- "source": "radio-browser",
- "sourceStationUuid": "29010f42-faef-4a9e-b15c-3ad1613b45cb"
- },
- {
- "id": "9da83f97-bc76-4782-8a9b-ad2ed5d44fff",
- "name": "hr4",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://dispatcher.rndfnk.com/hr/hr4/live/mp3/high",
- "homepage": "https://www.hr4.de/index.html",
- "logoUrl": "https://www.hr4.de/favicon.png?v=3.85.2",
- "votes": 1617,
- "clickcount": 37,
- "source": "radio-browser",
- "sourceStationUuid": "9da83f97-bc76-4782-8a9b-ad2ed5d44fff"
- },
{
"id": "0e1a47cb-f16d-4169-851a-5985c6133055",
"name": "Deutschlandfunk Nova | DLF | MP3 128k",
@@ -13070,11 +26846,47 @@
"streamUrl": "https://st03.sslstream.dlf.de/dlf/03/128/mp3/stream.mp3?aggregator=web",
"homepage": "https://www.deutschlandfunknova.de/",
"logoUrl": "https://www.deutschlandfunknova.de/apple-touch-icon.png",
- "votes": 1747,
- "clickcount": 36,
+ "votes": 1748,
+ "clickcount": 37,
"source": "radio-browser",
"sourceStationUuid": "0e1a47cb-f16d-4169-851a-5985c6133055"
},
+ {
+ "id": "29010f42-faef-4a9e-b15c-3ad1613b45cb",
+ "name": "BR-Klassik",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://dispatcher.rndfnk.com/br/brklassik/live/mp3/high",
+ "homepage": "https://www.br-klassik.de/index.html",
+ "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:476e47d76c4bbf78?w=512",
+ "votes": 1028,
+ "clickcount": 36,
+ "source": "radio-browser",
+ "sourceStationUuid": "29010f42-faef-4a9e-b15c-3ad1613b45cb"
+ },
+ {
+ "id": "9da83f97-bc76-4782-8a9b-ad2ed5d44fff",
+ "name": "hr4",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://dispatcher.rndfnk.com/hr/hr4/live/mp3/high",
+ "homepage": "https://www.hr4.de/index.html",
+ "logoUrl": "https://www.hr4.de/favicon.png?v=3.85.2",
+ "votes": 1617,
+ "clickcount": 35,
+ "source": "radio-browser",
+ "sourceStationUuid": "9da83f97-bc76-4782-8a9b-ad2ed5d44fff"
+ },
{
"id": "a3a695be-35ba-4a1a-b8e7-d90815f4b942",
"name": "Radio Bollerwagen",
@@ -13088,7 +26900,7 @@
"homepage": "https://player.ffn.de/radioplayer/radio-bollerwagen/",
"logoUrl": "https://www.radio.de/images/broadcasts/80/eb/100349/3/c300.png",
"votes": 2806,
- "clickcount": 36,
+ "clickcount": 35,
"source": "radio-browser",
"sourceStationUuid": "a3a695be-35ba-4a1a-b8e7-d90815f4b942"
},
@@ -13105,7 +26917,7 @@
"homepage": "https://www.hr-inforadio.de/index.html",
"logoUrl": null,
"votes": 2399,
- "clickcount": 35,
+ "clickcount": 34,
"source": "radio-browser",
"sourceStationUuid": "83b7ec82-15dd-4cfe-96b4-db0a27c6b979"
},
@@ -13135,7 +26947,7 @@
"homepage": "https://rm.fm/breakz",
"logoUrl": "https://i.ibb.co/jMmvLjz/TOP100-DJ-CHARTS-RADIO.png",
"votes": 3066,
- "clickcount": 34,
+ "clickcount": 33,
"source": "radio-browser",
"sourceStationUuid": "5bc44bcd-7481-40e1-b503-bb92b936f4cf"
},
@@ -13201,7 +27013,7 @@
"homepage": "https://www.deutschlandfunk.de/",
"logoUrl": "https://www.deutschlandfunk.de/static/img/deutschlandfunk/icons/apple-touch-icon-128x128.png",
"votes": 1916,
- "clickcount": 30,
+ "clickcount": 29,
"source": "radio-browser",
"sourceStationUuid": "97730dcf-857f-4b0a-9f33-c18af303c14b"
},
@@ -13231,65 +27043,9 @@
"homepage": "https://www.breakz.fm/",
"logoUrl": "https://i.ibb.co/b7gfKT6/TOP-100-DJ-CHARTS-GPT.jpg",
"votes": 284,
- "clickcount": 29,
- "source": "radio-browser",
- "sourceStationUuid": "29717342-f376-48a3-93a6-3dae781e6c92"
- },
- {
- "id": "3d4c97c7-e122-4304-b8c8-52336683bda1",
- "name": "WDR 5",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "chanson",
- "culture",
- "current focal points",
- "folk",
- "latin",
- "science",
- "sophisticated underground music",
- "soul"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://wdr-wdr5-live.icecastssl.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3",
- "homepage": "https://www1.wdr.de/radio/wdr5/index.html",
- "logoUrl": "https://www1.wdr.de/resources/img/wdr/logo/epgmodule/wdr5_logo_claim.svg",
- "votes": 403,
- "clickcount": 29,
- "source": "radio-browser",
- "sourceStationUuid": "3d4c97c7-e122-4304-b8c8-52336683bda1"
- },
- {
- "id": "d271b4e8-a298-4862-9f4b-025c110cedd9",
- "name": "IBIZA CHILLOUT LOUNGE - Ambient, Deep House, Balearic, Smooth Jazz, Acoustic, Chill House, Lo-Fi, Chillwave, Dream Pop, Electro, Tropical House, Sunset Chill, Café del Mar, Soft Electronica, Slow House, Ambient, Relax, Easy Listening, Beach Vibes, Summer",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "ambient",
- "balearic",
- "balearic house",
- "beach",
- "club dance",
- "dance",
- "deep house",
- "house",
- "lounge",
- "pool beach bar",
- "relax",
- "smooth"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://0nlineradio.radioho.st/lounge-ibiza-chillout-lounge?ref=rb26",
- "homepage": "https://0nlineradio.com/",
- "logoUrl": "https://i.ibb.co/jPkfdprq/rb-Ibiza.png",
- "votes": 149,
"clickcount": 28,
"source": "radio-browser",
- "sourceStationUuid": "d271b4e8-a298-4862-9f4b-025c110cedd9"
+ "sourceStationUuid": "29717342-f376-48a3-93a6-3dae781e6c92"
},
{
"id": "1aa5a707-c24c-4c5d-abcc-6f9b7a8f2f2e",
@@ -13322,27 +27078,60 @@
"sourceStationUuid": "1aa5a707-c24c-4c5d-abcc-6f9b7a8f2f2e"
},
{
- "id": "0fd40b7b-1ce5-4b4e-ae86-7a6d608f1b0e",
- "name": "SWR dasding",
+ "id": "d271b4e8-a298-4862-9f4b-025c110cedd9",
+ "name": "IBIZA CHILLOUT LOUNGE - Ambient, Deep House, Balearic, Smooth Jazz, Acoustic, Chill House, Lo-Fi, Chillwave, Dream Pop, Electro, Tropical House, Sunset Chill, Café del Mar, Soft Electronica, Slow House, Ambient, Relax, Easy Listening, Beach Vibes, Summer",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "english,german",
+ "tags": [
+ "ambient",
+ "balearic",
+ "balearic house",
+ "beach",
+ "club dance",
+ "dance",
+ "deep house",
+ "house",
+ "lounge",
+ "pool beach bar",
+ "relax",
+ "smooth"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://0nlineradio.radioho.st/lounge-ibiza-chillout-lounge?ref=rb26",
+ "homepage": "https://0nlineradio.com/",
+ "logoUrl": "https://i.ibb.co/jPkfdprq/rb-Ibiza.png",
+ "votes": 149,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "d271b4e8-a298-4862-9f4b-025c110cedd9"
+ },
+ {
+ "id": "3d4c97c7-e122-4304-b8c8-52336683bda1",
+ "name": "WDR 5",
"country": "Germany",
"countryCode": "DE",
"language": "german",
"tags": [
- "ard",
- "pop",
- "rock",
- "youth",
- "öffentlich-rechtlich"
+ "chanson",
+ "culture",
+ "current focal points",
+ "folk",
+ "latin",
+ "science",
+ "sophisticated underground music",
+ "soul"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://liveradio.swr.de/d9zadj3/dasding/",
- "homepage": "https://dasding.de/",
- "logoUrl": "https://dasding.de/assets/dasding/apple-touch-icon-120x120.png",
- "votes": 587,
- "clickcount": 28,
+ "streamUrl": "https://wdr-wdr5-live.icecastssl.wdr.de/wdr/wdr5/live/mp3/128/stream.mp3",
+ "homepage": "https://www1.wdr.de/radio/wdr5/index.html",
+ "logoUrl": "https://www1.wdr.de/resources/img/wdr/logo/epgmodule/wdr5_logo_claim.svg",
+ "votes": 403,
+ "clickcount": 27,
"source": "radio-browser",
- "sourceStationUuid": "0fd40b7b-1ce5-4b4e-ae86-7a6d608f1b0e"
+ "sourceStationUuid": "3d4c97c7-e122-4304-b8c8-52336683bda1"
},
{
"id": "be9dcb42-f365-11e8-a471-52543be04c81",
@@ -13362,7 +27151,7 @@
"homepage": "http://www.0nradio.com/",
"logoUrl": "https://www.0nradio.com/logos/0n-chillout_600x600.jpg",
"votes": 5021,
- "clickcount": 27,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "be9dcb42-f365-11e8-a471-52543be04c81"
},
@@ -13392,7 +27181,7 @@
"homepage": "https://www.breakz.fm/",
"logoUrl": "https://i.ibb.co/m5695X1x/T100-BRR-CH.png",
"votes": 62,
- "clickcount": 27,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "d06dd5cb-97f4-48f6-8146-ec89e7b94cc0"
},
@@ -13420,10 +27209,33 @@
"homepage": "https://plus.rm.fm/",
"logoUrl": "https://i.ibb.co/LDb4Ctnb/COFFEE-LOUNGE.png",
"votes": 107,
- "clickcount": 27,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "70094073-a1a6-4c73-b871-6b25dddee813"
},
+ {
+ "id": "0fd40b7b-1ce5-4b4e-ae86-7a6d608f1b0e",
+ "name": "SWR dasding",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "ard",
+ "pop",
+ "rock",
+ "youth",
+ "öffentlich-rechtlich"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://liveradio.swr.de/d9zadj3/dasding/",
+ "homepage": "https://dasding.de/",
+ "logoUrl": "https://dasding.de/assets/dasding/apple-touch-icon-120x120.png",
+ "votes": 587,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "0fd40b7b-1ce5-4b4e-ae86-7a6d608f1b0e"
+ },
{
"id": "25ff1b4c-ffcb-4572-a561-9347e0e58c75",
"name": "__LOUNGE__ by rautemusik (rm.fm)",
@@ -13444,10 +27256,27 @@
"homepage": "https://www.rm.fm/lounge",
"logoUrl": "https://www.rm.fm/favicon.ico",
"votes": 1047,
- "clickcount": 26,
+ "clickcount": 25,
"source": "radio-browser",
"sourceStationUuid": "25ff1b4c-ffcb-4572-a561-9347e0e58c75"
},
+ {
+ "id": "0cd06e2c-74b2-4724-9df5-6642a641f749",
+ "name": "DASDING",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://liveradio.swr.de/d245tgd/dasding/",
+ "homepage": "https://dasding.de/",
+ "logoUrl": null,
+ "votes": 1058,
+ "clickcount": 25,
+ "source": "radio-browser",
+ "sourceStationUuid": "0cd06e2c-74b2-4724-9df5-6642a641f749"
+ },
{
"id": "80afd95c-3266-4907-9178-ebdd788d946c",
"name": "* TOP 100 CLUB CHARTS * | DJ TOP 100 | UP-TO-DATE | DJ CHARTS - CLUBBING HITS - - DEEP HOUSE - LOUNGE - DANCE - TECHNO - RAVE - EDM - HOUSE - TECHHOUSE - REMIX - TRANCE - HARDSTYLE - MINIMAL - IBIZA - CHILLOUT - LOUNGE - URBAN - HIP HOP - RNB - SUMMER IBIZA HOUSE - HARDSTYLE & HARDCORE - REMIX & MIXTAPE | FESTIVAL RADIO",
@@ -13474,83 +27303,33 @@
"homepage": "https://rm.fm/breakz/team",
"logoUrl": "https://i.ibb.co/TM3dkqqQ/top-100-CLUB-CHARTS-26.png",
"votes": 44,
- "clickcount": 25,
+ "clickcount": 24,
"source": "radio-browser",
"sourceStationUuid": "80afd95c-3266-4907-9178-ebdd788d946c"
},
{
- "id": "0cd06e2c-74b2-4724-9df5-6642a641f749",
- "name": "DASDING",
+ "id": "ca2d0aa2-6fc8-4761-beb6-ce692a4a9bf5",
+ "name": "Best Of Rock.FM Alternative Rock",
"country": "Germany",
"countryCode": "DE",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 96,
- "streamUrl": "https://liveradio.swr.de/d245tgd/dasding/",
- "homepage": "https://dasding.de/",
- "logoUrl": null,
- "votes": 1058,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "0cd06e2c-74b2-4724-9df5-6642a641f749"
- },
- {
- "id": "8f1e8acf-2ce6-4542-a423-bc29ea514e4a",
- "name": "__TRANCE__ by rautemusik (rm.fm)",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
+ "language": "german",
"tags": [
- "electro",
- "electro house",
- "electronic",
- "hits",
- "progressive psytrance",
- "progressive trance",
- "psytrance",
- "trance",
- "vocal trance"
+ "alternative metal",
+ "alternative rock",
+ "grunge",
+ "indie rock",
+ "punkrock",
+ "rock"
],
"codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://trance-high.rautemusik.fm/?ref=radiobrowser",
- "homepage": "https://www.rm.fm/trance",
- "logoUrl": "https://www.rm.fm/favicon.ico",
- "votes": 5581,
+ "bitrate": 0,
+ "streamUrl": "https://bestofrockfm.stream.vip/altrock/mp3-256/bestofrock.fm/",
+ "homepage": "https://www.best-of-rock.fm/",
+ "logoUrl": "https://www.best-of-rock.fm/favicons/apple-touch-icon.png",
+ "votes": 7530,
"clickcount": 24,
"source": "radio-browser",
- "sourceStationUuid": "8f1e8acf-2ce6-4542-a423-bc29ea514e4a"
- },
- {
- "id": "e94afa1a-0f96-4a57-8b97-112bb5cd348d",
- "name": "# Aktuelle HITS - 24H NON-STOP MUSIC - DANCE & DJ MIX RADIO @ TikTok Hits, Ibiza House, Sunset Lounge, Melodic Music, EDM, Deep House, Dance Music, Techno & Hypertechno, Rave Charts, Top 40 Charts, Latin, Reggaeton Music, Moombahton, Urban Hits, HipHop, Party & Clubbing Radio, Trending Chartmusic, R&B, Urban, Mixtape - & LIVE DJ SET",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "#",
- "#charts",
- "#dj",
- "#hits",
- "#mixtapes",
- "00s",
- "90s",
- "adult contemporary",
- "charts",
- "chill house",
- "chillout",
- "club"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://breakz-2012-high.rautemusik.fm/?ref=radiobrowser-akthits",
- "homepage": "https://rm.fm/breakz/team",
- "logoUrl": "https://i.ibb.co/3mtCKLC/aktHits.jpg",
- "votes": 1659,
- "clickcount": 24,
- "source": "radio-browser",
- "sourceStationUuid": "e94afa1a-0f96-4a57-8b97-112bb5cd348d"
+ "sourceStationUuid": "ca2d0aa2-6fc8-4761-beb6-ce692a4a9bf5"
},
{
"id": "0b6cc5a0-f5a0-4a62-b128-e48153fd864c",
@@ -13593,6 +27372,55 @@
"source": "radio-browser",
"sourceStationUuid": "8d5e1ce1-0625-469f-920e-8fee0f3da72e"
},
+ {
+ "id": "8f1e8acf-2ce6-4542-a423-bc29ea514e4a",
+ "name": "__TRANCE__ by rautemusik (rm.fm)",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "english,german",
+ "tags": [
+ "electro",
+ "electro house",
+ "electronic",
+ "hits",
+ "progressive psytrance",
+ "progressive trance",
+ "psytrance",
+ "trance",
+ "vocal trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://trance-high.rautemusik.fm/?ref=radiobrowser",
+ "homepage": "https://www.rm.fm/trance",
+ "logoUrl": "https://www.rm.fm/favicon.ico",
+ "votes": 5581,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f1e8acf-2ce6-4542-a423-bc29ea514e4a"
+ },
+ {
+ "id": "eac50ec2-a5ec-4600-a863-3116f40bcc41",
+ "name": "N-JOY",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "music",
+ "pop",
+ "talk",
+ "youth"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.ndr.de/ndr/njoy/live/mp3/128/stream.mp3",
+ "homepage": "https://www.n-joy.de/",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/NJOY3184x184.png",
+ "votes": 109,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "eac50ec2-a5ec-4600-a863-3116f40bcc41"
+ },
{
"id": "7213ce93-3ded-4b0e-ab89-ef789d066e23",
"name": "* 70s || Oldies, 70er, Disco, Funk, Soul, Classic Pop, Retro, Kultsongs, Evergreens, Vinyl Vibes, Groovy, Feel Good, Nostalgie, Zeitlos, Charts",
@@ -13619,85 +27447,69 @@
"homepage": "https://plus.rm.fm/",
"logoUrl": "https://i.ibb.co/B2YbXkQG/70s.png",
"votes": 39,
- "clickcount": 23,
+ "clickcount": 22,
"source": "radio-browser",
"sourceStationUuid": "7213ce93-3ded-4b0e-ab89-ef789d066e23"
},
{
- "id": "4f30d107-82f3-4e4e-99e4-44e05adcb2e9",
- "name": "0R - PIANO JAZZ LOUNGE || Jazz, Piano, Lounge, Smooth, Chill, Relax, Soft, Acoustic, Instrumental, Evening, Romantic, Background, Coffee, Mellow, Elegant",
+ "id": "e94afa1a-0f96-4a57-8b97-112bb5cd348d",
+ "name": "# Aktuelle HITS - 24H NON-STOP MUSIC - DANCE & DJ MIX RADIO @ TikTok Hits, Ibiza House, Sunset Lounge, Melodic Music, EDM, Deep House, Dance Music, Techno & Hypertechno, Rave Charts, Top 40 Charts, Latin, Reggaeton Music, Moombahton, Urban Hits, HipHop, Party & Clubbing Radio, Trending Chartmusic, R&B, Urban, Mixtape - & LIVE DJ SET",
"country": "Germany",
"countryCode": "DE",
"language": "english,german",
"tags": [
- "acoustic",
- "ambient",
- "ambient and relaxation music",
- "ambient lounge",
- "classical piano",
- "coffee",
- "easy listening",
- "jazz",
- "jazz lounge",
- "lounge",
- "piano",
- "restaurant"
+ "#",
+ "#charts",
+ "#dj",
+ "#hits",
+ "#mixtapes",
+ "00s",
+ "90s",
+ "adult contemporary",
+ "charts",
+ "chill house",
+ "chillout",
+ "club"
],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://0nlineradio.radioho.st/lounge-piano-jazz-bar?ref=radio-browser26",
+ "streamUrl": "https://breakz-2012-high.rautemusik.fm/?ref=radiobrowser-akthits",
+ "homepage": "https://rm.fm/breakz/team",
+ "logoUrl": "https://i.ibb.co/3mtCKLC/aktHits.jpg",
+ "votes": 1659,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "e94afa1a-0f96-4a57-8b97-112bb5cd348d"
+ },
+ {
+ "id": "b828a184-3488-48f2-ab60-38a5e435a9fe",
+ "name": "0R - NATURE RELAX || Nature Sounds, Sleep, Relax, Calm, Forest, Ocean, Rain, Ambient, Meditation, Peaceful, Spa, Yoga, Gentle, Soothing, Background, Sleep",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "english,german",
+ "tags": [
+ "alternative",
+ "background",
+ "chillout",
+ "easy listening",
+ "lounge",
+ "natura",
+ "nature",
+ "rainforest",
+ "relax",
+ "sleep",
+ "smooth",
+ "sounds of nature"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://0nlineradio.radioho.st/lounge-nature-sounds?ref=radio-browser26",
"homepage": "https://plus.rm.fm/",
- "logoUrl": "https://i.ibb.co/MkhwYrRM/Piano-Jazz-Lounge.png",
- "votes": 108,
- "clickcount": 23,
+ "logoUrl": "https://i.ibb.co/NgtLbFs6/Nature-Relax-Sound.png",
+ "votes": 80,
+ "clickcount": 22,
"source": "radio-browser",
- "sourceStationUuid": "4f30d107-82f3-4e4e-99e4-44e05adcb2e9"
- },
- {
- "id": "ca2d0aa2-6fc8-4761-beb6-ce692a4a9bf5",
- "name": "Best Of Rock.FM Alternative Rock",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "alternative metal",
- "alternative rock",
- "grunge",
- "indie rock",
- "punkrock",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://bestofrockfm.stream.vip/altrock/mp3-256/bestofrock.fm/",
- "homepage": "https://www.best-of-rock.fm/",
- "logoUrl": "https://www.best-of-rock.fm/favicons/apple-touch-icon.png",
- "votes": 7530,
- "clickcount": 23,
- "source": "radio-browser",
- "sourceStationUuid": "ca2d0aa2-6fc8-4761-beb6-ce692a4a9bf5"
- },
- {
- "id": "eac50ec2-a5ec-4600-a863-3116f40bcc41",
- "name": "N-JOY",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "music",
- "pop",
- "talk",
- "youth"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.ndr.de/ndr/njoy/live/mp3/128/stream.mp3",
- "homepage": "https://www.n-joy.de/",
- "logoUrl": "https://www.phonostar.de/images/auto_created/NJOY3184x184.png",
- "votes": 109,
- "clickcount": 23,
- "source": "radio-browser",
- "sourceStationUuid": "eac50ec2-a5ec-4600-a863-3116f40bcc41"
+ "sourceStationUuid": "b828a184-3488-48f2-ab60-38a5e435a9fe"
},
{
"id": "6ebbea93-0ba5-441b-8fbc-51c586d361e3",
@@ -13738,25 +27550,24 @@
"sourceStationUuid": "5cfa5b31-87af-4492-a8fd-507db12dd519"
},
{
- "id": "8f37c5fe-76b0-435f-9701-b44b6904106b",
- "name": "NDR Schlager",
+ "id": "b61115e1-d005-4bcf-b64d-540b40f504a8",
+ "name": "WDR 2 Ruhrgebiet",
"country": "Germany",
"countryCode": "DE",
"language": "german",
"tags": [
- "music",
- "pop",
- "schlager"
+ "adult contemporary",
+ "news talk music"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://icecast.ndr.de/ndr/ndrschlager/live/mp3/128/stream.mp3?1728425971529&aggregator=web",
- "homepage": "https://www.ndr.de/ndrschlager",
- "logoUrl": "https://www.phonostar.de/images/auto_created/NDR_Schlager184x184.png",
- "votes": 348,
+ "streamUrl": "https://wdr-wdr2-ruhrgebiet.icecastssl.wdr.de/wdr/wdr2/ruhrgebiet/mp3/128/stream.mp3",
+ "homepage": "https://www1.wdr.de/radio/wdr2/wdrzwei-startseite-102.html",
+ "logoUrl": "https://www1.wdr.de/resources-v5.139.1/img/favicon/apple-touch-icon.png",
+ "votes": 512,
"clickcount": 22,
"source": "radio-browser",
- "sourceStationUuid": "8f37c5fe-76b0-435f-9701-b44b6904106b"
+ "sourceStationUuid": "b61115e1-d005-4bcf-b64d-540b40f504a8"
},
{
"id": "75d2c7f0-5499-4555-b738-50fc65d064a4",
@@ -13785,90 +27596,76 @@
"sourceStationUuid": "75d2c7f0-5499-4555-b738-50fc65d064a4"
},
{
- "id": "17028094-01a5-49f0-b35a-d792b6ea7da9",
- "name": "__WACKENRADIO__ by rautemusik (rm.fm)",
+ "id": "ce3e9d01-3614-45f2-ae25-93f944005eaa",
+ "name": "0R - 90s || 90s Pop, 90s Hits, Eurodance, Hip Hop, R&B, Grunge, Alternative, Techno, Trance, Dance, Chill, Boyband, Girlband, Pop Rock, Nostalgic",
"country": "Germany",
"countryCode": "DE",
"language": "english,german",
"tags": [
- "alternative rock",
- "classic rock",
- "hard rock",
- "heavy metal; wacken; radio bob",
- "pop rock",
- "punk",
- "rock",
- "wacken",
- "wacken open air"
+ "1990s",
+ "1990s hits",
+ "1990s pop music",
+ "90's",
+ "90er",
+ "90er hitmix",
+ "90s",
+ "dance",
+ "eurodance",
+ "oldies",
+ "pop",
+ "top hits"
],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://wackenradio-high.rautemusik.fm/?ref=radiobrowser",
- "homepage": "https://www.rm.fm/wacken",
- "logoUrl": "https://i.ibb.co/rGpB2Bx/wackenradio.jpg",
- "votes": 522,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "17028094-01a5-49f0-b35a-d792b6ea7da9"
- },
- {
- "id": "1e11d73a-7eed-40ac-90a2-2ac0c4205007",
- "name": "- 100 % - HANDSUP <3 - Non-stop 140 BPM",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "140bpm",
- "dj",
- "dj sets",
- "hands up",
- "handsup",
- "handsup! rave oldscool 90s 00s 10s trance techno",
- "hardstyle",
- "hardstyle/handsup/edm",
- "radio",
- "rave",
- "techno"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://club-high.rautemusik.fm/?ref=radiobrowser-100-handsup",
- "homepage": "https://rm.fm/club",
- "logoUrl": "https://i.ibb.co/X5hMzFX/100-handsup.png",
- "votes": 122,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "1e11d73a-7eed-40ac-90a2-2ac0c4205007"
- },
- {
- "id": "b828a184-3488-48f2-ab60-38a5e435a9fe",
- "name": "0R - NATURE RELAX || Nature Sounds, Sleep, Relax, Calm, Forest, Ocean, Rain, Ambient, Meditation, Peaceful, Spa, Yoga, Gentle, Soothing, Background, Sleep",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "alternative",
- "background",
- "chillout",
- "easy listening",
- "lounge",
- "natura",
- "nature",
- "rainforest",
- "relax",
- "sleep",
- "smooth",
- "sounds of nature"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://0nlineradio.radioho.st/lounge-nature-sounds?ref=radio-browser26",
+ "streamUrl": "https://0nlineradio.radioho.st/0r-90s?ref=radio-browser26",
"homepage": "https://plus.rm.fm/",
- "logoUrl": "https://i.ibb.co/NgtLbFs6/Nature-Relax-Sound.png",
- "votes": 80,
+ "logoUrl": "https://i.ibb.co/S4y9mSR9/90s.png",
+ "votes": 29,
"clickcount": 21,
"source": "radio-browser",
- "sourceStationUuid": "b828a184-3488-48f2-ab60-38a5e435a9fe"
+ "sourceStationUuid": "ce3e9d01-3614-45f2-ae25-93f944005eaa"
+ },
+ {
+ "id": "1e2095c0-4845-45c3-bc61-d2c7fc1ee52a",
+ "name": "Bayern 1 Schwaben",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": null,
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid",
+ "homepage": "https://www.br.de/radio/bayern1/index.html",
+ "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:b366004f6196d70c?w=512",
+ "votes": 172,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e2095c0-4845-45c3-bc61-d2c7fc1ee52a"
+ },
+ {
+ "id": "0f89b1e4-ea1d-47e1-906b-7581691b6849",
+ "name": "bigFM LoFi Focus",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "chillout",
+ "hip-hop",
+ "lounge",
+ "relax",
+ "smooth jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.bigfm.de/lofifocus/mp3-128/radiobrowser",
+ "homepage": "https://www.bigfm.de/",
+ "logoUrl": "https://image.atsw.de/atsw/production/2022-12/LoFi%20Focus_1600x1600Px.jpg",
+ "votes": 372,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f89b1e4-ea1d-47e1-906b-7581691b6849"
},
{
"id": "ac5f83fc-61b6-4a29-8dbc-b9e880ff08c3",
@@ -13884,7 +27681,7 @@
"streamUrl": "https://dispatcher.rndfnk.com/br/brschlager/live/mp3/mid",
"homepage": "https://www.br.de/radio/br-schlager/index.html",
"logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:9091a20989ecaad5?w=512",
- "votes": 225,
+ "votes": 226,
"clickcount": 21,
"source": "radio-browser",
"sourceStationUuid": "ac5f83fc-61b6-4a29-8dbc-b9e880ff08c3"
@@ -13982,6 +27779,143 @@
"source": "radio-browser",
"sourceStationUuid": "decf0c5d-aec6-11e9-88f4-52543be04c81"
},
+ {
+ "id": "8f37c5fe-76b0-435f-9701-b44b6904106b",
+ "name": "NDR Schlager",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "music",
+ "pop",
+ "schlager"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.ndr.de/ndr/ndrschlager/live/mp3/128/stream.mp3?1728425971529&aggregator=web",
+ "homepage": "https://www.ndr.de/ndrschlager",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/NDR_Schlager184x184.png",
+ "votes": 348,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f37c5fe-76b0-435f-9701-b44b6904106b"
+ },
+ {
+ "id": "5dc97c2f-566f-47df-8236-021db5906dde",
+ "name": "0nlineradio BACH",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "english,german",
+ "tags": [
+ "bach",
+ "classic",
+ "classical",
+ "klassik",
+ "modern classical",
+ "symphonic",
+ "symphony"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.0nlineradio.com/bach?ref=radiobrowser",
+ "homepage": "https://0nlineradio.com/",
+ "logoUrl": "https://i.ibb.co/n1CQpDf/BACH-NEW.jpg",
+ "votes": 1136,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "5dc97c2f-566f-47df-8236-021db5906dde"
+ },
+ {
+ "id": "4f30d107-82f3-4e4e-99e4-44e05adcb2e9",
+ "name": "0R - PIANO JAZZ LOUNGE || Jazz, Piano, Lounge, Smooth, Chill, Relax, Soft, Acoustic, Instrumental, Evening, Romantic, Background, Coffee, Mellow, Elegant",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "english,german",
+ "tags": [
+ "acoustic",
+ "ambient",
+ "ambient and relaxation music",
+ "ambient lounge",
+ "classical piano",
+ "coffee",
+ "easy listening",
+ "jazz",
+ "jazz lounge",
+ "lounge",
+ "piano",
+ "restaurant"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://0nlineradio.radioho.st/lounge-piano-jazz-bar?ref=radio-browser26",
+ "homepage": "https://plus.rm.fm/",
+ "logoUrl": "https://i.ibb.co/MkhwYrRM/Piano-Jazz-Lounge.png",
+ "votes": 108,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "4f30d107-82f3-4e4e-99e4-44e05adcb2e9"
+ },
+ {
+ "id": "0aa252ff-612a-48e9-841b-b3f561dc1c47",
+ "name": "Bremen Eins",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.radiobremen.de/rb/bremeneins/live/mp3/128/stream.mp3",
+ "homepage": "https://www.bremeneins.de/",
+ "logoUrl": "https://www.bremeneins.de/static/img/favicons/apple-touch-icon-180.png?v=4",
+ "votes": 131,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "0aa252ff-612a-48e9-841b-b3f561dc1c47"
+ },
+ {
+ "id": "54e7f42e-7c5f-4124-aed8-ca9266022c20",
+ "name": "SWR3 - 96K AAC",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveradio.swr.de/sw331ch/swr3/play.aac",
+ "homepage": "http://swr3.de/",
+ "logoUrl": "https://www.swr3.de/assets/swr3/icons/favicon.ico",
+ "votes": 727,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "54e7f42e-7c5f-4124-aed8-ca9266022c20"
+ },
+ {
+ "id": "17028094-01a5-49f0-b35a-d792b6ea7da9",
+ "name": "__WACKENRADIO__ by rautemusik (rm.fm)",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "english,german",
+ "tags": [
+ "alternative rock",
+ "classic rock",
+ "hard rock",
+ "heavy metal; wacken; radio bob",
+ "pop rock",
+ "punk",
+ "rock",
+ "wacken",
+ "wacken open air"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://wackenradio-high.rautemusik.fm/?ref=radiobrowser",
+ "homepage": "https://www.rm.fm/wacken",
+ "logoUrl": "https://i.ibb.co/rGpB2Bx/wackenradio.jpg",
+ "votes": 522,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "17028094-01a5-49f0-b35a-d792b6ea7da9"
+ },
{
"id": "6f4b6359-24af-411b-add3-402761ec7557",
"name": "* COUNTRY || Country Pop, Country Rock, Nashville, Americana, Folk, Southern Rock, Roadtrip, Storytelling, Acoustic, Feel Good, Heartland, Modern Country, Classic Country, Chill, Roots",
@@ -14008,7 +27942,7 @@
"homepage": "https://plus.rm.fm/",
"logoUrl": "https://i.ibb.co/GyTyFSC/Country.png",
"votes": 35,
- "clickcount": 20,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "6f4b6359-24af-411b-add3-402761ec7557"
},
@@ -14038,7 +27972,7 @@
"homepage": "https://www.breakz.fm/",
"logoUrl": "https://i.ibb.co/Gc5TMjP/Top-200-Dj-Charts-breakz-logo.jpg",
"votes": 715,
- "clickcount": 20,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "02734cfa-5c5b-46f2-85c6-a5a654be7a24"
},
@@ -14067,118 +28001,91 @@
"homepage": "https://plus.rm.fm/",
"logoUrl": "https://i.ibb.co/whsdTsct/MUSIC-FOR-SLEEP.png",
"votes": 83,
- "clickcount": 20,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "3f4be720-c996-439f-be3b-cce594ea2852"
},
{
- "id": "1e2095c0-4845-45c3-bc61-d2c7fc1ee52a",
- "name": "Bayern 1 Schwaben",
+ "id": "10990f82-6f5d-4c30-92da-9819d2c1dff5",
+ "name": "DELUXE MUSIC",
"country": "Germany",
"countryCode": "DE",
- "language": null,
+ "language": "english",
"tags": [
- "oldies"
+ "music"
],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://dispatcher.rndfnk.com/br/br1/schwaben/mp3/mid",
- "homepage": "https://www.br.de/radio/bayern1/index.html",
- "logoUrl": "https://api.ardmediathek.de/image-service/images/urn:ard:image:b366004f6196d70c?w=512",
- "votes": 172,
- "clickcount": 20,
- "source": "radio-browser",
- "sourceStationUuid": "1e2095c0-4845-45c3-bc61-d2c7fc1ee52a"
- },
- {
- "id": "0f89b1e4-ea1d-47e1-906b-7581691b6849",
- "name": "bigFM LoFi Focus",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "chillout",
- "hip-hop",
- "lounge",
- "relax",
- "smooth jazz"
- ],
- "codec": "MP3",
+ "codec": "AAC",
"bitrate": 0,
- "streamUrl": "https://stream.bigfm.de/lofifocus/mp3-128/radiobrowser",
- "homepage": "https://www.bigfm.de/",
- "logoUrl": "https://image.atsw.de/atsw/production/2022-12/LoFi%20Focus_1600x1600Px.jpg",
- "votes": 372,
- "clickcount": 20,
+ "streamUrl": "https://audiostreams.deluxemusic.tv/music/aac-64/website?=&&___cb=851841399610416",
+ "homepage": "https://deluxemusic.de/",
+ "logoUrl": "https://deluxemusic.de/wp-content/uploads/sites/4/2019/11/Deluxe-Musik-logo.png",
+ "votes": 151,
+ "clickcount": 19,
"source": "radio-browser",
- "sourceStationUuid": "0f89b1e4-ea1d-47e1-906b-7581691b6849"
+ "sourceStationUuid": "10990f82-6f5d-4c30-92da-9819d2c1dff5"
},
{
- "id": "54e7f42e-7c5f-4124-aed8-ca9266022c20",
- "name": "SWR3 - 96K AAC",
+ "id": "62ee0f9a-5ad0-42cd-9c37-d16de34043ea",
+ "name": "Radio Bollerwagen",
"country": "Germany",
"countryCode": "DE",
"language": "german",
"tags": [],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://liveradio.swr.de/sw331ch/swr3/play.aac",
- "homepage": "http://swr3.de/",
- "logoUrl": "https://www.swr3.de/assets/swr3/icons/favicon.ico",
- "votes": 727,
- "clickcount": 20,
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.ffn.de/radiobollerwagen/mp3-192/stream.mp3",
+ "homepage": "https://radiobollerwagen.de/",
+ "logoUrl": "https://radiobollerwagen.de/typo3conf/ext/ffn_radiosender_site/Resources/Public/Icons/Favicons/RadioBollerwagen/cropped-radio-bollerwagen-favicon-180x180.png",
+ "votes": 41,
+ "clickcount": 19,
"source": "radio-browser",
- "sourceStationUuid": "54e7f42e-7c5f-4124-aed8-ca9266022c20"
+ "sourceStationUuid": "62ee0f9a-5ad0-42cd-9c37-d16de34043ea"
},
{
- "id": "b61115e1-d005-4bcf-b64d-540b40f504a8",
- "name": "WDR 2 Ruhrgebiet",
+ "id": "26b0e463-5912-4758-86f7-d93749ea93b1",
+ "name": "YOU FM (mp3/high)",
"country": "Germany",
"countryCode": "DE",
"language": "german",
- "tags": [
- "adult contemporary",
- "news talk music"
- ],
+ "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://wdr-wdr2-ruhrgebiet.icecastssl.wdr.de/wdr/wdr2/ruhrgebiet/mp3/128/stream.mp3",
- "homepage": "https://www1.wdr.de/radio/wdr2/wdrzwei-startseite-102.html",
- "logoUrl": "https://www1.wdr.de/resources-v5.139.1/img/favicon/apple-touch-icon.png",
- "votes": 512,
- "clickcount": 20,
+ "streamUrl": "https://dispatcher.rndfnk.com/hr/youfm/live/mp3/high",
+ "homepage": "https://www.you-fm.de/",
+ "logoUrl": "https://www.you-fm.de/favicon.png?v=3.85.2",
+ "votes": 871,
+ "clickcount": 19,
"source": "radio-browser",
- "sourceStationUuid": "b61115e1-d005-4bcf-b64d-540b40f504a8"
+ "sourceStationUuid": "26b0e463-5912-4758-86f7-d93749ea93b1"
},
{
- "id": "f3187b78-1dfb-42c7-ba27-bdba34cbdf94",
- "name": "## CLUB CHARTS - TOP 100 CLUB CHARTS - DJ CHARTS - CLUBBING HITS - DANCE - TECHNO - RAVE - EDM - HOUSE - TECHHOUSE - REMIX - TRANCE - HARDSTYLE - MINIMAL - IBIZA - CHILLOUT - URBAN - HIP HOP - RNB - LATIN RADIO",
+ "id": "1e11d73a-7eed-40ac-90a2-2ac0c4205007",
+ "name": "- 100 % - HANDSUP <3 - Non-stop 140 BPM",
"country": "Germany",
"countryCode": "DE",
"language": "english,german",
"tags": [
- "#",
- "#edm",
- "90s",
- "adult contemporary",
- "charts",
- "chill out",
- "chillout",
- "club",
- "club dance",
- "club dance electronic house trance",
- "club house",
- "clubbing"
+ "140bpm",
+ "dj",
+ "dj sets",
+ "hands up",
+ "handsup",
+ "handsup! rave oldscool 90s 00s 10s trance techno",
+ "hardstyle",
+ "hardstyle/handsup/edm",
+ "radio",
+ "rave",
+ "techno"
],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://breakz-2012-high.rautemusik.fm/?ref=rb-clubcharts26",
- "homepage": "https://breakz.fm/trackliste/",
- "logoUrl": "https://i.ibb.co/1FNrZ5v/CLUB-CHARTS-2026.jpg",
- "votes": 22,
- "clickcount": 19,
+ "streamUrl": "https://club-high.rautemusik.fm/?ref=radiobrowser-100-handsup",
+ "homepage": "https://rm.fm/club",
+ "logoUrl": "https://i.ibb.co/X5hMzFX/100-handsup.png",
+ "votes": 122,
+ "clickcount": 18,
"source": "radio-browser",
- "sourceStationUuid": "f3187b78-1dfb-42c7-ba27-bdba34cbdf94"
+ "sourceStationUuid": "1e11d73a-7eed-40ac-90a2-2ac0c4205007"
},
{
"id": "652a2fa1-d3fe-4724-a3eb-3d6b7fb1e687",
@@ -14203,40 +28110,10 @@
"homepage": "https://0nlineradio.com/",
"logoUrl": "https://i.ibb.co/hFC0q0h8/80s-Rock.png",
"votes": 62,
- "clickcount": 19,
+ "clickcount": 18,
"source": "radio-browser",
"sourceStationUuid": "652a2fa1-d3fe-4724-a3eb-3d6b7fb1e687"
},
- {
- "id": "ce3e9d01-3614-45f2-ae25-93f944005eaa",
- "name": "0R - 90s || 90s Pop, 90s Hits, Eurodance, Hip Hop, R&B, Grunge, Alternative, Techno, Trance, Dance, Chill, Boyband, Girlband, Pop Rock, Nostalgic",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "1990s",
- "1990s hits",
- "1990s pop music",
- "90's",
- "90er",
- "90er hitmix",
- "90s",
- "dance",
- "eurodance",
- "oldies",
- "pop",
- "top hits"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://0nlineradio.radioho.st/0r-90s?ref=radio-browser26",
- "homepage": "https://plus.rm.fm/",
- "logoUrl": "https://i.ibb.co/S4y9mSR9/90s.png",
- "votes": 29,
- "clickcount": 19,
- "source": "radio-browser",
- "sourceStationUuid": "ce3e9d01-3614-45f2-ae25-93f944005eaa"
- },
{
"id": "bb3117fb-0513-4251-9135-ba9cdc730d41",
"name": "90s90s Trance",
@@ -14252,154 +28129,10 @@
"homepage": "https://www.90s90s.de/radios/trance",
"logoUrl": null,
"votes": 505,
- "clickcount": 19,
+ "clickcount": 18,
"source": "radio-browser",
"sourceStationUuid": "bb3117fb-0513-4251-9135-ba9cdc730d41"
},
- {
- "id": "0aa252ff-612a-48e9-841b-b3f561dc1c47",
- "name": "Bremen Eins",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.radiobremen.de/rb/bremeneins/live/mp3/128/stream.mp3",
- "homepage": "https://www.bremeneins.de/",
- "logoUrl": "https://www.bremeneins.de/static/img/favicons/apple-touch-icon-180.png?v=4",
- "votes": 131,
- "clickcount": 19,
- "source": "radio-browser",
- "sourceStationUuid": "0aa252ff-612a-48e9-841b-b3f561dc1c47"
- },
- {
- "id": "10990f82-6f5d-4c30-92da-9819d2c1dff5",
- "name": "DELUXE MUSIC",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english",
- "tags": [
- "music"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://audiostreams.deluxemusic.tv/music/aac-64/website?=&&___cb=851841399610416",
- "homepage": "https://deluxemusic.de/",
- "logoUrl": "https://deluxemusic.de/wp-content/uploads/sites/4/2019/11/Deluxe-Musik-logo.png",
- "votes": 151,
- "clickcount": 19,
- "source": "radio-browser",
- "sourceStationUuid": "10990f82-6f5d-4c30-92da-9819d2c1dff5"
- },
- {
- "id": "4c1dceb9-5a74-469e-af10-8f972b620dd6",
- "name": "Radio Bollerwagen",
- "country": "Germany",
- "countryCode": "DE",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://ffn-stream19.radiohost.de/radiobollerwagen_mp3-192",
- "homepage": "https://radiobollerwagen.de/",
- "logoUrl": "https://radiobollerwagen.de/wp-content/uploads/2021/10/cropped-radio-bollerwagen-logo-e1634208057769-180x180.png",
- "votes": 259,
- "clickcount": 19,
- "source": "radio-browser",
- "sourceStationUuid": "4c1dceb9-5a74-469e-af10-8f972b620dd6"
- },
- {
- "id": "62ee0f9a-5ad0-42cd-9c37-d16de34043ea",
- "name": "Radio Bollerwagen",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.ffn.de/radiobollerwagen/mp3-192/stream.mp3",
- "homepage": "https://radiobollerwagen.de/",
- "logoUrl": "https://radiobollerwagen.de/typo3conf/ext/ffn_radiosender_site/Resources/Public/Icons/Favicons/RadioBollerwagen/cropped-radio-bollerwagen-favicon-180x180.png",
- "votes": 41,
- "clickcount": 19,
- "source": "radio-browser",
- "sourceStationUuid": "62ee0f9a-5ad0-42cd-9c37-d16de34043ea"
- },
- {
- "id": "f1e65b1b-fb00-47a1-8826-eff02dc7fef8",
- "name": "SWR Aktuell",
- "country": "Germany",
- "countryCode": "DE",
- "language": "german",
- "tags": [
- "info"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://liveradio.swr.de/sw282p3/swraktuell/play.aac",
- "homepage": "https://www.swr.de/swraktuell/index.html",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/4/47/SWR_Aktuell_Logo.jpg",
- "votes": 1266,
- "clickcount": 19,
- "source": "radio-browser",
- "sourceStationUuid": "f1e65b1b-fb00-47a1-8826-eff02dc7fef8"
- },
- {
- "id": "b591d01a-e72b-4030-a640-a8da10ed73f6",
- "name": "# REMIX & PARTYBREAKS - Your House - EDM - HipHop - RnB - Techno - TechHouse - Top 40 Charts - Latin - DJ Mixtape RADIO",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "#",
- "#00s",
- "#90",
- "#dj",
- "#partybreaks",
- "#top100",
- "charts",
- "dance",
- "dance house club electronic techhouse",
- "deep house",
- "dj",
- "dj mix"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.breakz.fm/?ref=radiobrowser-remix-partybreaks-radio",
- "homepage": "https://rm.fm/breakz",
- "logoUrl": "https://i.ibb.co/1bdF482/REMIX-PARTYNBREAKS-LOGO-1.png",
- "votes": 1324,
- "clickcount": 18,
- "source": "radio-browser",
- "sourceStationUuid": "b591d01a-e72b-4030-a640-a8da10ed73f6"
- },
- {
- "id": "5dc97c2f-566f-47df-8236-021db5906dde",
- "name": "0nlineradio BACH",
- "country": "Germany",
- "countryCode": "DE",
- "language": "english,german",
- "tags": [
- "bach",
- "classic",
- "classical",
- "klassik",
- "modern classical",
- "symphonic",
- "symphony"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.0nlineradio.com/bach?ref=radiobrowser",
- "homepage": "https://0nlineradio.com/",
- "logoUrl": "https://i.ibb.co/n1CQpDf/BACH-NEW.jpg",
- "votes": 1136,
- "clickcount": 18,
- "source": "radio-browser",
- "sourceStationUuid": "5dc97c2f-566f-47df-8236-021db5906dde"
- },
{
"id": "3d7eb0bd-1cfb-44c0-8424-2d6e3ad86a56",
"name": "Bayern 1 Niederbayern / Oberpfalz",
@@ -14420,21 +28153,21 @@
"sourceStationUuid": "3d7eb0bd-1cfb-44c0-8424-2d6e3ad86a56"
},
{
- "id": "ca254434-49bf-43a9-961c-d4d6676b9cef",
- "name": "Hitradio RTL Sachsen",
+ "id": "4c1dceb9-5a74-469e-af10-8f972b620dd6",
+ "name": "Radio Bollerwagen",
"country": "Germany",
"countryCode": "DE",
"language": null,
"tags": [],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://edge19.radio.hitradio-rtl.de/hrrtl-dresden/stream/mp3?aggregator=smk-m3u-mp3",
- "homepage": "https://web.radio.hitradio-rtl.de/hrrtl-sachsen/mp3-stream.m3u",
- "logoUrl": "https://web.radio.hitradio-rtl.de/favicon.ico",
- "votes": 117,
+ "bitrate": 192,
+ "streamUrl": "https://ffn-stream19.radiohost.de/radiobollerwagen_mp3-192",
+ "homepage": "https://radiobollerwagen.de/",
+ "logoUrl": "https://radiobollerwagen.de/wp-content/uploads/2021/10/cropped-radio-bollerwagen-logo-e1634208057769-180x180.png",
+ "votes": 259,
"clickcount": 18,
"source": "radio-browser",
- "sourceStationUuid": "ca254434-49bf-43a9-961c-d4d6676b9cef"
+ "sourceStationUuid": "4c1dceb9-5a74-469e-af10-8f972b620dd6"
},
{
"id": "dca6e9a6-d9df-4e0e-a603-e4ae89c62b24",
@@ -14484,40 +28217,58 @@
"sourceStationUuid": "830a7eff-916d-456c-842a-d7786e475658"
},
{
- "id": "26b0e463-5912-4758-86f7-d93749ea93b1",
- "name": "YOU FM (mp3/high)",
+ "id": "6217a525-f2c2-11e8-a471-52543be04c81",
+ "name": "- 0 N - 90s on Radio",
"country": "Germany",
"countryCode": "DE",
"language": "german",
- "tags": [],
+ "tags": [
+ "90er",
+ "90s",
+ "dance",
+ "oldies",
+ "pop",
+ "rock"
+ ],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://dispatcher.rndfnk.com/hr/youfm/live/mp3/high",
- "homepage": "https://www.you-fm.de/",
- "logoUrl": "https://www.you-fm.de/favicon.png?v=3.85.2",
- "votes": 871,
- "clickcount": 18,
+ "streamUrl": "https://0n-90s.radionetz.de/0n-90s.mp3",
+ "homepage": "http://www.0nradio.com/",
+ "logoUrl": "https://www.0nradio.com/logos/0n-90s_600x600.jpg",
+ "votes": 5478,
+ "clickcount": 17,
"source": "radio-browser",
- "sourceStationUuid": "26b0e463-5912-4758-86f7-d93749ea93b1"
+ "sourceStationUuid": "6217a525-f2c2-11e8-a471-52543be04c81"
},
{
- "id": "b858831f-2733-40b8-9042-eca2b7920371",
- "name": "BeatsRadio",
+ "id": "71e65286-125f-4237-a03c-d9b6c93adb3f",
+ "name": "* EDM FESTIVAL || Festival EDM, Big Room, Mainstage, Electro House, Progressive House, Hard EDM, Drops, Anthems, Party, Energy, Club, Rave, Future EDM, Bass, Peak Time",
"country": "Germany",
"countryCode": "DE",
"language": "english,german",
"tags": [
- "beats"
+ "all of edm and all of music",
+ "big room",
+ "bigroom",
+ "club hits",
+ "dance",
+ "dance music",
+ "edm",
+ "edm festival",
+ "edm radioshows",
+ "electro",
+ "electronic",
+ "festival"
],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://live.streams.klassikradio.de/beats-radio",
- "homepage": "https://www.beatsradio.de/",
- "logoUrl": "https://static-assets.iamrad.io/klassikradio/1649058195778/icons/icon_64.a00w80w0000.png",
- "votes": 951,
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://0nlineradio.radioho.st/0r-edm-festival?ref=rb26",
+ "homepage": "https://plus.rm.fm/",
+ "logoUrl": "https://i.ibb.co/fV1R2Br2/EDM-Festival.png",
+ "votes": 10,
"clickcount": 17,
"source": "radio-browser",
- "sourceStationUuid": "b858831f-2733-40b8-9042-eca2b7920371"
+ "sourceStationUuid": "71e65286-125f-4237-a03c-d9b6c93adb3f"
},
{
"id": "e6822dac-209c-4ea2-b565-643cf1b31ce1",
@@ -14536,6 +28287,1966 @@
"source": "radio-browser",
"sourceStationUuid": "e6822dac-209c-4ea2-b565-643cf1b31ce1"
},
+ {
+ "id": "ca254434-49bf-43a9-961c-d4d6676b9cef",
+ "name": "Hitradio RTL Sachsen",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://edge19.radio.hitradio-rtl.de/hrrtl-dresden/stream/mp3?aggregator=smk-m3u-mp3",
+ "homepage": "https://web.radio.hitradio-rtl.de/hrrtl-sachsen/mp3-stream.m3u",
+ "logoUrl": "https://web.radio.hitradio-rtl.de/favicon.ico",
+ "votes": 117,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "ca254434-49bf-43a9-961c-d4d6676b9cef"
+ },
+ {
+ "id": "f1e65b1b-fb00-47a1-8826-eff02dc7fef8",
+ "name": "SWR Aktuell",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "german",
+ "tags": [
+ "info"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://liveradio.swr.de/sw282p3/swraktuell/play.aac",
+ "homepage": "https://www.swr.de/swraktuell/index.html",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/4/47/SWR_Aktuell_Logo.jpg",
+ "votes": 1266,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "f1e65b1b-fb00-47a1-8826-eff02dc7fef8"
+ },
+ {
+ "id": "354f5aa8-88ef-4c9e-8d69-8c6bf0eb8057",
+ "name": "tagesschau24",
+ "country": "Germany",
+ "countryCode": "DE",
+ "language": "deu,german",
+ "tags": [
+ "ard",
+ "nachrichten",
+ "ndr",
+ "tagesschau",
+ "tagesschau24"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.tagesschau.de/ndr/tagesschau24/live/mp3/128/stream.mp3",
+ "homepage": "https://tagesschau.de/",
+ "logoUrl": "https://tagesschau.de/resources/assets/image/favicon/apple-icon-120x120.png",
+ "votes": 209,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "354f5aa8-88ef-4c9e-8d69-8c6bf0eb8057"
+ },
+ {
+ "id": "ba59c7f8-d4fa-45ca-8a5f-50d5e9b69daf",
+ "name": "Vanilla Radio Deep Flavors [HD 320]",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "deep",
+ "deep ambient",
+ "deep house",
+ "house",
+ "vocal deep"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.vanillaradio.com:8090/live",
+ "homepage": "https://vanillaradio.com/",
+ "logoUrl": null,
+ "votes": 2551,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba59c7f8-d4fa-45ca-8a5f-50d5e9b69daf"
+ },
+ {
+ "id": "20a3f907-2e82-4255-9f99-7fa11a08c92b",
+ "name": "MENTA 88",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.live24.gr/menta88ath?1699021717",
+ "homepage": "https://menta88.gr/",
+ "logoUrl": "https://menta88.gr/wp-content/uploads/2021/12/-LOGO-02-2021-e1639364215612.jpg",
+ "votes": 451,
+ "clickcount": 30,
+ "source": "radio-browser",
+ "sourceStationUuid": "20a3f907-2e82-4255-9f99-7fa11a08c92b"
+ },
+ {
+ "id": "605b2521-e764-42ba-8be0-473fc096a3b3",
+ "name": "Zeppelin 106.7",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "alternative rock",
+ "classic rock",
+ "modern rock",
+ "soft rock",
+ "ροκ - adult rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-zeppelin",
+ "homepage": "https://webradio.ert.gr/",
+ "logoUrl": "https://www.ertecho.gr/wp-content/uploads/2022/06/cropped-ertecho-favicon-180x180.png",
+ "votes": 7789,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "605b2521-e764-42ba-8be0-473fc096a3b3"
+ },
+ {
+ "id": "f28d16cd-4515-43ed-9cc8-c25e56190e23",
+ "name": "Pepper 96.6",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "easy listening",
+ "smooth"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiojar.com/pepper",
+ "homepage": "https://www.pepper966.gr/",
+ "logoUrl": "https://www.pepper966.gr/wp-content/uploads/2018/06/logo-pepper.png",
+ "votes": 1252,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "f28d16cd-4515-43ed-9cc8-c25e56190e23"
+ },
+ {
+ "id": "d13972f9-95c6-4320-a132-ada4898220f1",
+ "name": "Music 89.2",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://netradio.live24.gr/music892",
+ "homepage": "https://www.music892.gr/",
+ "logoUrl": "https://www.music892.gr/assets/icons/MUSIC_LOGO.png",
+ "votes": 393,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "d13972f9-95c6-4320-a132-ada4898220f1"
+ },
+ {
+ "id": "8bc69d21-9864-4560-887c-48654d9650bb",
+ "name": "Paidaki 97.5",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://paidaki975.radioca.st/;",
+ "homepage": "https://www.paidaki975.gr/",
+ "logoUrl": "https://www.paidaki975.gr/wp-content/uploads/2023/11/logo.jpeg",
+ "votes": 49,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "8bc69d21-9864-4560-887c-48654d9650bb"
+ },
+ {
+ "id": "1e59df64-fe9a-4f40-924b-0659391dbec6",
+ "name": "Vanilla Radio Smooth Flavors",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://smooth.vanillaradio.com:8032/live",
+ "homepage": "https://www.vanillaradio.com/listen-smooth-flavors/",
+ "logoUrl": "https://www.vanillaradio.com/wp-content/uploads/2016/06/apple-icon-120x120.png",
+ "votes": 5306,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e59df64-fe9a-4f40-924b-0659391dbec6"
+ },
+ {
+ "id": "8f174c53-5547-44d2-bb92-75a985cdb5ef",
+ "name": "Parapolitika 90.1",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek",
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://netradio.live24.gr/athinaradio",
+ "homepage": "https://www.parapolitika.gr/parapolitikafm/",
+ "logoUrl": "https://www.parapolitika.gr/favicon.ico",
+ "votes": 1601,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f174c53-5547-44d2-bb92-75a985cdb5ef"
+ },
+ {
+ "id": "446a3e3d-a2fb-453d-abbd-3369bde1c214",
+ "name": "ΕΡΑσπορ",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "era spor",
+ "eraspor",
+ "ert",
+ "public radio",
+ "sports"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-erasport",
+ "homepage": "https://webradio.ert.gr/eraspor/",
+ "logoUrl": "https://www.ertecho.com/wp-content/uploads/2023/08/cropped-ertecho-favicon-180x180.png",
+ "votes": 1062,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "446a3e3d-a2fb-453d-abbd-3369bde1c214"
+ },
+ {
+ "id": "44eadfaf-d590-4017-a8e6-a1ee52924b24",
+ "name": "Electronica Vibes - Pirate Radio GR",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "egnlish",
+ "tags": [
+ "deep progressive house",
+ "focus trance",
+ "melodic techno",
+ "progressive house"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.piratefm.net/electronica_vibes",
+ "homepage": "https://piratefm.net/electronica-vibes-pirate-radio-gr/",
+ "logoUrl": "https://piratefm.net/electronica-vibes-pirate-radio-gr/wp-content/uploads/2024/10/cropped-electronica.jpg",
+ "votes": 141,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "44eadfaf-d590-4017-a8e6-a1ee52924b24"
+ },
+ {
+ "id": "08231184-20f1-4bc2-9ca5-d8fd34202f9d",
+ "name": "Imagine 897 Thessaloniki,gr",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "internathional",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://imagine897.radioca.st/stream",
+ "homepage": "https://www.imagine897.gr/el/",
+ "logoUrl": "https://www.imagine897.gr/images/IMAGINE897.jpg",
+ "votes": 765,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "08231184-20f1-4bc2-9ca5-d8fd34202f9d"
+ },
+ {
+ "id": "b4489557-58f3-4971-bc3a-c57c9a6b497d",
+ "name": "ΕΡΤ Kosmos",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "ert",
+ "ert kosmos",
+ "public radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-kosmos",
+ "homepage": "https://webradio.ert.gr/kosmos/",
+ "logoUrl": "https://www.ertecho.gr/wp-content/uploads/2022/06/cropped-ertecho-favicon-180x180.png",
+ "votes": 974,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "b4489557-58f3-4971-bc3a-c57c9a6b497d"
+ },
+ {
+ "id": "8cb1e9af-1135-4f45-b25f-fb6bcbf7a32c",
+ "name": "ΕΡΤ Kosmos jazz",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-webjazz",
+ "homepage": "https://webradio.ert.gr/kosmos-jazz/",
+ "logoUrl": "https://www.ertecho.gr/wp-content/uploads/2022/06/cropped-ertecho-favicon-180x180.png",
+ "votes": 590,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "8cb1e9af-1135-4f45-b25f-fb6bcbf7a32c"
+ },
+ {
+ "id": "184e39db-422d-4f57-aff9-548af086f160",
+ "name": "Chillout TreePines",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "chillout",
+ "downtempo",
+ "electronic",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://n07.radiojar.com/n4dzb3znn3quv.mp3?rj-ttl=5&rj-tok=AAABhNTTrbwAVrK_m_qtIxI5pQ",
+ "homepage": "https://www.chillouttreepines.com/",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/f86a8c94-2a69-459b-b545-f1e7addd96e6.jpg",
+ "votes": 200,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "184e39db-422d-4f57-aff9-548af086f160"
+ },
+ {
+ "id": "408fe120-61e0-45ab-9b2c-f7d2b70c1d71",
+ "name": "Μελωδία Θεσσαλονίκης 98",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://netradio.live24.gr/north98thess",
+ "homepage": "https://live24.gr/radio/melodia98",
+ "logoUrl": "https://live24.gr/resrc/styles/custom-popups/melodia98/melodia98-Thess-logo.png",
+ "votes": 118,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "408fe120-61e0-45ab-9b2c-f7d2b70c1d71"
+ },
+ {
+ "id": "db35a186-97bf-447f-8f23-b3724ec63e6b",
+ "name": "Chill FM GR",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "downtempo",
+ "electronic chill-out",
+ "lounge",
+ "trip-hop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-61.zeno.fm/p2rk6a1pfg0uv?zs=vzCFMjdPQzq1cC0zehM5Aw&acu-uid=727435602967&triton-uid=cookie%3A83ca5b14-582e-4c12-a5ab-255cdb39e2cb",
+ "homepage": "https://zeno.fm/radio/chill-fm/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2FNIaZb6Abd5aX8bVFB-F7PouqC6x_e2tPDxStauSRC_M%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSURnZ2FQcW9nc01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSURRMXR5U3BBb01vZ0VFZW1WdWJ3L2ltYWdlLz9yZXNpemU9MjQweDI0MCZ1cGRhdGVkPTE2NjE1ODEzNDUwMDA.webp&w=1920&q=75",
+ "votes": 96,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "db35a186-97bf-447f-8f23-b3724ec63e6b"
+ },
+ {
+ "id": "2d9dfa25-7379-460b-8cd0-fe163af26ebe",
+ "name": "SKAI 100.3",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://skai.live24.gr/skai1003",
+ "homepage": "https://www.skairadio.gr/",
+ "logoUrl": "https://www.skairadio.gr/themes/s1003/assets/images/logo-1904-border.png",
+ "votes": 1124,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "2d9dfa25-7379-460b-8cd0-fe163af26ebe"
+ },
+ {
+ "id": "1b095119-ae01-401b-81af-7424ed770cda",
+ "name": "Vanilla Radio.com - Fresh Flavours Stream",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://fresh.vanillaradio.com:8028/live",
+ "homepage": "https://www.vanillaradio.com/listen-fresh-flavors/",
+ "logoUrl": "https://www.vanillaradio.com/wp-content/uploads/2016/04/vanilla-logo-300x100.png",
+ "votes": 897,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "1b095119-ae01-401b-81af-7424ed770cda"
+ },
+ {
+ "id": "7f91d997-3eb4-4aa3-8a43-6fb812bd6bf0",
+ "name": "Best Radio 92.6",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://best.live24.gr/best1222",
+ "homepage": "https://www.atticaradios.gr/best926/listenlive/",
+ "logoUrl": "https://www.atticaradios.gr/Content/ImagesDatabase/p/crop/both/be/beacb687958a453286a9bc7d07333915.svg?quality=85&404=default&v=4",
+ "votes": 62,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f91d997-3eb4-4aa3-8a43-6fb812bd6bf0"
+ },
+ {
+ "id": "464a64f7-115a-4256-b880-142609a207e0",
+ "name": "Jazz Cafe",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-59.zeno.fm/hx6t4t15e8zuv?zs=NBUVDmgqQSWS38xPcU2OmA&acu-uid=727435602967&triton-uid=cookie%3A83ca5b14-582e-4c12-a5ab-255cdb39e2cb",
+ "homepage": "https://zeno.fm/radio/jazzcaferadio/",
+ "logoUrl": null,
+ "votes": 323,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "464a64f7-115a-4256-b880-142609a207e0"
+ },
+ {
+ "id": "66766c24-aa84-4321-a93d-46deaf46b8ef",
+ "name": "Polis 91.1 Παλιά Λαϊκά",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek folk",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s2.e-resellers.gr/proxy/polislaikos/stream/;",
+ "homepage": "https://polis911.gr/",
+ "logoUrl": "https://akoustakalytera.gr/polis911/wp-content/uploads/2018/03/polis-logo-palia-laika.webp",
+ "votes": 0,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "66766c24-aa84-4321-a93d-46deaf46b8ef"
+ },
+ {
+ "id": "4a6ddcd5-71e1-45b7-9d96-c9bacba391f7",
+ "name": "Radio Art - Smooth Bossa Nova",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english",
+ "tags": [
+ "bossa nova",
+ "jazz",
+ "smooth",
+ "smooth jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://live.radioart.com/fSmooth_bossa_nova.mp3",
+ "homepage": "https://www.radioart.com/",
+ "logoUrl": "https://www.radioart.com/favicon.ico",
+ "votes": 291,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "4a6ddcd5-71e1-45b7-9d96-c9bacba391f7"
+ },
+ {
+ "id": "b3f7723e-a01c-4e26-b623-20b4531c0083",
+ "name": "Αλήτης 97.1",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://premium.streams.gr/ic/orfeas101/stream",
+ "homepage": "https://www.alitis971.gr/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/2669d1ac-797b-46db-87af-743f37342e04.png",
+ "votes": 2,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3f7723e-a01c-4e26-b623-20b4531c0083"
+ },
+ {
+ "id": "c320801b-7d2f-493b-af29-4f37b83bb112",
+ "name": "Μελωδία 99.2",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.rcs.revma.com/8tdwa6ez1duvv",
+ "homepage": "https://www.melodia.gr/",
+ "logoUrl": "https://mm.aiircdn.com/632/5e185a3184ae6.png",
+ "votes": 27,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "c320801b-7d2f-493b-af29-4f37b83bb112"
+ },
+ {
+ "id": "900dfa3e-f5d5-4dca-a1d0-c9b49b794dca",
+ "name": "Πειραϊκή Εκκλησία",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://impradio.bytemasters.gr/8002/stream",
+ "homepage": "https://www.peradio.com/",
+ "logoUrl": null,
+ "votes": 445,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "900dfa3e-f5d5-4dca-a1d0-c9b49b794dca"
+ },
+ {
+ "id": "97ec5cf7-5423-4b76-952c-62e9e0c82762",
+ "name": "1055 Rock - Thessaloniki",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "metal",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.1055rock.gr:31056/live",
+ "homepage": "https://1055rock.gr/",
+ "logoUrl": "https://1055rock.gr/wp-content/uploads/2021/11/favicon2.jpg",
+ "votes": 290,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "97ec5cf7-5423-4b76-952c-62e9e0c82762"
+ },
+ {
+ "id": "4ed5e97c-7540-40d9-8ce1-7cea18080f08",
+ "name": "7000FM",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "techno"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.7000fm.gr/radio/8000/radio.mp3",
+ "homepage": "https://7000fm.gr/",
+ "logoUrl": "https://7000fm.gr/images/favicon.ico",
+ "votes": 915,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "4ed5e97c-7540-40d9-8ce1-7cea18080f08"
+ },
+ {
+ "id": "01b65f24-ff76-4f74-af8d-989908dbacfb",
+ "name": "Akous Palko",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.akous.gr/akouspalko",
+ "homepage": "https://www.akous.gr/",
+ "logoUrl": "https://www.akous.gr/logos/akous_palko_2.png",
+ "votes": 70,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "01b65f24-ff76-4f74-af8d-989908dbacfb"
+ },
+ {
+ "id": "07034f53-f75e-4beb-b72f-1d8571c44bc0",
+ "name": "Club FM GR",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "dark progressive",
+ "electronica",
+ "progressive house",
+ "progressive trance",
+ "techno"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-32.zeno.fm/z8cp1nqwhnruv?zs=sUtan8GnTDGarEqChfudfg&acu-uid=727435602967&triton-uid=cookie%3A83ca5b14-582e-4c12-a5ab-255cdb39e2cb",
+ "homepage": "https://zeno.fm/radio/club-fm/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2F1_VuaWf-x0NqMtgdnI3cfYNddylU1cHVFL_pnISaw3o%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSURnZ2FQcW9nc01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSURnd1pLNzlRb01vZ0VFZW1WdWJ3L2ltYWdlLz9yZXNpemU9MjQweDI0MCZ1cGRhdGVkPTE2NjIwNDc2MTMwMDA.webp&w=1920&q=75",
+ "votes": 212,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "07034f53-f75e-4beb-b72f-1d8571c44bc0"
+ },
+ {
+ "id": "29995961-137e-4adb-bad1-71eaa989a598",
+ "name": "Disco Cafe",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "chillout",
+ "disco",
+ "lounge",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://azuracast.streams.ovh:8260/radio.mp3",
+ "homepage": "https://www.discocafe.eu/",
+ "logoUrl": null,
+ "votes": 804,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "29995961-137e-4adb-bad1-71eaa989a598"
+ },
+ {
+ "id": "3f73e918-41a0-4b54-9d98-2ed949a8353d",
+ "name": "Kids Radio",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "children",
+ "music",
+ "test"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://n03.rcs.revma.com/n7d6z9ez1duvv",
+ "homepage": "https://www.kidsradio.com/",
+ "logoUrl": "https://sao.fm/wp-content/uploads/20240824164954119.jpg",
+ "votes": 16,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f73e918-41a0-4b54-9d98-2ed949a8353d"
+ },
+ {
+ "id": "ce944cfa-9ba9-4e9b-98fe-e1045a4f9df6",
+ "name": "SokFM 104.8",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiojar.com/zeqcyyvu48hvv",
+ "homepage": "https://lalala.gr/",
+ "logoUrl": null,
+ "votes": 156,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "ce944cfa-9ba9-4e9b-98fe-e1045a4f9df6"
+ },
+ {
+ "id": "30c8fd30-39f6-461c-9056-fd79a6e2eb58",
+ "name": "ΕΡΤ Δεύτερο Πρόγραμμα",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "ert",
+ "ert deftero",
+ "public radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-deftero",
+ "homepage": "https://webradio.ert.gr/deftero/",
+ "logoUrl": "https://www.ertecho.com/wp-content/uploads/2023/08/cropped-ertecho-favicon-180x180.png",
+ "votes": 924,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "30c8fd30-39f6-461c-9056-fd79a6e2eb58"
+ },
+ {
+ "id": "6cbaa6b6-bc85-4f67-924d-1f1027c67ca4",
+ "name": "92.9 KISS",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://kissfm.live24.gr/kissfmathens",
+ "homepage": "https://www.kiss929.gr/",
+ "logoUrl": "https://www.kiss929.gr/sites/default/files/kiss.ico",
+ "votes": 186,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6cbaa6b6-bc85-4f67-924d-1f1027c67ca4"
+ },
+ {
+ "id": "fffa0320-34a0-406e-b3d1-3e93dd2c630d",
+ "name": "Athens Dee Jay 95.2",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.live24.gr/athensdeejay",
+ "homepage": "https://www.athensdeejay.gr/",
+ "logoUrl": null,
+ "votes": 84,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "fffa0320-34a0-406e-b3d1-3e93dd2c630d"
+ },
+ {
+ "id": "df716345-217b-4c1e-9f0a-8f58dce692aa",
+ "name": "Athens Rock 96.9",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://az10.yesstreaming.net/radio/8060/radio.mp3",
+ "homepage": "https://www.rockfm.gr/",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/fee95347-f0eb-4299-9edd-9d9b42ee23f6.png",
+ "votes": 791,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "df716345-217b-4c1e-9f0a-8f58dce692aa"
+ },
+ {
+ "id": "4ea2d213-d064-422c-bde9-e57550318023",
+ "name": "Disco Net",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "disco",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream1.468.gr/8004/stream",
+ "homepage": "https://disco-net-radio6.webnode.gr/",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/cde82ef1-c5e0-4b19-919a-cc2c3c2fc491.jpg",
+ "votes": 1744,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4ea2d213-d064-422c-bde9-e57550318023"
+ },
+ {
+ "id": "0f790e00-fd3b-431f-9b7e-047fac185cdb",
+ "name": "OFFradio (320)",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "alternative",
+ "ambient",
+ "chillout",
+ "eclectic",
+ "indie",
+ "lounge",
+ "trip-hop",
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://s7.yesstreaming.net/stream/8000",
+ "homepage": "http://offradio.gr/",
+ "logoUrl": "https://www.offradio.gr/wp-content/uploads/2020/09/cropped-site-icon-180x180.png",
+ "votes": 158,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f790e00-fd3b-431f-9b7e-047fac185cdb"
+ },
+ {
+ "id": "dec88d4d-39bc-4e53-8aca-3cb763536bab",
+ "name": "Sfera 102.2",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://sfera.live24.gr/sfera4132",
+ "homepage": "https://www.sfera.gr/",
+ "logoUrl": null,
+ "votes": 480,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "dec88d4d-39bc-4e53-8aca-3cb763536bab"
+ },
+ {
+ "id": "3e0ef068-a982-490b-ad70-6b2fc2e92dfc",
+ "name": "ΕΡΤ Δεύτερο Παραδοσιακά",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek traditional"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-defteroparadosiaka",
+ "homepage": "https://www.ertecho.gr/radio/deytero-paradosiaka/",
+ "logoUrl": null,
+ "votes": 66,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e0ef068-a982-490b-ad70-6b2fc2e92dfc"
+ },
+ {
+ "id": "4fc1018e-ed2b-454a-a2ca-d1fa5c3ebe23",
+ "name": "1431AM",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "antifa news",
+ "electronic",
+ "hiphop",
+ "political",
+ "politics",
+ "post-punk",
+ "punk",
+ "rap",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://www.1431am.org:8001/1431high",
+ "homepage": "https://www.1431am.org/",
+ "logoUrl": "https://www.1431am.org/wp-content/uploads/2021/12/logo-full-gr-white-site.png",
+ "votes": 0,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "4fc1018e-ed2b-454a-a2ca-d1fa5c3ebe23"
+ },
+ {
+ "id": "f5468230-8945-4b21-954f-7e55f7868c69",
+ "name": "Akous 80s",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice2.onestreaming.com/akous80s",
+ "homepage": "https://www.akous.gr/",
+ "logoUrl": "https://www.akous.gr/logos/akous_80s_2.png",
+ "votes": 71,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f5468230-8945-4b21-954f-7e55f7868c69"
+ },
+ {
+ "id": "912ed691-5054-4316-a7af-3c5ec7cbc120",
+ "name": "easy",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "easy"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://easy972.live24.gr/easy972",
+ "homepage": "https://soundis.gr/easy972/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/3bd13d11-b2c8-43c4-b335-36fe7c7dc357.png",
+ "votes": 88,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "912ed691-5054-4316-a7af-3c5ec7cbc120"
+ },
+ {
+ "id": "dd914a6b-70c5-4ff0-b89c-f07b28cdc2aa",
+ "name": "ERT 80s",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "80s",
+ "adult pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/radio-80s",
+ "homepage": "https://radiostreaming.ert.gr/radio-80s",
+ "logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%2Fid%2FOIP.rrm1XQUxeshiuF6d2Z3F2AHaEO%3Fpid%3DApi&f=1&ipt=1dac3bd82c3d646c8d3d7ca5e0ff31a543507c9b25e38ad937d6d328818746b5&ipo=images",
+ "votes": 18,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "dd914a6b-70c5-4ff0-b89c-f07b28cdc2aa"
+ },
+ {
+ "id": "1071f86c-bda6-494b-893d-0af030deb133",
+ "name": "Polis 91.1",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek pop",
+ "mainstream"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s6.e-resellers.gr/8062/stream",
+ "homepage": "https://polis911.gr/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/a5847bb7-3ee2-4f02-bc36-e635a12c17f0.jpg",
+ "votes": 0,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "1071f86c-bda6-494b-893d-0af030deb133"
+ },
+ {
+ "id": "3f81edf5-acff-4c4e-89f0-be283554fe76",
+ "name": "Radio Music Factory",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "electronic dance music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://i4.streams.ovh/sc/musicfactory/stream/;type=mp3",
+ "homepage": "https://musicfactory.gr/",
+ "logoUrl": null,
+ "votes": 100,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f81edf5-acff-4c4e-89f0-be283554fe76"
+ },
+ {
+ "id": "1c10bc25-fd5b-4904-a548-48b4e1908ca1",
+ "name": "RadioKyklos - Greek Hiphop",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek",
+ "hip hop",
+ "hip-hop",
+ "hip-hop and rap oldies",
+ "hiphop",
+ "rap",
+ "rap hiphop rnb"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://azuracast.streams.ovh/listen/radiokyklos/radio.mp3",
+ "homepage": "https://azuracast.streams.ovh/public/radiokyklos",
+ "logoUrl": "https://azuracast.streams.ovh/static/uploads/radiokyklos/background.1674896986.png",
+ "votes": 107,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "1c10bc25-fd5b-4904-a548-48b4e1908ca1"
+ },
+ {
+ "id": "2082b774-1082-419d-ad13-a0ce9c10a759",
+ "name": "Red 96.3",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://netradio.live24.gr/red9630",
+ "homepage": "https://www.redfm.gr/",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/5/15525.v6.png",
+ "votes": 524,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "2082b774-1082-419d-ad13-a0ce9c10a759"
+ },
+ {
+ "id": "df231d5e-42c7-4761-ac50-39c698a3c5cc",
+ "name": "Sfera Kids",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "kids’ party music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://politismedia-sec3.live24.gr/sfera1022kids",
+ "homepage": "https://sfera.gr/",
+ "logoUrl": "https://static.app.sfera.gr/radios/61c052dae643494d49ac04d2/kid-radio-1655793766318.jpg",
+ "votes": 7,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "df231d5e-42c7-4761-ac50-39c698a3c5cc"
+ },
+ {
+ "id": "ccdc8e96-f3bc-4703-86ba-5b6aa0c92304",
+ "name": "SKAI 100.3 FM",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.live24.gr/skai1003",
+ "homepage": "https://www.skairadio.gr/",
+ "logoUrl": null,
+ "votes": 169,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "ccdc8e96-f3bc-4703-86ba-5b6aa0c92304"
+ },
+ {
+ "id": "dc5e17c8-fd20-4886-ade1-1a77ed84944e",
+ "name": "Vanilla Radio Deep Flavors",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.vanillaradio.com:8003/live",
+ "homepage": "https://www.vanillaradio.com/",
+ "logoUrl": "https://www.vanillaradio.com/wp-content/uploads/2016/04/vanilla-logo-300x100.png",
+ "votes": 413,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "dc5e17c8-fd20-4886-ade1-1a77ed84944e"
+ },
+ {
+ "id": "de186e01-d7a8-4930-9a1d-acece19960b5",
+ "name": "Zoo 90.8",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "mainstream",
+ "pop dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://netradio.live24.gr/zoo908thess",
+ "homepage": "http://zooradio.gr/",
+ "logoUrl": null,
+ "votes": 100,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "de186e01-d7a8-4930-9a1d-acece19960b5"
+ },
+ {
+ "id": "06101631-24f0-4305-b325-40d6279d17a0",
+ "name": "ΕΡΤ Τρίτο Πρόγραμμα",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "classical",
+ "ert",
+ "ert trito",
+ "public radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-trito",
+ "homepage": "https://webradio.ert.gr/trito/",
+ "logoUrl": null,
+ "votes": 545,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "06101631-24f0-4305-b325-40d6279d17a0"
+ },
+ {
+ "id": "ee53da76-a422-4c66-97bf-cb2965e86967",
+ "name": "Ήπειρος 94.5",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek",
+ "traditional"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://rdst.win:59450/stream",
+ "homepage": "https://www.facebook.com/radioepirus945/",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/c689f912-ad9e-4513-9d2a-db9418d70018.png",
+ "votes": 605,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "ee53da76-a422-4c66-97bf-cb2965e86967"
+ },
+ {
+ "id": "573c916f-7858-465a-9b24-85c0c595ea56",
+ "name": "Backtorave.com - Old School Techno Rave",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiospromo.com/listen/tracksaudio.com_-_old_school/radio.mp3",
+ "homepage": "https://www.backtorave.com/",
+ "logoUrl": "https://www.backtorave.com/wp-content/uploads/2025/12/cropped-512x512-1-180x180.png",
+ "votes": 3,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "573c916f-7858-465a-9b24-85c0c595ea56"
+ },
+ {
+ "id": "9442a34d-7ab2-41ef-9734-ffaaf6e3fbf3",
+ "name": "Chroma 105.8 - Thessaloniki",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://hroma1058thess.live24.gr/hroma1058thess",
+ "homepage": "https://hroma.gr/",
+ "logoUrl": "https://hroma.gr/wp-content/uploads/2021/12/hroma-1058-thessaloniki-removebg-preview.png",
+ "votes": 32,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "9442a34d-7ab2-41ef-9734-ffaaf6e3fbf3"
+ },
+ {
+ "id": "fbc3e197-536e-4ceb-8518-3dbce47821b1",
+ "name": "Corfu Dee Jay 97.5",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "dance",
+ "electronic",
+ "hiphop",
+ "pop",
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://sh.onweb.gr:7083/stream?type=http&nocache=35812",
+ "homepage": "https://djradio.gr/",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/bec6ab25-e799-4958-aae6-6c1fc0dfa0cb.png",
+ "votes": 545,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "fbc3e197-536e-4ceb-8518-3dbce47821b1"
+ },
+ {
+ "id": "396e5702-5ea5-46ba-89fd-bca05c9df845",
+ "name": "Dalkas 88.2",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek folk"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiojar.com/pr9r38w802hvv",
+ "homepage": "https://lalala.gr/",
+ "logoUrl": null,
+ "votes": 313,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "396e5702-5ea5-46ba-89fd-bca05c9df845"
+ },
+ {
+ "id": "1a4be5ac-3738-4171-9b9e-176bd4e06b79",
+ "name": "Derti 107,7 Heraklion Crete",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://i5.streams.ovh:2200/sc/web101/stream",
+ "homepage": "https://www.derti1077.gr/",
+ "logoUrl": "https://www.derti1077.gr/wp-content/themes/dirty/images/logodirty.png",
+ "votes": 128,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "1a4be5ac-3738-4171-9b9e-176bd4e06b79"
+ },
+ {
+ "id": "b99b6dc0-7b77-4630-a683-1082fbf44156",
+ "name": "En Lefko 87.7",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://n12a-eu.rcs.revma.com/trm75ret4c3vv?rj-ttl=5&rj-tok=AAABnHLBW28A7OTR3a298An3Yg",
+ "homepage": "https://www.enlefko.fm/",
+ "logoUrl": null,
+ "votes": 18,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "b99b6dc0-7b77-4630-a683-1082fbf44156"
+ },
+ {
+ "id": "b3b7465d-1a40-493d-9624-bede90d03948",
+ "name": "EnLefko 87.7",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiojar.com/enlefko877",
+ "homepage": "https://www.enlefko.fm/",
+ "logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse3.mm.bing.net%2Fth%2Fid%2FOIP.bStSmhUef-wuXI2zp9RWDgHaHa%3Fpid%3DApi&f=1&ipt=7ce71bf9cd41ac63772b1b9811f67dd0961766461665eff192ee3a41656fdd39&ipo=images",
+ "votes": 2,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3b7465d-1a40-493d-9624-bede90d03948"
+ },
+ {
+ "id": "786e440b-8c41-4f20-9838-77eaf36514da",
+ "name": "ERT Trito Maestro",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "classical music"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-trito-maestro",
+ "homepage": "https://www.ertecho.gr/radio/tritomaestro/",
+ "logoUrl": null,
+ "votes": 100,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "786e440b-8c41-4f20-9838-77eaf36514da"
+ },
+ {
+ "id": "d7c8a23e-0489-4b4d-95e1-dd8d15c1db2b",
+ "name": "FLY 104",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://imagine2.radioca.st/;",
+ "homepage": "https://fly104.gr/el/",
+ "logoUrl": "https://fly104.gr/images/folder/logos/mobile-logos/logomobile.png",
+ "votes": 109,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "d7c8a23e-0489-4b4d-95e1-dd8d15c1db2b"
+ },
+ {
+ "id": "48faa3f4-76cf-40d9-8dd6-34728a15ad20",
+ "name": "Fly 104",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "deep house"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://imagine2.radioca.st/;stream.nsv",
+ "homepage": "https://fly104.gr/en/",
+ "logoUrl": null,
+ "votes": 202,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "48faa3f4-76cf-40d9-8dd6-34728a15ad20"
+ },
+ {
+ "id": "7f9d40d0-5e4c-4165-94be-d5dbd662fd20",
+ "name": "Laiko 107",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek folk music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-19.zeno.fm/58uqx820dnzuv?zs=OPfJ6wakTOq-2IVqejRhMg",
+ "homepage": "http://www.facebook.com/laiko.radiofono.1",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/58eb60fc-3057-4cd0-b168-e4e168d885e0.png",
+ "votes": 88,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f9d40d0-5e4c-4165-94be-d5dbd662fd20"
+ },
+ {
+ "id": "93de008b-c5ee-4c6a-9ae9-d71480e29a1b",
+ "name": "Lampsi 92.3",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://az11.yesstreaming.net:8140/radio.mp3",
+ "homepage": "https://www.atticaradios.gr/lampsi923/",
+ "logoUrl": "https://cdn.e-radio.gr/logos/gr/big/lampsifm.png",
+ "votes": 156,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "93de008b-c5ee-4c6a-9ae9-d71480e29a1b"
+ },
+ {
+ "id": "be8a0a52-eefa-4799-addc-5b9fb18f9d0c",
+ "name": "Omega Radio Greek Music",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "folk",
+ "greek pop",
+ "mainstream"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rdst.win:59962/stream",
+ "homepage": "http://live24.gr/radio/generic.jsp?sid=1939",
+ "logoUrl": "http://resources.live24.gr/resources/images/stations/0f7aacce-3787-4261-9859-c6bc1ecf39de.png",
+ "votes": 179,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "be8a0a52-eefa-4799-addc-5b9fb18f9d0c"
+ },
+ {
+ "id": "c563dc48-484f-43e0-85d9-087bc36d956a",
+ "name": "Polis 91.1 Έντεχνα",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s2.e-resellers.gr/proxy/polisentexnos/stream",
+ "homepage": "https://polis911.gr/",
+ "logoUrl": "https://akoustakalytera.gr/polis911/wp-content/uploads/2017/01/polis-logo-entexna.webp",
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c563dc48-484f-43e0-85d9-087bc36d956a"
+ },
+ {
+ "id": "c0152c1e-0b40-4b51-aea7-548bee3e6749",
+ "name": "Real FM",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "talk & speech"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://realfm2.live24.gr/realfm",
+ "homepage": null,
+ "logoUrl": "https://images.app.goo.gl/3JWkxrf2H6izdz6i7",
+ "votes": 34,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c0152c1e-0b40-4b51-aea7-548bee3e6749"
+ },
+ {
+ "id": "b7e57990-b3ad-44a9-9458-2f8f58dcbde2",
+ "name": "Rock FM 96.9",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "alternative rock",
+ "classic rock",
+ "hard rock",
+ "indie rock",
+ "pop rock",
+ "progressive rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://az10.yesstreaming.net:8060/radio.mp3",
+ "homepage": "https://www.atticaradios.gr/rockfm969/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/fee95347-f0eb-4299-9edd-9d9b42ee23f6.png",
+ "votes": 492,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "b7e57990-b3ad-44a9-9458-2f8f58dcbde2"
+ },
+ {
+ "id": "851b010a-bf42-4a78-a59b-9af0da444da7",
+ "name": "zeno fm - Pame Rebetiko kai laiko",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-174.zeno.fm/wqcp8gq67vzuv?zt=eyJhbGciOiJIUzI1NiJ9.eyJzdHJlYW0iOiJ3cWNwOGdxNjd2enV2IiwiaG9zdCI6InN0cmVhbS0xNzQuemVuby5mbSIsInJ0dGwiOjUsImp0aSI6Im5nLXVzMFhrVGVTWTFQVkplaGhrcVEiLCJpYXQiOjE3MzEzMTc2MjIsImV4cCI6MTczMTMxNzY4Mn0.wy5ztQfuz1ks3t1FzSxlAiZfQvMeAsPuiz07qc0JeGs",
+ "homepage": "https://zeno.fm/",
+ "logoUrl": "https://zeno.fm/apple-icon-120x120.png",
+ "votes": 286,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "851b010a-bf42-4a78-a59b-9af0da444da7"
+ },
+ {
+ "id": "a4056fd3-3d24-48c0-ab75-979ac2a30159",
+ "name": "Zucca Radio",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.zuccaradio.com/stream",
+ "homepage": "https://zuccaradio.com/",
+ "logoUrl": "https://zuccaradio.com/wp-content/uploads/2019/11/ZUCCA_RADIO_LOGO-02a.jpg",
+ "votes": 651,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4056fd3-3d24-48c0-ab75-979ac2a30159"
+ },
+ {
+ "id": "f223edcf-6b85-40e5-98e2-3adec1370749",
+ "name": "Ρεμπέτικο για λίγους",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "rebetico"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-177.zeno.fm/wqcp8gq67vzuv?zt=eyJhbGciOiJIUzI1NiJ9.eyJzdHJlYW0iOiJ3cWNwOGdxNjd2enV2IiwiaG9zdCI6InN0cmVhbS0xNzcuemVuby5mbSIsInJ0dGwiOjUsImp0aSI6Imd3bDUyOGR0UzJxWXkzX0xwUkdJVGciLCJpYXQiOjE3NzQ2NzYwNTYsImV4cCI6MTc3NDY3NjExNn0.Zj53dXOszIlXNR6FQQotK2mPos1MLdXqCDRf5rm97zE",
+ "homepage": "https://rempetikogialigous.gr/",
+ "logoUrl": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyKDyi698zBn5VdVEAM-ikPZTZukadkwWvpyR9SSqYZB62BmYdN461THNl3ibErvA77UfoWrm9ZbitcvWwQNQu3mou4rWl9ekRk3crUDrNIaTy_AjLkHgj-0oNUGx_fLBEVaLgCntdvvQ/s400/rempetiko-gia-ligous.jpg",
+ "votes": 2,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f223edcf-6b85-40e5-98e2-3adec1370749"
+ },
+ {
+ "id": "1e68aa3b-071a-4989-aefe-3945c55f50e7",
+ "name": "02 Dance Radio",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "adult hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://centova.gr-net.gr/proxy/dimitrio/stream",
+ "homepage": "https://radio.gr-net.gr/dim/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/b90d8c22-48e0-4956-b666-3470fdc234b3.png",
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e68aa3b-071a-4989-aefe-3945c55f50e7"
+ },
+ {
+ "id": "39eb53ab-7e7c-4ed5-aa80-3999c2a8a1ed",
+ "name": "105FM",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "antifa news",
+ "electronic",
+ "hiphop",
+ "political",
+ "politics",
+ "post-punk",
+ "punk",
+ "rap",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://105fm.espiv.net/listen/105fm/stream.mp3",
+ "homepage": "https://105fm.espivblogs.net/",
+ "logoUrl": "https://105fm.espivblogs.net/files/2021/03/cropped-12743964_703014563171709_2224467389008393465_n-e1510166020583.png",
+ "votes": 3,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "39eb53ab-7e7c-4ed5-aa80-3999c2a8a1ed"
+ },
+ {
+ "id": "476542e6-43b7-4468-9bad-1ed5322b3d3d",
+ "name": "1st Greek New Age Radio",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-156.zeno.fm/9yu82xwmdc9uv?zs=kfRTbEsBT1S-LI24kc6lVg",
+ "homepage": "https://zeno.fm/radio/1st-greek-new-age-radio/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/d3684eb8-07aa-4494-b544-a4088a1e4875.png",
+ "votes": 145,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "476542e6-43b7-4468-9bad-1ed5322b3d3d"
+ },
+ {
+ "id": "77f50e29-3910-4fe4-9ff4-a9564cce410d",
+ "name": "2000staFM",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "80s",
+ "90s",
+ "disco",
+ "italo",
+ "rock",
+ "slow"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s3.unlimitedradiohosting.com/stream/two-thousand-on-fm",
+ "homepage": "https://www.2000stafm.gr/",
+ "logoUrl": "https://www.2000stafm.gr/favicon2.png",
+ "votes": 18,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "77f50e29-3910-4fe4-9ff4-a9564cce410d"
+ },
+ {
+ "id": "42c9d0a0-9c37-46ae-9a07-9cbb9a43e996",
+ "name": "Agrinio 93.7",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s33.myradiostream.com/:17386/listen.mp3?nocache=1697710229",
+ "homepage": "https://agrinio937.gr/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/720e1802-2341-4068-90d1-a5699e322e80.png",
+ "votes": 6,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "42c9d0a0-9c37-46ae-9a07-9cbb9a43e996"
+ },
+ {
+ "id": "175c64bb-f4c2-4c9e-aeb6-992b35cfaf0d",
+ "name": "Aktina 104.7 Της Καρδιάς σου Λαϊκά",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek folk",
+ "mainstream"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://sc2.streamwithq.com:2000/stream/Tiskardiassoulaika/stream",
+ "homepage": "https://aktinaradio.fm/tis-kardias-sou-laika/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/ce6e3bae-e985-45d3-922f-881002a3b0b9.jpg",
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "175c64bb-f4c2-4c9e-aeb6-992b35cfaf0d"
+ },
+ {
+ "id": "7e990e80-cf13-493b-9a7d-5cdc7e79fe02",
+ "name": "Athens Radio Trance",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "electronic dance music",
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.streams.ovh:8008/;",
+ "homepage": "http://www.tranceathena.com/",
+ "logoUrl": null,
+ "votes": 70,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7e990e80-cf13-493b-9a7d-5cdc7e79fe02"
+ },
+ {
+ "id": "fe5d7288-54e5-474d-bfd2-c0a61fb99d30",
+ "name": "Ble 93.1 Θεσσαλονίκη",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.lancom.gr:9006/stream1?1706989300560",
+ "homepage": "https://www.ble.fm/",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/bd0f2136-2606-47a1-b702-273144447c15.jpg",
+ "votes": 25,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "fe5d7288-54e5-474d-bfd2-c0a61fb99d30"
+ },
+ {
+ "id": "f74123a2-bb43-4280-8bdf-b4d3b16ad621",
+ "name": "BLUE SPACE",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://sp1.19cloudsnetwork.gr/8008/stream",
+ "homepage": "https://sp1.19cloudsnetwork.gr/8008/stream",
+ "logoUrl": "null",
+ "votes": 5,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f74123a2-bb43-4280-8bdf-b4d3b16ad621"
+ },
+ {
+ "id": "56662166-bec6-4cea-90f0-fd16bb8089c6",
+ "name": "Blues Radio alternative",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://i4.streams.ovh/sc/bluesrad/stream",
+ "homepage": "https://bluesradio.gr/",
+ "logoUrl": "https://i1.wp.com/bluesradio.gr/wp-content/uploads/2021/06/cropped-24-7bug.png?fit=180%2c180&ssl=1",
+ "votes": 357,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "56662166-bec6-4cea-90f0-fd16bb8089c6"
+ },
+ {
+ "id": "7e698592-50bf-49f2-b610-b2784f226776",
+ "name": "BluesWave Radio",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english,greek",
+ "tags": [
+ "electric blues"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://blueswave.radio:8100/icyblues",
+ "homepage": "https://blueswave.radio/",
+ "logoUrl": "https://blueswave.radio/wp-content/uploads/2021/01/BluesWave.Radio_.logo_.300X300.png",
+ "votes": 95,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7e698592-50bf-49f2-b610-b2784f226776"
+ },
+ {
+ "id": "206d6a59-18a6-4c50-a2b3-fae6776fc05b",
+ "name": "Galaxy Music Chillout & Lounge",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream-50.zeno.fm/kn8byvtb6uhvv?zs=VA1nby_MTFC8RxrEYdOJaw",
+ "homepage": "https://alexiou.wixsite.com/radiogalaxy",
+ "logoUrl": "https://www.wix.com/favicon.ico",
+ "votes": 99,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "206d6a59-18a6-4c50-a2b3-fae6776fc05b"
+ },
+ {
+ "id": "c06bb39a-c503-4dfa-99e9-d070e31aef0a",
+ "name": "Galaxy Music Greek Mix",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-55.zeno.fm/ahwwv9myuxhvv?zs=CH4AwVsLSIG5lRqwzwM_Dw",
+ "homepage": "https://alexiou.wixsite.com/radiogalaxy",
+ "logoUrl": "https://www.wix.com/favicon.ico",
+ "votes": 84,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "c06bb39a-c503-4dfa-99e9-d070e31aef0a"
+ },
+ {
+ "id": "67a7fed2-8905-42f8-a799-96f143decfa9",
+ "name": "Galaxy Music The Deep House",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-51.zeno.fm/sgehc2mzwd0uv?zs=DutBe-m5Sz6waLQy8l8ejg",
+ "homepage": "https://alexiou.wixsite.com/radiogalaxy",
+ "logoUrl": "https://www.wix.com/favicon.ico",
+ "votes": 843,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "67a7fed2-8905-42f8-a799-96f143decfa9"
+ },
+ {
+ "id": "12a8d308-d70b-4ccc-ade3-81155c8a7ab8",
+ "name": "Radio Art - Mellow Piano Jazz",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english",
+ "tags": [
+ "jazz",
+ "mellow",
+ "piano"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://live.radioart.com/fMellow_piano_jazz.mp3",
+ "homepage": "https://www.radioart.com/",
+ "logoUrl": "https://www.radioart.com/favicon.ico",
+ "votes": 368,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "12a8d308-d70b-4ccc-ade3-81155c8a7ab8"
+ },
+ {
+ "id": "c63060f3-00f4-48f2-8a0b-0c9f7f2defd7",
+ "name": "Radio Art - Mellow Smooth Jazz",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "english",
+ "tags": [
+ "jazz",
+ "mellow",
+ "smooth jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://live.radioart.com/fMellow_smooth_jazz.mp3",
+ "homepage": "https://www.radioart.com/",
+ "logoUrl": "https://www.radioart.com/images/channels/159_mellow_s_j-600x400.jpg",
+ "votes": 261,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "c63060f3-00f4-48f2-8a0b-0c9f7f2defd7"
+ },
+ {
+ "id": "578dccf1-fe6e-4dd1-b64a-0127aeb1370f",
+ "name": "SKAI TV",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "tv"
+ ],
+ "codec": "AAC",
+ "bitrate": 2234,
+ "streamUrl": "https://skai-live-back.siliconweb.com/media/cambria4/index.m3u8",
+ "homepage": "https://www.skaitv.gr/",
+ "logoUrl": "https://www.skaitv.gr/dist/images/favicons/apple-icon-120x120.png",
+ "votes": 301,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "578dccf1-fe6e-4dd1-b64a-0127aeb1370f"
+ },
+ {
+ "id": "6998e7a1-6683-413a-a919-a8703d662285",
+ "name": "Streamee Bouzoukia",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek folk music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://politismedia-sec3.live24.gr/pm-bouzoukia",
+ "homepage": "https://streamee.com/mood/bouzoukia/",
+ "logoUrl": "https://streamee.com/wp-content/uploads/2023/02/Mood-10.jpg",
+ "votes": 30,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "6998e7a1-6683-413a-a919-a8703d662285"
+ },
+ {
+ "id": "579ebbb4-e84b-4493-8c6c-4009de1da984",
+ "name": "Vasilis Pliakas",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://mcr.streams.gr/listen/topfm1024",
+ "homepage": "https://topfm1024.gr/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "579ebbb4-e84b-4493-8c6c-4009de1da984"
+ },
+ {
+ "id": "51fe4c41-f03f-4ae2-a426-d52b48bd7135",
+ "name": "ΕΡΤ Πρώτο Πρόγραμμα",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "ert",
+ "ert proto",
+ "public radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-proto",
+ "homepage": "https://webradio.ert.gr/proto/",
+ "logoUrl": null,
+ "votes": 485,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "51fe4c41-f03f-4ae2-a426-d52b48bd7135"
+ },
+ {
+ "id": "b0f134a9-e8c4-43c1-a005-e4f7a700cbd4",
+ "name": "Η Φωνή της Ελλάδας",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "ert",
+ "i foni tis elladas",
+ "public radio",
+ "voice of greece",
+ "voiceofgreece"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiostreaming.ert.gr/ert-voiceofgreece",
+ "homepage": "https://webradio.ert.gr/i-foni-tis-elladas/",
+ "logoUrl": null,
+ "votes": 106,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0f134a9-e8c4-43c1-a005-e4f7a700cbd4"
+ },
+ {
+ "id": "165b0bf2-517b-434a-8a6f-0e26e5dd6f1a",
+ "name": "Καλάβρυτα",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "folk",
+ "greek",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rdst.win:48030/live",
+ "homepage": "https://www.radiokalavryta.gr/",
+ "logoUrl": "https://www.radiokalavryta.gr/wp-content/uploads/2021/08/cropped-mono-laika-3-180x180.png",
+ "votes": 49,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "165b0bf2-517b-434a-8a6f-0e26e5dd6f1a"
+ },
+ {
+ "id": "7c00ed76-3c33-4947-a636-0d74d63bf597",
+ "name": "Νότες 96",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": null,
+ "tags": [
+ "greek folk"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://netradio.live24.gr/stylfmathens",
+ "homepage": "https://live24.gr/radio/generic.jsp?sid=4106",
+ "logoUrl": "https://resources.live24.gr/resources/images/stations/f2785980-457a-4db4-b180-e3404b147d75.jpg",
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c00ed76-3c33-4947-a636-0d74d63bf597"
+ },
+ {
+ "id": "d788ab49-aa54-4edb-ba37-023c2c846161",
+ "name": "Τρανζίστορ 100.3",
+ "country": "Greece",
+ "countryCode": "GR",
+ "language": "greek",
+ "tags": [
+ "greek pop",
+ "mainstream"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://metromedia.live24.gr/tranzistor1003thess",
+ "homepage": "https://tranzistor1003.gr/",
+ "logoUrl": "https://tranzistor1003.gr/wp-content/uploads/2022/06/cropped-android-chrome-512x512-1-180x180.png",
+ "votes": 37,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d788ab49-aa54-4edb-ba37-023c2c846161"
+ },
{
"id": "962cc6df-0601-11e8-ae97-52543be04c81",
"name": "Dance Wave!",
@@ -14550,8 +30261,8 @@
"streamUrl": "https://dancewave.online/dance.mp3",
"homepage": "https://dancewave.online/",
"logoUrl": "https://dancewave.online/dw_logo.png",
- "votes": 547308,
- "clickcount": 302,
+ "votes": 547314,
+ "clickcount": 301,
"source": "radio-browser",
"sourceStationUuid": "962cc6df-0601-11e8-ae97-52543be04c81"
},
@@ -14575,7 +30286,7 @@
"homepage": "http://www.retroradio.hu/",
"logoUrl": "https://retroradio.hu/wp-content/themes/retroradio/assets/dist/img/favicon/android-icon-192x192.png",
"votes": 8650,
- "clickcount": 77,
+ "clickcount": 76,
"source": "radio-browser",
"sourceStationUuid": "98b22cd2-0ec8-4bb1-a5f6-f168de7548b5"
},
@@ -14594,7 +30305,7 @@
"homepage": "https://radio1.hu/",
"logoUrl": "https://radio1.hu/template/radio1/assets/img/favicon/apple-touch-icon.png",
"votes": 954,
- "clickcount": 47,
+ "clickcount": 48,
"source": "radio-browser",
"sourceStationUuid": "f503d591-56b7-45d2-9a31-df046af717ae"
},
@@ -14613,7 +30324,7 @@
"homepage": "https://www.klubradio.hu/",
"logoUrl": "https://www.klubradio.hu/static/frontend/imgs/KR-clean-logo.png",
"votes": 6027,
- "clickcount": 31,
+ "clickcount": 30,
"source": "radio-browser",
"sourceStationUuid": "9e077bed-f46f-4506-8237-c26be0538fdc"
},
@@ -14632,7 +30343,7 @@
"homepage": "https://retro.dacemwave.online/",
"logoUrl": "https://dancewave.online/dwr_logo.png",
"votes": 53335,
- "clickcount": 25,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "964be8b7-0601-11e8-ae97-52543be04c81"
},
@@ -14653,32 +30364,10 @@
"homepage": "https://oxygenmusic.hu/",
"logoUrl": "https://oxygenmusic.hu/logo192.png",
"votes": 9402,
- "clickcount": 23,
+ "clickcount": 24,
"source": "radio-browser",
"sourceStationUuid": "bc910109-8c16-45dd-a337-83b631b51888"
},
- {
- "id": "79d8bcc0-e8c8-49a7-a160-2b41923b054a",
- "name": "Petőfi Rádió",
- "country": "Hungary",
- "countryCode": "HU",
- "language": "hungarian",
- "tags": [
- "alternative",
- "duna média",
- "pop",
- "public radio"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icast.connectmedia.hu/4738/mr2.mp3",
- "homepage": "http://www.petofilive.hu/",
- "logoUrl": "https://i1.sndcdn.com/artworks-000103658408-5g7ohr-t500x500.jpg",
- "votes": 875,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "79d8bcc0-e8c8-49a7-a160-2b41923b054a"
- },
{
"id": "957c4b96-5fe9-41b5-95ba-137664c3ffbd",
"name": "Danubius",
@@ -14697,24 +30386,26 @@
"sourceStationUuid": "957c4b96-5fe9-41b5-95ba-137664c3ffbd"
},
{
- "id": "732cf1a2-e8c8-410e-a0ea-0f6743849bf6",
- "name": "DANCE 90'S",
+ "id": "79d8bcc0-e8c8-49a7-a160-2b41923b054a",
+ "name": "Petőfi Rádió",
"country": "Hungary",
"countryCode": "HU",
"language": "hungarian",
"tags": [
- "dance",
- "retro"
+ "alternative",
+ "duna média",
+ "pop",
+ "public radio"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc06?ver=887687",
- "homepage": "https://coolfm.hu/",
- "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/cropped-egyszer%C5%B1-k%C3%A9p-192x192.png",
- "votes": 524,
- "clickcount": 11,
+ "streamUrl": "https://icast.connectmedia.hu/4738/mr2.mp3",
+ "homepage": "http://www.petofilive.hu/",
+ "logoUrl": "https://i1.sndcdn.com/artworks-000103658408-5g7ohr-t500x500.jpg",
+ "votes": 875,
+ "clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "732cf1a2-e8c8-410e-a0ea-0f6743849bf6"
+ "sourceStationUuid": "79d8bcc0-e8c8-49a7-a160-2b41923b054a"
},
{
"id": "a7789334-2f1d-4f95-9a64-b169a963e99c",
@@ -14733,6 +30424,26 @@
"source": "radio-browser",
"sourceStationUuid": "a7789334-2f1d-4f95-9a64-b169a963e99c"
},
+ {
+ "id": "732cf1a2-e8c8-410e-a0ea-0f6743849bf6",
+ "name": "DANCE 90'S",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [
+ "dance",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc06?ver=887687",
+ "homepage": "https://coolfm.hu/",
+ "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/cropped-egyszer%C5%B1-k%C3%A9p-192x192.png",
+ "votes": 524,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "732cf1a2-e8c8-410e-a0ea-0f6743849bf6"
+ },
{
"id": "6001126f-dc0c-44ae-b4d6-d77808f63a87",
"name": "Jazzy",
@@ -14752,6 +30463,46 @@
"source": "radio-browser",
"sourceStationUuid": "6001126f-dc0c-44ae-b4d6-d77808f63a87"
},
+ {
+ "id": "15ad7a63-dd62-479c-8608-c53922dbc8b5",
+ "name": "Base FM",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [
+ "hiphop",
+ "rap",
+ "rnb"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://icast.connectmedia.hu/5401/live.mp3",
+ "homepage": "https://basefm.hu/",
+ "logoUrl": "https://basefm.hu/wp-content/themes/basefm/assets/dist/img/favicon/apple-icon-120x120.png",
+ "votes": 1134,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "15ad7a63-dd62-479c-8608-c53922dbc8b5"
+ },
+ {
+ "id": "9df9d491-607a-49ad-9439-ed76a5abdd1d",
+ "name": "Csukás Meserádió",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "children"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://mr-stream.connectmedia.hu/4611/mr10.mp3",
+ "homepage": "https://mediaklikk.hu/csukas/",
+ "logoUrl": "https://mediaklikk.hu/wp-content/plugins/hms-mediaklikk/common/styles/images/csukas_logo_horizontal_v2.svg",
+ "votes": 236,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "9df9d491-607a-49ad-9439-ed76a5abdd1d"
+ },
{
"id": "648b2abd-92a0-11e9-a605-52543be04c81",
"name": "Dance Wave!",
@@ -14771,27 +30522,6 @@
"source": "radio-browser",
"sourceStationUuid": "648b2abd-92a0-11e9-a605-52543be04c81"
},
- {
- "id": "15ad7a63-dd62-479c-8608-c53922dbc8b5",
- "name": "Base FM",
- "country": "Hungary",
- "countryCode": "HU",
- "language": "hungarian",
- "tags": [
- "hiphop",
- "rap",
- "rnb"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://icast.connectmedia.hu/5401/live.mp3",
- "homepage": "https://basefm.hu/",
- "logoUrl": "https://basefm.hu/wp-content/themes/basefm/assets/dist/img/favicon/apple-icon-120x120.png",
- "votes": 1134,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "15ad7a63-dd62-479c-8608-c53922dbc8b5"
- },
{
"id": "2a92a6fe-de99-48a5-a542-5c64626d3361",
"name": "Oxygen Magyar Zene",
@@ -14813,44 +30543,6 @@
"source": "radio-browser",
"sourceStationUuid": "2a92a6fe-de99-48a5-a542-5c64626d3361"
},
- {
- "id": "9df9d491-607a-49ad-9439-ed76a5abdd1d",
- "name": "Csukás Meserádió",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "children"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://mr-stream.connectmedia.hu/4611/mr10.mp3",
- "homepage": "https://mediaklikk.hu/csukas/",
- "logoUrl": "https://mediaklikk.hu/wp-content/plugins/hms-mediaklikk/common/styles/images/csukas_logo_horizontal_v2.svg",
- "votes": 236,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "9df9d491-607a-49ad-9439-ed76a5abdd1d"
- },
- {
- "id": "3af5df1b-a5c9-4931-a732-a235c7ba2014",
- "name": "Laza Rádió - Mulatós",
- "country": "Hungary",
- "countryCode": "HU",
- "language": "hungarian",
- "tags": [
- "folk"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://stream.lazaradio.com/mulatos.mp3",
- "homepage": "https://lazaradio.com/",
- "logoUrl": "https://lazaradio.com/wp-content/uploads/2024/09/laza_logo-2048x818.png",
- "votes": 430,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "3af5df1b-a5c9-4931-a732-a235c7ba2014"
- },
{
"id": "be2348b1-366d-4810-a93a-31319729c27b",
"name": "Oxygen The 90s Hits",
@@ -14873,24 +30565,25 @@
"sourceStationUuid": "be2348b1-366d-4810-a93a-31319729c27b"
},
{
- "id": "0346f611-1b19-4d87-8d60-b919701fd419",
- "name": "COOLFM Jazz",
+ "id": "ad1ccf58-9748-4f2f-946e-11026b171ab7",
+ "name": "Best FM - Budapest",
"country": "Hungary",
"countryCode": "HU",
- "language": null,
+ "language": "hungarian",
"tags": [
- "jazz",
- "smooth jazz"
+ "adult contemporary",
+ "local news",
+ "top hits"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc13",
- "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
- "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/cropped-egyszer%C5%B1-k%C3%A9p-180x180.png",
- "votes": 236,
+ "streamUrl": "https://icast.connectmedia.hu/5101/live.mp3/;",
+ "homepage": "https://bestfmbudapest.hu/",
+ "logoUrl": "https://bestfmbudapest.hu/wp-content/themes/bestfm/assets/dist/img/favicon/apple-icon-120x120.png",
+ "votes": 1097,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "0346f611-1b19-4d87-8d60-b919701fd419"
+ "sourceStationUuid": "ad1ccf58-9748-4f2f-946e-11026b171ab7"
},
{
"id": "da1238b9-5b2e-4de2-af7d-51649da28369",
@@ -14913,6 +30606,48 @@
"source": "radio-browser",
"sourceStationUuid": "da1238b9-5b2e-4de2-af7d-51649da28369"
},
+ {
+ "id": "3af5df1b-a5c9-4931-a732-a235c7ba2014",
+ "name": "Laza Rádió - Mulatós",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.lazaradio.com/mulatos.mp3",
+ "homepage": "https://lazaradio.com/",
+ "logoUrl": "https://lazaradio.com/wp-content/uploads/2024/09/laza_logo-2048x818.png",
+ "votes": 430,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "3af5df1b-a5c9-4931-a732-a235c7ba2014"
+ },
+ {
+ "id": "89480435-16e7-4a7f-8e81-1c956477e96e",
+ "name": "Luxfunk Radio",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "breakbeat",
+ "funky",
+ "hip-hop",
+ "rnb",
+ "soul"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://luxfunkbroadcast.com/proxy/luxfunkradio/stream",
+ "homepage": "https://www.luxfunkradio.com/",
+ "logoUrl": "https://www.luxfunkradio.com/logos/luxfunk_radio_logo_black_r_400x400.png",
+ "votes": 140,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "89480435-16e7-4a7f-8e81-1c956477e96e"
+ },
{
"id": "c240655a-c086-49d7-a0c6-a1baf886c99f",
"name": "Oxygen Classic Rock",
@@ -14969,27 +30704,6 @@
"source": "radio-browser",
"sourceStationUuid": "123a6043-3804-4365-9d17-5c2e655e9f80"
},
- {
- "id": "ad1ccf58-9748-4f2f-946e-11026b171ab7",
- "name": "Best FM - Budapest",
- "country": "Hungary",
- "countryCode": "HU",
- "language": "hungarian",
- "tags": [
- "adult contemporary",
- "local news",
- "top hits"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icast.connectmedia.hu/5101/live.mp3/;",
- "homepage": "https://bestfmbudapest.hu/",
- "logoUrl": "https://bestfmbudapest.hu/wp-content/themes/bestfm/assets/dist/img/favicon/apple-icon-120x120.png",
- "votes": 1097,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "ad1ccf58-9748-4f2f-946e-11026b171ab7"
- },
{
"id": "b0082c76-dc7d-48f1-b0ee-fca28d3ad6bb",
"name": "COOLFM Funky&Soul",
@@ -15010,6 +30724,26 @@
"source": "radio-browser",
"sourceStationUuid": "b0082c76-dc7d-48f1-b0ee-fca28d3ad6bb"
},
+ {
+ "id": "0346f611-1b19-4d87-8d60-b919701fd419",
+ "name": "COOLFM Jazz",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "jazz",
+ "smooth jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc13",
+ "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
+ "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/cropped-egyszer%C5%B1-k%C3%A9p-180x180.png",
+ "votes": 236,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0346f611-1b19-4d87-8d60-b919701fd419"
+ },
{
"id": "91756e93-9895-4d6e-830f-4703ae943c20",
"name": "Jazzy Soul",
@@ -15031,29 +30765,6 @@
"source": "radio-browser",
"sourceStationUuid": "91756e93-9895-4d6e-830f-4703ae943c20"
},
- {
- "id": "89480435-16e7-4a7f-8e81-1c956477e96e",
- "name": "Luxfunk Radio",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "breakbeat",
- "funky",
- "hip-hop",
- "rnb",
- "soul"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://luxfunkbroadcast.com/proxy/luxfunkradio/stream",
- "homepage": "https://www.luxfunkradio.com/",
- "logoUrl": "https://www.luxfunkradio.com/logos/luxfunk_radio_logo_black_r_400x400.png",
- "votes": 140,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "89480435-16e7-4a7f-8e81-1c956477e96e"
- },
{
"id": "079b15e6-da25-4102-92f1-ca6e56b3d31f",
"name": "Oxygen Italo Hits",
@@ -15160,48 +30871,6 @@
"source": "radio-browser",
"sourceStationUuid": "0420fd56-e5d7-4aab-a11b-dba6bd9ccf90"
},
- {
- "id": "e6eb9cb5-c206-4e78-9b5e-5d10084363a7",
- "name": "COOLFM Sportoláshoz",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "fitness music",
- "running",
- "workout"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc20",
- "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
- "logoUrl": null,
- "votes": 112,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "e6eb9cb5-c206-4e78-9b5e-5d10084363a7"
- },
- {
- "id": "a88e23e7-34c7-4ef6-9c83-2b932e16cc7f",
- "name": "COOLFM YouTube HOT HITS!",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "hot adult contemporary",
- "top hits",
- "young adults"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc22",
- "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
- "logoUrl": null,
- "votes": 742,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "a88e23e7-34c7-4ef6-9c83-2b932e16cc7f"
- },
{
"id": "964a4b64-ea9c-486f-a1b5-84ad484d7996",
"name": "Danubius",
@@ -15220,62 +30889,27 @@
"sourceStationUuid": "964a4b64-ea9c-486f-a1b5-84ad484d7996"
},
{
- "id": "f8b84389-4cc8-4dfb-b47c-3ff3c0901769",
- "name": "MR7 - Dankó Rádió",
+ "id": "f287bd49-ed76-4305-a057-f7772079bb9c",
+ "name": "Luxfunk Blackmix",
"country": "Hungary",
"countryCode": "HU",
- "language": "hungarian",
+ "language": null,
"tags": [
- "folk music",
- "music",
- "oldies",
- "public radio"
+ "breakbeat",
+ "funky",
+ "hip-hop",
+ "rnb",
+ "soul"
],
"codec": "MP3",
- "bitrate": 80,
- "streamUrl": "https://mr-stream.connectmedia.hu/4748/mr7.mp3",
- "homepage": "https://mediaklikk.hu/danko/",
- "logoUrl": null,
- "votes": 258,
+ "bitrate": 192,
+ "streamUrl": "https://luxfunkbroadcast.com/proxy/luxfunkblackmix/stream",
+ "homepage": "https://www.luxfunkradio.com/",
+ "logoUrl": "https://www.luxfunkradio.com/logos/luxfunk_radio_blackmix_logo_black_r_400x400.jpg",
+ "votes": 158,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "f8b84389-4cc8-4dfb-b47c-3ff3c0901769"
- },
- {
- "id": "cdd6e9d9-b547-4a75-b705-9427ad2f356b",
- "name": "Argentine Tango Radio",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "tango"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ais-edge94-nyc04.cdnstream.com/2202_128.mp3",
- "homepage": "https://www.argentinetangoradio.com/",
- "logoUrl": "https://www.radio.net/300/argentinetango.png",
- "votes": 125,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "cdd6e9d9-b547-4a75-b705-9427ad2f356b"
- },
- {
- "id": "f0319215-7d60-4c29-93d1-e9568afa0d70",
- "name": "Best FM Székesfehérvár",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://icast.connectmedia.hu/5113/live.mp3",
- "homepage": "https://www.bestfm.hu/",
- "logoUrl": null,
- "votes": 7,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "f0319215-7d60-4c29-93d1-e9568afa0d70"
+ "sourceStationUuid": "f287bd49-ed76-4305-a057-f7772079bb9c"
},
{
"id": "b5738912-4bda-4d7a-af93-bf67f2a1275f",
@@ -15337,25 +30971,25 @@
"sourceStationUuid": "e290fb80-2e87-4993-9ca0-d6a2da5d9659"
},
{
- "id": "7fdb4449-aceb-4047-a247-8740a037e0d4",
- "name": "COOLFM Love Songs",
+ "id": "dda5e837-1da9-40d8-bb69-9f3347060943",
+ "name": "COOLFM Acoustic",
"country": "Hungary",
"countryCode": "HU",
"language": null,
"tags": [
- "easy listening",
- "love songs",
- "romantic"
+ "acoustic",
+ "guitar",
+ "guitar rock"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc28",
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc12",
"homepage": "https://coolfm.hu/radio/digitalis-radiok/",
- "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/09/14v2.png",
- "votes": 198,
+ "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/cropped-egyszer%C5%B1-k%C3%A9p-192x192.png",
+ "votes": 246,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "7fdb4449-aceb-4047-a247-8740a037e0d4"
+ "sourceStationUuid": "dda5e837-1da9-40d8-bb69-9f3347060943"
},
{
"id": "ae4a767f-5296-4853-b0d1-820d8392ad5c",
@@ -15378,6 +31012,27 @@
"source": "radio-browser",
"sourceStationUuid": "ae4a767f-5296-4853-b0d1-820d8392ad5c"
},
+ {
+ "id": "a88e23e7-34c7-4ef6-9c83-2b932e16cc7f",
+ "name": "COOLFM YouTube HOT HITS!",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "hot adult contemporary",
+ "top hits",
+ "young adults"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc22",
+ "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
+ "logoUrl": null,
+ "votes": 742,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a88e23e7-34c7-4ef6-9c83-2b932e16cc7f"
+ },
{
"id": "77cd3a60-1db5-4a08-b188-443137b00bc2",
"name": "Dance Wave Retro!",
@@ -15489,29 +31144,6 @@
"source": "radio-browser",
"sourceStationUuid": "3f9ec178-8048-4c25-98e8-dc69766420fc"
},
- {
- "id": "f287bd49-ed76-4305-a057-f7772079bb9c",
- "name": "Luxfunk Blackmix",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "breakbeat",
- "funky",
- "hip-hop",
- "rnb",
- "soul"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://luxfunkbroadcast.com/proxy/luxfunkblackmix/stream",
- "homepage": "https://www.luxfunkradio.com/",
- "logoUrl": "https://www.luxfunkradio.com/logos/luxfunk_radio_blackmix_logo_black_r_400x400.jpg",
- "votes": 158,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "f287bd49-ed76-4305-a057-f7772079bb9c"
- },
{
"id": "48acbf47-f731-4c22-91b2-385d2fbb76c9",
"name": "MR1 - Kossuth Rádió",
@@ -15534,6 +31166,28 @@
"source": "radio-browser",
"sourceStationUuid": "48acbf47-f731-4c22-91b2-385d2fbb76c9"
},
+ {
+ "id": "f8b84389-4cc8-4dfb-b47c-3ff3c0901769",
+ "name": "MR7 - Dankó Rádió",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [
+ "folk music",
+ "music",
+ "oldies",
+ "public radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 80,
+ "streamUrl": "https://mr-stream.connectmedia.hu/4748/mr7.mp3",
+ "homepage": "https://mediaklikk.hu/danko/",
+ "logoUrl": null,
+ "votes": 258,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f8b84389-4cc8-4dfb-b47c-3ff3c0901769"
+ },
{
"id": "bc28ee22-af0a-4519-ac97-a21bd8707100",
"name": "Nemzeti Sport Radio",
@@ -15640,27 +31294,6 @@
"source": "radio-browser",
"sourceStationUuid": "01487972-88a0-4ed7-91b2-0727aa9f1810"
},
- {
- "id": "d179dbad-dc36-4306-b1bc-4fccea9becca",
- "name": "Rise FM Classic",
- "country": "Hungary",
- "countryCode": "HU",
- "language": "hungarian",
- "tags": [
- "dance",
- "edm",
- "house"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://oxygenmusic.hu:8443/RISE_CLASSIC_128",
- "homepage": "https://risefm.hu/",
- "logoUrl": "https://risefm.hu/wp-content/themes/risefm/images/favicon.png",
- "votes": 22,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "d179dbad-dc36-4306-b1bc-4fccea9becca"
- },
{
"id": "52664d85-94f2-4a12-aa8f-c7fae6ccf2da",
"name": "Rise FM Hit House",
@@ -15720,6 +31353,25 @@
"source": "radio-browser",
"sourceStationUuid": "0a4f1f1d-df8b-49aa-a7fe-9c7d5b4f6d91"
},
+ {
+ "id": "cdd6e9d9-b547-4a75-b705-9427ad2f356b",
+ "name": "Argentine Tango Radio",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "tango"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ais-edge94-nyc04.cdnstream.com/2202_128.mp3",
+ "homepage": "https://www.argentinetangoradio.com/",
+ "logoUrl": "https://www.radio.net/300/argentinetango.png",
+ "votes": 125,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "cdd6e9d9-b547-4a75-b705-9427ad2f356b"
+ },
{
"id": "bb7f1079-8d43-49f1-b15a-f68c1e4896ad",
"name": "Best FM - Eger",
@@ -15762,6 +31414,23 @@
"source": "radio-browser",
"sourceStationUuid": "ec52970d-802c-4145-812f-f8fa822c8a41"
},
+ {
+ "id": "f0319215-7d60-4c29-93d1-e9568afa0d70",
+ "name": "Best FM Székesfehérvár",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://icast.connectmedia.hu/5113/live.mp3",
+ "homepage": "https://www.bestfm.hu/",
+ "logoUrl": null,
+ "votes": 7,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0319215-7d60-4c29-93d1-e9568afa0d70"
+ },
{
"id": "844a66ab-74b9-4423-a6a9-713b7fd54aef",
"name": "Campus Rádió FM90",
@@ -15799,6 +31468,25 @@
"source": "radio-browser",
"sourceStationUuid": "d33f2777-aa0b-4171-a429-6c65683bef47"
},
+ {
+ "id": "2e0b0123-1246-4bc4-9754-233a2cc61010",
+ "name": "Cool.FM REMIX MUSIC",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [
+ "remix"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc23?ver=266114",
+ "homepage": "https://coolfm.hu/",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/5/83855.v4.png",
+ "votes": 199,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2e0b0123-1246-4bc4-9754-233a2cc61010"
+ },
{
"id": "f42f6dff-06f9-43e7-a27d-e157aea2ddcc",
"name": "COOLFM 2010-es évek",
@@ -15841,27 +31529,6 @@
"source": "radio-browser",
"sourceStationUuid": "36f2633f-4d88-4633-b0d5-052223c7b9a4"
},
- {
- "id": "dda5e837-1da9-40d8-bb69-9f3347060943",
- "name": "COOLFM Acoustic",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "acoustic",
- "guitar",
- "guitar rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc12",
- "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
- "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/cropped-egyszer%C5%B1-k%C3%A9p-192x192.png",
- "votes": 246,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "dda5e837-1da9-40d8-bb69-9f3347060943"
- },
{
"id": "2519fc19-720f-4e68-bedc-fa175c2dbaa4",
"name": "COOLFM Bside/Alternative",
@@ -15904,28 +31571,6 @@
"source": "radio-browser",
"sourceStationUuid": "56e5a8b5-a35c-4199-a1f9-90d37bc1664d"
},
- {
- "id": "8bbc6e30-276c-483b-afba-352c55ecc633",
- "name": "COOLFM Filmzenék",
- "country": "Hungary",
- "countryCode": "HU",
- "language": null,
- "tags": [
- "film score",
- "movie scores",
- "movie soundtracks",
- "soundtracks"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://mediagw.e-tiger.net/stream/zc01?ver=753658",
- "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
- "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/01/K%C3%89SZ_Filmzen%C3%A9k_2-%C3%9AJ-R%C3%81DI%C3%93.png",
- "votes": 886,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "8bbc6e30-276c-483b-afba-352c55ecc633"
- },
{
"id": "af336034-91df-48bb-884e-5e211e823d13",
"name": "COOLFM Karácsonyi Dalok",
@@ -15965,6 +31610,48 @@
"source": "radio-browser",
"sourceStationUuid": "4ca4df6e-74a3-41ac-bab5-ff2df1f76775"
},
+ {
+ "id": "7fdb4449-aceb-4047-a247-8740a037e0d4",
+ "name": "COOLFM Love Songs",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "easy listening",
+ "love songs",
+ "romantic"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc28",
+ "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
+ "logoUrl": "https://coolfm.hu/radio/wp-content/uploads/2022/09/14v2.png",
+ "votes": 198,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7fdb4449-aceb-4047-a247-8740a037e0d4"
+ },
+ {
+ "id": "e6eb9cb5-c206-4e78-9b5e-5d10084363a7",
+ "name": "COOLFM Sportoláshoz",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "fitness music",
+ "running",
+ "workout"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mediagw.e-tiger.net/stream/zc20",
+ "homepage": "https://coolfm.hu/radio/digitalis-radiok/",
+ "logoUrl": null,
+ "votes": 112,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e6eb9cb5-c206-4e78-9b5e-5d10084363a7"
+ },
{
"id": "438cf074-d324-482f-9cfa-e0d41641b0eb",
"name": "Dance Wave Retro!",
@@ -16004,21 +31691,48 @@
"sourceStationUuid": "b943ed28-3edd-4638-8754-cdd9953af2e3"
},
{
- "id": "6c65bafc-752e-462f-a6e2-d2fdba5e0ce0",
- "name": "DFM Rádió",
+ "id": "5e4d837f-bfc5-4494-bb26-4ee78c6a88b2",
+ "name": "Deja Vu Radio",
"country": "Hungary",
"countryCode": "HU",
- "language": null,
- "tags": [],
+ "language": "english,hungarian",
+ "tags": [
+ "00s",
+ "90s",
+ "anthems",
+ "classic",
+ "dance",
+ "electronic",
+ "house"
+ ],
"codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://s03.diazol.hu:7042/stream",
- "homepage": "https://dfmradio.hu/",
- "logoUrl": "https://v2.vrapro.hu/beta/api/radio/83c97f1b02c9d67c01c89fb8bcd0e62e/img/avatar/1732382531.png",
- "votes": 8,
+ "bitrate": 192,
+ "streamUrl": "https://carina.streamerr.co:8178/dejavuradio?type=http&nocache=297",
+ "homepage": "https://dejavuradio.hu/",
+ "logoUrl": "https://mmo.aiircdn.com/1377/6669663b59417.png",
+ "votes": 89,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "6c65bafc-752e-462f-a6e2-d2fdba5e0ce0"
+ "sourceStationUuid": "5e4d837f-bfc5-4494-bb26-4ee78c6a88b2"
+ },
+ {
+ "id": "cf6f73d9-5d72-4074-83e7-735afd5d48d7",
+ "name": "FM 103.9 A Rock",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.rockradio.hu/",
+ "homepage": "https://rockradio.hu/",
+ "logoUrl": "https://rockradio.hu/wp-content/themes/rockradio/assets/dist/img/favicon/apple-icon-120x120.png",
+ "votes": 954,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "cf6f73d9-5d72-4074-83e7-735afd5d48d7"
},
{
"id": "f2cfe79a-bd51-4f4d-9117-5619352f9645",
@@ -16037,6 +31751,23 @@
"source": "radio-browser",
"sourceStationUuid": "f2cfe79a-bd51-4f4d-9117-5619352f9645"
},
+ {
+ "id": "26a13ad6-ad3b-45de-a85d-e7dcc6af70e6",
+ "name": "Hír FM",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": "hungarian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://n34a-eu.rcs.revma.com/wevb267khf9uv?rj-ttl=5&rj-tok=AAABnZd5-KEAvca0veOvcEeJDw",
+ "homepage": "https://hirfm.hu/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "26a13ad6-ad3b-45de-a85d-e7dcc6af70e6"
+ },
{
"id": "10635a33-3668-487d-ba10-0b824394a825",
"name": "Megadance",
@@ -16232,23 +31963,6 @@
"source": "radio-browser",
"sourceStationUuid": "3b1d44e9-505d-492d-9aa1-fd67d315004c"
},
- {
- "id": "26a13ad6-ad3b-45de-a85d-e7dcc6af70e6",
- "name": "Hír FM",
- "country": "Hungary",
- "countryCode": "HU",
- "language": "hungarian",
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://n34a-eu.rcs.revma.com/wevb267khf9uv?rj-ttl=5&rj-tok=AAABnZd5-KEAvca0veOvcEeJDw",
- "homepage": "https://hirfm.hu/",
- "logoUrl": null,
- "votes": 9,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "26a13ad6-ad3b-45de-a85d-e7dcc6af70e6"
- },
{
"id": "558d3f12-49c3-4c1a-81a5-33e656860135",
"name": "MegaLive",
@@ -16287,6 +32001,28 @@
"source": "radio-browser",
"sourceStationUuid": "60d286c7-2208-4548-85ab-8b56b9a8e351"
},
+ {
+ "id": "c98290b6-452a-41a7-a676-44828326db3c",
+ "name": "Oxygen Spencer-Hill",
+ "country": "Hungary",
+ "countryCode": "HU",
+ "language": null,
+ "tags": [
+ "easy listening",
+ "italo",
+ "pop dance",
+ "soundtrack"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://oxygenmusic.hu:8443/oxygenspencerhillzenek",
+ "homepage": "https://oxygenmusic.hu/",
+ "logoUrl": "https://oxygenmusic.hu/logo192.png",
+ "votes": 80,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c98290b6-452a-41a7-a676-44828326db3c"
+ },
{
"id": "a3f5d76b-a237-4d5d-ae4a-1c2c13059855",
"name": "Sárvár Rádió",
@@ -16344,6 +32080,1690 @@
"source": "radio-browser",
"sourceStationUuid": "2ae40461-73b5-48ab-86c2-379597cfe833"
},
+ {
+ "id": "d037031b-f31e-4298-b36e-654eaad6416e",
+ "name": "Newstalk",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 25,
+ "streamUrl": "https://edge.audioxi.com/NT",
+ "homepage": "https://www.newstalk.com/",
+ "logoUrl": "https://www.newstalk.com/i/android-icon-192x192.png",
+ "votes": 3230,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "d037031b-f31e-4298-b36e-654eaad6416e"
+ },
+ {
+ "id": "aa92d0d1-fce2-4897-9211-0a10fd879471",
+ "name": "Radio Siamsa",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "irish traditional",
+ "mp3"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://cast02.siamsa.ie/radio/8000/radio.mp3",
+ "homepage": "https://siamsa.ie/",
+ "logoUrl": "https://siamsa.ie/favicon.ico",
+ "votes": 202,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "aa92d0d1-fce2-4897-9211-0a10fd879471"
+ },
+ {
+ "id": "87669242-210d-41ed-bc23-0dbed0cd51b3",
+ "name": "SOLID GOLD RADIO IRELAND 1",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://a4.asurahosting.com:6640/listen.mp3",
+ "homepage": "https://www.solidgoldradioireland.com/",
+ "logoUrl": "https://az11.yesstreaming.net/api/station/solid_gold_radio_ireland_1/art/dd67ea0ed1b8a5e9822f8af8",
+ "votes": 1,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "87669242-210d-41ed-bc23-0dbed0cd51b3"
+ },
+ {
+ "id": "8f7e7bbb-bfe6-453c-9213-fdc2eb88a561",
+ "name": "RTÉ Gold",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "classic hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveaudio.rte.ie/hls-radio/gold/chunklist.m3u8",
+ "homepage": "https://www.rte.ie/radio/",
+ "logoUrl": null,
+ "votes": 400,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f7e7bbb-bfe6-453c-9213-fdc2eb88a561"
+ },
+ {
+ "id": "d0a1da9f-46b3-11e9-aa55-52543be04c81",
+ "name": "Today FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "alternative",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.audioxi.com/TD",
+ "homepage": "https://www.todayfm.com/",
+ "logoUrl": "https://www.todayfm.com/favicon.ico",
+ "votes": 1922,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "d0a1da9f-46b3-11e9-aa55-52543be04c81"
+ },
+ {
+ "id": "6650bb57-12aa-41d3-8ae4-ed5dcf0909cd",
+ "name": "8Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "alternative",
+ "indie rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.rcast.net/66127",
+ "homepage": "https://8radio.com/listen/8radio320k/",
+ "logoUrl": null,
+ "votes": 616,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6650bb57-12aa-41d3-8ae4-ed5dcf0909cd"
+ },
+ {
+ "id": "42748806-83dc-4ed0-a9d9-1a87bc9bd339",
+ "name": "DEEP HOUSE RADIO",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.shoutcast.com/dhr?1728967549574",
+ "homepage": "https://www.deephouse-radio.com/",
+ "logoUrl": "https://static.wixstatic.com/media/da966a_f5f97999e9404436a2c30e3336a3e307~mv2.png/v1/crop/x_250,y_0,w_450,h_700/fill/w_249,h_387,al_c,q_95,enc_auto/da966a_f5f97999e9404436a2c30e3336a3e307~mv2.png",
+ "votes": 226,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "42748806-83dc-4ed0-a9d9-1a87bc9bd339"
+ },
+ {
+ "id": "9cd72f5e-5395-4c61-a9a3-923a70cbffcb",
+ "name": "Dublin's FM104",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://wg.cdn.tibus.net/fm104MP3128",
+ "homepage": "https://www.fm104.ie/",
+ "logoUrl": "https://mm.aiircdn.com/620/5d9f214ccc05f.png",
+ "votes": 325,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "9cd72f5e-5395-4c61-a9a3-923a70cbffcb"
+ },
+ {
+ "id": "65dc00f6-2a86-4195-a64f-91aed29bd153",
+ "name": "PowerFM Dublin 320Kbps MP3",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "dance",
+ "drum and bass",
+ "electronic",
+ "house",
+ "jungle"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://www.powerfm.org:8443/powerfm.mp3",
+ "homepage": "https://www.powerfm.org/",
+ "logoUrl": "https://powerfm.org/favicon.ico",
+ "votes": 129,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "65dc00f6-2a86-4195-a64f-91aed29bd153"
+ },
+ {
+ "id": "d1f3bbb8-bb22-4efd-9f23-0e22ad2ae209",
+ "name": "RTE 2 FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://icecast.rte.ie/2fm",
+ "homepage": "https://www.rte.ie/radio/2fm/",
+ "logoUrl": null,
+ "votes": 209,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1f3bbb8-bb22-4efd-9f23-0e22ad2ae209"
+ },
+ {
+ "id": "6e6b07e9-8fcf-4ab5-b2cb-562e07e28ce6",
+ "name": "Sunshine 106.8",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/SUN?_=808250",
+ "homepage": "https://www.sunshineradio.ie/",
+ "logoUrl": "https://mm.aiircdn.com/529/5e1463a7c9707.png",
+ "votes": 164,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6e6b07e9-8fcf-4ab5-b2cb-562e07e28ce6"
+ },
+ {
+ "id": "6297d10b-e9a9-4f6b-8504-0aba01f646bd",
+ "name": "UCBI WORSHIP",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "praise & worship"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.btsstream.com/stream/iworship",
+ "homepage": "https://www.ucbireland.ie/",
+ "logoUrl": "https://www.google.com/imgres?imgurl=https%3A%2F%2Fuk.radio.net%2Fimages%2Fbroadcasts%2F93%2F9f%2F130137%2F1%2Fc300.png&tbnid=_l8rjHnL2ip3MM&vet=12ahUKEwjBkOeNpIaBAxWBs4sKHWJKCJwQMygAegQIARA9..i&imgrefurl=https%3A%2F%2Fuk.radio.net%2Fs%2Fucbirelandworship&docid=LLoJBiNVqqetTM&w=300&h=300&q=ucbi%20worship&client=firefox-b-lm&ved=2ahUKEwjBkOeNpIaBAxWBs4sKHWJKCJwQMygAegQIARA9",
+ "votes": 162,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6297d10b-e9a9-4f6b-8504-0aba01f646bd"
+ },
+ {
+ "id": "c422abf3-929d-41bc-9d39-bffdf56b7a7e",
+ "name": "Christmas FM Classical & Carols",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "carols",
+ "christmas",
+ "classical"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2549_64.aac",
+ "homepage": "https://christmasfm.com/",
+ "logoUrl": "https://christmasfm.com/wp-content/uploads/cropped-cfm-hat-512x512-1-180x180.png",
+ "votes": 613,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c422abf3-929d-41bc-9d39-bffdf56b7a7e"
+ },
+ {
+ "id": "dab42837-8e90-43e0-8d50-c8e3742b4d3f",
+ "name": "Christmas FM Ireland",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2547_128.mp3?listenerId=esTrackblock097016&aw_0_1st.playerid=esPlayer&aw_0_1st.skey=1692448019",
+ "homepage": "https://christmasfm.com/",
+ "logoUrl": "https://christmasfm.com/wp-content/uploads/cropped-cfm-hat-512x512-1-192x192.png",
+ "votes": 295,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "dab42837-8e90-43e0-8d50-c8e3742b4d3f"
+ },
+ {
+ "id": "264a1e04-46a9-4f46-944d-ca65e1c2ff36",
+ "name": "Classic Hits 80s",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "80's"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://edge7.audioxi.com/CH80S",
+ "homepage": "https://www.classichits.ie/classic-hits-80s/",
+ "logoUrl": "https://www.google.com/imgres?q=classic%20hits%2080%27s%20icon&imgurl=https%3A%2F%2Fstatic.mytuner.mobi%2Fmedia%2Ftvos_radios%2F935%2Fclassic-hits-80s.570a3c5f.png&imgrefurl=https%3A%2F%2Fwww.radio-ireland.com%2Fclassic-hits-80s&docid=y6gt-Cu1A1HPtM&tbnid=Hla6m0zY1ls_TM&vet=12ahUKEwjapfbv9NuKAxX4VEEAHWPxHa4QM3oECBUQAA..i&w=512&h=512&hcb=2&ved=2ahUKEwjapfbv9NuKAxX4VEEAHWPxHa4QM3oECBUQAA",
+ "votes": 57,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "264a1e04-46a9-4f46-944d-ca65e1c2ff36"
+ },
+ {
+ "id": "eba63d9f-421e-4a75-9c57-f2d91ba0498b",
+ "name": "Community Radio Castlebar",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://radiozender.mpbnetwerken.nl/crcfm",
+ "homepage": "https://crcfm.ie/",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/crcfm/16x9.png",
+ "votes": 3,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "eba63d9f-421e-4a75-9c57-f2d91ba0498b"
+ },
+ {
+ "id": "e51f7fbf-ff3d-4fc0-845d-71faf507183b",
+ "name": "Dublin's FM104",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://onic.dublin.live.stream.broadcasting.news/stream-fm104",
+ "homepage": "http://www.fm104.ie/",
+ "logoUrl": "https://mmo.aiircdn.com/301/6343debbb68a1.png",
+ "votes": 1,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "e51f7fbf-ff3d-4fc0-845d-71faf507183b"
+ },
+ {
+ "id": "aa9ee750-9e83-4360-89db-ab8f4c416a79",
+ "name": "Freedom FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "00s",
+ "2000s",
+ "90s",
+ "dance",
+ "pop",
+ "pop music",
+ "r&b",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://edge3.audioxi.com/FREEDOMFM",
+ "homepage": "https://freedomfm.ie/",
+ "logoUrl": "https://mmo.aiircdn.com/606/655bcddbaa77f.png",
+ "votes": 163,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "aa9ee750-9e83-4360-89db-ab8f4c416a79"
+ },
+ {
+ "id": "567c9759-6b33-4fd9-867d-73643955886f",
+ "name": "Galway Bay FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "galway",
+ "ireland",
+ "local"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://wg.cdn.tibus.net/galwaybay.mp3",
+ "homepage": "https://galwaybayfm.ie/",
+ "logoUrl": "https://www.galwaybayfm.ie/images/ico/apple-touch-icon.png",
+ "votes": 242,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "567c9759-6b33-4fd9-867d-73643955886f"
+ },
+ {
+ "id": "33f01714-75d1-43c7-bf21-f373e9dcd0ed",
+ "name": "iRadio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/IRADNWAAC",
+ "homepage": "https://iradio.ie/",
+ "logoUrl": "https://pbs.twimg.com/profile_images/1425495497410818050/btb4eQjn_400x400.jpg",
+ "votes": 19,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "33f01714-75d1-43c7-bf21-f373e9dcd0ed"
+ },
+ {
+ "id": "6ed98dba-c585-42a8-85de-a2b45e8b7d45",
+ "name": "Onic 80s",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "80s"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://live.onic.ie/stream-80s?_=184336",
+ "homepage": "https://www.onic.ie/player/onic-country/",
+ "logoUrl": "https://mmo.aiircdn.com/301/67eecd2991bb4.png",
+ "votes": 32,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "6ed98dba-c585-42a8-85de-a2b45e8b7d45"
+ },
+ {
+ "id": "147538f0-2ca5-4844-97af-90cd2be99c28",
+ "name": "98fm Dance",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://edge.audioxi.com/98DANCE",
+ "homepage": "https://www.98fm.com/",
+ "logoUrl": null,
+ "votes": 91,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "147538f0-2ca5-4844-97af-90cd2be99c28"
+ },
+ {
+ "id": "0ba01db3-4616-432b-bcc3-634547a4e857",
+ "name": "Beat 102-103",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/BEAT",
+ "homepage": "http://www.beat102103.com/",
+ "logoUrl": "https://www.beat102103.com/images/ico/android-icon-192x192.png",
+ "votes": 1,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0ba01db3-4616-432b-bcc3-634547a4e857"
+ },
+ {
+ "id": "599c433e-f416-4fee-b1c4-cef23900e1dd",
+ "name": "C103 West",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://wg.cdn.tibus.net/C103West",
+ "homepage": "https://www.liveradio.ie/stations/c103-west",
+ "logoUrl": "https://mm.aiircdn.com/619/5d5199be0aa8e.png",
+ "votes": 58,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "599c433e-f416-4fee-b1c4-cef23900e1dd"
+ },
+ {
+ "id": "973aedb0-2763-4e70-8ab7-90978ab4278d",
+ "name": "CFC FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://visual.shoutca.st/stream/crcfm",
+ "homepage": "http://crcfm.ie/index.html",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "973aedb0-2763-4e70-8ab7-90978ab4278d"
+ },
+ {
+ "id": "ca6de309-f3fc-4e52-80e7-eacb885dd318",
+ "name": "RTÉ Radio 1",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "news",
+ "sport",
+ "talk",
+ "talk & speech"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveaudio.rte.ie/hls-radio/radio1/chunklist.m3u8",
+ "homepage": "https://www.rte.ie/radio/",
+ "logoUrl": null,
+ "votes": 714,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ca6de309-f3fc-4e52-80e7-eacb885dd318"
+ },
+ {
+ "id": "17bd5838-0913-498e-b914-bbdd564e2ee5",
+ "name": "RTÉ Raidió na Gaeltachta",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english,gaelic",
+ "tags": [
+ "gaelic",
+ "irish language",
+ "mixed"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveaudio.rte.ie/hls-radio/rnag/chunklist.m3u8",
+ "homepage": "https://www.rte.ie/radio/rnag/",
+ "logoUrl": null,
+ "votes": 112,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "17bd5838-0913-498e-b914-bbdd564e2ee5"
+ },
+ {
+ "id": "e0e39893-e989-4ec3-a57a-e184c4e0af7a",
+ "name": "Scariff Bay Community Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s4.radio.co/s87ac5cf5a/listen",
+ "homepage": "http://www.scariffbayradio.com/",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "e0e39893-e989-4ec3-a57a-e184c4e0af7a"
+ },
+ {
+ "id": "4303734f-8ddd-4ecf-b78b-cc5a1c3347a7",
+ "name": "TrancePulse Dublin",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.trance.ie:8443/stream",
+ "homepage": "http://live.trance.ie:8000/stream",
+ "logoUrl": "https://trancepulsefm.ie/wp-content/uploads/elementor/thumbs/Trancepulse-1-qhvmeannx5ha8zqboniuwvif323gi2k5pqrpcwjovs.png",
+ "votes": 58,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4303734f-8ddd-4ecf-b78b-cc5a1c3347a7"
+ },
+ {
+ "id": "f4f568cb-cdb5-4b28-9e6f-815437e1af3d",
+ "name": "[ vinyl stacks ]",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://vinylstacks.uncool.club/vinyl-stacks.mp3",
+ "homepage": "https://vinylstacks.uncool.club/",
+ "logoUrl": "https://vinylstacks.uncool.club/favicon.png",
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f4f568cb-cdb5-4b28-9e6f-815437e1af3d"
+ },
+ {
+ "id": "1944c914-af4a-406a-b108-9b71781c598b",
+ "name": "BRIAN DALY",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "community radio",
+ "religious"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://uksoutha.streaming.broadcast.radio:28140/lifefm",
+ "homepage": "https://www.lifefm.ie/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "1944c914-af4a-406a-b108-9b71781c598b"
+ },
+ {
+ "id": "7daeeed1-ab41-44b2-af95-532ad0ab0fc7",
+ "name": "Circle Of White Light Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "local talk",
+ "news",
+ "news talk",
+ "world"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu4.fastcast4u.com/proxy/cowlradio?mp=/1",
+ "homepage": "https://www.circleofwhitelight.com/",
+ "logoUrl": null,
+ "votes": 32,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7daeeed1-ab41-44b2-af95-532ad0ab0fc7"
+ },
+ {
+ "id": "de02a774-ae5b-4a8a-a975-b8cadfc066fa",
+ "name": "Community Radio Castlebar (Backup)",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://radiozender.mpbnetwerken.nl/crcfm-backup",
+ "homepage": "https://crcfm.ie/",
+ "logoUrl": "https://crcfm.ie/uploads/1/4/7/7/147722784/published/crcfm-3d-logo.png?1713432061",
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "de02a774-ae5b-4a8a-a975-b8cadfc066fa"
+ },
+ {
+ "id": "14c2d4ae-4942-4bf6-bf38-d40dd484f841",
+ "name": "Gem New Wave Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "80's"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://gemradionw.radioca.st/;stream.nsv",
+ "homepage": "https://www.gemnewwave.com/",
+ "logoUrl": "https://static2.mytuner.mobi/media/tvos_radios/vJZNMZAyy6.png",
+ "votes": 73,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "14c2d4ae-4942-4bf6-bf38-d40dd484f841"
+ },
+ {
+ "id": "fdacbb42-82fd-48dc-a940-351b787a35d3",
+ "name": "Gem Radio Gold",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "ad free",
+ "classics",
+ "gold",
+ "hits",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://gemradio.radioca.st/stream/1/",
+ "homepage": "https://www.gemnewwave.com/",
+ "logoUrl": "https://station-images-prod.radio-assets.com/175/gemradiogold.png?version=821b631d86bb60e11cc1f872384823d6",
+ "votes": 15,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "fdacbb42-82fd-48dc-a940-351b787a35d3"
+ },
+ {
+ "id": "96159d2f-0601-11e8-ae97-52543be04c81",
+ "name": "Highland Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "popular music",
+ "variety"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/HIGHLAND_RADIO.mp3",
+ "homepage": "http://www.highlandradio.com/",
+ "logoUrl": "https://highlandradio.com/wp-content/uploads/2022/01/cropped-highland-favicon-01-180x180.png",
+ "votes": 760,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "96159d2f-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "5d86bd71-12b0-4426-9f26-181a58ee666f",
+ "name": "Ignoreradio Shoegaze",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://sp1.autopo.st/8026/stream",
+ "homepage": "https://ignoreradio.com/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5d86bd71-12b0-4426-9f26-181a58ee666f"
+ },
+ {
+ "id": "128a4337-41ce-423a-bedf-28ff5d27e8dd",
+ "name": "MPB Radio 2",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "pop music",
+ "pop",
+ "hit music",
+ "70s",
+ "80s",
+ "90s",
+ "00s",
+ "oldies",
+ "classic hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/radio2.mp3",
+ "homepage": "https://mpbradio2.com",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/mpb/radio2.png",
+ "votes": 40,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "128a4337-41ce-423a-bedf-28ff5d27e8dd"
+ },
+ {
+ "id": "e2d36184-272d-4976-9518-4a174e17d11a",
+ "name": "MPB Radio 2 90s & 00s",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "pop music",
+ "pop",
+ "hit music",
+ "90s music",
+ "rave",
+ "eurodance",
+ "90s pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/radio2-90s00s.mp3",
+ "homepage": "https://mpbradio2.com",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/mpb/radio2-90s00s.png",
+ "votes": 40,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e2d36184-272d-4976-9518-4a174e17d11a"
+ },
+ {
+ "id": "6462ecf8-d6ed-48ca-858a-50bef4d5616b",
+ "name": "MPB Radio 2 Easy",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "jazz music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/radio2easy.mp3",
+ "homepage": "https://mpbradio2.com/",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/mpb/radio2-easy.png",
+ "votes": 23,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6462ecf8-d6ed-48ca-858a-50bef4d5616b"
+ },
+ {
+ "id": "52637865-3e18-49af-b28d-191f4ff201eb",
+ "name": "Newstalk Ireland AAC",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/NTAAC",
+ "homepage": "http://www.newstalk.ie/",
+ "logoUrl": "https://www.newstalk.com/i/android-icon-192x192.png",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "52637865-3e18-49af-b28d-191f4ff201eb"
+ },
+ {
+ "id": "e3119588-7d01-446c-9bcc-5cb9e302943f",
+ "name": "PowerFM Dublin 320Kbps Ogg/Vorbis",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://www.powerfm.org:8443/powerfm.ogg",
+ "homepage": "https://www.powerfm.org:8443/",
+ "logoUrl": "https://powerfm.org/favicon.ico",
+ "votes": 88,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e3119588-7d01-446c-9bcc-5cb9e302943f"
+ },
+ {
+ "id": "8cd4957a-9a7f-4493-b231-196b434b34f5",
+ "name": "RTÉ 2FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveaudio.rte.ie/hls-radio/2fm/chunklist.m3u8",
+ "homepage": "https://www.rte.ie/radio/",
+ "logoUrl": null,
+ "votes": 102,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8cd4957a-9a7f-4493-b231-196b434b34f5"
+ },
+ {
+ "id": "f778f85a-b4b4-48e8-89a0-c62a083c8bcd",
+ "name": "RTÉ Radio 1 Extra",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "speech"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveaudio.rte.ie/hls-radio/radio1extra/chunklist.m3u8",
+ "homepage": "https://www.rte.ie/radio/",
+ "logoUrl": null,
+ "votes": 99,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f778f85a-b4b4-48e8-89a0-c62a083c8bcd"
+ },
+ {
+ "id": "5c153996-c2f7-4bdb-a326-5b45dc7816a5",
+ "name": "SOLID GOLD RADIO IRELAND",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://az11.yesstreaming.net:8020/radio.mp3",
+ "homepage": "https://www.solidgoldradioireland.com/",
+ "logoUrl": null,
+ "votes": 64,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5c153996-c2f7-4bdb-a326-5b45dc7816a5"
+ },
+ {
+ "id": "f81d5a73-e2b2-4550-8acb-6db1fd57b98a",
+ "name": "South East Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "adult contemporary"
+ ],
+ "codec": "AAC+",
+ "bitrate": 88,
+ "streamUrl": "https://edge4.audioxi.com/SOUTHEAST",
+ "homepage": "https://www.southeastradio.ie/",
+ "logoUrl": "https://play-lh.googleusercontent.com/Oy2S0hLtVaIvtiXlbG6fxZCVEbQxGRjAD8ujOeJ2iSaaIjUhCk6uz5mB64577VjQ2-8",
+ "votes": 33,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f81d5a73-e2b2-4550-8acb-6db1fd57b98a"
+ },
+ {
+ "id": "57d37976-f406-11e9-a96c-52543be04c81",
+ "name": "TodayFm",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://pri.gocaster.net/td",
+ "homepage": "https://todayfm.com/",
+ "logoUrl": "https://www.todayfm.com/i/apple-touch-icon.png?v=6",
+ "votes": 270,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "57d37976-f406-11e9-a96c-52543be04c81"
+ },
+ {
+ "id": "65f29258-bc0a-4e9d-877d-6a6ef688e1a9",
+ "name": "University College Cork",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "college",
+ "cork",
+ "ireland",
+ "ucc"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.btsstream.com:8060/ucc.mp3",
+ "homepage": "https://www.ucc.ie/en/983fm/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "65f29258-bc0a-4e9d-877d-6a6ef688e1a9"
+ },
+ {
+ "id": "d144f537-691f-4e56-bb2c-1eeeefb15c20",
+ "name": "West Limerick 102 FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english,irish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s29.myradiostream.com/17796/listen.mp3",
+ "homepage": "https://westlimerick102fm.ie/",
+ "logoUrl": "https://westlimerick102fm.ie/wp-content/uploads/2025/03/WLLogo.png",
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "d144f537-691f-4e56-bb2c-1eeeefb15c20"
+ },
+ {
+ "id": "715cbead-94a7-482f-afca-192d6b63086f",
+ "name": "1150 AM 101.7 FM WDEL",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/KERRYAAC",
+ "homepage": "https://www.radiokerry.ie/",
+ "logoUrl": "https://www.radiokerry.ie/images/ico/apple-touch-icon.png",
+ "votes": 11,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "715cbead-94a7-482f-afca-192d6b63086f"
+ },
+ {
+ "id": "9a5e572a-866c-449a-9efe-edf0bf84549f",
+ "name": "2xM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "alternative",
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://liveaudio.rte.ie/hls-radio/2xm/chunklist.m3u8",
+ "homepage": "https://www.rte.ie/radio/",
+ "logoUrl": null,
+ "votes": 18,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9a5e572a-866c-449a-9efe-edf0bf84549f"
+ },
+ {
+ "id": "3b7b87cd-3287-4a1e-b5fc-7f3d76b9e4a3",
+ "name": "BFBS Northern Ireland",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://listen-ssvcbfbs.sharp-stream.com/ssvcbfbs4.aac",
+ "homepage": "https://radio.bfbs.com/stations/bfbs-northern-ireland",
+ "logoUrl": "https://radio.bfbs.com/icons/icon-512x512.png?v=0afec91a27aaa6d57f2b000c6fbe8cac",
+ "votes": 19,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3b7b87cd-3287-4a1e-b5fc-7f3d76b9e4a3"
+ },
+ {
+ "id": "6991b326-24a7-4005-b14c-14f59311636f",
+ "name": "Biggest Disco Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://s5.radio.co/s823d25743/low",
+ "homepage": "https://www.biggestdiscoradio.com/",
+ "logoUrl": "https://www.biggestdiscoradio.com/apple-touch-icon.png",
+ "votes": 15,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "6991b326-24a7-4005-b14c-14f59311636f"
+ },
+ {
+ "id": "c1b571b9-5aee-4ff1-952b-c3159338075a",
+ "name": "Christmas FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "christmas",
+ "holiday",
+ "seasonal"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2547_128.mp3",
+ "homepage": "https://christmasfm.com/",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1b571b9-5aee-4ff1-952b-c3159338075a"
+ },
+ {
+ "id": "47c1604c-4607-41ae-85e9-cf84869bb487",
+ "name": "Christmas FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "christmas music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2547_128.mp3?listenerId=esAdblock0724411&aw_0_1st.playerid=esPlayer&aw_0_1st.skey=1671316064&aw_0_req.gdpr=false",
+ "homepage": "https://christmasfm.com/",
+ "logoUrl": "https://christmasfm.com/wp-content/uploads/2021/07/generic_CFM_web.png",
+ "votes": 362,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "47c1604c-4607-41ae-85e9-cf84869bb487"
+ },
+ {
+ "id": "96570d0f-a8c9-4083-bfd1-0cd783663662",
+ "name": "Christmas FM Classical",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2549_128.mp3?listenerId=94d1ac3bf877b65e4e17cd7e9bfec132&aw_0_1st.playerid=esPlayer&aw_0_1st.skey=1692448390",
+ "homepage": "https://christmasfm.com/",
+ "logoUrl": "https://christmasfm.com/wp-content/uploads/cropped-cfm-hat-512x512-1-180x180.png",
+ "votes": 34,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "96570d0f-a8c9-4083-bfd1-0cd783663662"
+ },
+ {
+ "id": "17b6bf00-b9e6-42ee-99d0-13fbbec2c99e",
+ "name": "Christmas FM Classical & Carols",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2549_128.mp3?",
+ "homepage": "https://play.christmasfm.com/",
+ "logoUrl": "https://live.mystreamplayer.com/configs/images/northpole_web-icon.png",
+ "votes": 74,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "17b6bf00-b9e6-42ee-99d0-13fbbec2c99e"
+ },
+ {
+ "id": "ba3115af-e5a8-4b36-afdd-8fc5d9d1ef02",
+ "name": "Christmas FM Classics",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2550_128.mp3?listenerId=94d1ac3bf877b65e4e17cd7e9bfec132&aw_0_1st.playerid=esPlayer&aw_0_1st.skey=1692448283",
+ "homepage": "https://christmasfm.com/",
+ "logoUrl": "https://christmasfm.com/wp-content/uploads/cropped-cfm-hat-512x512-1-192x192.png",
+ "votes": 91,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba3115af-e5a8-4b36-afdd-8fc5d9d1ef02"
+ },
+ {
+ "id": "1c33aa8c-bb01-412f-aa63-e94aa6c33770",
+ "name": "Clonmellon Community Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "60s",
+ "70s",
+ "dance music",
+ "irish",
+ "irish music",
+ "local music",
+ "news talk",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu8.fastcast4u.com/proxy/ccr?mp=/1",
+ "homepage": "https://www.clonmelloncommunityradio.com/",
+ "logoUrl": "https://www.liveradio.ie/files/images/344781/resized/180x172c/clonmellon_community_radio.jpg",
+ "votes": 38,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1c33aa8c-bb01-412f-aa63-e94aa6c33770"
+ },
+ {
+ "id": "001ea586-423e-4c2b-afee-460c60e24100",
+ "name": "Club FM Dublin",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://c6.radioboss.fm:8225/stream",
+ "homepage": "http://www.clubfmdublin.com/",
+ "logoUrl": "https://www.liveradio.ie/files/images/491331/resized/180x172c/screenshot_20211216_030436_instagram.jpg",
+ "votes": 18,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "001ea586-423e-4c2b-afee-460c60e24100"
+ },
+ {
+ "id": "b75b0946-9f42-4c9d-bff2-ea13f9141356",
+ "name": "Cork's RedFM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/RED",
+ "homepage": "https://www.redfm.ie/",
+ "logoUrl": "https://www.redfm.ie/i/android-chrome-192x192.png",
+ "votes": 9,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b75b0946-9f42-4c9d-bff2-ea13f9141356"
+ },
+ {
+ "id": "67aba42b-46a0-465c-8267-c9418b18b6dd",
+ "name": "Deise Christmas Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://drn.radioca.st/stream",
+ "homepage": "https://deisechristmas.com/",
+ "logoUrl": "https://img1.wsimg.com/isteam/ip/0f31d834-d4d9-411f-9779-2be3e50de7a6/dc1.png/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:710,cg:true",
+ "votes": 7,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "67aba42b-46a0-465c-8267-c9418b18b6dd"
+ },
+ {
+ "id": "ad48771d-17a7-11ea-a620-52543be04c81",
+ "name": "Dublin's 98FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "contemporary hits",
+ "news",
+ "pop",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.audioxi.com/98",
+ "homepage": "https://www.98fm.com/",
+ "logoUrl": "https://www.98fm.com/favicon.ico?v=11",
+ "votes": 694,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ad48771d-17a7-11ea-a620-52543be04c81"
+ },
+ {
+ "id": "36fac466-1863-4940-a793-5a6c091e6a5d",
+ "name": "Dublin's 98FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/98",
+ "homepage": "https://www.98fm.com/",
+ "logoUrl": "https://www.98fm.com/i/android-icon-192x192.png",
+ "votes": 4,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "36fac466-1863-4940-a793-5a6c091e6a5d"
+ },
+ {
+ "id": "4475900d-a213-4d33-81c8-86e278d08cb2",
+ "name": "Dublin's Q102",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://onic.dublin.live.stream.broadcasting.news/stream-q102",
+ "homepage": "http://www.q102.ie/",
+ "logoUrl": "https://mmo.aiircdn.com/301/679cae225b89a.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4475900d-a213-4d33-81c8-86e278d08cb2"
+ },
+ {
+ "id": "af74fb64-d4be-4016-b797-1f01b6488954",
+ "name": "Dunnes Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://stream.dunnesroblox.com/dunnesradio.mp3",
+ "homepage": "https://radio.dunnesroblox.com/",
+ "logoUrl": "https://radio.dunnesroblox.com/favicon.png",
+ "votes": 1,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "af74fb64-d4be-4016-b797-1f01b6488954"
+ },
+ {
+ "id": "08d1d016-ff49-4e50-95be-e2ded8a32924",
+ "name": "HeadWax Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "jazz fusion"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://headwaxradio.radioca.st/stream",
+ "homepage": "https://www.headwaxradio.ie/",
+ "logoUrl": "https://www.wix.com/favicon.ico",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "08d1d016-ff49-4e50-95be-e2ded8a32924"
+ },
+ {
+ "id": "d45a9c6f-8526-11e9-aa30-52543be04c81",
+ "name": "Limerick's Live 95FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "adult contemporary",
+ "local news",
+ "local radio",
+ "local talk",
+ "love songs",
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://wg.cdn.tibus.net/Live95fm",
+ "homepage": "https://www.live95fm.ie/home/",
+ "logoUrl": "https://mm.aiircdn.com/617/5d77b07fec8c4.png",
+ "votes": 265,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d45a9c6f-8526-11e9-aa30-52543be04c81"
+ },
+ {
+ "id": "3625bc76-7234-4ae2-9179-e16d5308873a",
+ "name": "MixLive - Progressive & Tech-house",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "progressive house",
+ "progressive trance",
+ "tech house"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://strw3.openstream.co/939",
+ "homepage": "https://mixlive.net/stream/progressive-tech-house/",
+ "logoUrl": "https://mixlive.net/wp-content/uploads/2025/12/cropped-sound-mixer-192x192.png",
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3625bc76-7234-4ae2-9179-e16d5308873a"
+ },
+ {
+ "id": "85038c56-31f9-455b-a4bd-e43a5264d51f",
+ "name": "MPB Radio 1",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "pop music",
+ "pop",
+ "hit music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/radio1.mp3",
+ "homepage": "https://mpbradio1.com",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/mpb/radio1.png",
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "85038c56-31f9-455b-a4bd-e43a5264d51f"
+ },
+ {
+ "id": "d601c46a-9607-421b-b9c2-341a580d082f",
+ "name": "MPB Radio 1",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://sc.mpbnl.nl/radio1",
+ "homepage": "https://www.mpbradio1.com/#/",
+ "logoUrl": "https://www.mpbradio1.com/images/logo.png",
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d601c46a-9607-421b-b9c2-341a580d082f"
+ },
+ {
+ "id": "f5a7e8d6-f25f-42d5-ac96-fc42c42629bc",
+ "name": "MPB Radio 1 MixMingle",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "dance music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 384,
+ "streamUrl": "https://radiozender.mpbnetwerken.nl/radio1mixmingle.mp3",
+ "homepage": "https://mpbradio1.com/",
+ "logoUrl": "https://radiodns.mpbnl.nl/logos/mpb/radio1-mixmingle.png",
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f5a7e8d6-f25f-42d5-ac96-fc42c42629bc"
+ },
+ {
+ "id": "60381246-b0b2-4d46-988f-d4505633a55f",
+ "name": "Ocean FM Sligo",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://edge4.audioxi.com/OCEANSAAC",
+ "homepage": "http://oceanfm.ie/",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/7/7597.v13.png",
+ "votes": 10,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "60381246-b0b2-4d46-988f-d4505633a55f"
+ },
+ {
+ "id": "8207a7a8-9644-4088-9949-05a98709f159",
+ "name": "Off The Ball",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "ireland",
+ "sport",
+ "sports news",
+ "sports talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://stream.audioxi.com/OTB?aw_0_1st.playerId=BMIE_GoLoudWeb&aw_0_1st.playerId=BMIE_GoLoudWeb&aw_0_1st.premium=false",
+ "homepage": "https://www.offtheball.com/",
+ "logoUrl": "https://www.offtheball.com/images/logo-stacked-otb.svg?v1694182767",
+ "votes": 24,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8207a7a8-9644-4088-9949-05a98709f159"
+ },
+ {
+ "id": "826ea1a0-238b-44c2-8964-4c1449a299e6",
+ "name": "Onic Hits",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://live.onic.ie/stream-hits?_=408214",
+ "homepage": "https://www.onic.ie/player/onic-hits/",
+ "logoUrl": "https://mmo.aiircdn.com/301/67eea1328caba.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "826ea1a0-238b-44c2-8964-4c1449a299e6"
+ },
+ {
+ "id": "98301d1a-ed24-4653-afbe-e7113ea8f0e7",
+ "name": "Onic Movies",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "movie scores",
+ "movie soundtracks",
+ "movies"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://live.onic.ie/stream-movies?_=55552",
+ "homepage": "https://www.onic.ie/player/onic-movies/",
+ "logoUrl": "https://mmo.aiircdn.com/301/67eecfc515e09.png",
+ "votes": 27,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "98301d1a-ed24-4653-afbe-e7113ea8f0e7"
+ },
+ {
+ "id": "3bdf6582-779c-4589-bb54-36f88c98872e",
+ "name": "Onic RnB",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "rap hiphop rnb",
+ "rnb"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://live.onic.ie/stream-rnb?_=890764",
+ "homepage": "https://www.onic.ie/player/onic-rnb/",
+ "logoUrl": "https://mmo.aiircdn.com/301/67eed0efb2ee9.png",
+ "votes": 18,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "3bdf6582-779c-4589-bb54-36f88c98872e"
+ },
+ {
+ "id": "5a6f3d45-4ecd-4bcb-a8b2-53304b1e9391",
+ "name": "Pacific FM Relax",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://radiozender.mpbnetwerken.nl/pacificfm-relax",
+ "homepage": "https://radiozender.mpbnetwerken.nl/pacificfm-relax",
+ "logoUrl": null,
+ "votes": 16,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "5a6f3d45-4ecd-4bcb-a8b2-53304b1e9391"
+ },
+ {
+ "id": "9c2a39db-f196-447a-9972-805755c5c4d1",
+ "name": "Phantom Radio Ireland",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming05.liveboxstream.uk/proxy/prienter?mp=/stream&_=1739569292206",
+ "homepage": "https://www.phantomradio.ie/",
+ "logoUrl": "http://www.phantomradio.ie/wp-content/uploads/2020/06/Logo-Transparent-2.png",
+ "votes": 14,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9c2a39db-f196-447a-9972-805755c5c4d1"
+ },
+ {
+ "id": "ab60fa96-0abd-4896-9156-91874f8240d2",
+ "name": "PlanetRadioie",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "1960s and 1970s",
+ "1980s hits",
+ "1990s hits",
+ "classic hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://media.planetradio.ie/radio/8000/OnAir",
+ "homepage": "https://planetradio.ie/",
+ "logoUrl": null,
+ "votes": 41,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ab60fa96-0abd-4896-9156-91874f8240d2"
+ },
+ {
+ "id": "a19882a7-5f94-437c-949d-6a8fcbd69748",
+ "name": "Radio NOVA 100",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://edge2.audioxi.com/NOVA",
+ "homepage": "https://www.nova.ie/",
+ "logoUrl": "https://www.nova.ie/favicon.ico",
+ "votes": 61,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a19882a7-5f94-437c-949d-6a8fcbd69748"
+ },
+ {
+ "id": "df44c4d5-df63-4f39-9230-ea57fa8d916b",
+ "name": "Rewind",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "classic hits",
+ "gold",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://christmasfm.cdnstream1.com/2551_128.mp3",
+ "homepage": "https://rewind.ie/",
+ "logoUrl": "https://imgur.com/Kc1dhwp",
+ "votes": 7,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "df44c4d5-df63-4f39-9230-ea57fa8d916b"
+ },
+ {
+ "id": "a3781a35-80c9-4df6-88f3-d54c56aeccfe",
+ "name": "South East Radio",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "community radio",
+ "freeform",
+ "music",
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SOUTH_EAST_RADIO.mp3",
+ "homepage": "https://www.southeastradio.ie/",
+ "logoUrl": "https://mmo.aiircdn.com/277/697b460932735.jpg",
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "a3781a35-80c9-4df6-88f3-d54c56aeccfe"
+ },
+ {
+ "id": "91d70d2b-5d1b-45d3-812c-0f5597890344",
+ "name": "spin1038",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://edge.audioxi.com/SP",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 136,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "91d70d2b-5d1b-45d3-812c-0f5597890344"
+ },
+ {
+ "id": "80bd9177-fc93-4e8f-bbfd-b930e092f24c",
+ "name": "Tipp FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://edge.audioxi.com/TIPPFM",
+ "homepage": "https://tippfm.com/",
+ "logoUrl": "https://tippfm.com/wp-content/uploads/sites/20/Tippfm-Logo-Header-Retina.png",
+ "votes": 29,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "80bd9177-fc93-4e8f-bbfd-b930e092f24c"
+ },
+ {
+ "id": "d583df03-fff1-42dd-86fa-abd27a604f61",
+ "name": "TIPP FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/TIPPFM",
+ "homepage": "https://tippfm.com/",
+ "logoUrl": "https://tippfm.com/wp-content/uploads/sites/20/Tippfm-Logo-Header-Retina.png",
+ "votes": 14,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d583df03-fff1-42dd-86fa-abd27a604f61"
+ },
+ {
+ "id": "6ee57601-3752-4031-8155-28f67ca9db43",
+ "name": "Today FM",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 63,
+ "streamUrl": "https://live-bauerie.sharp-stream.com/TDAAC",
+ "homepage": "https://www.todayfm.com/",
+ "logoUrl": "https://www.todayfm.com/i/android-icon-192x192.png",
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "6ee57601-3752-4031-8155-28f67ca9db43"
+ },
+ {
+ "id": "4eddf8c5-0fe3-4009-8d0a-830b0f153dab",
+ "name": "Total Country Inchicore",
+ "country": "Ireland",
+ "countryCode": "IE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://totalcountry.radioca.st/stream",
+ "homepage": "https://www.totalcountryfm.com/",
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "4eddf8c5-0fe3-4009-8d0a-830b0f153dab"
+ },
{
"id": "216ee092-939d-43b6-8562-c646f73ad89f",
"name": "Radio Italia Solo Musica Italiana",
@@ -16359,7 +33779,7 @@
"homepage": "https://www.radioitalia.it/",
"logoUrl": "https://www.radioitalia.it/images/logo-radioitalia.png",
"votes": 9222,
- "clickcount": 88,
+ "clickcount": 89,
"source": "radio-browser",
"sourceStationUuid": "216ee092-939d-43b6-8562-c646f73ad89f"
},
@@ -16380,7 +33800,7 @@
"homepage": "https://www.rtl.it/",
"logoUrl": "https://cloud.rtl.it/assets/www.rtl.it/3.0.64/img/logo/favicon-96x96.png",
"votes": 2514,
- "clickcount": 63,
+ "clickcount": 62,
"source": "radio-browser",
"sourceStationUuid": "675bd925-8b13-43fe-a1b9-43bb0f90fbbd"
},
@@ -16397,7 +33817,7 @@
"homepage": "https://www.rds.it/",
"logoUrl": null,
"votes": 2103,
- "clickcount": 44,
+ "clickcount": 43,
"source": "radio-browser",
"sourceStationUuid": "cf383460-c764-477e-a17b-33d1bff7a9aa"
},
@@ -16418,7 +33838,7 @@
"homepage": "https://www.radiofreccia.it/",
"logoUrl": "https://cloud.radiofreccia.it/assets/www.radiofreccia.it/1.0.43/img/logo/android-icon-192x192.png",
"votes": 771,
- "clickcount": 42,
+ "clickcount": 40,
"source": "radio-browser",
"sourceStationUuid": "b25710a3-fb1b-4aa7-ba81-142ee6f5bea9"
},
@@ -16448,39 +33868,10 @@
"homepage": "https://zeno.fm/radio/100-nu-disco-central-radio/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_66f56cd8d2f44aed871cfd62bf70af65~mv2.jpg",
"votes": 348,
- "clickcount": 35,
+ "clickcount": 36,
"source": "radio-browser",
"sourceStationUuid": "68df3c3b-d0e5-4290-8a5e-364a33e2d334"
},
- {
- "id": "83dcfac4-b3c3-4731-afc1-a80dd271dffa",
- "name": "Radio Armisa",
- "country": "Italy",
- "countryCode": "IT",
- "language": null,
- "tags": [
- "anni 80",
- "anni 90",
- "balera",
- "dance",
- "folk",
- "italiana",
- "liscio",
- "oldies",
- "pop",
- "popolare",
- "tradizione"
- ],
- "codec": "AAC",
- "bitrate": 192,
- "streamUrl": "https://onair.armisa.it/listen/armisa/radio.mp3",
- "homepage": "https://armisa.it/",
- "logoUrl": "https://armisa.it/assets/favicon/android-chrome-512x512.png",
- "votes": 16411,
- "clickcount": 34,
- "source": "radio-browser",
- "sourceStationUuid": "83dcfac4-b3c3-4731-afc1-a80dd271dffa"
- },
{
"id": "5532c4d9-616e-4d62-a49f-984a13e3189c",
"name": "50s 60s RETRO HITS",
@@ -16507,10 +33898,39 @@
"homepage": "https://zeno.fm/radio/50s-60s-retro-hits/",
"logoUrl": "https://static.wixstatic.com/media/f361b3_ea9b293c1b80488d97f24981e7c6c1d3~mv2.jpg",
"votes": 569,
- "clickcount": 31,
+ "clickcount": 32,
"source": "radio-browser",
"sourceStationUuid": "5532c4d9-616e-4d62-a49f-984a13e3189c"
},
+ {
+ "id": "83dcfac4-b3c3-4731-afc1-a80dd271dffa",
+ "name": "Radio Armisa",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": null,
+ "tags": [
+ "anni 80",
+ "anni 90",
+ "balera",
+ "dance",
+ "folk",
+ "italiana",
+ "liscio",
+ "oldies",
+ "pop",
+ "popolare",
+ "tradizione"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://onair.armisa.it/listen/armisa/radio.mp3",
+ "homepage": "https://armisa.it/",
+ "logoUrl": "https://armisa.it/assets/favicon/android-chrome-512x512.png",
+ "votes": 16416,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "83dcfac4-b3c3-4731-afc1-a80dd271dffa"
+ },
{
"id": "32c1aa82-c639-4c73-9236-948bbda511d7",
"name": "Radio Manà Manà Sport Roma",
@@ -16544,7 +33964,7 @@
"homepage": "https://www.capital.it/",
"logoUrl": "https://www.capital.it/wp-content/themes/network-capital/favicon.ico",
"votes": 261,
- "clickcount": 28,
+ "clickcount": 27,
"source": "radio-browser",
"sourceStationUuid": "044acc55-255b-4382-af22-ccf28445bb3e"
},
@@ -16644,6 +34064,23 @@
"source": "radio-browser",
"sourceStationUuid": "cb74060e-8b0b-45f0-8e6b-e2f8c6c1a152"
},
+ {
+ "id": "30494962-3178-42e2-9b3e-60aa397f83d9",
+ "name": "Radio RaiSport",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://icecdn-19d24861e90342cc8decb03c24c8a419.msvdn.net/icecastRelay/S74167340/mmNY37FME5Zl/icecast",
+ "homepage": "https://www.raiplaysound.it/radio1sport",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/ramgajabuhqm.jpg",
+ "votes": 517,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "30494962-3178-42e2-9b3e-60aa397f83d9"
+ },
{
"id": "9624172b-0601-11e8-ae97-52543be04c81",
"name": "Lolli Radio Italia",
@@ -16716,21 +34153,21 @@
"sourceStationUuid": "999ff951-68eb-4f4a-bec9-ed972b99d258"
},
{
- "id": "30494962-3178-42e2-9b3e-60aa397f83d9",
- "name": "Radio RaiSport",
+ "id": "d994bdd9-5a16-4bc4-993e-03c52f83fc21",
+ "name": "Radio Popolare Milano",
"country": "Italy",
"countryCode": "IT",
"language": null,
"tags": [],
- "codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://icecdn-19d24861e90342cc8decb03c24c8a419.msvdn.net/icecastRelay/S74167340/mmNY37FME5Zl/icecast",
- "homepage": "https://www.raiplaysound.it/radio1sport",
- "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/ramgajabuhqm.jpg",
- "votes": 517,
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://livex.radiopopolare.it/radiopop2",
+ "homepage": "https://www.radiopopolare.it/",
+ "logoUrl": "https://www.radiopopolare.it/wp-content/uploads/2019/10/cropped-favicon-e1579720182164-192x192.png",
+ "votes": 157,
"clickcount": 16,
"source": "radio-browser",
- "sourceStationUuid": "30494962-3178-42e2-9b3e-60aa397f83d9"
+ "sourceStationUuid": "d994bdd9-5a16-4bc4-993e-03c52f83fc21"
},
{
"id": "032ffade-d50c-4281-8f7c-5272271619f7",
@@ -16754,27 +34191,6 @@
"source": "radio-browser",
"sourceStationUuid": "032ffade-d50c-4281-8f7c-5272271619f7"
},
- {
- "id": "d34351e8-b1ed-434c-aec3-966b96cc921d",
- "name": "Italo Disco",
- "country": "Italy",
- "countryCode": "IT",
- "language": "english,italian",
- "tags": [
- "1980's",
- "dance",
- "retro"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://italo-disco.stream.laut.fm/italo-disco",
- "homepage": "https://top-radio.ru/",
- "logoUrl": "https://top-radio.ru/assets/image/radio/180/radio-italo-disco.png",
- "votes": 177,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "d34351e8-b1ed-434c-aec3-966b96cc921d"
- },
{
"id": "ca9cb094-32f0-4fac-bed1-0c6bdb3d2297",
"name": "GEDI - m2o",
@@ -16795,21 +34211,25 @@
"sourceStationUuid": "ca9cb094-32f0-4fac-bed1-0c6bdb3d2297"
},
{
- "id": "d994bdd9-5a16-4bc4-993e-03c52f83fc21",
- "name": "Radio Popolare Milano",
+ "id": "d34351e8-b1ed-434c-aec3-966b96cc921d",
+ "name": "Italo Disco",
"country": "Italy",
"countryCode": "IT",
- "language": null,
- "tags": [],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://livex.radiopopolare.it/radiopop2",
- "homepage": "https://www.radiopopolare.it/",
- "logoUrl": "https://www.radiopopolare.it/wp-content/uploads/2019/10/cropped-favicon-e1579720182164-192x192.png",
- "votes": 157,
+ "language": "english,italian",
+ "tags": [
+ "1980's",
+ "dance",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://italo-disco.stream.laut.fm/italo-disco",
+ "homepage": "https://top-radio.ru/",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/180/radio-italo-disco.png",
+ "votes": 177,
"clickcount": 14,
"source": "radio-browser",
- "sourceStationUuid": "d994bdd9-5a16-4bc4-993e-03c52f83fc21"
+ "sourceStationUuid": "d34351e8-b1ed-434c-aec3-966b96cc921d"
},
{
"id": "259504da-522f-4668-8f0f-9746756959cf",
@@ -16845,26 +34265,6 @@
"source": "radio-browser",
"sourceStationUuid": "bed86ed9-8c1c-4b90-a6f1-af2e3e267482"
},
- {
- "id": "12cfc0d8-0ff1-4dcb-9c63-1f8f46538dc9",
- "name": "Radio Onda Rossa",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "political talk",
- "politics"
- ],
- "codec": "OGG",
- "bitrate": 0,
- "streamUrl": "https://s.streampunk.cc/ondarossa.ogg",
- "homepage": "https://www.ondarossa.info/",
- "logoUrl": "https://i.ibb.co/DWZRDrj/onda-rossa-logo.png",
- "votes": 289,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "12cfc0d8-0ff1-4dcb-9c63-1f8f46538dc9"
- },
{
"id": "e81cf293-174e-4936-b3cb-db62decedacd",
"name": "70 80 90",
@@ -16885,10 +34285,32 @@
"homepage": "https://www.radio708090.it/",
"logoUrl": "https://www.radio708090.it/wp-content/uploads/2021/10/708090-160-150x150.png",
"votes": 263,
- "clickcount": 10,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "e81cf293-174e-4936-b3cb-db62decedacd"
},
+ {
+ "id": "a27fc1f0-bcdc-4079-9f73-ae444c045ddc",
+ "name": "Radio 70 80 90 Marche",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": null,
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "italy"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://rblive.it:8020/radio.mp3",
+ "homepage": "https://www.radio708090.it/",
+ "logoUrl": null,
+ "votes": 902,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "a27fc1f0-bcdc-4079-9f73-ae444c045ddc"
+ },
{
"id": "ae0354a3-a57c-477d-8dc9-8bd4464aedbd",
"name": "Deejay 80",
@@ -16931,6 +34353,43 @@
"source": "radio-browser",
"sourceStationUuid": "0c6860fd-dfec-469d-9ef7-48711c43d465"
},
+ {
+ "id": "abe84722-1ff1-471a-b048-7f761b2056a0",
+ "name": "Radio Onda d'urto",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 80,
+ "streamUrl": "https://hochimin.urtostream.org:8443/radiondadurto.mp3",
+ "homepage": "https://www.radiondadurto.org/",
+ "logoUrl": null,
+ "votes": 193,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "abe84722-1ff1-471a-b048-7f761b2056a0"
+ },
+ {
+ "id": "12cfc0d8-0ff1-4dcb-9c63-1f8f46538dc9",
+ "name": "Radio Onda Rossa",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "political talk",
+ "politics"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://s.streampunk.cc/ondarossa.ogg",
+ "homepage": "https://www.ondarossa.info/",
+ "logoUrl": "https://i.ibb.co/DWZRDrj/onda-rossa-logo.png",
+ "votes": 289,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "12cfc0d8-0ff1-4dcb-9c63-1f8f46538dc9"
+ },
{
"id": "6b4d2d9d-1435-44aa-b5ee-1db50f833ddc",
"name": "Venice Classic Radio",
@@ -16950,28 +34409,6 @@
"source": "radio-browser",
"sourceStationUuid": "6b4d2d9d-1435-44aa-b5ee-1db50f833ddc"
},
- {
- "id": "a27fc1f0-bcdc-4079-9f73-ae444c045ddc",
- "name": "Radio 70 80 90 Marche",
- "country": "Italy",
- "countryCode": "IT",
- "language": null,
- "tags": [
- "70s",
- "80s",
- "90s",
- "italy"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://rblive.it:8020/radio.mp3",
- "homepage": "https://www.radio708090.it/",
- "logoUrl": null,
- "votes": 902,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "a27fc1f0-bcdc-4079-9f73-ae444c045ddc"
- },
{
"id": "57c2fbb7-4f55-4857-8cb0-876f07809a38",
"name": "Radio Bruno - Made in Italy",
@@ -16992,21 +34429,21 @@
"sourceStationUuid": "57c2fbb7-4f55-4857-8cb0-876f07809a38"
},
{
- "id": "abe84722-1ff1-471a-b048-7f761b2056a0",
- "name": "Radio Onda d'urto",
+ "id": "f4a651c0-6ba6-4845-838f-095aff86a67e",
+ "name": "Radio Italia",
"country": "Italy",
"countryCode": "IT",
"language": null,
"tags": [],
- "codec": "MP3",
- "bitrate": 80,
- "streamUrl": "https://hochimin.urtostream.org:8443/radiondadurto.mp3",
- "homepage": "https://www.radiondadurto.org/",
- "logoUrl": null,
- "votes": 193,
+ "codec": "AAC",
+ "bitrate": 98,
+ "streamUrl": "https://radioitaliasmi.akamaized.net/hls/live/2093120/RISMI/master.m3u8",
+ "homepage": "https://www.radioitalia.it/",
+ "logoUrl": "https://www.radioitalia.it/images/logo-radioitalia-200.png",
+ "votes": 102,
"clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "abe84722-1ff1-471a-b048-7f761b2056a0"
+ "sourceStationUuid": "f4a651c0-6ba6-4845-838f-095aff86a67e"
},
{
"id": "0f5f71e2-ee63-4054-9d0d-18f2e106b37d",
@@ -17038,23 +34475,6 @@
"source": "radio-browser",
"sourceStationUuid": "0f5f71e2-ee63-4054-9d0d-18f2e106b37d"
},
- {
- "id": "f4a651c0-6ba6-4845-838f-095aff86a67e",
- "name": "Radio Italia",
- "country": "Italy",
- "countryCode": "IT",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 98,
- "streamUrl": "https://radioitaliasmi.akamaized.net/hls/live/2093120/RISMI/master.m3u8",
- "homepage": "https://www.radioitalia.it/",
- "logoUrl": "https://www.radioitalia.it/images/logo-radioitalia-200.png",
- "votes": 102,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "f4a651c0-6ba6-4845-838f-095aff86a67e"
- },
{
"id": "2e9d860d-017a-4edf-81c2-e81804749a4b",
"name": "Retesport (Italia)",
@@ -17074,6 +34494,73 @@
"source": "radio-browser",
"sourceStationUuid": "2e9d860d-017a-4edf-81c2-e81804749a4b"
},
+ {
+ "id": "ad330c56-0bf6-4a60-9da6-8f95bb3e46dd",
+ "name": "Deejay Suona Italia",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "classic italian pop",
+ "italian",
+ "italian music",
+ "italian pop",
+ "italy",
+ "musica italiana"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://4c4b867c89244861ac216426883d1ad0.msvdn.net/webradio/deejaysuonaitalia/playlist.m3u8",
+ "homepage": "https://www.deejay.it/",
+ "logoUrl": "https://cdn.gelestatic.it/deejay/sites/2/2015/05/webradio_deejay_suona_italia-320x320.png",
+ "votes": 220,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "ad330c56-0bf6-4a60-9da6-8f95bb3e46dd"
+ },
+ {
+ "id": "b5dafabe-992c-4e0a-89f1-039e0b114b3e",
+ "name": "EDM RADIO Electronic Dance Music",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "english",
+ "tags": [
+ "dance",
+ "edm",
+ "electronic",
+ "electronic dance music"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://edm.streamingmedia.it/play",
+ "homepage": "https://edm.radio/",
+ "logoUrl": "https://edm.radio/wp-content/uploads/2024/01/EDM-RADIO_logo_500.png",
+ "votes": 3,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "b5dafabe-992c-4e0a-89f1-039e0b114b3e"
+ },
+ {
+ "id": "f428a295-760d-11ea-b1cf-52543be04c81",
+ "name": "ITALIA Italia 70",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "70s",
+ "italian",
+ "mediaset"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icy.unitedradio.it/um020.mp3",
+ "homepage": "http://www.unitedmusic.it/",
+ "logoUrl": null,
+ "votes": 5792,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f428a295-760d-11ea-b1cf-52543be04c81"
+ },
{
"id": "77eaf32d-241f-4f25-b7d6-347783cd4471",
"name": "NATURE RADIO SLEEP",
@@ -17122,50 +34609,51 @@
"sourceStationUuid": "2a921377-d27d-4fc8-acd0-f7dee943c7f8"
},
{
- "id": "ad330c56-0bf6-4a60-9da6-8f95bb3e46dd",
- "name": "Deejay Suona Italia",
+ "id": "6623c04a-8c8d-4ef7-aa6a-d14361fbb0be",
+ "name": "Virgin Radio Italy",
"country": "Italy",
"countryCode": "IT",
"language": "italian",
"tags": [
- "classic italian pop",
- "italian",
- "italian music",
- "italian pop",
- "italy",
- "musica italiana"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://4c4b867c89244861ac216426883d1ad0.msvdn.net/webradio/deejaysuonaitalia/playlist.m3u8",
- "homepage": "https://www.deejay.it/",
- "logoUrl": "https://cdn.gelestatic.it/deejay/sites/2/2015/05/webradio_deejay_suona_italia-320x320.png",
- "votes": 220,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "ad330c56-0bf6-4a60-9da6-8f95bb3e46dd"
- },
- {
- "id": "b5dafabe-992c-4e0a-89f1-039e0b114b3e",
- "name": "EDM RADIO Electronic Dance Music",
- "country": "Italy",
- "countryCode": "IT",
- "language": "english",
- "tags": [
- "dance",
- "edm",
- "electronic",
- "electronic dance music"
+ "alternative rock",
+ "classic rock",
+ "indie rock",
+ "pop rock",
+ "punk rock",
+ "rock",
+ "soft rock"
],
"codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://edm.streamingmedia.it/play",
- "homepage": "https://edm.radio/",
- "logoUrl": "https://edm.radio/wp-content/uploads/2024/01/EDM-RADIO_logo_500.png",
- "votes": 3,
+ "bitrate": 128,
+ "streamUrl": "https://icy.unitedradio.it/Virgin.mp3",
+ "homepage": "https://www.virginradio.it/web-radio/virgin-radio-on-air/",
+ "logoUrl": "https://www.virginradio.it/wp-content/themes/virgin-radio-theme/public/images/VRG-symbol-footer.066739.png",
+ "votes": 21,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "6623c04a-8c8d-4ef7-aa6a-d14361fbb0be"
+ },
+ {
+ "id": "197dc1ca-9295-4527-90a1-8b1139219cc0",
+ "name": "Cafè Del Mar Collection",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "chillout+lounge",
+ "lounge",
+ "smooth jazz",
+ "smooth lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.rcs.revma.com/bn68enmp81uvv.xspf",
+ "homepage": "https://www.rmc2.net/webradio/mc2-cafe-del-mar/",
+ "logoUrl": "https://www.rmc2.net/wp-content/uploads/2020/08/08_CdM_1200px.jpg",
+ "votes": 15,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "b5dafabe-992c-4e0a-89f1-039e0b114b3e"
+ "sourceStationUuid": "197dc1ca-9295-4527-90a1-8b1139219cc0"
},
{
"id": "737d604c-df80-4886-8883-538febcb4189",
@@ -17187,25 +34675,21 @@
"sourceStationUuid": "737d604c-df80-4886-8883-538febcb4189"
},
{
- "id": "f428a295-760d-11ea-b1cf-52543be04c81",
- "name": "ITALIA Italia 70",
+ "id": "d50de3ae-0aa8-46b6-9c1e-c4759d53ce22",
+ "name": "Giornale Radio",
"country": "Italy",
"countryCode": "IT",
- "language": "italian",
- "tags": [
- "70s",
- "italian",
- "mediaset"
- ],
+ "language": null,
+ "tags": [],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icy.unitedradio.it/um020.mp3",
- "homepage": "http://www.unitedmusic.it/",
- "logoUrl": null,
- "votes": 5792,
+ "bitrate": 192,
+ "streamUrl": "https://gr.fluidstream.eu/gr1.mp3",
+ "homepage": "https://giornaleradio.fm/",
+ "logoUrl": "https://giornaleradio.fm/apple-touch-icon.png",
+ "votes": 623,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "f428a295-760d-11ea-b1cf-52543be04c81"
+ "sourceStationUuid": "d50de3ae-0aa8-46b6-9c1e-c4759d53ce22"
},
{
"id": "960e5e12-0601-11e8-ae97-52543be04c81",
@@ -17227,6 +34711,23 @@
"source": "radio-browser",
"sourceStationUuid": "960e5e12-0601-11e8-ae97-52543be04c81"
},
+ {
+ "id": "6cde51f1-c733-4170-99d6-483fa4c63f1d",
+ "name": "Radio Italia anni 60",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://str01.fluidstream.net/anni60.mp3",
+ "homepage": "https://www.radioitaliaanni60.it/",
+ "logoUrl": null,
+ "votes": 526,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6cde51f1-c733-4170-99d6-483fa4c63f1d"
+ },
{
"id": "b0440b72-887a-4fe6-9d8a-5ffaa95f9935",
"name": "RTL 102.5 Best",
@@ -17248,51 +34749,21 @@
"sourceStationUuid": "b0440b72-887a-4fe6-9d8a-5ffaa95f9935"
},
{
- "id": "6623c04a-8c8d-4ef7-aa6a-d14361fbb0be",
- "name": "Virgin Radio Italy",
+ "id": "2b3c2286-ae2a-4b18-9274-c6ba9978c0bf",
+ "name": "TieniLaBassa",
"country": "Italy",
"countryCode": "IT",
- "language": "italian",
- "tags": [
- "alternative rock",
- "classic rock",
- "indie rock",
- "pop rock",
- "punk rock",
- "rock",
- "soft rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icy.unitedradio.it/Virgin.mp3",
- "homepage": "https://www.virginradio.it/web-radio/virgin-radio-on-air/",
- "logoUrl": "https://www.virginradio.it/wp-content/themes/virgin-radio-theme/public/images/VRG-symbol-footer.066739.png",
- "votes": 21,
+ "language": null,
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://stream.esiliati.org:8003/tienilabassa.ogg",
+ "homepage": "https://stream.esiliati.org:8003/tienilabassa.ogg",
+ "logoUrl": null,
+ "votes": 4,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "6623c04a-8c8d-4ef7-aa6a-d14361fbb0be"
- },
- {
- "id": "197dc1ca-9295-4527-90a1-8b1139219cc0",
- "name": "Cafè Del Mar Collection",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "chillout+lounge",
- "lounge",
- "smooth jazz",
- "smooth lounge"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.rcs.revma.com/bn68enmp81uvv.xspf",
- "homepage": "https://www.rmc2.net/webradio/mc2-cafe-del-mar/",
- "logoUrl": "https://www.rmc2.net/wp-content/uploads/2020/08/08_CdM_1200px.jpg",
- "votes": 15,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "197dc1ca-9295-4527-90a1-8b1139219cc0"
+ "sourceStationUuid": "2b3c2286-ae2a-4b18-9274-c6ba9978c0bf"
},
{
"id": "69acf0e5-5fcb-41c0-940a-c0bb931fdfd5",
@@ -17358,42 +34829,6 @@
"source": "radio-browser",
"sourceStationUuid": "3f5f4fde-e7c8-48dd-bec6-969886292a48"
},
- {
- "id": "d50de3ae-0aa8-46b6-9c1e-c4759d53ce22",
- "name": "Giornale Radio",
- "country": "Italy",
- "countryCode": "IT",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://gr.fluidstream.eu/gr1.mp3",
- "homepage": "https://giornaleradio.fm/",
- "logoUrl": "https://giornaleradio.fm/apple-touch-icon.png",
- "votes": 623,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "d50de3ae-0aa8-46b6-9c1e-c4759d53ce22"
- },
- {
- "id": "fa80ca1a-24a7-4b01-85d7-2b5417c73b74",
- "name": "Giornale Radio Ultima Ora",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "news"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://gr.fluidstream.eu/gr2.mp3",
- "homepage": "https://giornaleradio.fm/radio-tematiche/giornale-radio-ultima-ora.html",
- "logoUrl": null,
- "votes": 313,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "fa80ca1a-24a7-4b01-85d7-2b5417c73b74"
- },
{
"id": "c229f726-760d-11ea-b1cf-52543be04c81",
"name": "ITALIA Italia 80",
@@ -17476,23 +34911,6 @@
"source": "radio-browser",
"sourceStationUuid": "ae5ab591-f05b-4724-98c1-1a383e75d5da"
},
- {
- "id": "77601de4-40ed-11ea-a9fa-52543be04c81",
- "name": "Radio 105",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.unitedradio.it/Radio105.mp3",
- "homepage": "https://105.net/",
- "logoUrl": null,
- "votes": 243,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "77601de4-40ed-11ea-a9fa-52543be04c81"
- },
{
"id": "92982f0e-abed-43a9-9aed-19d5775a5765",
"name": "Radio Bianconera",
@@ -17527,23 +34945,6 @@
"source": "radio-browser",
"sourceStationUuid": "a89028bc-0cef-4228-9fce-5c91039aca94"
},
- {
- "id": "6cde51f1-c733-4170-99d6-483fa4c63f1d",
- "name": "Radio Italia anni 60",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://str01.fluidstream.net/anni60.mp3",
- "homepage": "https://www.radioitaliaanni60.it/",
- "logoUrl": null,
- "votes": 526,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "6cde51f1-c733-4170-99d6-483fa4c63f1d"
- },
{
"id": "76d47259-f487-4dc3-9a13-ce96b3f28fa1",
"name": "Radio Laziale 88.100 FM",
@@ -17582,23 +34983,6 @@
"source": "radio-browser",
"sourceStationUuid": "6e361d16-d938-4cde-ae61-79f15f015784"
},
- {
- "id": "2b3c2286-ae2a-4b18-9274-c6ba9978c0bf",
- "name": "TieniLaBassa",
- "country": "Italy",
- "countryCode": "IT",
- "language": null,
- "tags": [],
- "codec": "OGG",
- "bitrate": 0,
- "streamUrl": "https://stream.esiliati.org:8003/tienilabassa.ogg",
- "homepage": "https://stream.esiliati.org:8003/tienilabassa.ogg",
- "logoUrl": null,
- "votes": 4,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "2b3c2286-ae2a-4b18-9274-c6ba9978c0bf"
- },
{
"id": "aedb966a-69d2-4d72-afe1-61e66b6c3711",
"name": "DeeGay Classic",
@@ -17618,6 +35002,138 @@
"source": "radio-browser",
"sourceStationUuid": "aedb966a-69d2-4d72-afe1-61e66b6c3711"
},
+ {
+ "id": "131464a7-b805-4386-8a69-4e8fab611fa8",
+ "name": "Deejay One Two One Two",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "classic hip hop",
+ "hip hop",
+ "hip-hop",
+ "hip-hop and rap oldies",
+ "hiphop",
+ "rap",
+ "trap"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://4c4b867c89244861ac216426883d1ad0.msvdn.net/webradio/deejayonetwoonetwo/playlist.m3u8",
+ "homepage": "https://www.deejay.it/",
+ "logoUrl": "https://cdn.gelestatic.it/deejay/sites/2/2015/05/webradio_one_two-320x320.png",
+ "votes": 46,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "131464a7-b805-4386-8a69-4e8fab611fa8"
+ },
+ {
+ "id": "b1628f4d-89e6-44d0-b270-638e4cbdba4f",
+ "name": "Deejay Tropical Pizza",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "alternative rock",
+ "classic rock",
+ "pop rock",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://4c4b867c89244861ac216426883d1ad0.msvdn.net/webradio/deejaytropicalpizza/playlist.m3u8",
+ "homepage": "https://www.deejay.it/",
+ "logoUrl": "https://cdn.gelestatic.it/deejay/sites/2/2015/05/webradio_tropical-320x320.png",
+ "votes": 32,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "b1628f4d-89e6-44d0-b270-638e4cbdba4f"
+ },
+ {
+ "id": "05d5a867-deea-4957-a810-7eefcaf508cd",
+ "name": "FOREVER 80",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "80s",
+ "dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.laut.fm/forever80",
+ "homepage": "https://forever80.altervista.org/",
+ "logoUrl": null,
+ "votes": 500,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "05d5a867-deea-4957-a810-7eefcaf508cd"
+ },
+ {
+ "id": "403bfc3c-bc95-4633-8e72-d4897480d40d",
+ "name": "FOREVER ROCK",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "60s",
+ "70s",
+ "80s",
+ "90s",
+ "pop rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.laut.fm/foreverrock",
+ "homepage": "https://forever80.altervista.org/",
+ "logoUrl": null,
+ "votes": 41,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "403bfc3c-bc95-4633-8e72-d4897480d40d"
+ },
+ {
+ "id": "fa80ca1a-24a7-4b01-85d7-2b5417c73b74",
+ "name": "Giornale Radio Ultima Ora",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://gr.fluidstream.eu/gr2.mp3",
+ "homepage": "https://giornaleradio.fm/radio-tematiche/giornale-radio-ultima-ora.html",
+ "logoUrl": null,
+ "votes": 313,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "fa80ca1a-24a7-4b01-85d7-2b5417c73b74"
+ },
+ {
+ "id": "bfcf9b2d-b008-420b-a342-b868aee01e19",
+ "name": "Globo Vintage",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "classic hits",
+ "roma"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://m100.newradio.it/m100-64",
+ "homepage": "http://www.globovintage.it/",
+ "logoUrl": "https://static.wixstatic.com/media/cb9577_389d27d8f1214dfba6d28a9381d7ccdc%7emv2.png/v1/fill/w_180%2ch_180%2clg_1%2cusm_0.66_1.00_0.01/cb9577_389d27d8f1214dfba6d28a9381d7ccdc%7emv2.png",
+ "votes": 384,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "bfcf9b2d-b008-420b-a342-b868aee01e19"
+ },
{
"id": "25b1ffe1-760e-11ea-b1cf-52543be04c81",
"name": "ITALIA Italia 60",
@@ -17639,26 +35155,6 @@
"source": "radio-browser",
"sourceStationUuid": "25b1ffe1-760e-11ea-b1cf-52543be04c81"
},
- {
- "id": "5a492e5f-48fc-4ad2-891b-e53c70499228",
- "name": "ITALIAN RADIO - Only (romantic) Italian Music",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "classic italian pop",
- "love songs"
- ],
- "codec": "AAC+",
- "bitrate": 96,
- "streamUrl": "https://italianradio.streamingmedia.it/play",
- "homepage": "http://italian.radio/",
- "logoUrl": null,
- "votes": 2294,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "5a492e5f-48fc-4ad2-891b-e53c70499228"
- },
{
"id": "e5d0c4bd-16fe-4fd4-96f8-4c7b78ac1c2c",
"name": "Italo Sound Radio",
@@ -17679,6 +35175,23 @@
"source": "radio-browser",
"sourceStationUuid": "e5d0c4bd-16fe-4fd4-96f8-4c7b78ac1c2c"
},
+ {
+ "id": "77601de4-40ed-11ea-a9fa-52543be04c81",
+ "name": "Radio 105",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.unitedradio.it/Radio105.mp3",
+ "homepage": "https://105.net/",
+ "logoUrl": null,
+ "votes": 243,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "77601de4-40ed-11ea-a9fa-52543be04c81"
+ },
{
"id": "3bbc371b-7899-4f6e-9e79-6da4d696c819",
"name": "Radio 60 70 80",
@@ -17890,36 +35403,6 @@
"source": "radio-browser",
"sourceStationUuid": "e610c4ad-1989-498e-8234-a5ca6f23b40b"
},
- {
- "id": "caf01ffe-e18a-4158-bf9e-e947aa50d2b9",
- "name": "Romantica Radio (RomanticaRadio Web)",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "60's",
- "60s",
- "64 kbps",
- "64 kbps aac+",
- "64kbps",
- "70's",
- "70s",
- "80's",
- "80s",
- "90's",
- "90s",
- "aac+"
- ],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://vetrina.multi-radio.com/romanticaradio",
- "homepage": "https://www.romanticaradio.it/",
- "logoUrl": "https://romanticaradio.it/wp-content/uploads/2022/05/cropped-favicon_romantica-180x180.png",
- "votes": 141,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "caf01ffe-e18a-4158-bf9e-e947aa50d2b9"
- },
{
"id": "aaf78cc6-4ffd-47c6-8ea6-c5294d7322e2",
"name": "Südtirol 1",
@@ -17978,51 +35461,6 @@
"source": "radio-browser",
"sourceStationUuid": "849c65bc-f3dd-4aeb-abaa-3d4316387b67"
},
- {
- "id": "131464a7-b805-4386-8a69-4e8fab611fa8",
- "name": "Deejay One Two One Two",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "classic hip hop",
- "hip hop",
- "hip-hop",
- "hip-hop and rap oldies",
- "hiphop",
- "rap",
- "trap"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://4c4b867c89244861ac216426883d1ad0.msvdn.net/webradio/deejayonetwoonetwo/playlist.m3u8",
- "homepage": "https://www.deejay.it/",
- "logoUrl": "https://cdn.gelestatic.it/deejay/sites/2/2015/05/webradio_one_two-320x320.png",
- "votes": 46,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "131464a7-b805-4386-8a69-4e8fab611fa8"
- },
- {
- "id": "05d5a867-deea-4957-a810-7eefcaf508cd",
- "name": "FOREVER 80",
- "country": "Italy",
- "countryCode": "IT",
- "language": "italian",
- "tags": [
- "80s",
- "dance"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.laut.fm/forever80",
- "homepage": "https://forever80.altervista.org/",
- "logoUrl": null,
- "votes": 500,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "05d5a867-deea-4957-a810-7eefcaf508cd"
- },
{
"id": "3dff0ca7-e8d7-4966-a37f-2d754819af6b",
"name": "Jungle Planet Radio",
@@ -18095,6 +35533,27 @@
"source": "radio-browser",
"sourceStationUuid": "10d0abaa-1305-4482-a5b6-af3060c01075"
},
+ {
+ "id": "a7d6d855-2843-4af9-b283-c5f6d5d0b596",
+ "name": "Radio Gioconda",
+ "country": "Italy",
+ "countryCode": "IT",
+ "language": "italian",
+ "tags": [
+ "hits",
+ "musica italiana",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://eu7.fastcast4u.com/proxy/radiofvg?mp=/;",
+ "homepage": "https://radiogioconda.it/",
+ "logoUrl": "https://www.radiogioconda.it/wp-content/uploads/2018/06/favicon-150x150.png",
+ "votes": 27,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a7d6d855-2843-4af9-b283-c5f6d5d0b596"
+ },
{
"id": "24c13b56-d669-4127-98b3-b0b1c22b4676",
"name": "Radio Rock 106.6",
@@ -18188,21 +35647,3227 @@
"sourceStationUuid": "63b7ed83-da88-4d58-9118-efe1d37dc4f3"
},
{
- "id": "1148235c-eb9c-45fc-9a59-a1e41272a041",
- "name": "VCR | Venice Classic Radio * Live",
- "country": "Italy",
- "countryCode": "IT",
+ "id": "1adf1539-e647-44c3-85d8-b437b768fb8c",
+ "name": "Anime Para Ti",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "anime",
+ "anime openings",
+ "jpop",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/qpn8mkt8c4duv",
+ "homepage": "https://www.facebook.com/radioanimeparati",
+ "logoUrl": "https://images.zeno.fm/TrBD3tEtOJbMAdKu3XR64pWUT2XTjBhzgn2n2w_lFnE/rs:fit:500:500/g:ce:0:0/aHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSUNBeF92bDF3b01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSUNBZ0lEeWlBb01vZ0VFZW1WdWJ3L2ltYWdlLz9yZXNpemU9NTAweDUwMCZ1cGRhdGVkPTE2NjI3NzM0MjEwMDA.webp",
+ "votes": 4437,
+ "clickcount": 56,
+ "source": "radio-browser",
+ "sourceStationUuid": "1adf1539-e647-44c3-85d8-b437b768fb8c"
+ },
+ {
+ "id": "af566e6b-3d2b-4b96-92ca-a9cb183e6fd8",
+ "name": "Free FM Tokyo",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english,japanese,spanish",
+ "tags": [
+ "free fm",
+ "free japan music",
+ "musica",
+ "tokyo"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://rocafmadrid.radioca.st/",
+ "homepage": "http://freefmradio.net/",
+ "logoUrl": null,
+ "votes": 1478,
+ "clickcount": 49,
+ "source": "radio-browser",
+ "sourceStationUuid": "af566e6b-3d2b-4b96-92ca-a9cb183e6fd8"
+ },
+ {
+ "id": "30b09043-9b67-43d7-b9c6-b4401e5cb636",
+ "name": "BOX : Japan City Pop - 日本のシティポップ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english,japanese",
+ "tags": [
+ "city pop",
+ "japanese"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://play.streamafrica.net/japancitypop",
+ "homepage": "https://boxradio.net/",
+ "logoUrl": "https://assets.radioapi.me/radios/01J65CR99GVHS3A7CT7D53C415.jpg",
+ "votes": 816,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "30b09043-9b67-43d7-b9c6-b4401e5cb636"
+ },
+ {
+ "id": "fdffc27f-a096-4be8-b3bf-2c51a943a1d1",
+ "name": "Gotanno FM 89.2",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "indie pop",
+ "jpop"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://radio.gotanno.love/;",
+ "homepage": "https://stcat.com/",
+ "logoUrl": null,
+ "votes": 40,
+ "clickcount": 33,
+ "source": "radio-browser",
+ "sourceStationUuid": "fdffc27f-a096-4be8-b3bf-2c51a943a1d1"
+ },
+ {
+ "id": "1bca74bf-82e7-4631-87b6-1e96be3bae43",
+ "name": "SOUND UP STATION NFRS",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "indie",
+ "jpop"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://stream2.rcast.net/70945",
+ "homepage": "https://www.nfrsradio.com/",
+ "logoUrl": "https://static.wixstatic.com/ficons/1173e1_15807acf4a474b03a67c854178f38727~mv2.ico",
+ "votes": 72,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "1bca74bf-82e7-4631-87b6-1e96be3bae43"
+ },
+ {
+ "id": "54732c01-db87-4aa2-b313-22fd5fa7eee9",
+ "name": "Free FM 80 Tokyo",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "#english,#japan,español internacional,ingles español",
+ "tags": [
+ "#80s",
+ "#freefm",
+ "#freefm80s"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://freefm80.radioca.st/",
+ "homepage": "http://www.freefmworld.com/",
+ "logoUrl": "https://lh4.googleusercontent.com/acjVH3-jt6Rup86sTS16ZbClPjcB-xcVHsr-0RxPZplbCCgvPbb9WKSj2XdpcTdOCe_wzLfv9uktiQIJKkKgYc4lajlD5qKO6rSJl18sDC9yIehJREvzmK2zj9jc3V-n=w1280",
+ "votes": 1344,
+ "clickcount": 29,
+ "source": "radio-browser",
+ "sourceStationUuid": "54732c01-db87-4aa2-b313-22fd5fa7eee9"
+ },
+ {
+ "id": "a36cb1a5-f9b5-4739-a86a-987d256b7d0e",
+ "name": "J-Club Club Bandstand",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english",
+ "tags": [
+ "1930s",
+ "1940s",
+ "big band",
+ "jazz",
+ "swing"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast1.torontocast.com:2060/;.mp3",
+ "homepage": "https://asiadreamradio.com/",
+ "logoUrl": null,
+ "votes": 151,
+ "clickcount": 28,
+ "source": "radio-browser",
+ "sourceStationUuid": "a36cb1a5-f9b5-4739-a86a-987d256b7d0e"
+ },
+ {
+ "id": "ee614813-177f-4b83-ae6a-5e5b22d440d1",
+ "name": "AshiyaRadio〜アシヤ・ラヂヲ〜",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "bossa nova",
+ "jazz",
+ "piano jazz"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://s3.radio.co/sc8d895604/listen",
+ "homepage": "https://ashiya.radio/",
+ "logoUrl": "https://static.wixstatic.com/media/da9e0b_7c54de8c1f934d67bdab3cec46be5c3e~mv2.png/v1/fill/w_1070,h_1080,al_c/da9e0b_7c54de8c1f934d67bdab3cec46be5c3e~mv2.png",
+ "votes": 259,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "ee614813-177f-4b83-ae6a-5e5b22d440d1"
+ },
+ {
+ "id": "fad42bb6-2865-4854-94a7-96152e881800",
+ "name": "FM世田谷",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "83.4",
+ "full service",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://fmsetagaya834.out.airtime.pro/fmsetagaya834_a",
+ "homepage": "https://fmsetagaya.com/",
+ "logoUrl": "https://fmsetagaya.com/wp/wp-content/uploads/2019/01/rogo01.gif",
+ "votes": 333,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "fad42bb6-2865-4854-94a7-96152e881800"
+ },
+ {
+ "id": "e219fec2-ee95-4c12-86fb-34142143f562",
+ "name": "Gensokyo Radio (Original)",
+ "country": "Japan",
+ "countryCode": "JP",
"language": null,
"tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://uk2.streamingpulse.com/ssl/vcr2",
- "homepage": "https://www.veniceclassicradio.eu/player/new/vcr.php?ch=0#",
- "logoUrl": "https://www.veniceclassicradio.eu/player/new/image/l.png",
+ "streamUrl": "https://stream.gensokyoradio.net/1",
+ "homepage": "https://stream.gensokyoradio.net/",
+ "logoUrl": "https://stream.gensokyoradio.net/images/logo.png",
+ "votes": 143,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "e219fec2-ee95-4c12-86fb-34142143f562"
+ },
+ {
+ "id": "f72771a3-cf3a-4cc5-af91-2493ca31c54d",
+ "name": "J-Pop Sakura (asia DREAM radio)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "j-pop",
+ "japanese",
+ "jpop",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://quincy.torontocast.com:2070/stream.mp3",
+ "homepage": "https://asiadreamradio.com/",
+ "logoUrl": "https://moremalc.com/natsukashii.jpeg",
+ "votes": 43,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "f72771a3-cf3a-4cc5-af91-2493ca31c54d"
+ },
+ {
+ "id": "5a4eb5bc-7fbd-43fb-a6a4-cc4517ce6ac4",
+ "name": "J1 HITS",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://jenny.torontocast.com:2000/stream/J1HITS?_=184325",
+ "homepage": "https://www.j1fm.tokyo/",
+ "logoUrl": "https://mmo.aiircdn.com/387/5e763985f1dab.png",
+ "votes": 388,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "5a4eb5bc-7fbd-43fb-a6a4-cc4517ce6ac4"
+ },
+ {
+ "id": "e4e4d123-0616-11ea-afd6-52543be04c81",
+ "name": "Listen.Moe JPop Vorbis",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english,japanese",
+ "tags": [
+ "jpop"
+ ],
+ "codec": "OGG",
+ "bitrate": 256,
+ "streamUrl": "https://listen.moe/stream",
+ "homepage": "https://listen.moe/",
+ "logoUrl": "https://listen.moe/favicon.ico",
+ "votes": 3133,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "e4e4d123-0616-11ea-afd6-52543be04c81"
+ },
+ {
+ "id": "248a7684-7e28-4912-9812-efefc2bba2e1",
+ "name": "Gensokyo Radio",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english",
+ "tags": [
+ "anime",
+ "touhou"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.gensokyoradio.net/3",
+ "homepage": "https://gensokyoradio.net/",
+ "logoUrl": "https://gensokyoradio.net/favicon.ico",
+ "votes": 2190,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "248a7684-7e28-4912-9812-efefc2bba2e1"
+ },
+ {
+ "id": "5e42f3f1-41cd-4c71-a06c-7d88b76bdc17",
+ "name": "BAN-BANラジオ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "86.9",
+ "加古川市"
+ ],
+ "codec": "AAC",
+ "bitrate": 179,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30078/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 499,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e42f3f1-41cd-4c71-a06c-7d88b76bdc17"
+ },
+ {
+ "id": "f0d0887f-961d-4615-a679-27c1551cb4b0",
+ "name": "京都三条ラジオカフェ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.7",
+ "京都市"
+ ],
+ "codec": "AAC",
+ "bitrate": 175,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30082/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 267,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0d0887f-961d-4615-a679-27c1551cb4b0"
+ },
+ {
+ "id": "0eed3332-c2b2-4eda-9d0c-897322162663",
+ "name": "NHKワールド・ラジオ日本",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://masterpl.hls.nhkworld.jp/hls/r1/live/master.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/ja/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/assets/images/statics/ja_nw_premium_img_2019.png",
+ "votes": 38,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "0eed3332-c2b2-4eda-9d0c-897322162663"
+ },
+ {
+ "id": "c4796463-de02-4344-a9d1-21f3d0508cc6",
+ "name": "FM那覇 (FM Naha)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30068/livestream/chunklist.m3u8",
+ "homepage": "http://www.fmnaha.jp/",
+ "logoUrl": "http://www.fmnaha.jp/favicon.ico",
+ "votes": 366,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "c4796463-de02-4344-a9d1-21f3d0508cc6"
+ },
+ {
+ "id": "c874a140-6938-49d6-b7a5-4e649fab2245",
+ "name": "Tokyo Star Radio(八王子FM)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "77.5",
+ "八王子"
+ ],
+ "codec": "AAC",
+ "bitrate": 117,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30081/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 356,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "c874a140-6938-49d6-b7a5-4e649fab2245"
+ },
+ {
+ "id": "7b85cb6b-ebb8-11e8-a471-52543be04c81",
+ "name": "R/a/dio",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "anime",
+ "jpop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://relay0.r-a-d.io/main.mp3",
+ "homepage": "http://r-a-d.io/",
+ "logoUrl": "http://r-a-d.io/assets/images/logo_image_small.png",
+ "votes": 2054,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b85cb6b-ebb8-11e8-a471-52543be04c81"
+ },
+ {
+ "id": "7d7237f8-7fbb-4ff1-98e0-1bca42b63911",
+ "name": "775ライブリーFM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "77.5",
+ "朝霞"
+ ],
+ "codec": "AAC",
+ "bitrate": 180,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30026/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 184,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "7d7237f8-7fbb-4ff1-98e0-1bca42b63911"
+ },
+ {
+ "id": "e4f7dac4-db05-446d-9282-d79a56ce7327",
+ "name": "Jazz Sakura",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:3330/;",
+ "homepage": "https://asiadreamradio.torontocast.stream/stations/en/index.html",
+ "logoUrl": null,
+ "votes": 275,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "e4f7dac4-db05-446d-9282-d79a56ce7327"
+ },
+ {
+ "id": "a729546b-0dde-4de3-8d6e-3f5f4e4cc23a",
+ "name": "Radio Mix Kyoto FM87.0",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "87.0",
+ "京都府"
+ ],
+ "codec": "AAC",
+ "bitrate": 181,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30071/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 152,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "a729546b-0dde-4de3-8d6e-3f5f4e4cc23a"
+ },
+ {
+ "id": "f6b43a0f-0211-4dd2-b552-c3fc38cb7297",
+ "name": "BAY WAVE 塩竈のラジオ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "78.1",
+ "塩竈"
+ ],
+ "codec": "AAC",
+ "bitrate": 206,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30056/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 138,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f6b43a0f-0211-4dd2-b552-c3fc38cb7297"
+ },
+ {
+ "id": "2119387e-f76a-449f-b15d-315ba83c2dfe",
+ "name": "Patchwork Archive - VTuber Songs and Covers",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "anime",
+ "japan",
+ "japanese music",
+ "vtuber"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a4.asurahosting.com:6930/radio.mp3",
+ "homepage": "https://patchwork.moekyun.me/",
+ "logoUrl": "https://files.catbox.moe/rq3d0t.png",
+ "votes": 249,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "2119387e-f76a-449f-b15d-315ba83c2dfe"
+ },
+ {
+ "id": "db05622a-12af-4853-b83f-bdb06fb1ca95",
+ "name": "ラジオカロスサッポロ FM78.1",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "コミュニティfm"
+ ],
+ "codec": "AAC",
+ "bitrate": 174,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30034/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 153,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "db05622a-12af-4853-b83f-bdb06fb1ca95"
+ },
+ {
+ "id": "02cf24a8-b1a6-4196-bf1c-d5553d2090bd",
+ "name": "asia DREAM radio - Japan Hits",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "j-pop",
+ "japanese",
+ "jpop",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://quincy.torontocast.com:2020/stream.mp3",
+ "homepage": "https://asiadreamradio.com/",
+ "logoUrl": null,
+ "votes": 26,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "02cf24a8-b1a6-4196-bf1c-d5553d2090bd"
+ },
+ {
+ "id": "5d0978bf-0eaa-402a-a8ad-e8f56e55e508",
+ "name": "FMおたる",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 204,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30025/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 132,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "5d0978bf-0eaa-402a-a8ad-e8f56e55e508"
+ },
+ {
+ "id": "ec554185-b0f8-4a45-9572-ee90bbf34622",
+ "name": "FMたちかわ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "84.4",
+ "立川"
+ ],
+ "codec": "AAC",
+ "bitrate": 151,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30033/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 137,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "ec554185-b0f8-4a45-9572-ee90bbf34622"
+ },
+ {
+ "id": "b641d7ab-4548-426f-92ba-c0b65bff204d",
+ "name": "Free FM Tokyo",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "american english,japanese,spanish",
+ "tags": [
+ "1980s",
+ "2000s",
+ "80's",
+ "80s rock",
+ "90's",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://rocafmadrid.radioca.st/stream",
+ "homepage": "http://freefmradio.net/",
+ "logoUrl": null,
+ "votes": 812,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b641d7ab-4548-426f-92ba-c0b65bff204d"
+ },
+ {
+ "id": "dbdd7846-8420-4354-9145-43ebffbf9fc5",
+ "name": "NHK WORLD RADIO 10",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://nhkworld-radio.akamaized.net/hls/live/2115820/nhkworld-radio-rs5/index_rs5.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/ja/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/ja/assets/images/common/bnr_rj.png",
+ "votes": 12,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "dbdd7846-8420-4354-9145-43ebffbf9fc5"
+ },
+ {
+ "id": "6d7805c0-1cfd-4f55-8e52-4568c271cf2a",
+ "name": "NHK WORLD RADIO 2",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://nhkworld-radio.akamaized.net/hls/live/2115823/nhkworld-radio-rs1/index_rs1.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/common/assets/parts/images/logo_world.svg",
+ "votes": 13,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6d7805c0-1cfd-4f55-8e52-4568c271cf2a"
+ },
+ {
+ "id": "29e18f32-a063-4002-9768-fb416f172778",
+ "name": "BeFM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.5",
+ "八戸市"
+ ],
+ "codec": "AAC",
+ "bitrate": 182,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30079/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 79,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "29e18f32-a063-4002-9768-fb416f172778"
+ },
+ {
+ "id": "fb462bde-d4dc-4f05-8654-69350a6b3816",
+ "name": "Chofu FM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30039/livestream/chunklist.m3u8",
+ "homepage": "https://www.chofu-fm.com/",
+ "logoUrl": "https://www.chofu-fm.com/favicon.ico",
+ "votes": 712,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "fb462bde-d4dc-4f05-8654-69350a6b3816"
+ },
+ {
+ "id": "436b6f8c-25e2-4c1f-afb6-4eaa5247cf15",
+ "name": "DARAZ FM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.8",
+ "米子市"
+ ],
+ "codec": "AAC",
+ "bitrate": 144,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30053/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
"votes": 98,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "436b6f8c-25e2-4c1f-afb6-4eaa5247cf15"
+ },
+ {
+ "id": "ecbcdd6f-ac5f-408f-9d9b-cc979e5344c4",
+ "name": "J-Pop Powerplay Kawaii(asia dream radio)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "music",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:3060/;?shoutcast",
+ "homepage": "http://asiadreamradio.torontocast.stream/stations/en/index.html",
+ "logoUrl": null,
+ "votes": 367,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "ecbcdd6f-ac5f-408f-9d9b-cc979e5344c4"
+ },
+ {
+ "id": "813c17ee-abc0-46ce-974f-6640a3909d3c",
+ "name": "NHK WORLD RADIO 11",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC",
+ "bitrate": 66,
+ "streamUrl": "https://master.nhkworld.jp/nhkworld-radio/playlist/gs2/live.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/ja/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/common/assets/parts/images/logo_world.svg",
+ "votes": 16,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "813c17ee-abc0-46ce-974f-6640a3909d3c"
+ },
+ {
+ "id": "49439c31-b641-4251-b3b0-ab979ab514d2",
+ "name": "NHK WORLD RADIO 7",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC",
+ "bitrate": 66,
+ "streamUrl": "https://master.nhkworld.jp/nhkworld-radio/playlist/rs2/live.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/common/assets/parts/images/logo_world.svg",
+ "votes": 13,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "49439c31-b641-4251-b3b0-ab979ab514d2"
+ },
+ {
+ "id": "57cf528a-02be-4805-a510-6d05bb0ff996",
+ "name": "REPLAY NEWS - 日本語 5分ごとのニュースラジオ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "information",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://replaynewsja.ice.infomaniak.ch/replaynewsja-128.mp3",
+ "homepage": "https://www.replaynews.net/",
+ "logoUrl": "https://www.publicsante.com/BIENVENU/LOGO REPLAY NEWS-JA.png",
+ "votes": 45,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "57cf528a-02be-4805-a510-6d05bb0ff996"
+ },
+ {
+ "id": "0f0b233d-2b81-49e9-b9fd-51cdbd645210",
+ "name": "ぎのわんシティFM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "81.8",
+ "宜野湾市"
+ ],
+ "codec": "AAC",
+ "bitrate": 174,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30098/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 98,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f0b233d-2b81-49e9-b9fd-51cdbd645210"
+ },
+ {
+ "id": "df402746-9d27-4b53-8d07-ab4634ac8b66",
+ "name": "大富ラジオ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "chinese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/oaxp6mswcqltv",
+ "homepage": "http://www.daifutv.com/j/",
+ "logoUrl": null,
+ "votes": 174,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "df402746-9d27-4b53-8d07-ab4634ac8b66"
+ },
+ {
+ "id": "271d5018-2b16-49de-ab3f-df460337c0f8",
+ "name": "調布FM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "83.8",
+ "調布"
+ ],
+ "codec": "AAC",
+ "bitrate": 150,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30039/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 199,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "271d5018-2b16-49de-ab3f-df460337c0f8"
+ },
+ {
+ "id": "ce962d43-c800-4490-bfd0-09060ef05e9c",
+ "name": "AIR STATION HIBIKI",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "88.2",
+ "北九州市"
+ ],
+ "codec": "AAC",
+ "bitrate": 178,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30052/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 125,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ce962d43-c800-4490-bfd0-09060ef05e9c"
+ },
+ {
+ "id": "d1df0119-1b6c-45c8-94c3-f5723083c742",
+ "name": "FM Mot.com",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "77.7",
+ "本宮"
+ ],
+ "codec": "AAC",
+ "bitrate": 152,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30019/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 87,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1df0119-1b6c-45c8-94c3-f5723083c742"
+ },
+ {
+ "id": "cb8b1a74-bbb9-4185-bf83-d4eb739f6a1b",
+ "name": "FMたんご",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.4",
+ "京丹後市"
+ ],
+ "codec": "AAC",
+ "bitrate": 209,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30073/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 95,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "cb8b1a74-bbb9-4185-bf83-d4eb739f6a1b"
+ },
+ {
+ "id": "3a578ed9-ca5d-4e95-8519-19ee16674dbc",
+ "name": "FMメイプル",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 207,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30015/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 209,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a578ed9-ca5d-4e95-8519-19ee16674dbc"
+ },
+ {
+ "id": "cf0ab710-020b-4e3f-99af-2bf059466d36",
+ "name": "J-POP Powerplay",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:3560/",
+ "homepage": "http://www.asiadreamradio.com/stations/en/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s260995g.png",
+ "votes": 467,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "cf0ab710-020b-4e3f-99af-2bf059466d36"
+ },
+ {
+ "id": "090ec5aa-54d0-4410-8442-82c5236c57b8",
+ "name": "J1 HITS",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://jenny.torontocast.com:2000/stream/J1HITS?_=538100",
+ "homepage": "https://www.j1fm.tokyo/",
+ "logoUrl": "https://mmo.aiircdn.com/387/5e763a347e800.png",
+ "votes": 58,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "090ec5aa-54d0-4410-8442-82c5236c57b8"
+ },
+ {
+ "id": "149b595b-9490-4cf9-9e25-8bc46806d75a",
+ "name": "NFRS Radio",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english,japanese",
+ "tags": [
+ "country",
+ "dj sets",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://securestreams.autopo.st:2592/stream?t=1769818665235",
+ "homepage": "https://www.nfrsradio.com/",
+ "logoUrl": "https://static.wixstatic.com/media/1173e1_f007caeef2d94fb0bf49c6def3226b8f%7Emv2.jpg/v1/fill/w_192%2Ch_192%2Clg_1%2Cusm_0.66_1.00_0.01/1173e1_f007caeef2d94fb0bf49c6def3226b8f%7Emv2.jpg",
+ "votes": 11,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "149b595b-9490-4cf9-9e25-8bc46806d75a"
+ },
+ {
+ "id": "0bca37e5-153c-40fa-a26f-b52d46523b72",
+ "name": "Otaku Music Radio",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://kathy.torontocast.com:2880/;?type=http&nocache=1606748882",
+ "homepage": "https://www.otakumusicradio.com/",
+ "logoUrl": null,
+ "votes": 93,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0bca37e5-153c-40fa-a26f-b52d46523b72"
+ },
+ {
+ "id": "45ea052e-37c2-403e-be57-8bf66daa86af",
+ "name": "Real Love Music - Radio Future Funk",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english,japanese",
+ "tags": [
+ "future funk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-152.zeno.fm/48533y95cnruv?zs=doyTUcjfTvCVtBOS3nlI8g",
+ "homepage": "https://zeno.fm/radio/future-fnk/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2FWtp4rficSoRkzoffxPqNLfVEEfOKQEjUVgHsqS4Bl8g%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSURnbnBLeXJBa01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSURnM3R2aHpnb01vZ0VFZW1WdWJ3L2ltYWdlLz91cGRhdGVkPTE2NjIyNDU1MTAwMDA.webp&w=2048&q=100",
+ "votes": 349,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "45ea052e-37c2-403e-be57-8bf66daa86af"
+ },
+ {
+ "id": "443a5e7e-4392-4930-bbed-10b9af54e32e",
+ "name": "羊飼いラジオ Hitsujikai Radio",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "christian",
+ "classical",
+ "soft"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.radio.co/se4a8e6a93/listen",
+ "homepage": "https://www.hitsujikai-radio.com/",
+ "logoUrl": "https://t0.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://www.hitsujikai-radio.com/&size=256",
+ "votes": 49,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "443a5e7e-4392-4930-bbed-10b9af54e32e"
+ },
+ {
+ "id": "f224c900-8796-4063-8aca-0bb3afd8507f",
+ "name": "A Radio for ACG & others",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://hkradio.myaddr.io/listen/new_radio/radio.mp3",
+ "homepage": "https://hkradio.myaddr.io/public/new_radio",
+ "logoUrl": "https://hkradio.myaddr.io/api/station/new_radio/art/a6ea0df6141aff3b0519c707-1744450585.jpg",
+ "votes": 1,
"clickcount": 3,
"source": "radio-browser",
- "sourceStationUuid": "1148235c-eb9c-45fc-9a59-a1e41272a041"
+ "sourceStationUuid": "f224c900-8796-4063-8aca-0bb3afd8507f"
+ },
+ {
+ "id": "37d1f4fb-0812-432d-af30-e91ca28ae05c",
+ "name": "Big B Radio - Jpop",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "music",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://antares.dribbcast.com/proxy/jpop?mp=/s",
+ "homepage": "https://bigbradio.net/jpop",
+ "logoUrl": null,
+ "votes": 668,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "37d1f4fb-0812-432d-af30-e91ca28ae05c"
+ },
+ {
+ "id": "e2abcb12-3954-4ca2-a5b4-5df5502d9045",
+ "name": "FM Kawaguchi 856 studio (FM川口)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "85.6",
+ "川口"
+ ],
+ "codec": "AAC",
+ "bitrate": 148,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30035/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 159,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "e2abcb12-3954-4ca2-a5b4-5df5502d9045"
+ },
+ {
+ "id": "94787418-4335-4192-966d-d89105db8548",
+ "name": "FM RADIO3 (ラジオ3)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.2",
+ "仙台"
+ ],
+ "codec": "AAC",
+ "bitrate": 425,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30007/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 200,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "94787418-4335-4192-966d-d89105db8548"
+ },
+ {
+ "id": "c17a651c-1f8c-4da1-b802-403cb81bf5b6",
+ "name": "FMアップル",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 208,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30090/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 111,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "c17a651c-1f8c-4da1-b802-403cb81bf5b6"
+ },
+ {
+ "id": "b3b6aaa8-b8a7-4fe6-a44f-433727ee9aec",
+ "name": "FMぱるるん",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.2",
+ "水戸"
+ ],
+ "codec": "AAC",
+ "bitrate": 178,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30022/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 73,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3b6aaa8-b8a7-4fe6-a44f-433727ee9aec"
+ },
+ {
+ "id": "5a2cbfe7-0518-44e9-aca6-0fd41e466ff0",
+ "name": "Fred Film Radio(日本語)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "culture",
+ "film",
+ "movie"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s10.webradio-hosting.com/proxy/fredradiojp/stream",
+ "homepage": "http://www.fred.fm/",
+ "logoUrl": null,
+ "votes": 608,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5a2cbfe7-0518-44e9-aca6-0fd41e466ff0"
+ },
+ {
+ "id": "51f0066d-6de7-40b5-83a0-f264727f30a4",
+ "name": "J-Rock Powerplay(Asia DREAM Radio)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "music",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:3340/;?shoutcast",
+ "homepage": "http://asiadreamradio.torontocast.stream/stations/en/index.html",
+ "logoUrl": null,
+ "votes": 425,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "51f0066d-6de7-40b5-83a0-f264727f30a4"
+ },
+ {
+ "id": "405566fa-dd30-437e-b20b-934fcdbe768f",
+ "name": "Kamakura FM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.laut.fm/kamakura",
+ "homepage": "https://kamakurafm.co.jp/",
+ "logoUrl": null,
+ "votes": 80,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "405566fa-dd30-437e-b20b-934fcdbe768f"
+ },
+ {
+ "id": "07d14a05-8de1-4cd1-b218-9448141364bf",
+ "name": "KOCOラジ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.1",
+ "郡山"
+ ],
+ "codec": "AAC",
+ "bitrate": 148,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30020/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 96,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "07d14a05-8de1-4cd1-b218-9448141364bf"
+ },
+ {
+ "id": "e698b1df-bd9c-4084-9c21-22a452b27664",
+ "name": "Listen.moe J-Pop (MP3)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://listen.moe/fallback",
+ "homepage": "https://listen.moe/",
+ "logoUrl": "https://listen.moe/favicon.ico",
+ "votes": 467,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "e698b1df-bd9c-4084-9c21-22a452b27664"
+ },
+ {
+ "id": "d37f6140-a3c4-4b91-9d2c-801894a4c53d",
+ "name": "Moon Mission Recordings, Tokyo Deep and Electronic",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://uk5.internet-radio.com/proxy/mmr?mp=/stream;",
+ "homepage": "https://www.moonmission.jp/",
+ "logoUrl": "https://static.wixstatic.com/media/b4e9b8_d568257bd6474ac0ad5ea280d38461e4~mv2.png/v1/fill/w_403,h_406,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/MOON%20MISSION%202_0%20%E3%83%AD%E3%82%B4%E3%80%80%E9%BB%92%E3%80%801000x1000.png",
+ "votes": 71,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d37f6140-a3c4-4b91-9d2c-801894a4c53d"
+ },
+ {
+ "id": "a0a57bb8-21fe-45db-a3a8-7f5ae8cc7e12",
+ "name": "NHK WORLD RADIO 8",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC",
+ "bitrate": 66,
+ "streamUrl": "https://master.nhkworld.jp/nhkworld-radio/playlist/rs5/live.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/ja/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/ja/assets/images/common/bnr_rj.png",
+ "votes": 18,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a0a57bb8-21fe-45db-a3a8-7f5ae8cc7e12"
+ },
+ {
+ "id": "fc7ccfdf-6e00-4d68-bb57-c8bf881510a0",
+ "name": "SHMUPRADIO",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.shmupradio.com/320",
+ "homepage": "https://shmupradio.com/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "fc7ccfdf-6e00-4d68-bb57-c8bf881510a0"
+ },
+ {
+ "id": "987dffac-52d9-4ca7-98c9-e5ac1088e1df",
+ "name": "WVVV V96.9",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://ice5.securenetsystems.net/WVVVFM",
+ "homepage": "https://www.v969radio.net/",
+ "logoUrl": "https://img1.wsimg.com/isteam/ip/fc3d1b44-9881-4eb0-98a3-9594c00a2ffa/v96%20500x500%20logo%20for%20app.png/:/rs=w:114,h:114,m",
+ "votes": 249,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "987dffac-52d9-4ca7-98c9-e5ac1088e1df"
+ },
+ {
+ "id": "69c7cb5b-df1d-47b6-93c3-964cf64c7ea7",
+ "name": "ラジオ・ミュー",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.1",
+ "黒部市"
+ ],
+ "codec": "AAC",
+ "bitrate": 133,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30006/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 66,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "69c7cb5b-df1d-47b6-93c3-964cf64c7ea7"
+ },
+ {
+ "id": "6ebf58e8-8732-4f94-a909-8e0acbdfd411",
+ "name": "敦賀FM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "77.9",
+ "敦賀市"
+ ],
+ "codec": "AAC",
+ "bitrate": 125,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30012/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 89,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "6ebf58e8-8732-4f94-a909-8e0acbdfd411"
+ },
+ {
+ "id": "1972ede1-8a0a-4cf3-87a7-4497e3260b92",
+ "name": "B・FM791",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.1",
+ "徳島市"
+ ],
+ "codec": "AAC",
+ "bitrate": 116,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30010/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 73,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "1972ede1-8a0a-4cf3-87a7-4497e3260b92"
+ },
+ {
+ "id": "b992ec2b-63cb-40f9-909a-5427916a31a1",
+ "name": "FM ジャングル",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.4",
+ "豊岡市"
+ ],
+ "codec": "AAC",
+ "bitrate": 178,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30013/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 63,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b992ec2b-63cb-40f9-909a-5427916a31a1"
+ },
+ {
+ "id": "8f00a733-bac8-419a-8722-50a30df1c71d",
+ "name": "FMいわき",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.2",
+ "いわき市"
+ ],
+ "codec": "AAC",
+ "bitrate": 174,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30009/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 90,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f00a733-bac8-419a-8722-50a30df1c71d"
+ },
+ {
+ "id": "151f8c13-0171-449f-a074-e4ddff23f954",
+ "name": "FMとよみ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "83.2",
+ "豊見城市"
+ ],
+ "codec": "AAC",
+ "bitrate": 146,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30083/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 94,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "151f8c13-0171-449f-a074-e4ddff23f954"
+ },
+ {
+ "id": "505fcd85-39b4-4336-b8d0-7afe103648b5",
+ "name": "FMのべおか",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "88.6",
+ "延岡市"
+ ],
+ "codec": "AAC",
+ "bitrate": 152,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30088/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 70,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "505fcd85-39b4-4336-b8d0-7afe103648b5"
+ },
+ {
+ "id": "651eb704-b106-4f2a-9344-59b37dcd61f2",
+ "name": "Friends Forever 128kbps MP3",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "english,japanese",
+ "tags": [
+ "j-pop",
+ "j-rock",
+ "jpop",
+ "jrock",
+ "shibuya kei"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s5.radio.co/s6140c7241/listen",
+ "homepage": "https://www.grahambaster.com/",
+ "logoUrl": "https://images.radio.co/station_logos/s6140c7241.20230806034636.jpg",
+ "votes": 176,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "651eb704-b106-4f2a-9344-59b37dcd61f2"
+ },
+ {
+ "id": "e0763775-fdb9-4f6d-b88e-057165cb283c",
+ "name": "Gensokyo Radio (OGG)",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://stream.gensokyoradio.net/2",
+ "homepage": "https://stream.gensokyoradio.net/",
+ "logoUrl": "https://stream.gensokyoradio.net/images/logo.png",
+ "votes": 54,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e0763775-fdb9-4f6d-b88e-057165cb283c"
+ },
+ {
+ "id": "3eacb8df-5cc0-4c6b-9a6f-084eeadb55c5",
+ "name": "J-Pop Powerplay",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:3560/;",
+ "homepage": "https://asiadreamradio.torontocast.stream/stations/en/index.html",
+ "logoUrl": null,
+ "votes": 48,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3eacb8df-5cc0-4c6b-9a6f-084eeadb55c5"
+ },
+ {
+ "id": "3dc4d4af-a0fd-4d0d-b3a0-723668b68d24",
+ "name": "J-Pop Powerplay Kawaii",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kathy.torontocast.com:3060/;",
+ "homepage": "https://asiadreamradio.torontocast.stream/stations/en/index.html",
+ "logoUrl": null,
+ "votes": 235,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3dc4d4af-a0fd-4d0d-b3a0-723668b68d24"
+ },
+ {
+ "id": "39a3266d-d4a3-4fa3-9359-287ffd13f43e",
+ "name": "NHK WORLD RADIO",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international",
+ "test"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://b-nhkworld-radio.nhkworld.jp/hls/live/nhkworld-radio-rs1/index_rs1.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/common/assets/parts/images/logo_world.svg",
+ "votes": 17,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "39a3266d-d4a3-4fa3-9359-287ffd13f43e"
+ },
+ {
+ "id": "dbc6d144-67d0-4581-a93d-6b3d69a13079",
+ "name": "NHK WORLD RADIO 12",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC",
+ "bitrate": 66,
+ "streamUrl": "https://master.nhkworld.jp/nhkworld-radio/playlist/kai/live.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/ja/assets/images/common/bnr_rj.png",
+ "votes": 6,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "dbc6d144-67d0-4581-a93d-6b3d69a13079"
+ },
+ {
+ "id": "608b153d-8eb9-4564-a98f-76f075a6eda4",
+ "name": "NHK WORLD RADIO 13",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [
+ "international"
+ ],
+ "codec": "AAC",
+ "bitrate": 66,
+ "streamUrl": "https://master.nhkworld.jp/nhkworld-radio/playlist/sin/live.m3u8",
+ "homepage": "https://www3.nhk.or.jp/nhkworld/",
+ "logoUrl": "https://www3.nhk.or.jp/nhkworld/ja/assets/images/common/bnr_rj.png",
+ "votes": 4,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "608b153d-8eb9-4564-a98f-76f075a6eda4"
+ },
+ {
+ "id": "21fece77-9763-4223-8f01-358adbddeac7",
+ "name": "Nonstop Casiopea",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://nonstopcasiopea.radioca.st/",
+ "homepage": "https://nonstopcasiopea.com/",
+ "logoUrl": null,
+ "votes": 55,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "21fece77-9763-4223-8f01-358adbddeac7"
+ },
+ {
+ "id": "3ab8903d-117f-4f25-802e-d048dcdd0675",
+ "name": "OnlyHits Japan",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://j.onlyhit.us/play",
+ "homepage": "https://j.onlyhit.us/",
+ "logoUrl": null,
+ "votes": 389,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ab8903d-117f-4f25-802e-d048dcdd0675"
+ },
+ {
+ "id": "045fd26e-5be3-4ef8-9c38-651ebceef4d1",
+ "name": "wi-radio",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "77.6"
+ ],
+ "codec": "AAC",
+ "bitrate": 181,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30087/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 78,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "045fd26e-5be3-4ef8-9c38-651ebceef4d1"
+ },
+ {
+ "id": "07d44324-869d-4479-8da6-dfaa2aa0da92",
+ "name": "あまみエフエム",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "77.7",
+ "奄美市"
+ ],
+ "codec": "AAC",
+ "bitrate": 208,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30054/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 90,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "07d44324-869d-4479-8da6-dfaa2aa0da92"
+ },
+ {
+ "id": "14f39985-e279-4533-9a41-69e3bf6c514b",
+ "name": "エフエムEGAO",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.3",
+ "岡崎"
+ ],
+ "codec": "AAC",
+ "bitrate": 178,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30040/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 73,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "14f39985-e279-4533-9a41-69e3bf6c514b"
+ },
+ {
+ "id": "ddfd0cda-f782-419b-86d0-6d2a12c5fc78",
+ "name": "エフエムたつごう",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "78.9",
+ "大島郡"
+ ],
+ "codec": "AAC",
+ "bitrate": 173,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30072/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 115,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ddfd0cda-f782-419b-86d0-6d2a12c5fc78"
+ },
+ {
+ "id": "1b604853-4fac-434c-9566-935e2796638f",
+ "name": "エフエム椿台",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.6",
+ "秋田"
+ ],
+ "codec": "AAC",
+ "bitrate": 208,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30014/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 316,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "1b604853-4fac-434c-9566-935e2796638f"
+ },
+ {
+ "id": "0f9cf618-ac22-42b8-8604-57a7f2b1cf17",
+ "name": "ハローハッピー・こしがやエフエム",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "86.8",
+ "越谷"
+ ],
+ "codec": "AAC",
+ "bitrate": 152,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30096/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 97,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f9cf618-ac22-42b8-8604-57a7f2b1cf17"
+ },
+ {
+ "id": "925ed0bd-d0e9-4e10-a5cb-015cde92d923",
+ "name": "フラワーラジオ",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "76.7",
+ "鴻巣"
+ ],
+ "codec": "AAC",
+ "bitrate": 203,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30002/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 75,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "925ed0bd-d0e9-4e10-a5cb-015cde92d923"
+ },
+ {
+ "id": "851e146e-242a-47ab-bd41-ceac2b064923",
+ "name": "ラジオ石巻",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "4",
+ "76",
+ "石巻"
+ ],
+ "codec": "AAC",
+ "bitrate": 136,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30037/livestream/playlist.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 56,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "851e146e-242a-47ab-bd41-ceac2b064923"
+ },
+ {
+ "id": "8200660c-59e7-44f2-bb86-e30fc313bc5f",
+ "name": "鹿角きりたんぽFM",
+ "country": "Japan",
+ "countryCode": "JP",
+ "language": "japanese",
+ "tags": [
+ "79.1",
+ "鹿角"
+ ],
+ "codec": "AAC",
+ "bitrate": 210,
+ "streamUrl": "https://mtist.as.smartstream.ne.jp/30089/livestream/playlist.m3u8",
+ "homepage": "https://global.superradio.cc/",
+ "logoUrl": null,
+ "votes": 77,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8200660c-59e7-44f2-bb86-e30fc313bc5f"
+ },
+ {
+ "id": "962cea00-0601-11e8-ae97-52543be04c81",
+ "name": "Ретро FM Рига (Retro FM)",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "russian",
+ "tags": [
+ "classic hits",
+ "hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://live.retrofm.lv/retrofmlatvia",
+ "homepage": "http://retrofm.lv/",
+ "logoUrl": "http://retrofm.lv/view/site/favicons/apple-touch-icon.png",
+ "votes": 4696,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "962cea00-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "bde3792c-747b-4e43-b1a2-2f0d08774395",
+ "name": "Relax",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://live.relaxfm.lv/02",
+ "homepage": "https://live.relaxfm.lv/",
+ "logoUrl": null,
+ "votes": 191,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "bde3792c-747b-4e43-b1a2-2f0d08774395"
+ },
+ {
+ "id": "08c28678-83d8-4363-8c09-ca8ce8cfbbcf",
+ "name": "StarFM",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [
+ "folk",
+ "local news",
+ "pop music",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.advailo.com/audio/mp3/icecast.audio",
+ "homepage": "https://tv3.lv/starfm/",
+ "logoUrl": "https://tv3cdn.lv/tv3/images/logos/tv3-starfm.svg?ver=3",
+ "votes": 3,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "08c28678-83d8-4363-8c09-ca8ce8cfbbcf"
+ },
+ {
+ "id": "4746a29f-2beb-499a-af1d-ec5391d31632",
+ "name": "Авторадио Латвия",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "russian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://live.relaxfm.lv/03",
+ "homepage": "http://avtoradio.lv/",
+ "logoUrl": "https://avtoradio.lv/upload/design/64df68073caa85.35482071.png",
+ "votes": 1956,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4746a29f-2beb-499a-af1d-ec5391d31632"
+ },
+ {
+ "id": "a8c3a4a2-f984-11e9-bbf2-52543be04c81",
+ "name": "XO.FM",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [
+ "jazz"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://live.xo.fm/xofm128",
+ "homepage": "https://xo.fm/",
+ "logoUrl": null,
+ "votes": 375,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "a8c3a4a2-f984-11e9-bbf2-52543be04c81"
+ },
+ {
+ "id": "ae5eebee-fea8-4311-a507-e7c45f4730be",
+ "name": "EHR",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.ehrhiti.lv:8000/ehr.aac",
+ "homepage": "https://www.ehr.fm/sakums",
+ "logoUrl": "https://www.ehr.fm/build/favicons/favicon.png",
+ "votes": 53,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae5eebee-fea8-4311-a507-e7c45f4730be"
+ },
+ {
+ "id": "3401278e-9dac-45fe-aabf-9178b65fcd64",
+ "name": "Latvijas Radio 1",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://60766ff53d5e6.streamlock.net/liveALR1/mp4:LR1/playlist.m3u8",
+ "homepage": "https://lr1.lsm.lv/lv/lr1/",
+ "logoUrl": "https://latvijasradio.lsm.lv/public/assets/userfiles/logo/LR1-logo-RGB-square.png",
+ "votes": 108,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3401278e-9dac-45fe-aabf-9178b65fcd64"
+ },
+ {
+ "id": "fd57ae03-5547-4d41-9540-33059a7a42c5",
+ "name": "Nordic Chillout Radio",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "english",
+ "tags": [
+ "chillout",
+ "downtempo",
+ "electronic"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://play.radioking.io/nordic-chillout-radio/736489",
+ "homepage": "http://www.nordichilloutradio.com/",
+ "logoUrl": "https://nordichilloutradio.com/wp-content/themes/nordichillout/media/apple-touch-icon.png",
+ "votes": 154,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "fd57ae03-5547-4d41-9540-33059a7a42c5"
+ },
+ {
+ "id": "3bf92492-e4e9-4eca-9355-2fa997c6c908",
+ "name": "Skonto",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radioskonto.lv:8443/stereo",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 544,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3bf92492-e4e9-4eca-9355-2fa997c6c908"
+ },
+ {
+ "id": "a0897d83-35e9-42d8-9dd9-91e7ed988e9f",
+ "name": "Radio SWH LV",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [
+ "classic rock",
+ "latvian rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.radioswh.lv:8443/swh_lv",
+ "homepage": "https://radioswhlv.lv/",
+ "logoUrl": "https://radioswhlv.lv/wp-content/uploads/2022/02/cropped-swh_lv_512_2-32x32.png",
+ "votes": 64,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a0897d83-35e9-42d8-9dd9-91e7ed988e9f"
+ },
+ {
+ "id": "8db82b5b-4b50-4c65-9f22-6489b8068700",
+ "name": "Radio SWH+",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.radioswh.lv:8443/plusmp3",
+ "homepage": "https://www.radioswhplus.lv/",
+ "logoUrl": null,
+ "votes": 44,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "8db82b5b-4b50-4c65-9f22-6489b8068700"
+ },
+ {
+ "id": "9a22e57f-7b7c-4e10-84db-e9b46479a8d6",
+ "name": "TOP radio",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "english,latvian,russian",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://topradio.live.advailo.com/topradio/mp3/icecast.audio",
+ "homepage": "https://topradio.lv/",
+ "logoUrl": "https://topradio.lv/favicon.ico",
+ "votes": 928,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "9a22e57f-7b7c-4e10-84db-e9b46479a8d6"
+ },
+ {
+ "id": "1d229119-d55e-444c-894e-b78a8e082508",
+ "name": "Radio Melodija",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "russian",
+ "tags": [
+ "folk",
+ "jazz",
+ "news",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://live.relaxfm.lv/08",
+ "homepage": "https://radiomelodija.lv/",
+ "logoUrl": "https://radiomelodija.lv/upload/photos/69048604d622c8.08038779_final.png",
+ "votes": 10,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d229119-d55e-444c-894e-b78a8e082508"
+ },
+ {
+ "id": "51774bc8-b731-4981-98f4-3d35013bac83",
+ "name": "Radio Roks",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://live.relaxfm.lv/06",
+ "homepage": "https://radioroks.lv/",
+ "logoUrl": "https://radioroks.lv/upload/design/63891096d7cfc0.23308165.png",
+ "votes": 65,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "51774bc8-b731-4981-98f4-3d35013bac83"
+ },
+ {
+ "id": "0268a606-217c-4d80-89ac-3b94c71b7784",
+ "name": "Star FM Latvia",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 149,
+ "streamUrl": "https://live.advailo.com/audio/live/playlist.m3u8",
+ "homepage": "https://tv3.lv/starfm/",
+ "logoUrl": "https://tv3cdn.lv/skaties/images/starfm/apple-touch-icon-precomposed.png",
+ "votes": 4,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0268a606-217c-4d80-89ac-3b94c71b7784"
+ },
+ {
+ "id": "23cc41c2-3667-474f-a247-2da5092d786b",
+ "name": "Chillax FM",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [
+ "chill & relax"
+ ],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://streams.chillaxfm.lv/chillaxfm",
+ "homepage": "https://chillaxfm.lv/",
+ "logoUrl": "https://skontotev.lv/uploads/LOGO/Saraksta%20skata%20kart%C4%ABte/straumes_1a_kartite_chillax%20FM.png",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "23cc41c2-3667-474f-a247-2da5092d786b"
+ },
+ {
+ "id": "5e61272f-af4d-4e16-8c64-842ca8cb89bd",
+ "name": "EHR+",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.ehrhiti.lv:8000/khr.aac",
+ "homepage": "https://www.ehr.fm/radio/ehrplus",
+ "logoUrl": "https://www.ehr.fm/content/channels/fc039806-e0c3-49bc-82d8-4f421f45be63.png?w=205&h=205&fm=webp&s=3b8d5106ea026855e5700c9c260f45b4",
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e61272f-af4d-4e16-8c64-842ca8cb89bd"
+ },
+ {
+ "id": "cfbbbfbd-1c6c-4e9b-be7f-1e2506901bcb",
+ "name": "gradio.lv ONE",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "english,latvian",
+ "tags": [
+ "dance",
+ "eurodance",
+ "hands up",
+ "hard dance",
+ "house",
+ "pop",
+ "trance"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream.gradio.lv/gradio-one.mp4a",
+ "homepage": "https://gradio.lv/",
+ "logoUrl": "https://gradio.lv/logo/only-g-without-gloss-web-200.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "cfbbbfbd-1c6c-4e9b-be7f-1e2506901bcb"
+ },
+ {
+ "id": "34ce3faa-8ea3-4c0c-94fb-46a562ac55cf",
+ "name": "IvoFm",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ivofm.lv/radio",
+ "homepage": "https://ivofm.lv/radio",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "34ce3faa-8ea3-4c0c-94fb-46a562ac55cf"
+ },
+ {
+ "id": "2c5424a0-f301-472b-b51f-3c14bc3a4146",
+ "name": "Latviešu hiti",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.ehrhiti.lv:8000/Stream_22.aac",
+ "homepage": "https://www.ehr.fm/radio/latviesu-hiti",
+ "logoUrl": "https://www.ehr.fm/content/channels/e253bd86-c97a-4117-a7d8-4dd65fe00a2c.png?w=205&h=205&fm=webp&s=ce07c22c9642da2d67534f85b1c14180",
+ "votes": 28,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "2c5424a0-f301-472b-b51f-3c14bc3a4146"
+ },
+ {
+ "id": "ed04903b-7042-4456-a70f-5cc60311138b",
+ "name": "LRMAROCKRADIO",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://c22.radioboss.fm:18318/stream",
+ "homepage": "https://www.rockradio.lv/",
+ "logoUrl": null,
+ "votes": 734,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ed04903b-7042-4456-a70f-5cc60311138b"
+ },
+ {
+ "id": "12735a70-367d-4c9c-b222-0870869ba1d6",
+ "name": "Mix FM 102,7",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "english,russian",
+ "tags": [
+ "dance",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://live.relaxfm.lv/07",
+ "homepage": "https://mixfm.lv/",
+ "logoUrl": "https://mixfm.lv/upload/players/6564bef731b954.54432755.png",
+ "votes": 7,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "12735a70-367d-4c9c-b222-0870869ba1d6"
+ },
+ {
+ "id": "34a98692-9494-45c0-9ac4-f755d4145997",
+ "name": "Radio 7",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian,latviešu",
+ "tags": [
+ "latvian",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen.radio7.lv:2053/Radio7",
+ "homepage": "https://radio7.lv/",
+ "logoUrl": "https://radio7.lv/wp-content/uploads/2021/03/cropped-radio7-symbol-32x32.png",
+ "votes": 19,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "34a98692-9494-45c0-9ac4-f755d4145997"
+ },
+ {
+ "id": "eec0e3ab-4552-4cdd-8d63-87a5baea7327",
+ "name": "Radio TEV",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radiotev.lv:8443/radiov",
+ "homepage": "https://radiotev.lv/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "eec0e3ab-4552-4cdd-8d63-87a5baea7327"
+ },
+ {
+ "id": "8dcbd860-5165-4cfa-b947-9a7b6c5dbf7a",
+ "name": "Skonto Plus",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radioskontoplus.lv:8443/st128",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 20,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8dcbd860-5165-4cfa-b947-9a7b6c5dbf7a"
+ },
+ {
+ "id": "b70334e2-5eed-48cb-9d79-a3e98f57d8bd",
+ "name": "Your City Radio",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [
+ "afro house",
+ "afrobeat",
+ "chillout",
+ "disco funk",
+ "lounge",
+ "smooth jazz",
+ "soulful house"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://c34.radioboss.fm:8234/stream",
+ "homepage": "https://yourcityradio.com/",
+ "logoUrl": "https://c28.radioboss.fm/stationlogo/234.jpg?9299",
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b70334e2-5eed-48cb-9d79-a3e98f57d8bd"
+ },
+ {
+ "id": "013f4bdf-a7dc-4bc9-bdb8-d220d99d654c",
+ "name": "Latvijas Kristīgais Radio",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [
+ "religious"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://radio.lkr.lv/;?type=http&nocache=40",
+ "homepage": "https://lkr.lv/",
+ "logoUrl": "https://lkr.lv/icon-128x128.png",
+ "votes": 39,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "013f4bdf-a7dc-4bc9-bdb8-d220d99d654c"
+ },
+ {
+ "id": "7c488516-a286-4309-bdbf-fa49af85220e",
+ "name": "Latvijas Radio 3 - Klasika",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://60766ff53d5e6.streamlock.net/liveALR3/mp4:klasika/playlist.m3u8",
+ "homepage": "https://klasika.lsm.lv/lv/lr3/",
+ "logoUrl": "https://latvijasradio.lsm.lv/public/assets/userfiles/logo/LR3-logo-RGB-square.png",
+ "votes": 17,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c488516-a286-4309-bdbf-fa49af85220e"
+ },
+ {
+ "id": "31d2f37d-facc-4a52-ac63-ceb1b0866abe",
+ "name": "Njoyradio",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://live.njoyradio.lv/02",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 4,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "31d2f37d-facc-4a52-ac63-ceb1b0866abe"
+ },
+ {
+ "id": "8cb977c6-433f-482d-a8e1-32ae2f830d46",
+ "name": "Retro FM Latvija",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.ehrhiti.lv:8000/Stream_RE.aac",
+ "homepage": "https://www.ehr.fm/radio/retro-fm-latvija",
+ "logoUrl": "https://www.ehr.fm/content/channels/614c776f-f4e9-4370-a221-999d4c675c97.png?w=205&h=205&fm=webp&s=63442b5cdd1bc22bc65780825c083d18",
+ "votes": 36,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "8cb977c6-433f-482d-a8e1-32ae2f830d46"
+ },
+ {
+ "id": "fdf47098-b193-4866-806c-f9cc59351360",
+ "name": "SuperHits",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.ehrhiti.lv:8000/Stream_21.aac",
+ "homepage": "https://www.ehr.fm/radio/super-hits",
+ "logoUrl": "https://www.ehr.fm/content/channels/1097ed8f-d318-4a08-89bd-a1fa548674f5.png?w=205&h=205&fm=webp&s=ab323f7af1c6835a75ef5b27185f360d",
+ "votes": 43,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "fdf47098-b193-4866-806c-f9cc59351360"
+ },
+ {
+ "id": "57d2c82e-ee07-403c-a055-051e794f3ab0",
+ "name": "Tīrkultūra",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s3.radio.co/s216811754/listen",
+ "homepage": "https://tirkultura.lv/",
+ "logoUrl": "https://tirkultura.lv/favicon-32x32.png",
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "57d2c82e-ee07-403c-a055-051e794f3ab0"
+ },
+ {
+ "id": "ada2c0a7-08b9-48dc-a6b7-d85d701a159e",
+ "name": "TOP radio lv",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvia",
+ "tags": [
+ "club dj remix dance pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://live.advailo.com/topradio/live/playlist.m3u8",
+ "homepage": "https://topradio.tv3.lv/",
+ "logoUrl": null,
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "ada2c0a7-08b9-48dc-a6b7-d85d701a159e"
+ },
+ {
+ "id": "1ffa1528-eea5-4b32-81c7-8098970678b5",
+ "name": "Your City Padio",
+ "country": "Latvia",
+ "countryCode": "LV",
+ "language": "latvian",
+ "tags": [
+ "lounge pop house"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://c28.radioboss.fm:18234/stream",
+ "homepage": "https://jainaro.wixsite.com/jainaro",
+ "logoUrl": null,
+ "votes": 7,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "1ffa1528-eea5-4b32-81c7-8098970678b5"
+ },
+ {
+ "id": "311716b6-a375-4342-81da-3ae2c6fca8ad",
+ "name": "RELAX FM Lietuva",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "lithuanian",
+ "tags": [
+ "lithuania",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream1.relaxfm.lt/relaxfm128.mp3",
+ "homepage": "https://relaxfm.lt/",
+ "logoUrl": "https://relaxfm.lt/wp-content/uploads/2018/12/cropped-r-relax-fm-copy-1-192x192.png",
+ "votes": 3867,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "311716b6-a375-4342-81da-3ae2c6fca8ad"
+ },
+ {
+ "id": "ef8bef74-7125-473a-85c2-36dbcf8334b7",
+ "name": "Radijo stotis Lietus",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.m-1.fm/LIETUS",
+ "homepage": "https://www.lietus.fm/",
+ "logoUrl": "http://www.radijas.fm/media/_catalog/www.radijas.fm-radijo-stotis-lietus.png",
+ "votes": 573,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "ef8bef74-7125-473a-85c2-36dbcf8334b7"
+ },
+ {
+ "id": "4e057766-080f-4839-bafe-5518bc124e1e",
+ "name": "Радио Лента stream 2",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "russian",
+ "tags": [
+ "news",
+ "russian",
+ "talk radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://streaming.broadcastrd.com/audio/radio-lenta.mp3",
+ "homepage": "https://nashalenta.com/",
+ "logoUrl": null,
+ "votes": 1483,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "4e057766-080f-4839-bafe-5518bc124e1e"
+ },
+ {
+ "id": "45cdda89-9ef0-4cab-802f-9c9fdf117b8c",
+ "name": "Power Hit Radio LT",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://n02a-eu.rcs.revma.com/f31w7e0fveuvv",
+ "homepage": "https://powerhitradio.tv3.lt/",
+ "logoUrl": null,
+ "votes": 82,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "45cdda89-9ef0-4cab-802f-9c9fdf117b8c"
+ },
+ {
+ "id": "b56671bc-2a27-40a2-84ac-5c474217ca8c",
+ "name": "Radiocentras",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [
+ "pop rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream2.rc.lt/rc128.mp3",
+ "homepage": "https://rc.lt/",
+ "logoUrl": null,
+ "votes": 1890,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b56671bc-2a27-40a2-84ac-5c474217ca8c"
+ },
+ {
+ "id": "e003d249-6d3d-44a8-aa79-c8cc5bcfca74",
+ "name": "Relax FM 100 Hitu",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://klausyk.radijas.lt/listen/100hitu/live",
+ "homepage": "https://100hitu.lt/",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "e003d249-6d3d-44a8-aa79-c8cc5bcfca74"
+ },
+ {
+ "id": "38129622-6899-11ea-9d09-52543be04c81",
+ "name": "Easy FM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "english,lithuanian",
+ "tags": [
+ "classic rock",
+ "jazz",
+ "lounge",
+ "smooth jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://netradio.ziniur.lt/easyfm.mp3",
+ "homepage": "https://www.ziniuradijas.lt/easy-fm/",
+ "logoUrl": null,
+ "votes": 3115,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "38129622-6899-11ea-9d09-52543be04c81"
+ },
+ {
+ "id": "c3b21b89-73da-4aec-b762-d9236c1a27ce",
+ "name": "Power Hit Radio LT",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "lithuanian",
+ "tags": [
+ "dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://ice.leviracloud.eu/phr192-mp3",
+ "homepage": "https://powerhitradio.tv3.lt/",
+ "logoUrl": "null",
+ "votes": 170,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c3b21b89-73da-4aec-b762-d9236c1a27ce"
+ },
+ {
+ "id": "0b5592b3-a5b0-4626-976b-054729a6a236",
+ "name": "Radiocentras",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream2.rockfm.lt/crf128.mp3",
+ "homepage": "https://rc.lt/",
+ "logoUrl": "https://rczipbucket.s3.eu-north-1.amazonaws.com/rc/1665234650.jpg",
+ "votes": 205,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b5592b3-a5b0-4626-976b-054729a6a236"
+ },
+ {
+ "id": "ee662a9d-fa14-4d70-8d1d-b101ed6da89f",
+ "name": "ZipFM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream2.zipfm.lt/zipfm128.mp3",
+ "homepage": "https://zipfm.lt/",
+ "logoUrl": "https://zipfm.lt/wp-content/uploads/2023/11/cropped-zipfm-icon-180x180.png",
+ "votes": 2696,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "ee662a9d-fa14-4d70-8d1d-b101ed6da89f"
+ },
+ {
+ "id": "330c6d80-ed43-4210-a0dd-6496e10ee966",
+ "name": "M-1 Plius",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://radio.m-1.fm/m1plius/aacp64",
+ "homepage": "https://www.pliusas.fm/",
+ "logoUrl": null,
+ "votes": 136,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "330c6d80-ed43-4210-a0dd-6496e10ee966"
+ },
+ {
+ "id": "d134f955-f21e-4086-a572-c9cb5999f7e9",
+ "name": "-=PoWeR=-",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "english,lithuanian,russian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast1.my-control-panel.com/proxy/eventas/stream",
+ "homepage": "https://powerradio.webstarts.com/",
+ "logoUrl": null,
+ "votes": 60,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d134f955-f21e-4086-a572-c9cb5999f7e9"
+ },
+ {
+ "id": "263460df-4482-4802-b4eb-8b5c26bcde4f",
+ "name": "Gold FM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.goldfm.lt/goldfm.mp3",
+ "homepage": "http://goldfm.lt/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "263460df-4482-4802-b4eb-8b5c26bcde4f"
+ },
+ {
+ "id": "e828da35-4677-45b4-ae9a-36f52a788f21",
+ "name": "Radio stotis Laluna",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://radio.m-1.fm/laluna/mp3",
+ "homepage": "https://www.laluna.lt/",
+ "logoUrl": "https://www.laluna.lt/favicon.ico",
+ "votes": 224,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "e828da35-4677-45b4-ae9a-36f52a788f21"
+ },
+ {
+ "id": "e92f0589-c3d4-4054-8718-8dd204cf03d6",
+ "name": "ZIP FM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "lithuanian",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream1.zipfm.lt/zipfm128.mp3",
+ "homepage": "http://www.zipfm.lt/",
+ "logoUrl": "https://zipfm.lt/wp-content/uploads/2023/11/cropped-zipfm-icon-180x180.png",
+ "votes": 644,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "e92f0589-c3d4-4054-8718-8dd204cf03d6"
+ },
+ {
+ "id": "c9bbaec4-aa0e-4087-b346-523343d873c3",
+ "name": "Cold Tear Radio",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.rad10x.com/listen/coldtear/coldtear.mp3",
+ "homepage": "https://radio.coldtear.com/",
+ "logoUrl": "https://th.bing.com/th/id/OIP.0bD3EllJGSWsRQhdkQGuygHaL9?pid=ImgDet",
+ "votes": 40,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "c9bbaec4-aa0e-4087-b346-523343d873c3"
+ },
+ {
+ "id": "9a3a5423-b460-44d4-8369-fe2b3f0a7033",
+ "name": "DomantasFM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [
+ "hiphop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.domkutis.com/listen/domantasfm/radio.mp3",
+ "homepage": "https://radio.domkutis.com/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9a3a5423-b460-44d4-8369-fe2b3f0a7033"
+ },
+ {
+ "id": "a4917182-7492-44d4-a0a9-782cc855cd39",
+ "name": "European Hit Radio",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.ehr.lt:8443/ehr",
+ "homepage": "https://europeanhitradio.lt/",
+ "logoUrl": null,
+ "votes": 40,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4917182-7492-44d4-a0a9-782cc855cd39"
+ },
+ {
+ "id": "48a6ee5e-9fc2-476e-a711-ab6bc0fde5b4",
+ "name": "LRT Klasika",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 3667,
+ "streamUrl": "https://stream-live.lrt.lt/klasika/master.m3u8",
+ "homepage": "https://www.lrt.lt/mediateka/tiesiogiai/lrt-klasika",
+ "logoUrl": "https://www.lrt.lt/favicon.ico",
+ "votes": 7,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "48a6ee5e-9fc2-476e-a711-ab6bc0fde5b4"
+ },
+ {
+ "id": "3ec0a854-2e08-4cac-b2d1-5c418a87a4a1",
+ "name": "LRT Opus",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 3667,
+ "streamUrl": "https://stream-live.lrt.lt/opus/master.m3u8",
+ "homepage": "https://www.lrt.lt/mediateka/tiesiogiai/lrt-opus",
+ "logoUrl": "https://www.lrt.lt/favicon.ico",
+ "votes": 36,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ec0a854-2e08-4cac-b2d1-5c418a87a4a1"
+ },
+ {
+ "id": "1e0a1dd3-3563-465a-be48-36c7741eb46c",
+ "name": "lsg radijas",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [
+ "random"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streamingp.shoutcast.com/JamendoLounge?lang=lt%3bq%3d0.9",
+ "homepage": "https://streamingp.shoutcast.com/JamendoLounge?lang=lt%3bq%3d0.9",
+ "logoUrl": "https://streamingp.shoutcast.com/JamendoLounge?lang=lt%3bq%3d0.9",
+ "votes": 17,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e0a1dd3-3563-465a-be48-36c7741eb46c"
+ },
+ {
+ "id": "7ac3bf7f-d2c4-4f5c-afe8-a222d773eaea",
+ "name": "Palanga Street Radio",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "english",
+ "tags": [
+ "eclectic"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.palanga.live:8443/palanga128.mp3",
+ "homepage": "https://palanga.live/",
+ "logoUrl": "https://palanga.live/assets/favicons/apple-icon-120x120.png",
+ "votes": 550,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ac3bf7f-d2c4-4f5c-afe8-a222d773eaea"
+ },
+ {
+ "id": "267e2897-d074-4bce-a3b4-815e28e42723",
+ "name": "Relax FM Sentimentai",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://klausyk.radijas.lt/listen/sentimentai/live",
+ "homepage": "https://relaxfm.lt/",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "267e2897-d074-4bce-a3b4-815e28e42723"
+ },
+ {
+ "id": "8ca48dbc-fd29-4bf0-95f4-21c2bd50471d",
+ "name": "Vilnius fm",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://stream.vilniusfm.lt/stream",
+ "homepage": "https://vilniusfm.lt/",
+ "logoUrl": "https://vilniusfm.lt/favicon.ico",
+ "votes": 105,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8ca48dbc-fd29-4bf0-95f4-21c2bd50471d"
+ },
+ {
+ "id": "ab5eec21-da45-4c56-9f5b-29dd26ec9661",
+ "name": "Радио Сигнал",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://streaming.broadcastrd.com/audio/radio-singnal.mp3",
+ "homepage": "https://radiosignal.news/",
+ "logoUrl": null,
+ "votes": 1264,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ab5eec21-da45-4c56-9f5b-29dd26ec9661"
+ },
+ {
+ "id": "b4d3e648-6c5e-4d08-8b6b-0b55a87a085f",
+ "name": "Fred Film Radio-24 lietuvių kalba",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "lithuanian",
+ "tags": [
+ "film"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s10.webradio-hosting.com/proxy/fredradiolt/stream",
+ "homepage": "https://www.fred.fm/",
+ "logoUrl": null,
+ "votes": 24,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b4d3e648-6c5e-4d08-8b6b-0b55a87a085f"
+ },
+ {
+ "id": "9d7164f4-a886-4b05-be3c-f54229e443f4",
+ "name": "LRT Radijas",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 3667,
+ "streamUrl": "https://stream-live.lrt.lt/radijas/master.m3u8",
+ "homepage": "https://www.lrt.lt/mediateka/tiesiogiai/lrt-radijas",
+ "logoUrl": "https://www.lrt.lt/favicon.ico",
+ "votes": 16,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9d7164f4-a886-4b05-be3c-f54229e443f4"
+ },
+ {
+ "id": "79625aa6-cf6a-4daa-b0e8-6da0b103eaa3",
+ "name": "M-1 Dance",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://radio.m-1.fm/m-1dance/aac",
+ "homepage": "https://radio.m-1.fm/m-1dance/aac",
+ "logoUrl": null,
+ "votes": 1963,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "79625aa6-cf6a-4daa-b0e8-6da0b103eaa3"
+ },
+ {
+ "id": "4c65c801-7411-462c-9c0b-e7c1741e1c6e",
+ "name": "Play Radio",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://n08.radiojar.com/d9cm273ystzuv",
+ "homepage": "https://n08.radiojar.com/d9cm273ystzuv",
+ "logoUrl": null,
+ "votes": 320,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c65c801-7411-462c-9c0b-e7c1741e1c6e"
+ },
+ {
+ "id": "9182472a-9d9a-4469-ad0f-36ede5f1d7e3",
+ "name": "Radio RU",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream1.rusradio.lt/rrb128.mp3",
+ "homepage": "https://radior.lt/",
+ "logoUrl": null,
+ "votes": 4,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9182472a-9d9a-4469-ad0f-36ede5f1d7e3"
+ },
+ {
+ "id": "31394def-54d8-497e-887a-745ee8e038f2",
+ "name": "Fréquence Protestante",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://freqpro.streamakaci.com/frequenceprotestante.mp3",
+ "homepage": "https://frequenceprotestante.com/",
+ "logoUrl": "https://frequenceprotestante.com/wp-content/uploads/2022/01/icon_player.png",
+ "votes": 12,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "31394def-54d8-497e-887a-745ee8e038f2"
+ },
+ {
+ "id": "32078da8-5a4e-450e-9fd3-c2fc128b9cd7",
+ "name": "Geras2 FM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.goldfm.lt/gerasfm.mp3",
+ "homepage": "http://www.gerasfm.lt/",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "32078da8-5a4e-450e-9fd3-c2fc128b9cd7"
+ },
+ {
+ "id": "51d969b3-4f43-48f8-acb9-eebcd57384c8",
+ "name": "KAB Radio",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://node-25.zeno.fm/29xtapvkzhhvv",
+ "homepage": "https://zeno.fm/radio/kabradio/",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "51d969b3-4f43-48f8-acb9-eebcd57384c8"
+ },
+ {
+ "id": "9672c2a0-8106-4e37-b938-a2a834f1243e",
+ "name": "Leproradio",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 128,
+ "streamUrl": "https://live.leproradio.com/bender.ogg",
+ "homepage": "https://leproradio.com/",
+ "logoUrl": "https://leproradio.com/static/img/icon90.png",
+ "votes": 13,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "9672c2a0-8106-4e37-b938-a2a834f1243e"
+ },
+ {
+ "id": "50f5be05-04aa-41b4-9ce3-2f440a38a6b2",
+ "name": "Patejago",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-46.zeno.fm/f6m1zbud5p8uv",
+ "homepage": "https://stream-46.zeno.fm/f6m1zbud5p8uv",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "50f5be05-04aa-41b4-9ce3-2f440a38a6b2"
+ },
+ {
+ "id": "36cb9fb3-c1cf-405b-a21b-8c1ef49aae53",
+ "name": "Pulsas",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://pulsas.lt/stream",
+ "homepage": "https://pulsas.lt/",
+ "logoUrl": "https://static.wixstatic.com/media/7757d3_77841452a4234261bc90518fa7aca7c4%7emv2.png/v1/fill/w_180%2ch_180%2clg_1%2cusm_0.66_1.00_0.01/7757d3_77841452a4234261bc90518fa7aca7c4%7emv2.png",
+ "votes": 237,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "36cb9fb3-c1cf-405b-a21b-8c1ef49aae53"
+ },
+ {
+ "id": "42d15c51-9299-4866-a39f-0a67b09a94b4",
+ "name": "Radijo Musikii",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radijo-musikii.net/radio/8000/radio.mp3",
+ "homepage": "https://www.radijo-musikii.net/",
+ "logoUrl": "https://www.radijo-musikii.net/favicon.png",
+ "votes": 19,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "42d15c51-9299-4866-a39f-0a67b09a94b4"
+ },
+ {
+ "id": "beb0a9b3-b050-4af4-8341-cd74fba76b64",
+ "name": "Radio Fiesta",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream2.radiofiesta.lt/rfs128.mp3",
+ "homepage": "https://radiofiesta.lt/",
+ "logoUrl": null,
+ "votes": 48,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "beb0a9b3-b050-4af4-8341-cd74fba76b64"
+ },
+ {
+ "id": "c124ca8d-7cf1-4a9e-b75f-344bc08a9026",
+ "name": "RockFM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream3.rc.lt/rockfm.mp3",
+ "homepage": "https://rockfm.lt/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "c124ca8d-7cf1-4a9e-b75f-344bc08a9026"
+ },
+ {
+ "id": "cc71aeb0-fe7e-458c-aa5e-c58ff9158b7a",
+ "name": "Tavo Balsas LT",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://c18.radioboss.fm:8529/stream",
+ "homepage": "https://tavobalsas.fm/",
+ "logoUrl": null,
+ "votes": 29,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "cc71aeb0-fe7e-458c-aa5e-c58ff9158b7a"
+ },
+ {
+ "id": "96205ffe-2d31-4859-9737-e8c8f33aee0d",
+ "name": "thisislit",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "english,lithuanian",
+ "tags": [
+ "hiphop",
+ "rap"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://litradio.org/listen/thisislit/radio.mp3",
+ "homepage": "https://litradio.org/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "96205ffe-2d31-4859-9737-e8c8f33aee0d"
+ },
+ {
+ "id": "7f2107bb-de3d-4526-8d19-5d8ddb902e78",
+ "name": "TOP FM",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.topfm.lt/listen/topfm/topfm-320",
+ "homepage": "https://topfm.lt/",
+ "logoUrl": null,
+ "votes": 4,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f2107bb-de3d-4526-8d19-5d8ddb902e78"
+ },
+ {
+ "id": "95b0996e-e162-4573-a85f-d0c098492fcc",
+ "name": "Utenos Radijas",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://gyvai.ursrv.eu/stream",
+ "homepage": "https://utenosradijas.lt/",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "95b0996e-e162-4573-a85f-d0c098492fcc"
+ },
+ {
+ "id": "0f4365a7-96cf-4daf-b96d-9fe8a93096a6",
+ "name": "Zip FM is Kasetes",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://klausyk.radijas.lt/listen/is-kasetes/live",
+ "homepage": "https://zipfm.lt/",
+ "logoUrl": null,
+ "votes": 22,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f4365a7-96cf-4daf-b96d-9fe8a93096a6"
+ },
+ {
+ "id": "e3234613-3209-43f9-84a8-18a50c5b953b",
+ "name": "Радио Свободынх Народов",
+ "country": "Lithuania",
+ "countryCode": "LT",
+ "language": "komi,sakha,tatar,tyvan",
+ "tags": [
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radio.freenations.online/listen/radio_free_nations/radio.mp3?refresh=1768495046250",
+ "homepage": "https://freenations.online/",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "e3234613-3209-43f9-84a8-18a50c5b953b"
},
{
"id": "05c826f8-95e7-41f0-893e-c1c4f48fcd05",
@@ -18243,6 +38908,23 @@
"source": "radio-browser",
"sourceStationUuid": "6a893f37-f749-11e9-bbf2-52543be04c81"
},
+ {
+ "id": "80f07344-504e-48dd-8775-ab60c4a82068",
+ "name": "Radio 100komma7",
+ "country": "Luxembourg",
+ "countryCode": "LU",
+ "language": "french,luxembourgish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.100komma7.lu/100komma7/live/mp3/128/stream.mp3",
+ "homepage": "https://100komma7.lu/",
+ "logoUrl": "https://100komma7.lu/static/logo-radio.png",
+ "votes": 132,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "80f07344-504e-48dd-8775-ab60c4a82068"
+ },
{
"id": "14ef7efc-5537-439e-8155-c11cc2ef8154",
"name": "Radio Gutt Laun",
@@ -18381,23 +39063,6 @@
"source": "radio-browser",
"sourceStationUuid": "1b3b22b7-d103-4c65-b8b8-6534e5d84f5b"
},
- {
- "id": "80f07344-504e-48dd-8775-ab60c4a82068",
- "name": "Radio 100komma7",
- "country": "Luxembourg",
- "countryCode": "LU",
- "language": "french,luxembourgish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.100komma7.lu/100komma7/live/mp3/128/stream.mp3",
- "homepage": "https://100komma7.lu/",
- "logoUrl": "https://100komma7.lu/static/logo-radio.png",
- "votes": 132,
- "clickcount": 0,
- "source": "radio-browser",
- "sourceStationUuid": "80f07344-504e-48dd-8775-ab60c4a82068"
- },
{
"id": "d8cc383d-ed0f-48d3-994a-8c8761560f8f",
"name": "Rádio Larochette",
@@ -18473,6 +39138,2698 @@
"source": "radio-browser",
"sourceStationUuid": "82504e4e-d90f-4502-805b-defcb28ced02"
},
+ {
+ "id": "5ae47396-1ba4-4b1d-92c7-bdc62d6f8879",
+ "name": "Bay Easy 100.2",
+ "country": "Malta",
+ "countryCode": "MT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.v3.network/proxy/easy/stream.mp3",
+ "homepage": "https://bayeasy.mt/",
+ "logoUrl": "https://bayeasy.mt/wp-content/uploads/2023/07/BayEasy_BLU-copy.png",
+ "votes": 132,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5ae47396-1ba4-4b1d-92c7-bdc62d6f8879"
+ },
+ {
+ "id": "b93e26d9-306c-4522-b420-cc4d537fc196",
+ "name": "Campus 103.7",
+ "country": "Malta",
+ "countryCode": "MT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://campusfm.radioca.st/campusfm_live",
+ "homepage": "https://www.um.edu.mt/services/campus1037/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s18846/images/logod.png?t=638303682800000000",
+ "votes": 60,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "b93e26d9-306c-4522-b420-cc4d537fc196"
+ },
+ {
+ "id": "26df1ec1-d11b-4703-a4d2-07519b431b66",
+ "name": "Bay 89.7",
+ "country": "Malta",
+ "countryCode": "MT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.v3.network/proxy/897bay/stream.mp3?_=1",
+ "homepage": "https://www.bay.com.mt/",
+ "logoUrl": "https://bay.com.mt/wp-content/plugins/phastpress/phast.php/c2VydmljZT1pbWFnZXMmc3JjPWh0dHBzJTNBJTJGJTJGYmF5LmNvbS5tdCUyRndwLWNvbnRlbnQlMkZ1cGxvYWRzJTJGMjAyMCUyRjEwJTJGU2l0ZUxvZ28ucG5nJmNhY2hlTWFya2VyPTE2NjIwNDc3MjQtNTA3OCZ0b2tlbj1jZTE2YTcwZTBiOTdkMTYy.q.png",
+ "votes": 168,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "26df1ec1-d11b-4703-a4d2-07519b431b66"
+ },
+ {
+ "id": "bc95a0d2-666d-400d-9d9b-bba9f50277b3",
+ "name": "Calypso Radio",
+ "country": "Malta",
+ "countryCode": "MT",
+ "language": "maltese",
+ "tags": [
+ "music",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://s4.radio.co/sf3aa4c25a/listen",
+ "homepage": "https://www.calypsomalta.com/",
+ "logoUrl": "https://img1.wsimg.com/isteam/ip/cb21df74-856b-42e1-a8fe-bc24d4311d14/favicon/d3247829-803d-4f26-8709-620bb7b8109f.png/:/rs=w:120,h:120,m",
+ "votes": 1276,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "bc95a0d2-666d-400d-9d9b-bba9f50277b3"
+ },
+ {
+ "id": "c1346103-8b8f-4960-bea9-5f86708a8ae8",
+ "name": "MALTIN BISS",
+ "country": "Malta",
+ "countryCode": "MT",
+ "language": null,
+ "tags": [
+ "country"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s4.voscast.com:8837/default",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 211,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1346103-8b8f-4960-bea9-5f86708a8ae8"
+ },
+ {
+ "id": "f46f0540-0409-494d-934b-646323e472b2",
+ "name": "La Ke Buena San Andrés Tuxtla - 103.9 FM - XHDQ-FM - San Andrés Tuxtla, Veracruz",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "103.9 fm",
+ "cuatro media",
+ "estación",
+ "fm",
+ "grupera",
+ "grupero",
+ "la ke buena",
+ "latinoamérica",
+ "mexican music",
+ "moi merino",
+ "méxico",
+ "música mexicana"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.servicioswebmx.com/8146/stream",
+ "homepage": "https://www.kebuena.com.mx/",
+ "logoUrl": "https://www.kebuena.com.mx/especiales/la-fiesta-de-la-ke-buena-vip-2021/assets/img/logo-ke-buena.png",
+ "votes": 191,
+ "clickcount": 38,
+ "source": "radio-browser",
+ "sourceStationUuid": "f46f0540-0409-494d-934b-646323e472b2"
+ },
+ {
+ "id": "427e7eda-148e-4da0-b63b-eb4bb9be92ab",
+ "name": "La Ke Buena Ciudad de México - 92.9 FM - XEQ-FM - Radiópolis - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "92.9",
+ "92.9 fm",
+ "banda",
+ "cdmx",
+ "ciudad de méxico",
+ "estación",
+ "fm",
+ "grupera",
+ "la ke buena",
+ "mex",
+ "mexico",
+ "musica regional"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/KEBUENAAAC.aac",
+ "homepage": "https://www.kebuena.com.mx/",
+ "logoUrl": "https://recursosweb.prisaradio.com/fotos/original/010002851440.jpg",
+ "votes": 9063,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "427e7eda-148e-4da0-b63b-eb4bb9be92ab"
+ },
+ {
+ "id": "11ee3ad5-ead9-47de-ab04-7e0d06789a15",
+ "name": "Amor Ciudad de México - 95.3 FM - XHSH-FM - Grupo ACIR - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "95.3",
+ "95.3 fm",
+ "acir",
+ "amor",
+ "amor sólo música romántica",
+ "balada",
+ "balada en español",
+ "baladas",
+ "baladas en español",
+ "cdmx",
+ "ciudad de méxico",
+ "estación"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://27143.live.streamtheworld.com:443/XHSHFMAAC.aac",
+ "homepage": "https://www.iheart.com/live/amor-953-cdmx-6532/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5bce06169803f27603c24988?ops=fit(240%2C240)",
+ "votes": 9578,
+ "clickcount": 30,
+ "source": "radio-browser",
+ "sourceStationUuid": "11ee3ad5-ead9-47de-ab04-7e0d06789a15"
+ },
+ {
+ "id": "a5b56fc7-32ea-11e9-8f31-52543be04c81",
+ "name": "Convoy en vivo",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "classic rock",
+ "latin music",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://live.convoynetwork.com/stream",
+ "homepage": "http://convoynetwork.com/",
+ "logoUrl": "http://convoynetwork.com/assets/favicon.7a65c983.ico",
+ "votes": 3109,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "a5b56fc7-32ea-11e9-8f31-52543be04c81"
+ },
+ {
+ "id": "510506e7-6bc0-4b91-b6a1-fc024ccad1a8",
+ "name": "SMOOTH JAZZ: Sax, piano, guitarra y voz: cool jazz",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "cool jazz",
+ "entretenimiento",
+ "español",
+ "estación",
+ "grupo acir",
+ "guitar jazz",
+ "iheart"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR22_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/smooth-jazz-8063/",
+ "logoUrl": "https://i.iheart.com/v3/re/assets.streams/63ee5ccb23c81aa16510435a",
+ "votes": 84,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "510506e7-6bc0-4b91-b6a1-fc024ccad1a8"
+ },
+ {
+ "id": "04d0c498-c6c9-4365-8212-9ad29e6e09c1",
+ "name": "MIX: 80's, 90's y Más",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "106.5 fm",
+ "2000s",
+ "2010s",
+ "70s",
+ "80s",
+ "80s 90s y más",
+ "90s",
+ "90s y más",
+ "acir",
+ "acir online",
+ "américa",
+ "cdmx"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://18443.live.streamtheworld.com:443/XHDFMFMAAC.aac",
+ "homepage": "https://www.iheart.com/live/1065-mix-6533/",
+ "logoUrl": "https://i.postimg.cc/J4K5Xkqz/mix.jpg",
+ "votes": 57,
+ "clickcount": 25,
+ "source": "radio-browser",
+ "sourceStationUuid": "04d0c498-c6c9-4365-8212-9ad29e6e09c1"
+ },
+ {
+ "id": "0f5f1741-70a5-4075-8995-836d059fff8e",
+ "name": "ROCK EN ESPAÑOL: Rock de México, España y Argentina",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "80s",
+ "80s en español",
+ "90s",
+ "acir",
+ "acir online",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "clásicos",
+ "clásicos en español",
+ "entretenimiento",
+ "español"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://29309.live.streamtheworld.com:443/ACIR20_S01AAC.aac",
+ "homepage": "https://www.iheart.com/live/rock-en-espanol-8061/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5bc5ed6ac7977ca1c9302285",
+ "votes": 57,
+ "clickcount": 25,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f5f1741-70a5-4075-8995-836d059fff8e"
+ },
+ {
+ "id": "5766fc5b-ce3e-4f46-a5b3-c274ea46d8e6",
+ "name": "ALFA 91.3 (Ciudad de México) - 91.3 FM - XHFAJ-FM - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "91.3",
+ "91.3 fm",
+ "alfa",
+ "cdmx",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "entretenimiento",
+ "estación",
+ "fm",
+ "grupo radio centro",
+ "juvenil",
+ "mexico"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHFAJ_FMAAC.aac",
+ "homepage": "https://www.alfaenlinea.com/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5ef0ca067ec97a064f3322c9",
+ "votes": 5954,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "5766fc5b-ce3e-4f46-a5b3-c274ea46d8e6"
+ },
+ {
+ "id": "082080f5-09e1-4727-b973-584a84e5560a",
+ "name": "SIEMPRE GRUPEROS de LA COMADRE (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "español",
+ "estación",
+ "grupera",
+ "grupero",
+ "grupo acir",
+ "iheart"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR07_s01AAC.aac",
+ "homepage": "https://acironline.mx/radio-online/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5ced3f5677b0f30f02bf3386",
+ "votes": 824,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "082080f5-09e1-4727-b973-584a84e5560a"
+ },
+ {
+ "id": "177cc601-a536-41cc-bd67-7d10b1a5dee1",
+ "name": "Radio Felicidad - 1180 AM - XEFR-AM - Grupo ACIR - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "1180 am",
+ "60s",
+ "70s",
+ "80s",
+ "acir",
+ "am",
+ "balada",
+ "balada en español",
+ "balada pop",
+ "balada romántica",
+ "baladas",
+ "baladas en español"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEFRAMAAC.aac",
+ "homepage": "https://www.iheart.com/live/radio-felicidad-1180-6534/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/en/1/1d/XEFR_RadioFelicidad1180_logo.jpg",
+ "votes": 6011,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "177cc601-a536-41cc-bd67-7d10b1a5dee1"
+ },
+ {
+ "id": "fe84d1da-ea45-4646-8558-20d3b6d4bfbe",
+ "name": "UNIVERSAL 88.1 (CDMX) - 88.1 FM - XHRED-FM - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "88.1 fm",
+ "adult contemporary",
+ "adult hits",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "classic hits",
+ "classics",
+ "clásicos",
+ "clásicos en inglés",
+ "entretenimiento",
+ "español"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHFO_FMAAC.aac",
+ "homepage": "https://www.universal881.com/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5ef0b2287ec97a064f3322c7",
+ "votes": 841,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "fe84d1da-ea45-4646-8558-20d3b6d4bfbe"
+ },
+ {
+ "id": "a0b40c3f-aede-46e9-b67f-38cd8b262936",
+ "name": "88.9 Noticias - 88.9 FM - XHM-FM - Grupo ACIR - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "88.9",
+ "88.9 fm",
+ "acir",
+ "balada en español",
+ "baladas en español",
+ "cdmx",
+ "ciudad de méxico",
+ "espacio deportivo",
+ "español",
+ "estación",
+ "fm",
+ "fundación acir"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHMFMAAC_SC.aac",
+ "homepage": "https://www.iheart.com/live/889-noticias-6531/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/ce6ef23e-2cdd-44a2-b139-c2b08f9365e3?ops=fit(240%2C240)",
+ "votes": 10946,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "a0b40c3f-aede-46e9-b67f-38cd8b262936"
+ },
+ {
+ "id": "12a970e2-443a-4640-8775-5c6b0f238c4a",
+ "name": "SABROSITA Ciudad de México - 590 AM - XEPH-AM - NRM Comunicaciones - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "590",
+ "590 am",
+ "am",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "ciudad mexico",
+ "estación",
+ "latin salsa kumbia merenge reggaeton",
+ "mex",
+ "mexico",
+ "mexico city",
+ "music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEPHAMAAC.aac",
+ "homepage": "https://www.sabrosita590am.com.mx/",
+ "logoUrl": "https://yt3.ggpht.com/ytc/AAUvwnjGCqHNgRIXL-qgnm4HKlYyXS_1Yy-ctciPKLMI=s900-c-k-c0x00ffffff-no-rj",
+ "votes": 10356,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "12a970e2-443a-4640-8775-5c6b0f238c4a"
+ },
+ {
+ "id": "bbed394d-8907-435f-8714-8b24c1c56399",
+ "name": "Café Romántico Radio (Monterrey) - Online - www.caferomanticoradio.com - Grupo Digital Radioland - Monterrey, Nuevo León",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "80s en español",
+ "café romántico radio",
+ "clásicos",
+ "español",
+ "estación",
+ "internet",
+ "internet radio",
+ "internet station",
+ "latinoamérica",
+ "moi merino",
+ "monterrey",
+ "musica romantica"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://panel.retrolandigital.com/radio/8110/listen",
+ "homepage": "https://caferomanticoradio.com/",
+ "logoUrl": null,
+ "votes": 13582,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "bbed394d-8907-435f-8714-8b24c1c56399"
+ },
+ {
+ "id": "290a6027-3ced-449c-9a55-1c7fa392d7b5",
+ "name": "AMOR SOLO POP: Pop y baladas en español",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "amor",
+ "amor sólo música romántica",
+ "américa",
+ "balada",
+ "balada en español",
+ "balada pop",
+ "balada romántica",
+ "baladas",
+ "baladas en español",
+ "cdmx"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR03_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/amor-solo-pop-8044/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/6230ca02be123875849470cd",
+ "votes": 39,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "290a6027-3ced-449c-9a55-1c7fa392d7b5"
+ },
+ {
+ "id": "5355a4fe-be93-4f87-a172-0aa89638dcaa",
+ "name": "La Z Ciudad de México - 107.3 FM - XEQR-FM - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "107.3",
+ "107.3 fm",
+ "banda",
+ "cdmx",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "estación",
+ "fm",
+ "grupera",
+ "grupo radio centro",
+ "la z",
+ "mex"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEQR_FMAAC.aac",
+ "homepage": "https://www.laz.mx/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5ef0ca937ec97a064f3322cd",
+ "votes": 5799,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "5355a4fe-be93-4f87-a172-0aa89638dcaa"
+ },
+ {
+ "id": "04d8949c-1d24-4e74-9550-92e645764e5b",
+ "name": "90s Dance by Mix (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "cdmx",
+ "ciudad de méxico",
+ "club dance",
+ "clásicos",
+ "clásicos en inglés",
+ "dance",
+ "dance music",
+ "dance radio online",
+ "edm",
+ "electronic"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR11_s01AAC.aac",
+ "homepage": "https://acironline.mx/radio-online/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5c769b2fe7770a23546c3d7f",
+ "votes": 2978,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "04d8949c-1d24-4e74-9550-92e645764e5b"
+ },
+ {
+ "id": "a14b9dde-af38-4bf1-beb5-d1ece9062b35",
+ "name": "Wonder 80's Flashback",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "english,spanish",
+ "tags": [
+ "80's",
+ "80s en español",
+ "oldies"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://80.streeemer.com/listen/80s/radio.aac",
+ "homepage": "https://mytuner-radio.com/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/2C5DZ9pVXS.jpg",
+ "votes": 747,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "a14b9dde-af38-4bf1-beb5-d1ece9062b35"
+ },
+ {
+ "id": "1d4d7e90-fe9b-413a-9dda-f3aa507a848c",
+ "name": "Cumbia Total (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "américa",
+ "bailable",
+ "ciudad de méxico",
+ "cumbia",
+ "cumbia total",
+ "estación",
+ "grupo acir",
+ "iheart",
+ "iheart radio",
+ "latinoamérica"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR40_S01AAC.aac",
+ "homepage": "https://www.iheart.com/live/cumbia-total-8370/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5eff662feea000ce70b6428a",
+ "votes": 1072,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d4d7e90-fe9b-413a-9dda-f3aa507a848c"
+ },
+ {
+ "id": "62633b87-8938-43c0-94e6-324b944eb138",
+ "name": "EL FONÓGRAFO - 690 AM - XEN-AM - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "690 am",
+ "80s en español",
+ "am",
+ "balada en español",
+ "baladas en español",
+ "cdmx",
+ "ciudad de méxico",
+ "clásicos",
+ "clásicos en español",
+ "el fonógrafo",
+ "entretenimiento",
+ "español"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://26423.live.streamtheworld.com:443/XEN_AMAAC.aac",
+ "homepage": "https://elfonografo.mx/",
+ "logoUrl": null,
+ "votes": 1122,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "62633b87-8938-43c0-94e6-324b944eb138"
+ },
+ {
+ "id": "b6809aff-5118-408f-bb65-8405837b9382",
+ "name": "JOYA 93.7 (CDMX) - 93.7 FM - XEJP-FM - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "93.7 fm",
+ "américa",
+ "balada en español",
+ "balada pop",
+ "balada romántica",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupo radio centro"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEJP_FMAAC.aac",
+ "homepage": "https://www.joya937.mx/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s24508/images/logod.jpg",
+ "votes": 179,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "b6809aff-5118-408f-bb65-8405837b9382"
+ },
+ {
+ "id": "15a269a7-9f65-4deb-874a-4b4e6c65c358",
+ "name": "MIX Ciudad de México - 106.5 FM - XHDFM-FM - Grupo ACIR - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "2010s",
+ "80s",
+ "90s",
+ "90s y más",
+ "acir",
+ "cdmx",
+ "ciudad de méxico",
+ "estación",
+ "grupo acir",
+ "iheart",
+ "iheart radio"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://18233.live.streamtheworld.com:443/XHDFMFMAAC.aac",
+ "homepage": "https://www.iheart.com/live/1065-mix-6533/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/77b18faf-00b4-483d-bb24-377cdd4b4998?ops=fit(240%2C240)",
+ "votes": 7268,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "15a269a7-9f65-4deb-874a-4b4e6c65c358"
+ },
+ {
+ "id": "d57d8bb4-e208-4892-bf6b-bcf6546aa2c8",
+ "name": "BEAT: Total Music",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "100.9 fm",
+ "américa",
+ "beat",
+ "cdmx",
+ "ciudad de méxico",
+ "club dance",
+ "club dance electronic house trance",
+ "dance",
+ "dance music",
+ "edm",
+ "edm radioshows",
+ "electro"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHSONFMAAC.aac",
+ "homepage": "https://beatdigital.mx/",
+ "logoUrl": "https://i.postimg.cc/C15C4837/beat-2025.jpg",
+ "votes": 15,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "d57d8bb4-e208-4892-bf6b-bcf6546aa2c8"
+ },
+ {
+ "id": "659f5596-51a8-4e3a-802e-ef5e6ceb61d0",
+ "name": "Cumbias Inmortales Radio (Monterrey) - Online - www.cumbiasinmortales.com - Grupo Digital Retroland - Monterrey, Nuevo León",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "clásicos",
+ "clásicos en español",
+ "cumbia",
+ "cumbias",
+ "español",
+ "estación",
+ "grupo digital retroland",
+ "internet radio",
+ "latinoamérica",
+ "moi merino",
+ "monterrey",
+ "méxico"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://panel.retrolandigital.com/listen/cumbias_inmortales_radio/listen",
+ "homepage": "http://www.cumbiasinmortales.com/",
+ "logoUrl": null,
+ "votes": 11848,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "659f5596-51a8-4e3a-802e-ef5e6ceb61d0"
+ },
+ {
+ "id": "c18ca205-f8fe-4dac-b765-5858a3db1623",
+ "name": "EL FONÓGRAFO, Música las 24 horas (CDMX) - Online - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "américa",
+ "balada pop",
+ "cdmx",
+ "ciudad de méxico",
+ "clásicos",
+ "clásicos en español",
+ "el fonógrafo",
+ "entretenimiento",
+ "español",
+ "estación",
+ "grupo radio centro",
+ "latin music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://22203.live.streamtheworld.com:443/XEJP_AMAAC.aac",
+ "homepage": "https://elfonografo.mx/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5ef0cb167ec97a064f3322d1",
+ "votes": 106,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "c18ca205-f8fe-4dac-b765-5858a3db1623"
+ },
+ {
+ "id": "7d3ca300-7a22-4be0-a594-6b0427288794",
+ "name": "LA COMADRE - 1260 AM - XEL-AM - Grupo ACIR - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "1260 am",
+ "acir",
+ "am",
+ "banda",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "español",
+ "estación",
+ "grupera",
+ "grupero",
+ "grupo acir"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XELAMAAC.aac",
+ "homepage": "https://www.iheart.com/live/la-comadre-1260-6535/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/75/La_Comadre_Logo.jpg",
+ "votes": 1205,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "7d3ca300-7a22-4be0-a594-6b0427288794"
+ },
+ {
+ "id": "f8fb7eac-cc70-4e71-b56d-47ff892f9e85",
+ "name": "La Mejor Ciudad de México - 97.7 FM - XERC-FM - MVS Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "97.7",
+ "97.7 fm",
+ "aquí nomás",
+ "banda",
+ "cdmx",
+ "ciudad de méxico",
+ "estación",
+ "fm",
+ "grupera",
+ "la mejor",
+ "la mejor fm",
+ "mex"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XERCFM_SC",
+ "homepage": "https://www.lamejor.com.mx/",
+ "logoUrl": "https://www.lamejor.com.mx/u/plantillas/p/la-mejor-fm/imgs/favicons//apple-touch-icon.png?v2",
+ "votes": 3870,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "f8fb7eac-cc70-4e71-b56d-47ff892f9e85"
+ },
+ {
+ "id": "73e94c4e-a02a-4b34-be03-44c8496cd9ba",
+ "name": "Oldies Internet Radio - Online - www.oldiesinternetradio.com - Grupo Digital Retroland - Monterrey, Nuevo León",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "70s",
+ "80s",
+ "adult contemporary",
+ "adult hits",
+ "américa",
+ "charts",
+ "classic hits",
+ "classic rock",
+ "clásicos",
+ "clásicos en inglés",
+ "entretenimiento",
+ "español"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://panel.retrolandigital.com/listen/oldies_internet_radio/listen",
+ "homepage": "https://oldiesinternetradio.com/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/dwdxek9by6tq.jpg",
+ "votes": 1767,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "73e94c4e-a02a-4b34-be03-44c8496cd9ba"
+ },
+ {
+ "id": "ad1a30fb-6f33-4cac-8055-43df5b4b418e",
+ "name": "104.9 La Mexicana (Ciudad Guzmán) - 104.9 FM - XHMEX-FM - Ciudad Guzmán, Jalisco",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "104.9 fm",
+ "américa",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "la mexicana",
+ "latinoamérica",
+ "local",
+ "mexican music",
+ "moi merino",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/drhfmwa3w2quv",
+ "homepage": "https://www.radiorama.mx/Develop/players/xhmex/xhmex.html",
+ "logoUrl": "https://i.postimg.cc/nzVc6sCn/lamexicana.png",
+ "votes": 2,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "ad1a30fb-6f33-4cac-8055-43df5b4b418e"
+ },
+ {
+ "id": "dad734a4-29a9-4e91-b895-abd6534780de",
+ "name": "CHILANGO RADIO: La Radio Que Viene, Viene",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "105.3 fm",
+ "alternative",
+ "alternative rock",
+ "américa",
+ "capital digital",
+ "cdmx",
+ "chilango radio",
+ "ciudad de méxico",
+ "convoy network",
+ "entretenimiento",
+ "español",
+ "estación"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.radio.co/s938b68214/listen",
+ "homepage": "https://chilangoradio.com/",
+ "logoUrl": "https://i.iheart.com/v3/re/assets.streams/68507f96166c04a064910e82",
+ "votes": 10,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "dad734a4-29a9-4e91-b895-abd6534780de"
+ },
+ {
+ "id": "9f901849-e6ba-406c-af95-73cd1a6f5358",
+ "name": "Estrellas de los 80s Radio (Monterrey) - Online - www.estrellasdelos80s.com - Grupo Digital Radioland - Monterrey, Nuevo León",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "1980s",
+ "80s",
+ "80s en español",
+ "clásicos",
+ "español",
+ "estación",
+ "internet",
+ "internet radio",
+ "internet station",
+ "latinoamérica",
+ "moi merino",
+ "monterrey"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://panel.retrolandigital.com/listen/estrellas_de_los_80s/listen",
+ "homepage": "https://estrellasdelos80s.com/",
+ "logoUrl": null,
+ "votes": 3358,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f901849-e6ba-406c-af95-73cd1a6f5358"
+ },
+ {
+ "id": "69dc98c1-4d42-4219-8d99-c4b663fc812b",
+ "name": "LA RANCHERITA 105.1 (León) - 105.1 FM - XHLEO-FM - Promomedios - León, Guanajuato",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/wqmax4y0ra0uv",
+ "homepage": "https://larancheritafm.mx/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/b/be/XHLEO_LaRancherita105.1_logo.png",
+ "votes": 124,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "69dc98c1-4d42-4219-8d99-c4b663fc812b"
+ },
+ {
+ "id": "fe8099f9-0981-48cf-9bba-ae72feda7a29",
+ "name": "La Lupe 105.3 FM Monterrey",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "español mexico",
+ "tags": [
+ "adult hits",
+ "baladas en español",
+ "banda",
+ "banda norteña",
+ "bolero",
+ "cumbia",
+ "la lupe",
+ "mariachi",
+ "mexico",
+ "monterrey",
+ "multimedios radio",
+ "méxico"
+ ],
+ "codec": "AAC",
+ "bitrate": 93,
+ "streamUrl": "https://mdstrm.com/audio/6737993c9422ca09f9b9ea70/icecast.audio",
+ "homepage": "https://www.mmradio.com/",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "fe8099f9-0981-48cf-9bba-ae72feda7a29"
+ },
+ {
+ "id": "431b426b-e654-4b7d-8f42-230a6fa65fc9",
+ "name": "UNIVERSAL STEREO ONLINE (CDMX) - Online - www.universalstereoonline.com - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "1970s",
+ "1980's",
+ "1980s",
+ "70 80 hits",
+ "70's",
+ "70s",
+ "80's",
+ "80s",
+ "américa",
+ "baladas en inglés",
+ "cdmx",
+ "ciudad de méxico"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XERC_FMAAC.aac",
+ "homepage": "https://universalstereoonline.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s309342/images/logod.jpg",
+ "votes": 28,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "431b426b-e654-4b7d-8f42-230a6fa65fc9"
+ },
+ {
+ "id": "df2bebf3-5469-4000-8707-0b66bf45a130",
+ "name": "Radio Disney 94.3 - Buenos Aires, Argentina",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "94.3 fm",
+ "américa",
+ "argentina",
+ "buenos aires",
+ "disney",
+ "entretenimiento",
+ "español",
+ "estación",
+ "familia",
+ "family",
+ "fm",
+ "juvenil"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/DISNEY_ARG_BA_ADP.aac",
+ "homepage": "https://ar.radiodisney.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s13659/images/logog.png",
+ "votes": 127,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "df2bebf3-5469-4000-8707-0b66bf45a130"
+ },
+ {
+ "id": "b8a3cdbd-3e3f-48fb-8769-9983db2f4be1",
+ "name": "Radio Habana Son Cuba",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": null,
+ "tags": [
+ "cuban"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-156.zeno.fm/2ieszeso9istv?zt=eyJhbGciOiJIUzI1NiJ9.eyJzdHJlYW0iOiIyaWVzemVzbzlpc3R2IiwiaG9zdCI6InN0cmVhbS0xNTYuemVuby5mbSIsInJ0dGwiOjUsImp0aSI6ImRoeHB4SkJzUmh5RzlBM0xfRHVvRkEiLCJpYXQiOjE3Mjk0MzU1NzksImV4cCI6MTcyOTQzNTYzOX0.eskM8oX6MH4fkh0idjraQmf-EXQScdjOHbUODLkzMns",
+ "homepage": "https://zeno.fm/radio/radio-habana-son-cuba-2zed/",
+ "logoUrl": "https://nl.radio.net/300/habanasoncuba.jpeg?version=6fdbc3dbc7d745014ffb8994bf030394",
+ "votes": 320,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "b8a3cdbd-3e3f-48fb-8769-9983db2f4be1"
+ },
+ {
+ "id": "9e1c5a91-80d7-11e9-aa30-52543be04c81",
+ "name": "Roca Fm Clasicos Mexico",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "60s",
+ "70s",
+ "80s",
+ "clasicos",
+ "latin",
+ "mexico city",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://xxdelgado.radioca.st/",
+ "homepage": "http://www.rocafm.eu/",
+ "logoUrl": null,
+ "votes": 3878,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "9e1c5a91-80d7-11e9-aa30-52543be04c81"
+ },
+ {
+ "id": "b92fd29a-c9cd-46b9-8ef5-4e499d707abf",
+ "name": "Viva El Mariachi",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "latin",
+ "mariachi",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-144.zeno.fm/gs4xg5s0csmtv?zs=DiHqEIidR0ejJ3Bwp-pUKA",
+ "homepage": "http://i.imgur.com/QhPqw8N.jpg",
+ "logoUrl": "https://i.imgur.com/QhPqw8N.jpg",
+ "votes": 311,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "b92fd29a-c9cd-46b9-8ef5-4e499d707abf"
+ },
+ {
+ "id": "f94514ec-c316-4d21-bd27-b7f0e8e1944b",
+ "name": "BANDA 93.3 (Monterrey) - 93.3 FM - XHQQ-FM - Grupo Radio Centro - Monterrey, NL",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "93.3",
+ "93.3 fm",
+ "banda",
+ "banda norteña",
+ "banda tradicional",
+ "estación",
+ "fm",
+ "grupera",
+ "grupero",
+ "grupo radio centro",
+ "mex",
+ "mexican music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHQQ_FMAAC.aac",
+ "homepage": "http://www.banda933.com.mx/",
+ "logoUrl": null,
+ "votes": 5511,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f94514ec-c316-4d21-bd27-b7f0e8e1944b"
+ },
+ {
+ "id": "6cc8d331-aff9-4d0e-8c95-2f3e821b7aa6",
+ "name": "La Grupera (Puebla) - 89.3 FM - XHNP-FM - Cinco Radio - Puebla, PU",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "89.3",
+ "89.3 fm",
+ "cinco radio",
+ "entretenimiento",
+ "estación",
+ "fm",
+ "grupera",
+ "grupero",
+ "la grupera",
+ "mex",
+ "mexican music",
+ "mexico"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/zpd5he3sz7zuv",
+ "homepage": "http://cincoradio.com.mx/",
+ "logoUrl": null,
+ "votes": 2631,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "6cc8d331-aff9-4d0e-8c95-2f3e821b7aa6"
+ },
+ {
+ "id": "7e6c07b7-c7d7-4d16-9ee9-a0964b159901",
+ "name": "STEREOREY: La Máxima Dimensión del Radio",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "all-time-classics",
+ "américa",
+ "baladas en inglés",
+ "cdmx",
+ "ciudad de méxico",
+ "classic rock",
+ "classics",
+ "clásicos",
+ "clásicos en inglés",
+ "estación",
+ "internet",
+ "internet radio"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/STEREOREYAAC.aac",
+ "homepage": "https://www.stereorey.com/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s220691d.png",
+ "votes": 184,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "7e6c07b7-c7d7-4d16-9ee9-a0964b159901"
+ },
+ {
+ "id": "68aba27b-fe79-4f35-a7e1-8520dd4b55a7",
+ "name": "XEB La B grande de Mexico 1220 AM / 94.5 HD2 \"Con la Música de México\" IMER",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "baladas",
+ "bolero",
+ "ciudad de mexico",
+ "estado de mexico",
+ "guerrero",
+ "hidalgo",
+ "mexico",
+ "mexico city",
+ "morelos",
+ "musica tradicional mexicana",
+ "nostalgia",
+ "noticias"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s2.mexside.net/8024/stream",
+ "homepage": "https://www.imer.mx/xeb/",
+ "logoUrl": null,
+ "votes": 1210,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "68aba27b-fe79-4f35-a7e1-8520dd4b55a7"
+ },
+ {
+ "id": "99cc51ce-09d2-4431-8596-38c46b627657",
+ "name": "AMOR: Sólo Música Romántica",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "95.3 fm",
+ "acir",
+ "amor",
+ "amor sólo música romántica",
+ "américa",
+ "balada",
+ "balada en español",
+ "balada pop",
+ "balada romántica",
+ "baladas",
+ "baladas en español",
+ "cdmx"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://22973.live.streamtheworld.com:443/XHSHFMAAC.aac",
+ "homepage": "https://www.iheart.com/live/amor-953-cdmx-6532/",
+ "logoUrl": "https://i.postimg.cc/FKgrF3cw/amor.jpg",
+ "votes": 34,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "99cc51ce-09d2-4431-8596-38c46b627657"
+ },
+ {
+ "id": "e5b1b7f9-888e-4e50-bdaa-cd7bfa0a6e20",
+ "name": "La Comadre Pa Bailar (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "banda",
+ "cdmx",
+ "ciudad de méxico",
+ "cumbia",
+ "cumbias",
+ "entretenimiento",
+ "español",
+ "estación",
+ "grupera",
+ "grupero"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR08_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/la-comadre-pa-bailar-8049/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5c794e2dee47a8fcb23cb060",
+ "votes": 1119,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "e5b1b7f9-888e-4e50-bdaa-cd7bfa0a6e20"
+ },
+ {
+ "id": "b442256e-5791-4d29-a2ab-575cd6dc340b",
+ "name": "Llegó El Mariachi (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "ciudad mexico",
+ "estación",
+ "grupo acir",
+ "iheart",
+ "iheart radio",
+ "mariachi",
+ "mex",
+ "mexican music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://22963.live.streamtheworld.com:443/ACIR34_S01AAC.aac",
+ "homepage": "https://www.iheart.com/live/mariachi-llego-el-mariachi-8278/",
+ "logoUrl": "https://www.iheart.com/favicon.ico",
+ "votes": 4144,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b442256e-5791-4d29-a2ab-575cd6dc340b"
+ },
+ {
+ "id": "3e50c7de-ce7c-45e3-9e6f-288d3fca0699",
+ "name": "Radio Fórmula - 104.1 FM - XERFR-FM - Grupo Fórmula - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "104.1",
+ "104.1 fm",
+ "acustic",
+ "cdmx",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "ciudad mexico",
+ "entretenimiento",
+ "estación",
+ "fm",
+ "hablada",
+ "mex"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://mdstrm.com/audio/61e1dfd2658baf082814e25d/live.m3u8",
+ "homepage": "https://www.radioformula.com.mx/p/en-vivo/1041-fm.html",
+ "logoUrl": "https://www.radioformula.com.mx/favicon.ico",
+ "votes": 3457,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e50c7de-ce7c-45e3-9e6f-288d3fca0699"
+ },
+ {
+ "id": "d1450c2f-c94c-477a-ad3b-3668bf40f046",
+ "name": "Azul 89 (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "ciudad mexico",
+ "clasicos",
+ "clasicos en ingles",
+ "clásicos",
+ "estación",
+ "grupo acir",
+ "iheart",
+ "iheart radio"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR24_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/azul-89-7874/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5bc5ed95c7977ca1c9302289",
+ "votes": 952,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1450c2f-c94c-477a-ad3b-3668bf40f046"
+ },
+ {
+ "id": "3fc3eb1d-acea-4666-80bb-d0d7eba912cb",
+ "name": "ESTÉREO ROMANCE 100.7 (La Paz) - 100.7 FM - XHZPL-FM - Promomedios California - La Paz, Baja California",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "100.7 fm",
+ "balada",
+ "balada pop",
+ "balada romántica",
+ "baladas",
+ "entretenimiento",
+ "español",
+ "estación",
+ "estéreo romance",
+ "fm",
+ "music",
+ "música"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/rkh7xul6uf8vv",
+ "homepage": "https://www.estereoromance.com/jp.html",
+ "logoUrl": "https://radioenvivo.com.mx/uploads/img/estereo-romance-la-paz.png",
+ "votes": 30,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3fc3eb1d-acea-4666-80bb-d0d7eba912cb"
+ },
+ {
+ "id": "5d1e38ab-b0f0-4292-b486-8fe76cbc39b2",
+ "name": "HEART UK: Turn up the feel good! - Londres, Inglaterra",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "english",
+ "tags": [
+ "adult contemporary",
+ "england",
+ "entretenimiento",
+ "estación",
+ "europa",
+ "europe",
+ "global radio",
+ "heart",
+ "inglaterra",
+ "london",
+ "londres",
+ "moi merino"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://media-ssl.musicradio.com/HeartUK",
+ "homepage": "https://www.heart.co.uk/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s241397/images/logog.jpg",
+ "votes": 35,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5d1e38ab-b0f0-4292-b486-8fe76cbc39b2"
+ },
+ {
+ "id": "960613a3-312a-4e63-bcf2-f4a31d2bf00c",
+ "name": "Horizonte 107.9 FM \"Claridad informativa y todo el jazz\" (XHIMR) IMER",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "ciudad de méxico",
+ "estado de mexico",
+ "festivales de jazz",
+ "hidalgo",
+ "informativa",
+ "jazz",
+ "mexico",
+ "mexico city",
+ "noticias"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s2.mexside.net/8014/stream",
+ "homepage": "https://www.imer.mx/horizonte/",
+ "logoUrl": "https://www.imer.mx/horizonte/wp-content/uploads/sites/15/favicon_horizonte2022_32.png",
+ "votes": 841,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "960613a3-312a-4e63-bcf2-f4a31d2bf00c"
+ },
+ {
+ "id": "599547a9-5980-46c9-b338-df48564943d0",
+ "name": "KISS DANCE UK: The biggest dance anthems 24/7 - Londres, Inglaterra",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "english",
+ "tags": [
+ "bailable",
+ "bauer radio",
+ "club dance",
+ "dab",
+ "dab+",
+ "dance",
+ "dance music",
+ "edm",
+ "electronic dance music",
+ "england",
+ "entertainment",
+ "entretenimiento"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-kiss.hellorayo.co.uk/kissdance.aac?direct=true&aw_0_1st.skey=1602676850&rp_source=1&=&&___cb=60456375243858",
+ "homepage": "https://hellorayo.co.uk/kiss-dance/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s321341/images/logod.png",
+ "votes": 71,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "599547a9-5980-46c9-b338-df48564943d0"
+ },
+ {
+ "id": "0562c768-0fd1-4d6a-b56f-acea27694fd6",
+ "name": "La Ke Buena Mérida - 90.9 FM - XHMQM-FM - Cadena RASA - Mérida, Yucatán",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "90.9 fm",
+ "banda",
+ "cadena rasa",
+ "entretenimiento",
+ "estación",
+ "fm",
+ "grupera",
+ "la ke buena",
+ "latinoamérica",
+ "mexican music",
+ "mexico",
+ "moi merino"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/2pz1hwmc4p8uv",
+ "homepage": "https://cadenarasa.com/yucatan/merida/kebuena",
+ "logoUrl": "https://cadenarasa.com/uploads/estaciones/3-logotipo-kebuena.png",
+ "votes": 97,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0562c768-0fd1-4d6a-b56f-acea27694fd6"
+ },
+ {
+ "id": "418dd028-fbaf-4554-8c85-462d0a8e181a",
+ "name": "LA LUPE 95.3 (Chetumal) - 95.3 FM - XHROO-FM - Multimedios Radio / Grupo SIPSE Radio - Chetumal, Quintana Roo",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "95.3 fm",
+ "américa",
+ "belice",
+ "chetumal",
+ "clásicos",
+ "clásicos en español",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupo sipse",
+ "grupo sipse radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://cast4.asurahosting.com/proxy/radiocan/stream",
+ "homepage": "https://www.mmradio.com/estaciones/la-lupe-953-fm-chetumal",
+ "logoUrl": "https://cdn-profiles.tunein.com/s91474/images/logod.png",
+ "votes": 25,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "418dd028-fbaf-4554-8c85-462d0a8e181a"
+ },
+ {
+ "id": "0c23c2f0-0ec8-4496-9135-31e44dc4ea3e",
+ "name": "LAS LLEGADORAS de Radio Felicidad: Baladas románticas de los 60s y 70s",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "60s",
+ "70s",
+ "acir",
+ "acir online",
+ "américa",
+ "balada",
+ "balada en español",
+ "balada romántica",
+ "baladas",
+ "baladas en español",
+ "cdmx",
+ "ciudad de méxico"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR19_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/las-llegadoras-de-felicidad-8060/",
+ "logoUrl": "https://i.iheart.com/v3/re/assets.streams/68c1b270941ec01dfd9a1ddd",
+ "votes": 41,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c23c2f0-0ec8-4496-9135-31e44dc4ea3e"
+ },
+ {
+ "id": "a2b3269e-60ba-4208-bb9c-707e62d41275",
+ "name": "Lokura 830 (CDMX) - 830 AM - XEITE-AM - Capital Media - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "830 am",
+ "alternative rock",
+ "am",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "classic rock",
+ "entretenimiento",
+ "español",
+ "estación",
+ "hard rock",
+ "latinoamérica"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEITEAAC.aac",
+ "homepage": "https://lokura.fm/",
+ "logoUrl": "https://i.postimg.cc/HkbKwh5c/453729983-484006877704186-2087352485023397767-n.jpg",
+ "votes": 43,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "a2b3269e-60ba-4208-bb9c-707e62d41275"
+ },
+ {
+ "id": "5cf785ae-1a67-4b74-bc37-61f6596fe4fd",
+ "name": "LOS40 Ciudad de México - 101.7 FM - XEX-FM - Radiópolis - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "101.7",
+ "101.7 fm",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "estación",
+ "fm",
+ "los40",
+ "mex",
+ "mx",
+ "méxico",
+ "música"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/LOS40_MEXICOAAC.aac",
+ "homepage": "https://www.los40.com.mx/",
+ "logoUrl": "http://cdn-profiles.tunein.com/s47704/images/logoq.png?t=155784",
+ "votes": 1702,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5cf785ae-1a67-4b74-bc37-61f6596fe4fd"
+ },
+ {
+ "id": "0b7755a2-fc2b-4cc0-beff-f0af12b6b3c5",
+ "name": "PIANO LANDSCAPES: Música instrumental para relajarte",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "español",
+ "estación",
+ "grupo acir",
+ "iheart",
+ "iheart radio",
+ "instrumental"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR23_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/piano-landscapes-8064/",
+ "logoUrl": "https://i.iheart.com/v3/re/new_assets/5bd35fe16217a1eceece2270",
+ "votes": 13,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b7755a2-fc2b-4cc0-beff-f0af12b6b3c5"
+ },
+ {
+ "id": "7a163be5-9e29-11e9-a787-52543be04c81",
+ "name": "Rock 101",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s3.radio.co/s2c1cebae5/listen",
+ "homepage": "https://rock101online.mx/",
+ "logoUrl": "https://static.wixstatic.com/media/646761_a3b5a9ab296d42d4a1a75d010bec8a82%7emv2.png/v1/fill/w_180%2ch_180%2clg_1%2cusm_0.66_1.00_0.01/646761_a3b5a9ab296d42d4a1a75d010bec8a82%7emv2.png",
+ "votes": 1153,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7a163be5-9e29-11e9-a787-52543be04c81"
+ },
+ {
+ "id": "4a88484c-a51e-4a90-ae24-f37c355fd4ff",
+ "name": "TRÍOS Y BOLEROS de Radio Felicidad: Clásicos de los 50s y 60s",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "50s",
+ "60s",
+ "acir",
+ "acir online",
+ "américa",
+ "bolero",
+ "boleros",
+ "boleros mexicanos",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "español"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://19273.live.streamtheworld.com:443/ACIR17_S01AAC.aac",
+ "homepage": "https://www.iheart.com/live/trios-y-boleros-de-felicidad-8058/",
+ "logoUrl": "https://i.iheart.com/v3/re/assets.streams/664fdc66d654e5b9dff60ccd",
+ "votes": 11,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "4a88484c-a51e-4a90-ae24-f37c355fd4ff"
+ },
+ {
+ "id": "0a675d12-9cb9-49fd-8bee-4c8767750350",
+ "name": "+Exclusively Avicii",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "english",
+ "tags": [
+ "2000s",
+ "2010s",
+ "2020s",
+ "avicii",
+ "club dance",
+ "dance",
+ "dance music",
+ "dance pop",
+ "dj",
+ "dj remix",
+ "djs",
+ "edm"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://nl4.mystreaming.net/er-app/avicii/icecast.audio",
+ "homepage": "https://play.you.radio/",
+ "logoUrl": "https://you.radio/cdn-cgi/image/width=400,quality=75/https://manager.uber.radio/static/uploads/station/9611ee32-05fc-45ae-b808-b9ece6924bdc.jpg",
+ "votes": 36,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0a675d12-9cb9-49fd-8bee-4c8767750350"
+ },
+ {
+ "id": "036bdc87-962f-462b-b909-26f9d2a2e7a8",
+ "name": "70s Disco Nights",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://panel.retrolandigital.com/listen/70s_disco_nights/listen",
+ "homepage": "https://70sdisconights.com/movila.html",
+ "logoUrl": null,
+ "votes": 114,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "036bdc87-962f-462b-b909-26f9d2a2e7a8"
+ },
+ {
+ "id": "092190f9-d2b0-429c-9dbd-b179227bb238",
+ "name": "88.1 La Zapoteca (San Baltazar Chichicápam) - 88.1 FM - XHSCGB-FM - La Esperanza Zapoteca, A.C. - San Baltazar Chichicápam, Oaxaca",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "88.1 fm",
+ "américa",
+ "comunitaria",
+ "concesión comunitaria",
+ "entretenimiento",
+ "español",
+ "estación",
+ "latinoamérica",
+ "local",
+ "local radio",
+ "mexican music",
+ "moi merino"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://sp3.servidorrprivado.com:10840/stream",
+ "homepage": "https://www.facebook.com/p/La-Zapoteca-881fm-61553102477662/",
+ "logoUrl": "https://i.postimg.cc/HnhPXfQG/lazapoteca.jpg",
+ "votes": 1,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "092190f9-d2b0-429c-9dbd-b179227bb238"
+ },
+ {
+ "id": "fdd92e68-e8af-41ac-80e9-600ff5b8a970",
+ "name": "97.7 La Mejor (CDMX) - 97.7 FM - XERC-FM - MVS Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "97.7 fm",
+ "aquí nomás",
+ "banda",
+ "cdmx",
+ "ciudad de méxico",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupera",
+ "la mejor",
+ "la mejor aquí nomás"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XERCFMAAC.aac",
+ "homepage": "https://www.lamejor.com.mx/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s309348/images/logod.png",
+ "votes": 1,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "fdd92e68-e8af-41ac-80e9-600ff5b8a970"
+ },
+ {
+ "id": "12c6a5a4-16b6-41d1-ad29-676f0e185cd5",
+ "name": "ADN 92.1 (Saltillo) - 92.1 FM - XHPEFQ-FM - Alas Para Las Palabras, A.C. - Saltillo, Coahuila",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "92.1 fm",
+ "adn",
+ "américa",
+ "coahuila",
+ "concesión social",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "hiphop",
+ "juvenil",
+ "latinoamérica"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streamingcwsradio30.com/8322/stream",
+ "homepage": "https://www.adnradio.com.mx/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s340643/images/logod.png",
+ "votes": 18,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "12c6a5a4-16b6-41d1-ad29-676f0e185cd5"
+ },
+ {
+ "id": "bc4e1e02-3c17-4b47-9ce5-b4552294b77d",
+ "name": "ALTERNATIVA 98 98.1 (Aguascalientes) - 98.1 FM - XHNM-FM - Radio y Televisión de Aguascalientes - Aguascalientes, Aguascalientes",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "98.1 fm",
+ "adult alternative",
+ "adult contemporary",
+ "aguascalientes",
+ "aguascalientes city",
+ "alternativa 98",
+ "alternative",
+ "alternative / indie",
+ "alternative rock",
+ "américa",
+ "concesión pública",
+ "entretenimiento"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://streamingcwsradio30.com/8016/stream/1/;",
+ "homepage": "https://www.alternativaradio.fm/",
+ "logoUrl": "https://thumbnail.anii.io/mx/radio-alternativa-98-1-fm-aguascalientes.webp",
+ "votes": 6,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "bc4e1e02-3c17-4b47-9ce5-b4552294b77d"
+ },
+ {
+ "id": "20aa608c-2d97-417c-9610-395466fcb00e",
+ "name": "ARROBA FM: Te Conecta",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "@fm",
+ "@fm te conecta",
+ "américa",
+ "arroba fm",
+ "arroba fm te conecta",
+ "contemporary hits",
+ "contemporary hits radio",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "juvenil"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/6vtcayf9d78uv",
+ "homepage": "https://arroba.fm/CDMX",
+ "logoUrl": "https://thumbnail.anii.io/mx/radio-arroba-fm-stream-ciudad-de-mexico-mexico.webp",
+ "votes": 2,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "20aa608c-2d97-417c-9610-395466fcb00e"
+ },
+ {
+ "id": "0e7c5813-57df-47a3-a070-3dd269fb3ebf",
+ "name": "Cafe Romantico Radio",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://panel.retrolandigital.com/listen/cafe_romantico_radio/listen",
+ "homepage": "https://caferomanticoradio.com/movil-android.html",
+ "logoUrl": "https://caferomanticoradio.com/assets/images/crrbann-2000x746-19.jpg",
+ "votes": 57,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e7c5813-57df-47a3-a070-3dd269fb3ebf"
+ },
+ {
+ "id": "ee8c0652-14f2-4d8f-b51d-a6b91b86b464",
+ "name": "Crystal (Toluca) - 93.3 FM - XHEDT-FM - Grupo Siete - Toluca, Estado de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "93.3 fm",
+ "crystal",
+ "entretenimiento",
+ "español",
+ "estación",
+ "estado de méxico",
+ "fm",
+ "grupera",
+ "grupero",
+ "grupo siete",
+ "latinoamérica",
+ "mexican music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHEDTFMAAC.aac",
+ "homepage": "https://crystal933.mx/",
+ "logoUrl": null,
+ "votes": 323,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ee8c0652-14f2-4d8f-b51d-a6b91b86b464"
+ },
+ {
+ "id": "5a87b600-7771-4bcc-a370-e349fd212baa",
+ "name": "EXA FM: En Todas Partes Ponte Exa",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "93.3 fm",
+ "boca del río",
+ "entretenimiento",
+ "español",
+ "estación",
+ "exa",
+ "exa fm",
+ "fm",
+ "juvenil",
+ "la estación exacta",
+ "la estación naranja",
+ "latinoamérica"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHPSFMAAC.aac",
+ "homepage": "https://www.exafm.com/",
+ "logoUrl": "https://d1yjjnpx0p53s8.cloudfront.net/styles/logo-thumbnail/s3/092013/exa.jpg",
+ "votes": 359,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5a87b600-7771-4bcc-a370-e349fd212baa"
+ },
+ {
+ "id": "5b35f143-21f9-49a4-ba85-e587591a15aa",
+ "name": "FIESTA MEXICANA 92.3 (GDL) - 92.3 FM - XHBIO-FM - Grupo Promomedios - Guadalajara, Jalisco",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "92.3 fm",
+ "américa",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fiesta mexicana",
+ "fm",
+ "gdl",
+ "guadalajara",
+ "jalisco",
+ "latinoamérica",
+ "mexican music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://stream.promomedios.com:8002/stream",
+ "homepage": "https://www.fiestamexicanafm.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s2996/images/logod.jpg",
+ "votes": 9,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5b35f143-21f9-49a4-ba85-e587591a15aa"
+ },
+ {
+ "id": "78538523-2d96-4ab3-8202-8ed1a73bf84f",
+ "name": "Fórmula Melódica (Guadalajara) - 97.9 FM - XETIA-FM - Grupo Unidifusión - Guadalajara, JC",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "97.9",
+ "97.9 fm",
+ "balada",
+ "balada en español",
+ "balada pop",
+ "baladas",
+ "baladas en español",
+ "estación",
+ "fm",
+ "fórmula melódica",
+ "gdl",
+ "grupo unidifusión"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://s2.yesstreaming.net:9085/stream",
+ "homepage": "https://www.notisistema.com/formulamelodica/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s1626d.png",
+ "votes": 1571,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "78538523-2d96-4ab3-8202-8ed1a73bf84f"
+ },
+ {
+ "id": "f9bb93af-7744-4ec1-8d03-f395ebd80a03",
+ "name": "IMAGEN RADIO 90.5 (CDMX) - 90.5 FM - XEDA-FM - Grupo Imagen - Ciudad de Mexico",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "90.5 fm",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "clásicos en inglés",
+ "deporte",
+ "deportes",
+ "entretenimiento",
+ "entrevistas",
+ "español",
+ "estación",
+ "fm"
+ ],
+ "codec": "AAC",
+ "bitrate": 99,
+ "streamUrl": "https://mdstrm.com/audio/64a44d807cb6630627ab0c82/live.m3u8",
+ "homepage": "https://www.imagenradio.com.mx/",
+ "logoUrl": "https://i.postimg.cc/m2X5WVrB/imagenradio.png",
+ "votes": 5,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f9bb93af-7744-4ec1-8d03-f395ebd80a03"
+ },
+ {
+ "id": "b804ec29-0790-44dc-bcdb-166ce44c5fde",
+ "name": "KISS UK: The Biggest Dance and R&B - Londres, Inglaterra",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "english",
+ "tags": [
+ "dab",
+ "dance",
+ "dance music",
+ "england",
+ "entertainment",
+ "entretenimiento",
+ "estación",
+ "europa",
+ "europe",
+ "fm",
+ "inglaterra",
+ "juvenil"
+ ],
+ "codec": "MP3",
+ "bitrate": 112,
+ "streamUrl": "https://live-kiss.sharp-stream.com/kiss100.mp3",
+ "homepage": "https://hellorayo.co.uk/kiss/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s6004/images/logod.jpg",
+ "votes": 43,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "b804ec29-0790-44dc-bcdb-166ce44c5fde"
+ },
+ {
+ "id": "ab9e3dda-fecd-4e58-8b08-9aeda7ea65b0",
+ "name": "La Comadre Pa Que Duela (iHeart Radio) - Online - ACIR Online / iHeart Radio - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "acir",
+ "acir online",
+ "banda",
+ "banda norteña",
+ "banda tradicional",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "estación",
+ "grupo acir",
+ "iheart",
+ "iheart radio",
+ "mexican music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/ACIR05_s01AAC.aac",
+ "homepage": "https://www.iheart.com/live/la-comadre-pa-que-duela-8046/",
+ "logoUrl": "https://www.iheart.com/favicon.ico",
+ "votes": 2439,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ab9e3dda-fecd-4e58-8b08-9aeda7ea65b0"
+ },
+ {
+ "id": "277ce438-620c-4028-ae65-a90aae0fe28d",
+ "name": "LA KEBUENA 95.5 (Colima) - 95.5 FM - XHCMM-FM - 95.5 FM - Luna Medios - Coalcomán, Michoacán",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "95.5 fm",
+ "américa",
+ "banda",
+ "coalcomán",
+ "colima",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupera",
+ "grupero",
+ "jalisco"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radios.lunamedios.mx:8308/;",
+ "homepage": "https://www.kebuena.com.mx/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s299113/images/logod.png",
+ "votes": 10,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "277ce438-620c-4028-ae65-a90aae0fe28d"
+ },
+ {
+ "id": "d5722476-0c86-42b2-b2c4-12ad0c06f178",
+ "name": "LG LA GRANDE 95.5 (León) - 95.5 FM - XHELG-FM - Promomedios - León, Guanajuato",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "95.5 fm",
+ "américa",
+ "clásicos",
+ "clásicos en español",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "guanajuato",
+ "la grande",
+ "latinoamérica",
+ "león"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/9ty3tty0ra0uv",
+ "homepage": "https://lgfm.mx/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s91217/images/logod.jpg",
+ "votes": 23,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "d5722476-0c86-42b2-b2c4-12ad0c06f178"
+ },
+ {
+ "id": "0e651869-2907-4516-9140-fefcb00ea95e",
+ "name": "RADIO DISNEY 92.1 (CDMX) - 92.1 FM - XHFO-FM - Grupo Siete - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "92.1 fm",
+ "américa",
+ "cdmx",
+ "ciudad de méxico",
+ "disney",
+ "entretenimiento",
+ "español",
+ "estación",
+ "familia",
+ "fm",
+ "grupo siete",
+ "hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHFOFMAAC.aac",
+ "homepage": "https://mx.radiodisney.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s88449/images/logod.png?t=638297749600000000",
+ "votes": 34,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e651869-2907-4516-9140-fefcb00ea95e"
+ },
+ {
+ "id": "1fa8ff27-fd46-4eff-b41f-4a874ca99497",
+ "name": "Radio Felicidad Ciudad de México - 1180 AM - XEFR-AM - Grupo ACIR - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "1180",
+ "1180 am",
+ "60s",
+ "70s",
+ "80s",
+ "acir",
+ "am",
+ "balada",
+ "balada en español",
+ "baladas",
+ "baladas en español",
+ "cdmx"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEFRAMAAC_SC.aac",
+ "homepage": "https://www.iheart.com/live/radio-felicidad-1180-6534/",
+ "logoUrl": "https://www.iheart.com/static/assets/favicon.ico",
+ "votes": 4753,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "1fa8ff27-fd46-4eff-b41f-4a874ca99497"
+ },
+ {
+ "id": "0c1cb14c-739e-4812-a0d0-e99589790a42",
+ "name": "RADIO LOBO 106.3 (Irapuato) - 106.3 FM - XHITO-FM - Grupo Radar - Irapuato, Guanajuato",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "106.3 fm",
+ "américa",
+ "bajío",
+ "banda",
+ "corporación bajío comunicaciones",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupera",
+ "grupero",
+ "grupo radar"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://radios.radiohd.com.mx/8140/stream",
+ "homepage": "https://www.iheart.com/live/radio-lobo-1063-irapauto-11418/",
+ "logoUrl": "https://i.iheart.com/v3/re/assets.streams/69794e990dfe61e77da2a20f",
+ "votes": 4,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c1cb14c-739e-4812-a0d0-e99589790a42"
+ },
+ {
+ "id": "6dddf6d1-2de5-414b-89eb-a4d55742870e",
+ "name": "RADIO RECUERDO 860 (MTY) - 860 AM - XENL-AM - Multimedios Radio - Monterrey, Nuevo León",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "860 am",
+ "am",
+ "américa",
+ "balada",
+ "bolero",
+ "clásicos",
+ "clásicos en español",
+ "entretenimiento",
+ "español",
+ "estación",
+ "latinoamérica",
+ "moi merino"
+ ],
+ "codec": "AAC",
+ "bitrate": 93,
+ "streamUrl": "https://mdstrm.com/audio/672a5df773078862801f389f/icecast.audio",
+ "homepage": "https://www.mmradio.com/estaciones/radio-recuerdo-860-am-monterrey",
+ "logoUrl": "https://cdn-profiles.tunein.com/s90693/images/logog.png",
+ "votes": 4,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "6dddf6d1-2de5-414b-89eb-a4d55742870e"
+ },
+ {
+ "id": "1653321f-a3f2-47bf-9f48-2c46e48898af",
+ "name": "Z 92 92.3 (Miami) - 92.3 FM - WCMQ-FM - Spanish Broadcasting System - Miami, Florida, EUA",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "english,spanish",
+ "tags": [
+ "92.3 fm",
+ "américa",
+ "entretenimiento",
+ "español",
+ "estación",
+ "florida",
+ "fm",
+ "latinoamérica",
+ "miami",
+ "moi merino",
+ "music",
+ "música"
+ ],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://liveaudio.lamusica.com/MIA_WCMQ_icy",
+ "homepage": "https://www.lamusica.com/stations/wcmq",
+ "logoUrl": "https://cdn-profiles.tunein.com/s27943/images/logod.png",
+ "votes": 72,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "1653321f-a3f2-47bf-9f48-2c46e48898af"
+ },
+ {
+ "id": "61d9dd44-6238-4b14-ba12-e23647ec7da5",
+ "name": "1030 AM (Ciudad de México) - 1030 AM - XEQR-AM - Grupo Radio Centro - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "1030 am",
+ "am",
+ "ciudad de méxico",
+ "deporte",
+ "deportes",
+ "el fonógrafo",
+ "entretenimiento",
+ "español",
+ "estación",
+ "estado de méxico",
+ "grupo radio centro",
+ "latin music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XEQR_AMAAC.aac",
+ "homepage": "http://player.listenlive.co/51851/es",
+ "logoUrl": "https://i.ibb.co/nn5H7zR/1030.jpg",
+ "votes": 391,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "61d9dd44-6238-4b14-ba12-e23647ec7da5"
+ },
+ {
+ "id": "ac7e8ad5-b543-4ebf-820c-716c6ab6d21a",
+ "name": "ARANDAS FM 107.3 (Arandas) - 107.3 FM - XHARDJ-FM - Grupo Radiofónico ZER - Arandas, Jalisco",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "107.3 fm",
+ "américa",
+ "arandas",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupo radiofónico zer",
+ "grupo zer",
+ "jalisco",
+ "latinoamérica",
+ "mexican music"
+ ],
+ "codec": "MP3",
+ "bitrate": 40,
+ "streamUrl": "https://live.zuperdns.net/1073/stream",
+ "homepage": "https://grupozer.mx/portada.php?id=407",
+ "logoUrl": "https://cdn-profiles.tunein.com/s220534/images/logod.png",
+ "votes": 22,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ac7e8ad5-b543-4ebf-820c-716c6ab6d21a"
+ },
+ {
+ "id": "e54b12f2-666d-469a-8877-0937e0f1ce56",
+ "name": "EXA FM 102.7 (Nogales) - 102.7 FM - XHQT-FM - MVS Radio - Nogales, Sonora",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "102.7 fm",
+ "américa",
+ "arizona",
+ "en todas partes",
+ "entretenimiento",
+ "español",
+ "estación",
+ "exa",
+ "exa fm",
+ "fm",
+ "juvenil",
+ "la estación exacta"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHQTAAC.aac",
+ "homepage": "https://exafm.com/plaza/nogales/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s12586/images/logog.png",
+ "votes": 30,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "e54b12f2-666d-469a-8877-0937e0f1ce56"
+ },
+ {
+ "id": "217c1f8f-8b7a-42a3-8440-9dec7665fb30",
+ "name": "ISTMO 94.9 (Acayucan) - 94.9 FM - XHPTEA-FM - Acayucan, Veracruz",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "94.9 fm",
+ "acayucan",
+ "américa",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "istmo",
+ "juvenil",
+ "latinoamérica",
+ "moi merino",
+ "music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 0,
+ "streamUrl": "https://cast.tunzilla.com/http://streaming.delsurnet.com:8116/stream",
+ "homepage": "https://istmo949.com/",
+ "logoUrl": "https://istmo949.com/wp-content/uploads/2025/01/gran.png",
+ "votes": 3,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "217c1f8f-8b7a-42a3-8440-9dec7665fb30"
+ },
+ {
+ "id": "583c8fe9-dc3d-4dd2-9ace-afaf6b683635",
+ "name": "Lokura FM Rock Ciudad De México 830 AM",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "español mexico",
+ "tags": [
+ "adult alternative",
+ "alternative / indie",
+ "alternative rock",
+ "capital media",
+ "ciudad de méxico",
+ "classic rock",
+ "lokura fm",
+ "méxico",
+ "música alternativa",
+ "norteamérica",
+ "rock",
+ "rock en español"
+ ],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://mdstrm.com/audio/69373baa6d5fd824ec8440c5/live.m3u8",
+ "homepage": "https://lokura.fm/",
+ "logoUrl": "https://ott-assets.mdstrm.com/692edd869a67b2f5fb063c6d/693999296795b30e4e953865/assets/Logo_Landscape_Header.png?auto=format,compress&h=48",
+ "votes": 11,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "583c8fe9-dc3d-4dd2-9ace-afaf6b683635"
+ },
+ {
+ "id": "b9101f84-db3a-42cb-96dd-6e556a8898c6",
+ "name": "Radio 710 AM \"Pura musica mexicana\" (XEMP) IMER",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "banda norteña",
+ "ciudad de mexico",
+ "grupera",
+ "guerrero",
+ "hidalgo",
+ "mexico",
+ "mexico city",
+ "michoacan",
+ "morelos",
+ "musica mexicana",
+ "musica regional mexicana",
+ "norteño"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s2.mexside.net/8028/stream",
+ "homepage": "https://www.imer.mx/radio710/",
+ "logoUrl": null,
+ "votes": 1801,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b9101f84-db3a-42cb-96dd-6e556a8898c6"
+ },
+ {
+ "id": "864b1c65-1aca-4f9e-ad5c-bd5efd8d6371",
+ "name": "Radio Disney Puebla 92.9 FM",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "español mexico",
+ "tags": [
+ "charts",
+ "grupo oro",
+ "hits",
+ "latino",
+ "mexico",
+ "música actual",
+ "música en español",
+ "música en español e inglés",
+ "música latina",
+ "norteamérica",
+ "pop",
+ "pop en español e inglés"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/XHECDFMAAC.aac",
+ "homepage": "https://mx.radiodisney.com/",
+ "logoUrl": null,
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "864b1c65-1aca-4f9e-ad5c-bd5efd8d6371"
+ },
+ {
+ "id": "0634c29b-cf29-4c4f-a898-e8d7783c8438",
+ "name": "VOX FM Radio Hits 96.7 (Puerto Vallarta) - 96.7 FM - XHCCBA-FM - Grupo Radio Cañón - Puerto Vallarta, Jalisco",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "2000s",
+ "90s",
+ "96.7 fm",
+ "américa",
+ "balada pop",
+ "clásicos",
+ "clásicos en español e inglés",
+ "entretenimiento",
+ "español",
+ "estación",
+ "fm",
+ "grupo radio cañón"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://streaming.servicioswebmx.com/8142/stream",
+ "homepage": "https://grupo-rc.mx/estaciones/vox-puertovallarta-1/",
+ "logoUrl": "https://i.ibb.co/HLn34nWC/vox967.png",
+ "votes": 2,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0634c29b-cf29-4c4f-a898-e8d7783c8438"
+ },
+ {
+ "id": "75ee103a-97ed-441c-8f9a-0cdbb39be86f",
+ "name": "W Radio Ciudad de México - 96.9 FM / 900 AM - XEW-FM / XEW-AM - Radiópolis - Ciudad de México",
+ "country": "Mexico",
+ "countryCode": "MX",
+ "language": "spanish",
+ "tags": [
+ "900",
+ "900 am",
+ "96.9",
+ "96.9 fm",
+ "am",
+ "cdmx",
+ "ciudad de mexico",
+ "ciudad de méxico",
+ "ciudad mexico",
+ "estación",
+ "fm",
+ "mex"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/W_RADIOAAC.aac",
+ "homepage": "https://www.wradio.com.mx/",
+ "logoUrl": null,
+ "votes": 2992,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "75ee103a-97ed-441c-8f9a-0cdbb39be86f"
+ },
{
"id": "138dca72-29a0-400b-ab96-749b1cafee13",
"name": "54HOUSE.FM CLUB",
@@ -19165,27 +42522,10 @@
"homepage": "https://radio357.pl/",
"logoUrl": "https://radio357.pl/wp-content/uploads/2022/04/c5399c0d-1b8e-43d5-b23b-e5cef1857856.png",
"votes": 8280,
- "clickcount": 159,
+ "clickcount": 160,
"source": "radio-browser",
"sourceStationUuid": "d377fdb9-9136-47de-a1f4-6b02a1bc7f72"
},
- {
- "id": "6bf03632-07d9-4112-8119-03588ec8f556",
- "name": "Anty Radio",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://an.cdn.eurozet.pl/ant-web.mp3?t=1713710188361",
- "homepage": "https://www.antyradio.pl/",
- "logoUrl": "https://gfx-player.radiozet.pl/var/player/storage/images/player-antyradio/programy/antyradio-ekstra/936460-5-pol-PL/Antyradio-Ekstra_size-70x70.png",
- "votes": 1443,
- "clickcount": 65,
- "source": "radio-browser",
- "sourceStationUuid": "6bf03632-07d9-4112-8119-03588ec8f556"
- },
{
"id": "f56fc0e0-8d6e-43df-9253-bfa03cb9a067",
"name": "ESKA - Gorąca 20",
@@ -19204,10 +42544,27 @@
"homepage": "https://www.eska.pl/goraca20/",
"logoUrl": "https://www.eska.pl/favicon.ico",
"votes": 1117,
- "clickcount": 64,
+ "clickcount": 66,
"source": "radio-browser",
"sourceStationUuid": "f56fc0e0-8d6e-43df-9253-bfa03cb9a067"
},
+ {
+ "id": "6bf03632-07d9-4112-8119-03588ec8f556",
+ "name": "Anty Radio",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://an.cdn.eurozet.pl/ant-web.mp3?t=1713710188361",
+ "homepage": "https://www.antyradio.pl/",
+ "logoUrl": "https://gfx-player.radiozet.pl/var/player/storage/images/player-antyradio/programy/antyradio-ekstra/936460-5-pol-PL/Antyradio-Ekstra_size-70x70.png",
+ "votes": 1443,
+ "clickcount": 64,
+ "source": "radio-browser",
+ "sourceStationUuid": "6bf03632-07d9-4112-8119-03588ec8f556"
+ },
{
"id": "d81fd5d3-4c24-4768-88b3-57954e77c0e7",
"name": "Radio Nowy Świat",
@@ -19223,7 +42580,7 @@
"homepage": "https://nowyswiat.online/",
"logoUrl": "https://dl.memuplay.com/new_market/img/com.thehouseofcode.radio_nowy_swiat.icon.2021-03-20-18-25-39.png",
"votes": 2157,
- "clickcount": 61,
+ "clickcount": 60,
"source": "radio-browser",
"sourceStationUuid": "d81fd5d3-4c24-4768-88b3-57954e77c0e7"
},
@@ -19242,7 +42599,7 @@
"homepage": null,
"logoUrl": "https://cdn.onlineradiobox.com/img/l/4/1294.v9.png",
"votes": 12265,
- "clickcount": 57,
+ "clickcount": 55,
"source": "radio-browser",
"sourceStationUuid": "65cd1362-71ab-4829-8a4a-f530caf3a465"
},
@@ -19259,44 +42616,10 @@
"homepage": "https://www.eskarock.pl/",
"logoUrl": "https://static.mytuner.mobi/media/tvos_radios/2LqeyZhdFq.png",
"votes": 6918,
- "clickcount": 51,
+ "clickcount": 49,
"source": "radio-browser",
"sourceStationUuid": "bf487b2b-503c-42c3-b088-9b5d679fdf29"
},
- {
- "id": "0013eb82-2dea-41f7-9534-936d0b2721b7",
- "name": "TokFM",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://radiostream.pl/tuba10-1.mp3",
- "homepage": "https://www.tokfm.pl/",
- "logoUrl": "https://static.im-g.pl/im/6/7455/m7455556.gif",
- "votes": 5771,
- "clickcount": 43,
- "source": "radio-browser",
- "sourceStationUuid": "0013eb82-2dea-41f7-9534-936d0b2721b7"
- },
- {
- "id": "c62a050f-cfd4-4fc5-8c93-ebaf0bc84738",
- "name": "VOX FM 128",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ic2.smcdn.pl/3990-1.mp3",
- "homepage": "http://voxfm.pl/",
- "logoUrl": "http://voxfm.pl/apple-touch-icon.png",
- "votes": 2533,
- "clickcount": 42,
- "source": "radio-browser",
- "sourceStationUuid": "c62a050f-cfd4-4fc5-8c93-ebaf0bc84738"
- },
{
"id": "6a2591f4-7286-4c65-a7bd-6c491b6e672b",
"name": "Radio Złote Przeboje Wrocław",
@@ -19315,10 +42638,44 @@
"homepage": "https://zloteprzeboje.tuba.pl/",
"logoUrl": null,
"votes": 1034,
- "clickcount": 41,
+ "clickcount": 45,
"source": "radio-browser",
"sourceStationUuid": "6a2591f4-7286-4c65-a7bd-6c491b6e672b"
},
+ {
+ "id": "0013eb82-2dea-41f7-9534-936d0b2721b7",
+ "name": "TokFM",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiostream.pl/tuba10-1.mp3",
+ "homepage": "https://www.tokfm.pl/",
+ "logoUrl": "https://static.im-g.pl/im/6/7455/m7455556.gif",
+ "votes": 5771,
+ "clickcount": 41,
+ "source": "radio-browser",
+ "sourceStationUuid": "0013eb82-2dea-41f7-9534-936d0b2721b7"
+ },
+ {
+ "id": "c62a050f-cfd4-4fc5-8c93-ebaf0bc84738",
+ "name": "VOX FM 128",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ic2.smcdn.pl/3990-1.mp3",
+ "homepage": "http://voxfm.pl/",
+ "logoUrl": "http://voxfm.pl/apple-touch-icon.png",
+ "votes": 2533,
+ "clickcount": 40,
+ "source": "radio-browser",
+ "sourceStationUuid": "c62a050f-cfd4-4fc5-8c93-ebaf0bc84738"
+ },
{
"id": "b6be7550-8e04-42c3-8641-126c08eab71c",
"name": "Radio Pogoda",
@@ -19332,7 +42689,7 @@
"homepage": "https://radiopogoda.pl/",
"logoUrl": "https://gfx.radiopogoda.pl/extension/radiopogoda/design/standard/images/favicon/apple-touch-icon.png",
"votes": 586,
- "clickcount": 38,
+ "clickcount": 35,
"source": "radio-browser",
"sourceStationUuid": "b6be7550-8e04-42c3-8641-126c08eab71c"
},
@@ -19351,7 +42708,7 @@
"homepage": "http://www.rmf.fm/",
"logoUrl": "http://www.rmf.fm/assets/images/favicon/apple-icon-120x120.png?3",
"votes": 1601,
- "clickcount": 36,
+ "clickcount": 35,
"source": "radio-browser",
"sourceStationUuid": "97b1aec1-dad3-4551-8cc5-07965bbcb93f"
},
@@ -19368,10 +42725,27 @@
"homepage": "https://ch02.cdn.eurozet.pl/chi-net.mp3?redirected=02",
"logoUrl": null,
"votes": 1153,
- "clickcount": 32,
+ "clickcount": 33,
"source": "radio-browser",
"sourceStationUuid": "14b795df-4210-49e2-b491-189523b49f4d"
},
+ {
+ "id": "86632585-f76d-4cac-b771-d2c6902366c3",
+ "name": "Zloteprzeboje",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiostream.pl/tuba8904-1.mp3",
+ "homepage": "https://zloteprzeboje.pl/",
+ "logoUrl": "https://zloteprzeboje.pl/wp-content/uploads/2022/06/zp-logo-normal-color.png",
+ "votes": 648,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "86632585-f76d-4cac-b771-d2c6902366c3"
+ },
{
"id": "f837704e-40df-4302-b546-c8401348e51c",
"name": "Radio Republika",
@@ -19390,47 +42764,26 @@
"homepage": "https://radiotvrepublika.pl/",
"logoUrl": "https://radiotvrepublika.pl/favicon-96x96.png",
"votes": 1278,
- "clickcount": 29,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "f837704e-40df-4302-b546-c8401348e51c"
},
{
- "id": "86632585-f76d-4cac-b771-d2c6902366c3",
- "name": "Zloteprzeboje",
+ "id": "fbbccfc2-a610-44ec-bd43-7a356a247b54",
+ "name": "357",
"country": "Poland",
"countryCode": "PL",
- "language": "polish",
+ "language": null,
"tags": [],
- "codec": "MP3",
+ "codec": "AAC",
"bitrate": 128,
- "streamUrl": "https://radiostream.pl/tuba8904-1.mp3",
- "homepage": "https://zloteprzeboje.pl/",
- "logoUrl": "https://zloteprzeboje.pl/wp-content/uploads/2022/06/zp-logo-normal-color.png",
- "votes": 648,
- "clickcount": 26,
+ "streamUrl": "https://n-11-26.dcs.redcdn.pl/sc/o2/radio357/live/radio357_pr.livx?preroll=0",
+ "homepage": "https://radio357.pl/",
+ "logoUrl": null,
+ "votes": 1632,
+ "clickcount": 24,
"source": "radio-browser",
- "sourceStationUuid": "86632585-f76d-4cac-b771-d2c6902366c3"
- },
- {
- "id": "68c4dc06-824c-4a00-9f76-a13e181c6f2d",
- "name": "Radio Party - Kanał Główny",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "electronic",
- "party",
- "rap"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://s2.radioparty.pl:8015/stream?nocache=4171",
- "homepage": "https://radioparty.pl/ramowka/glowny",
- "logoUrl": "https://radioparty.pl/assets/img/logo.png",
- "votes": 1524,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "68c4dc06-824c-4a00-9f76-a13e181c6f2d"
+ "sourceStationUuid": "fbbccfc2-a610-44ec-bd43-7a356a247b54"
},
{
"id": "c7915f33-f401-4ab4-9f49-dcc1cce15ed6",
@@ -19447,43 +42800,9 @@
"homepage": "https://www.tokfm.pl/Tokfm/0,0.html",
"logoUrl": "https://static.im-g.pl/im/6/7455/m7455556.gif",
"votes": 8857,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "c7915f33-f401-4ab4-9f49-dcc1cce15ed6"
- },
- {
- "id": "fbbccfc2-a610-44ec-bd43-7a356a247b54",
- "name": "357",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://n-11-26.dcs.redcdn.pl/sc/o2/radio357/live/radio357_pr.livx?preroll=0",
- "homepage": "https://radio357.pl/",
- "logoUrl": null,
- "votes": 1632,
"clickcount": 23,
"source": "radio-browser",
- "sourceStationUuid": "fbbccfc2-a610-44ec-bd43-7a356a247b54"
- },
- {
- "id": "0e5fd15c-6bfd-407c-b6e9-b54262dba6fb",
- "name": "Antyradio",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://n-4-4.dcs.redcdn.pl/sc/o2/Eurozet/live/antyradio.livx",
- "homepage": "https://antyradio.pl/",
- "logoUrl": "https://gfx.antyradio.pl/design/antyradio/src/images/favicon/favicon_180x180.png",
- "votes": 5108,
- "clickcount": 22,
- "source": "radio-browser",
- "sourceStationUuid": "0e5fd15c-6bfd-407c-b6e9-b54262dba6fb"
+ "sourceStationUuid": "c7915f33-f401-4ab4-9f49-dcc1cce15ed6"
},
{
"id": "dfceead0-dc99-4c3c-bce5-b53db7658626",
@@ -19505,25 +42824,25 @@
"sourceStationUuid": "dfceead0-dc99-4c3c-bce5-b53db7658626"
},
{
- "id": "a43fe2f5-0c29-436d-bb19-1512f86fcd2b",
- "name": "Meloradio FM",
+ "id": "68c4dc06-824c-4a00-9f76-a13e181c6f2d",
+ "name": "Radio Party - Kanał Główny",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
"tags": [
- "dance",
- "pop",
- "pop dance"
+ "electronic",
+ "party",
+ "rap"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://r.dcs.redcdn.pl/sc/o2/Eurozet/live/meloradio.livx?audio=5",
- "homepage": "https://www.meloradio.pl/",
- "logoUrl": null,
- "votes": 983,
- "clickcount": 20,
+ "streamUrl": "https://s2.radioparty.pl:8015/stream?nocache=4171",
+ "homepage": "https://radioparty.pl/ramowka/glowny",
+ "logoUrl": "https://radioparty.pl/assets/img/logo.png",
+ "votes": 1524,
+ "clickcount": 22,
"source": "radio-browser",
- "sourceStationUuid": "a43fe2f5-0c29-436d-bb19-1512f86fcd2b"
+ "sourceStationUuid": "68c4dc06-824c-4a00-9f76-a13e181c6f2d"
},
{
"id": "1c142460-76ad-4100-a9cb-a76eff76d821",
@@ -19543,41 +42862,42 @@
"sourceStationUuid": "1c142460-76ad-4100-a9cb-a76eff76d821"
},
{
- "id": "3d5ae3c4-6d05-415b-a0eb-d21ca56be0ea",
- "name": "Radio Eska Warszawa",
+ "id": "a43fe2f5-0c29-436d-bb19-1512f86fcd2b",
+ "name": "Meloradio FM",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [
+ "dance",
+ "pop",
+ "pop dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://r.dcs.redcdn.pl/sc/o2/Eurozet/live/meloradio.livx?audio=5",
+ "homepage": "https://www.meloradio.pl/",
+ "logoUrl": null,
+ "votes": 983,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "a43fe2f5-0c29-436d-bb19-1512f86fcd2b"
+ },
+ {
+ "id": "0e5fd15c-6bfd-407c-b6e9-b54262dba6fb",
+ "name": "Antyradio",
"country": "Poland",
"countryCode": "PL",
"language": null,
"tags": [],
- "codec": "MP3",
+ "codec": "AAC",
"bitrate": 128,
- "streamUrl": "https://waw.ic.smcdn.pl/2380-1.mp3",
- "homepage": "https://www.eska.pl/",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/2/2c/Eska_1049_2.png",
- "votes": 870,
+ "streamUrl": "https://n-4-4.dcs.redcdn.pl/sc/o2/Eurozet/live/antyradio.livx",
+ "homepage": "https://antyradio.pl/",
+ "logoUrl": "https://gfx.antyradio.pl/design/antyradio/src/images/favicon/favicon_180x180.png",
+ "votes": 5108,
"clickcount": 17,
"source": "radio-browser",
- "sourceStationUuid": "3d5ae3c4-6d05-415b-a0eb-d21ca56be0ea"
- },
- {
- "id": "53241c38-4a74-4beb-9514-1033913d1ede",
- "name": "SmoothJazz.com.pl 320k MP3",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [
- "jazz",
- "smooth jazz"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://bcast.vigormultimedia.com:48888/sjcompl320mp3",
- "homepage": "https://www.smoothjazz.com.pl/",
- "logoUrl": "http://bcast.vigormultimedia.com:7000/sjcompl_192_192_nie_kasowac.png",
- "votes": 2061,
- "clickcount": 17,
- "source": "radio-browser",
- "sourceStationUuid": "53241c38-4a74-4beb-9514-1033913d1ede"
+ "sourceStationUuid": "0e5fd15c-6bfd-407c-b6e9-b54262dba6fb"
},
{
"id": "53220f48-3f02-4cf2-abfa-8aadbb497b94",
@@ -19595,10 +42915,27 @@
"homepage": "https://discoparty.pl/",
"logoUrl": null,
"votes": 167,
- "clickcount": 15,
+ "clickcount": 17,
"source": "radio-browser",
"sourceStationUuid": "53220f48-3f02-4cf2-abfa-8aadbb497b94"
},
+ {
+ "id": "3d5ae3c4-6d05-415b-a0eb-d21ca56be0ea",
+ "name": "Radio Eska Warszawa",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://waw.ic.smcdn.pl/2380-1.mp3",
+ "homepage": "https://www.eska.pl/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/2/2c/Eska_1049_2.png",
+ "votes": 870,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "3d5ae3c4-6d05-415b-a0eb-d21ca56be0ea"
+ },
{
"id": "0f0c7bbc-c43d-4be3-88ee-03bec56016f7",
"name": "ESKA - Summer City",
@@ -19617,33 +42954,29 @@
"homepage": "https://www.eska.tv/",
"logoUrl": null,
"votes": 1148,
- "clickcount": 15,
+ "clickcount": 16,
"source": "radio-browser",
"sourceStationUuid": "0f0c7bbc-c43d-4be3-88ee-03bec56016f7"
},
{
- "id": "6c5dc2fe-f924-4341-bd43-84aabc359073",
- "name": "House of Funk",
+ "id": "53241c38-4a74-4beb-9514-1033913d1ede",
+ "name": "SmoothJazz.com.pl 320k MP3",
"country": "Poland",
"countryCode": "PL",
- "language": "english,polish",
+ "language": null,
"tags": [
- "deep house",
- "electronic",
- "funky house",
- "house",
- "minimal",
- "tech house"
+ "jazz",
+ "smooth jazz"
],
"codec": "MP3",
"bitrate": 320,
- "streamUrl": "https://houseoffunk.eu:8443/live",
- "homepage": "https://houseoffunk.eu/",
- "logoUrl": null,
- "votes": 208,
- "clickcount": 15,
+ "streamUrl": "https://bcast.vigormultimedia.com:48888/sjcompl320mp3",
+ "homepage": "https://www.smoothjazz.com.pl/",
+ "logoUrl": "http://bcast.vigormultimedia.com:7000/sjcompl_192_192_nie_kasowac.png",
+ "votes": 2061,
+ "clickcount": 16,
"source": "radio-browser",
- "sourceStationUuid": "6c5dc2fe-f924-4341-bd43-84aabc359073"
+ "sourceStationUuid": "53241c38-4a74-4beb-9514-1033913d1ede"
},
{
"id": "2262381e-c794-4953-bb74-b8acac9f2d4a",
@@ -19666,6 +42999,30 @@
"source": "radio-browser",
"sourceStationUuid": "2262381e-c794-4953-bb74-b8acac9f2d4a"
},
+ {
+ "id": "6c5dc2fe-f924-4341-bd43-84aabc359073",
+ "name": "House of Funk",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "english,polish",
+ "tags": [
+ "deep house",
+ "electronic",
+ "funky house",
+ "house",
+ "minimal",
+ "tech house"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://houseoffunk.eu:8443/live",
+ "homepage": "https://houseoffunk.eu/",
+ "logoUrl": null,
+ "votes": 208,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "6c5dc2fe-f924-4341-bd43-84aabc359073"
+ },
{
"id": "9617d67b-0601-11e8-ae97-52543be04c81",
"name": "Antyradio",
@@ -19687,23 +43044,23 @@
"sourceStationUuid": "9617d67b-0601-11e8-ae97-52543be04c81"
},
{
- "id": "621f9bd0-b91e-414d-b72b-7b8f2374183f",
- "name": "Radio ZET",
+ "id": "8aafbf38-346c-479c-b80c-abd308613d16",
+ "name": "Antyradio Classic Rock",
"country": "Poland",
"countryCode": "PL",
- "language": null,
+ "language": "english,polish",
"tags": [
- "misc"
+ "classic rock"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://r.dcs.redcdn.pl/sc/o2/Eurozet/live/audio.livx?audio=5",
- "homepage": null,
- "logoUrl": null,
- "votes": 9530,
+ "streamUrl": "https://an01.cdn.eurozet.pl/ANTCLA.mp3?redirected=01",
+ "homepage": "https://player.antyradio.pl/Kanaly-muzyczne/Antyradio-Classic-Rock",
+ "logoUrl": "https://gfx-player.antyradio.pl/design/player_antyradio/images/favicon/apple-touch-icon.png",
+ "votes": 727,
"clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "621f9bd0-b91e-414d-b72b-7b8f2374183f"
+ "sourceStationUuid": "8aafbf38-346c-479c-b80c-abd308613d16"
},
{
"id": "14deca88-fa91-472e-852d-22878c8e7bde",
@@ -19727,25 +43084,6 @@
"source": "radio-browser",
"sourceStationUuid": "14deca88-fa91-472e-852d-22878c8e7bde"
},
- {
- "id": "8aafbf38-346c-479c-b80c-abd308613d16",
- "name": "Antyradio Classic Rock",
- "country": "Poland",
- "countryCode": "PL",
- "language": "english,polish",
- "tags": [
- "classic rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://an01.cdn.eurozet.pl/ANTCLA.mp3?redirected=01",
- "homepage": "https://player.antyradio.pl/Kanaly-muzyczne/Antyradio-Classic-Rock",
- "logoUrl": "https://gfx-player.antyradio.pl/design/player_antyradio/images/favicon/apple-touch-icon.png",
- "votes": 727,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "8aafbf38-346c-479c-b80c-abd308613d16"
- },
{
"id": "a754e456-2068-4161-80b2-c5cd223e85ab",
"name": "ESKA Łódź",
@@ -19761,43 +43099,28 @@
"homepage": "https://www.eska.pl/lodz/",
"logoUrl": "https://images.app.goo.gl/gbW7KM9ZVvTmnMvr6",
"votes": 1365,
- "clickcount": 11,
+ "clickcount": 12,
"source": "radio-browser",
"sourceStationUuid": "a754e456-2068-4161-80b2-c5cd223e85ab"
},
{
- "id": "d71a705b-0933-4683-af9f-a14e99ff9840",
- "name": "JEDYNKA.PL",
+ "id": "621f9bd0-b91e-414d-b72b-7b8f2374183f",
+ "name": "Radio ZET",
"country": "Poland",
"countryCode": "PL",
- "language": "polish",
- "tags": [],
- "codec": "AAC",
- "bitrate": 194,
- "streamUrl": "https://stream11.polskieradio.pl/pr1/pr1.sdp/playlist.m3u8",
- "homepage": "https://jedynka.polskieradio.pl/",
- "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240110_183405096.jpg?alt=media&token=dadc43aa-8597-43e8-9003-2c6bd93842b1",
- "votes": 266,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "d71a705b-0933-4683-af9f-a14e99ff9840"
- },
- {
- "id": "d6a5c066-62c8-4f88-bd72-2b9b03330f2a",
- "name": "Radio Plus",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [],
+ "language": null,
+ "tags": [
+ "misc"
+ ],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://pl02.cdn.eurozet.pl/plu-waw.mp3?redirected=02",
- "homepage": "https://www.radioplus.pl/",
- "logoUrl": "https://www.radioplus.pl/favicon.ico",
- "votes": 3577,
+ "streamUrl": "https://r.dcs.redcdn.pl/sc/o2/Eurozet/live/audio.livx?audio=5",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 9530,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "d6a5c066-62c8-4f88-bd72-2b9b03330f2a"
+ "sourceStationUuid": "621f9bd0-b91e-414d-b72b-7b8f2374183f"
},
{
"id": "4a9151f9-835c-4c58-bda3-9084ed6addbc",
@@ -19816,6 +43139,23 @@
"source": "radio-browser",
"sourceStationUuid": "4a9151f9-835c-4c58-bda3-9084ed6addbc"
},
+ {
+ "id": "d71a705b-0933-4683-af9f-a14e99ff9840",
+ "name": "JEDYNKA.PL",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 194,
+ "streamUrl": "https://stream11.polskieradio.pl/pr1/pr1.sdp/playlist.m3u8",
+ "homepage": "https://jedynka.polskieradio.pl/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240110_183405096.jpg?alt=media&token=dadc43aa-8597-43e8-9003-2c6bd93842b1",
+ "votes": 266,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "d71a705b-0933-4683-af9f-a14e99ff9840"
+ },
{
"id": "c64f60f5-594a-43ab-bf7b-02c883ca2ab5",
"name": "Polskie Radio 24 (NEW STREAM)",
@@ -19838,43 +43178,6 @@
"source": "radio-browser",
"sourceStationUuid": "c64f60f5-594a-43ab-bf7b-02c883ca2ab5"
},
- {
- "id": "64e5a5d1-8b04-419c-b350-28f056818282",
- "name": "ESKA POZNAŃ",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://ic2.smcdn.pl/2140-1.aac",
- "homepage": "https://www.eska.pl/poznan/",
- "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240110_150439740.jpg?alt=media&token=879bb2b7-8416-4957-b2dd-4bcdc67e6898",
- "votes": 1169,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "64e5a5d1-8b04-419c-b350-28f056818282"
- },
- {
- "id": "38996cf5-f44c-470e-b7d7-59ea9fa8c298",
- "name": "Eska Wrocław",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "dance",
- "pop"
- ],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://radio.stream.smcdn.pl/icradio-p/2180-1.aac/playlist.m3u8",
- "homepage": "https://www.eska.pl/wroclaw/",
- "logoUrl": "https://www.eska.pl/favicon.ico",
- "votes": 2679,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "38996cf5-f44c-470e-b7d7-59ea9fa8c298"
- },
{
"id": "60921fad-ac07-4efa-911e-726aae55cd33",
"name": "Radio Fest 100.2 FM",
@@ -19888,10 +43191,44 @@
"homepage": "http://www.radiofest.pl/",
"logoUrl": null,
"votes": 334,
- "clickcount": 9,
+ "clickcount": 10,
"source": "radio-browser",
"sourceStationUuid": "60921fad-ac07-4efa-911e-726aae55cd33"
},
+ {
+ "id": "d6a5c066-62c8-4f88-bd72-2b9b03330f2a",
+ "name": "Radio Plus",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://pl02.cdn.eurozet.pl/plu-waw.mp3?redirected=02",
+ "homepage": "https://www.radioplus.pl/",
+ "logoUrl": "https://www.radioplus.pl/favicon.ico",
+ "votes": 3577,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "d6a5c066-62c8-4f88-bd72-2b9b03330f2a"
+ },
+ {
+ "id": "8412c718-43ec-4970-b878-1b91a7ad9769",
+ "name": "DiscoParty.pl - Disco Polo",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s1.slotex.pl/shoutcast/7432/stream?sid=1",
+ "homepage": "https://discoparty.pl/",
+ "logoUrl": "https://discoparty.pl/wp-content/uploads/2020/06/logo.png",
+ "votes": 96,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "8412c718-43ec-4970-b878-1b91a7ad9769"
+ },
{
"id": "388698fd-f555-49bc-9b8e-9297aa1c9b7e",
"name": "Radio Rzeszów",
@@ -19910,21 +43247,41 @@
"sourceStationUuid": "388698fd-f555-49bc-9b8e-9297aa1c9b7e"
},
{
- "id": "8412c718-43ec-4970-b878-1b91a7ad9769",
- "name": "DiscoParty.pl - Disco Polo",
+ "id": "86329383-66ef-4156-ba8d-6ac8d3778cc5",
+ "name": "Rmf Fm Polska",
"country": "Poland",
"countryCode": "PL",
- "language": null,
+ "language": "polish",
"tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://rs101-krk-cyfronet.rmfstream.pl/RMFFM48",
+ "homepage": "https://www.rmfon.pl/play,5#p",
+ "logoUrl": "https://www.gruparmf.pl/_files/Upload/Files/Presspack/GRUPA_RMF.png",
+ "votes": 460,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "86329383-66ef-4156-ba8d-6ac8d3778cc5"
+ },
+ {
+ "id": "0bab6889-05ad-4a31-ba44-3ed5d7c6a85d",
+ "name": "Antyradio Made In Poland",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [
+ "polish rock",
+ "rock"
+ ],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://s1.slotex.pl/shoutcast/7432/stream?sid=1",
- "homepage": "https://discoparty.pl/",
- "logoUrl": "https://discoparty.pl/wp-content/uploads/2020/06/logo.png",
- "votes": 96,
+ "streamUrl": "https://an04.cdn.eurozet.pl/ANTPOL.mp3?t=1668748669557?redirected=04",
+ "homepage": "https://player.antyradio.pl/Kanaly-muzyczne/Antyradio-Made-In-Poland",
+ "logoUrl": "https://gfx-player.antyradio.pl/design/player_antyradio/images/favicon/apple-touch-icon.png",
+ "votes": 374,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "8412c718-43ec-4970-b878-1b91a7ad9769"
+ "sourceStationUuid": "0bab6889-05ad-4a31-ba44-3ed5d7c6a85d"
},
{
"id": "83c0f221-4436-44e1-9f95-6320fa9fddcb",
@@ -19943,6 +43300,80 @@
"source": "radio-browser",
"sourceStationUuid": "83c0f221-4436-44e1-9f95-6320fa9fddcb"
},
+ {
+ "id": "64e5a5d1-8b04-419c-b350-28f056818282",
+ "name": "ESKA POZNAŃ",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://ic2.smcdn.pl/2140-1.aac",
+ "homepage": "https://www.eska.pl/poznan/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240110_150439740.jpg?alt=media&token=879bb2b7-8416-4957-b2dd-4bcdc67e6898",
+ "votes": 1169,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "64e5a5d1-8b04-419c-b350-28f056818282"
+ },
+ {
+ "id": "38996cf5-f44c-470e-b7d7-59ea9fa8c298",
+ "name": "Eska Wrocław",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [
+ "dance",
+ "pop"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://radio.stream.smcdn.pl/icradio-p/2180-1.aac/playlist.m3u8",
+ "homepage": "https://www.eska.pl/wroclaw/",
+ "logoUrl": "https://www.eska.pl/favicon.ico",
+ "votes": 2679,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "38996cf5-f44c-470e-b7d7-59ea9fa8c298"
+ },
+ {
+ "id": "3f965c9b-8f1e-47a8-b0c9-b51b00b711f7",
+ "name": "Polskie Radio Czwórka",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [
+ "polish",
+ "public radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 194,
+ "streamUrl": "https://stream14.polskieradio.pl/pr4/pr4.sdp/playlist.m3u8",
+ "homepage": null,
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/79/Czwórka_Polskie_Radio.jpg",
+ "votes": 25,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f965c9b-8f1e-47a8-b0c9-b51b00b711f7"
+ },
+ {
+ "id": "866491e3-f607-4e8a-915f-fb1d3b682cd8",
+ "name": "Radio Mirage - Italo Dance",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://ssl-1.radiohost.pl:9569/stream",
+ "homepage": "https://www.radiomirage.net/kanal-italodance/",
+ "logoUrl": null,
+ "votes": 1188,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "866491e3-f607-4e8a-915f-fb1d3b682cd8"
+ },
{
"id": "2a526572-4230-4b22-9e47-79383973ee0e",
"name": "Radio RMF24.pl",
@@ -19984,46 +43415,6 @@
"source": "radio-browser",
"sourceStationUuid": "f429966e-b79b-4787-9dd7-316752cee5c7"
},
- {
- "id": "b3452e7b-5954-47cf-b10d-8ba28dfe16c5",
- "name": "Antyradio Hard",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "hard rock",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://an05.cdn.eurozet.pl/ANTHAR.mp3",
- "homepage": "https://player.antyradio.pl/Kanaly-muzyczne/Antyradio-Hard",
- "logoUrl": "https://gfx-player.radiozet.pl/var/player/storage/images/player-antyradio/kanaly-muzyczne/antyradio-hard/710016-10-pol-PL/Antyradio-Hard_size-228x228.jpg",
- "votes": 96,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "b3452e7b-5954-47cf-b10d-8ba28dfe16c5"
- },
- {
- "id": "0bab6889-05ad-4a31-ba44-3ed5d7c6a85d",
- "name": "Antyradio Made In Poland",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "polish rock",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://an04.cdn.eurozet.pl/ANTPOL.mp3?t=1668748669557?redirected=04",
- "homepage": "https://player.antyradio.pl/Kanaly-muzyczne/Antyradio-Made-In-Poland",
- "logoUrl": "https://gfx-player.antyradio.pl/design/player_antyradio/images/favicon/apple-touch-icon.png",
- "votes": 374,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "0bab6889-05ad-4a31-ba44-3ed5d7c6a85d"
- },
{
"id": "40114c00-90ca-4c7d-a5b2-2f91616cacae",
"name": "Chilli ZET",
@@ -20042,58 +43433,44 @@
"sourceStationUuid": "40114c00-90ca-4c7d-a5b2-2f91616cacae"
},
{
- "id": "3f965c9b-8f1e-47a8-b0c9-b51b00b711f7",
- "name": "Polskie Radio Czwórka",
+ "id": "cc386af2-e9ea-4594-a8d0-f72b3dff0d8c",
+ "name": "Nasz Hajmat",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
"tags": [
- "polish",
- "public radio"
+ "folk",
+ "silesia"
],
- "codec": "AAC",
- "bitrate": 194,
- "streamUrl": "https://stream14.polskieradio.pl/pr4/pr4.sdp/playlist.m3u8",
- "homepage": null,
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/79/Czwórka_Polskie_Radio.jpg",
- "votes": 25,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "3f965c9b-8f1e-47a8-b0c9-b51b00b711f7"
- },
- {
- "id": "4021b06a-5787-44ca-9621-4dc63bf371c7",
- "name": "Radio Kampus 97,1 FM",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://stream.radiokampus.fm/kampus",
- "homepage": "http://radiokampus.fm/",
- "logoUrl": "http://radiokampus.fm/logo192.png",
- "votes": 546,
+ "streamUrl": "https://s3.slotex.pl:7126/stream",
+ "homepage": "https://naszhajmat.eu/",
+ "logoUrl": "https://naszhajmat.eu/images/favicon.ico",
+ "votes": 35,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "4021b06a-5787-44ca-9621-4dc63bf371c7"
+ "sourceStationUuid": "cc386af2-e9ea-4594-a8d0-f72b3dff0d8c"
},
{
- "id": "866491e3-f607-4e8a-915f-fb1d3b682cd8",
- "name": "Radio Mirage - Italo Dance",
+ "id": "e8c27cc3-e6e8-40b4-aca1-5e293a548c63",
+ "name": "Radio Disco Party - Disco Polo",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
- "tags": [],
+ "tags": [
+ "dance",
+ "disco polo"
+ ],
"codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://ssl-1.radiohost.pl:9569/stream",
- "homepage": "https://www.radiomirage.net/kanal-italodance/",
- "logoUrl": null,
- "votes": 1188,
+ "bitrate": 128,
+ "streamUrl": "https://s1.slotex.pl/shoutcast/7432/stream",
+ "homepage": "https://discoparty.pl/",
+ "logoUrl": "https://discoparty.pl/wp-content/uploads/2023/01/logotyp.png",
+ "votes": 992,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "866491e3-f607-4e8a-915f-fb1d3b682cd8"
+ "sourceStationUuid": "e8c27cc3-e6e8-40b4-aca1-5e293a548c63"
},
{
"id": "465760fe-5aa9-4117-8145-b3f128f1f034",
@@ -20135,21 +43512,24 @@
"sourceStationUuid": "33e0d018-39ac-4776-a288-20ec4fdc0a15"
},
{
- "id": "86329383-66ef-4156-ba8d-6ac8d3778cc5",
- "name": "Rmf Fm Polska",
+ "id": "b3452e7b-5954-47cf-b10d-8ba28dfe16c5",
+ "name": "Antyradio Hard",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
- "tags": [],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://rs101-krk-cyfronet.rmfstream.pl/RMFFM48",
- "homepage": "https://www.rmfon.pl/play,5#p",
- "logoUrl": "https://www.gruparmf.pl/_files/Upload/Files/Presspack/GRUPA_RMF.png",
- "votes": 460,
- "clickcount": 7,
+ "tags": [
+ "hard rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://an05.cdn.eurozet.pl/ANTHAR.mp3",
+ "homepage": "https://player.antyradio.pl/Kanaly-muzyczne/Antyradio-Hard",
+ "logoUrl": "https://gfx-player.radiozet.pl/var/player/storage/images/player-antyradio/kanaly-muzyczne/antyradio-hard/710016-10-pol-PL/Antyradio-Hard_size-228x228.jpg",
+ "votes": 96,
+ "clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "86329383-66ef-4156-ba8d-6ac8d3778cc5"
+ "sourceStationUuid": "b3452e7b-5954-47cf-b10d-8ba28dfe16c5"
},
{
"id": "2ac13bac-b3f2-48f5-8f27-072ace84c34d",
@@ -20171,24 +43551,67 @@
"sourceStationUuid": "2ac13bac-b3f2-48f5-8f27-072ace84c34d"
},
{
- "id": "e8c27cc3-e6e8-40b4-aca1-5e293a548c63",
- "name": "Radio Disco Party - Disco Polo",
+ "id": "76205995-be2b-431f-86dc-5ccd808978a3",
+ "name": "Radio Disco-Dance",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
"tags": [
- "dance",
+ "70",
+ "70s",
+ "80",
+ "80s",
+ "90",
+ "90s",
+ "disco",
"disco polo"
],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://s1.slotex.pl/shoutcast/7432/stream",
- "homepage": "https://discoparty.pl/",
- "logoUrl": "https://discoparty.pl/wp-content/uploads/2023/01/logotyp.png",
- "votes": 992,
+ "bitrate": 320,
+ "streamUrl": "https://radiodd.cloud/radio/8000/radio.mp3",
+ "homepage": "https://radiodd.eu/",
+ "logoUrl": null,
+ "votes": 498,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "e8c27cc3-e6e8-40b4-aca1-5e293a548c63"
+ "sourceStationUuid": "76205995-be2b-431f-86dc-5ccd808978a3"
+ },
+ {
+ "id": "2f24b9ed-cc6a-492b-b31a-7f4479547d8f",
+ "name": "Radio Kącik Rodzinny",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [
+ "disco polo",
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s3.slotex.pl:7374/stream",
+ "homepage": "https://koncikrodzinny.ddv.pl/",
+ "logoUrl": null,
+ "votes": 11,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "2f24b9ed-cc6a-492b-b31a-7f4479547d8f"
+ },
+ {
+ "id": "4021b06a-5787-44ca-9621-4dc63bf371c7",
+ "name": "Radio Kampus 97,1 FM",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radiokampus.fm/kampus",
+ "homepage": "http://radiokampus.fm/",
+ "logoUrl": "http://radiokampus.fm/logo192.png",
+ "votes": 546,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4021b06a-5787-44ca-9621-4dc63bf371c7"
},
{
"id": "33d69452-3417-4e90-92b9-c1f2e0aced66",
@@ -20226,6 +43649,23 @@
"source": "radio-browser",
"sourceStationUuid": "54513bd4-cc2c-4c69-a20d-fc9c83c11b09"
},
+ {
+ "id": "7baf76c1-6b23-4d1d-b571-eb94b383060f",
+ "name": "Antyradio Warszawa",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://an.cdn.eurozet.pl/ant-web.mp3?t=1703697029993",
+ "homepage": "https://www.antyradio.pl/",
+ "logoUrl": null,
+ "votes": 176,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7baf76c1-6b23-4d1d-b571-eb94b383060f"
+ },
{
"id": "8e3cd071-7175-412d-8e6d-900492ee595e",
"name": "CYBERStacja",
@@ -20271,50 +43711,41 @@
"sourceStationUuid": "c18100eb-63b6-45d9-803a-b1624f741fb4"
},
{
- "id": "cc386af2-e9ea-4594-a8d0-f72b3dff0d8c",
- "name": "Nasz Hajmat",
+ "id": "7c426b55-2bc8-4ac3-ad05-785bd05b2e77",
+ "name": "Radio Alex",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://frradioq.radioca.st/stream",
+ "homepage": "https://radioalex.pl/alex-wp/",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c426b55-2bc8-4ac3-ad05-785bd05b2e77"
+ },
+ {
+ "id": "3ada7edf-c603-4c7b-8d1e-a888738563fd",
+ "name": "Radio Bahary",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
"tags": [
"folk",
- "silesia"
+ "poetry"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://s3.slotex.pl:7126/stream",
- "homepage": "https://naszhajmat.eu/",
- "logoUrl": "https://naszhajmat.eu/images/favicon.ico",
- "votes": 35,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "cc386af2-e9ea-4594-a8d0-f72b3dff0d8c"
- },
- {
- "id": "76205995-be2b-431f-86dc-5ccd808978a3",
- "name": "Radio Disco-Dance",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "70",
- "70s",
- "80",
- "80s",
- "90",
- "90s",
- "disco",
- "disco polo"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://radiodd.cloud/radio/8000/radio.mp3",
- "homepage": "https://radiodd.eu/",
+ "streamUrl": "https://s1.slotex.pl/shoutcast/7838/stream",
+ "homepage": "http://www.radiobahary.com/",
"logoUrl": null,
- "votes": 498,
+ "votes": 27,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "76205995-be2b-431f-86dc-5ccd808978a3"
+ "sourceStationUuid": "3ada7edf-c603-4c7b-8d1e-a888738563fd"
},
{
"id": "bda599d3-5a0d-4836-a22f-33bb07d9fe1b",
@@ -20355,43 +43786,6 @@
"source": "radio-browser",
"sourceStationUuid": "87ff4f9d-e40d-48a3-a4a0-6bcba4839a1c"
},
- {
- "id": "2f24b9ed-cc6a-492b-b31a-7f4479547d8f",
- "name": "Radio Kącik Rodzinny",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "disco polo",
- "folk"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://s3.slotex.pl:7374/stream",
- "homepage": "https://koncikrodzinny.ddv.pl/",
- "logoUrl": null,
- "votes": 11,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "2f24b9ed-cc6a-492b-b31a-7f4479547d8f"
- },
- {
- "id": "bf70deba-6cd7-4b4d-b347-23b267cd75dd",
- "name": "Rock Radio Klasyka Rocka",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIO_ROCK.mp3",
- "homepage": "https://rockradio.tuba.pl/RockRadio/0,0.html",
- "logoUrl": "https://static.im-g.pl/im/7/24937/m24937627.jpg",
- "votes": 274,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "bf70deba-6cd7-4b4d-b347-23b267cd75dd"
- },
{
"id": "21a59f6d-a10c-45cb-8dcb-ab20bd5e4f9e",
"name": "Wasze Radio FM",
@@ -20466,23 +43860,6 @@
"source": "radio-browser",
"sourceStationUuid": "a6abb430-8f82-4ce6-8f5d-77337759024b"
},
- {
- "id": "7baf76c1-6b23-4d1d-b571-eb94b383060f",
- "name": "Antyradio Warszawa",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://an.cdn.eurozet.pl/ant-web.mp3?t=1703697029993",
- "homepage": "https://www.antyradio.pl/",
- "logoUrl": null,
- "votes": 176,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "7baf76c1-6b23-4d1d-b571-eb94b383060f"
- },
{
"id": "049e6b50-4604-4fc2-9ef9-aa2c754a0ca3",
"name": "Dubstep24h",
@@ -20601,60 +43978,6 @@
"source": "radio-browser",
"sourceStationUuid": "e8d66981-99a5-4149-b34e-8d4924422cb5"
},
- {
- "id": "065971ca-2b0e-4982-9b6e-416b7b262e7e",
- "name": "Radio 5",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://streaming.radio5.com.pl:8888/radio5suwalki",
- "homepage": "https://radio5.com.pl/",
- "logoUrl": "https://radio5.com.pl/favicon.ico",
- "votes": 474,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "065971ca-2b0e-4982-9b6e-416b7b262e7e"
- },
- {
- "id": "7c426b55-2bc8-4ac3-ad05-785bd05b2e77",
- "name": "Radio Alex",
- "country": "Poland",
- "countryCode": "PL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://frradioq.radioca.st/stream",
- "homepage": "https://radioalex.pl/alex-wp/",
- "logoUrl": null,
- "votes": 2,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "7c426b55-2bc8-4ac3-ad05-785bd05b2e77"
- },
- {
- "id": "3ada7edf-c603-4c7b-8d1e-a888738563fd",
- "name": "Radio Bahary",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "folk",
- "poetry"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://s1.slotex.pl/shoutcast/7838/stream",
- "homepage": "http://www.radiobahary.com/",
- "logoUrl": null,
- "votes": 27,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "3ada7edf-c603-4c7b-8d1e-a888738563fd"
- },
{
"id": "8ed13a99-657d-4935-9ef4-652731d9db8e",
"name": "Radio Disco Party - Club",
@@ -20678,6 +44001,26 @@
"source": "radio-browser",
"sourceStationUuid": "8ed13a99-657d-4935-9ef4-652731d9db8e"
},
+ {
+ "id": "ec552f4b-f74e-42b1-ae0a-295e4bad7d13",
+ "name": "Radio Mbox - Polska Muzyka",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [
+ "polish",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://s3.slotex.pl:7072/stream",
+ "homepage": "https://www.radiombox.pl/",
+ "logoUrl": "https://radiombox.pl/MboxKwadr120x120.png",
+ "votes": 98,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ec552f4b-f74e-42b1-ae0a-295e4bad7d13"
+ },
{
"id": "8d4ad577-024d-48c0-9cab-c219d124bb5a",
"name": "Radio Piekary 88.7FM",
@@ -20748,42 +44091,6 @@
"source": "radio-browser",
"sourceStationUuid": "1add425f-d5f1-45c8-ba26-7b485bee9795"
},
- {
- "id": "f11d134a-f198-415a-86a4-cb518c57127d",
- "name": "ZET Po Polsku",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [
- "zet po polsku"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://zt.cdn.eurozet.pl/ZETPL1.mp3",
- "homepage": "https://www.radiozet.pl/",
- "logoUrl": null,
- "votes": 206,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "f11d134a-f198-415a-86a4-cb518c57127d"
- },
- {
- "id": "0f2ce34e-114f-4971-bca9-7609f3460c7a",
- "name": "Eska Śląskie",
- "country": "Poland",
- "countryCode": "PL",
- "language": "polish",
- "tags": [],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://radio.stream.smcdn.pl/timeradio-p/2220-1.aac/playlist.m3u8",
- "homepage": "https://www.eska.pl/slaskie/",
- "logoUrl": "https://www.eska.pl/media/eska/desktop/images/logo-ESKA2023.svg?nocache",
- "votes": 946,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "0f2ce34e-114f-4971-bca9-7609f3460c7a"
- },
{
"id": "85479a6a-29c3-446b-9885-7416deacbcd1",
"name": "Punk Radio Underground",
@@ -20821,26 +44128,3580 @@
"sourceStationUuid": "1d452358-fdbd-4acf-9c4c-67ff715ff079"
},
{
- "id": "17f569d6-46e4-4bd1-9c54-c5d37e7fd3b4",
- "name": "Rock Radio PL",
+ "id": "bf70deba-6cd7-4b4d-b347-23b267cd75dd",
+ "name": "Rock Radio Klasyka Rocka",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIO_ROCK.mp3",
+ "homepage": "https://rockradio.tuba.pl/RockRadio/0,0.html",
+ "logoUrl": "https://static.im-g.pl/im/7/24937/m24937627.jpg",
+ "votes": 274,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "bf70deba-6cd7-4b4d-b347-23b267cd75dd"
+ },
+ {
+ "id": "a0d8c631-5097-48ed-81a8-50f6b9324665",
+ "name": "VOX FM 128kbps",
+ "country": "Poland",
+ "countryCode": "PL",
+ "language": "polish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://pldm.one.pl/radio?url=https://www.eskago.pl/radio/vox-fm",
+ "homepage": "https://www.voxfm.pl/",
+ "logoUrl": "https://www.voxfm.pl/apple-touch-icon.png",
+ "votes": 597,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a0d8c631-5097-48ed-81a8-50f6b9324665"
+ },
+ {
+ "id": "f11d134a-f198-415a-86a4-cb518c57127d",
+ "name": "ZET Po Polsku",
"country": "Poland",
"countryCode": "PL",
"language": "polish",
"tags": [
- "alternative rock",
+ "zet po polsku"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://zt.cdn.eurozet.pl/ZETPL1.mp3",
+ "homepage": "https://www.radiozet.pl/",
+ "logoUrl": null,
+ "votes": 206,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "f11d134a-f198-415a-86a4-cb518c57127d"
+ },
+ {
+ "id": "7bc1f66f-412d-484b-82eb-b7b1c4575faa",
+ "name": "M80 Rádio – 80s",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "80s",
+ "pop",
+ "romantic"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m8080.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": "http://webradiodirectory.com/wp-content/uploads/2021/01/cc9443f16e2af31ba205ac82214760c9.jpg",
+ "votes": 1810,
+ "clickcount": 61,
+ "source": "radio-browser",
+ "sourceStationUuid": "7bc1f66f-412d-484b-82eb-b7b1c4575faa"
+ },
+ {
+ "id": "856155ee-f434-4a45-9225-391c0e618b8b",
+ "name": "RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "64kbps"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://23603.live.streamtheworld.com/RFMAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite-images.azureedge.net/icons/touch-icon-iphone-retina.png",
+ "votes": 10488,
+ "clickcount": 58,
+ "source": "radio-browser",
+ "sourceStationUuid": "856155ee-f434-4a45-9225-391c0e618b8b"
+ },
+ {
+ "id": "44cb20dc-e9ac-41ef-a4fe-153d48fcdd96",
+ "name": "Radio Comercial Portugal",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/comercial.mp3",
+ "homepage": "https://radiocomercial.pt/",
+ "logoUrl": null,
+ "votes": 1874,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "44cb20dc-e9ac-41ef-a4fe-153d48fcdd96"
+ },
+ {
+ "id": "2b501db4-e4b6-4106-9670-9875536f70f1",
+ "name": "Rádio Comercial",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "contemporary",
+ "dance",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-hls.bauermedia.pt/comercial.aac/playlist.m3u8",
+ "homepage": "https://radiocomercial.pt/",
+ "logoUrl": "https://static2.mytuner.mobi/media/tvos_radios/drkZNBUn6W.png",
+ "votes": 2865,
+ "clickcount": 29,
+ "source": "radio-browser",
+ "sourceStationUuid": "2b501db4-e4b6-4106-9670-9875536f70f1"
+ },
+ {
+ "id": "34760786-80a0-4057-99a1-85f2d8fd2338",
+ "name": "RFM Oceano Pacifico",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "pop",
+ "pop rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://23543.live.streamtheworld.com/OCEANPACIFICAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 270,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "34760786-80a0-4057-99a1-85f2d8fd2338"
+ },
+ {
+ "id": "d1c00267-9915-4854-8f28-3e486f1c0591",
+ "name": "Cidade FM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/cidade.mp3",
+ "homepage": "https://cidade.fm/",
+ "logoUrl": "https://cidade.fm/favicon.ico",
+ "votes": 118,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1c00267-9915-4854-8f28-3e486f1c0591"
+ },
+ {
+ "id": "cc461784-3150-4a34-81c5-2116fe024740",
+ "name": "TSF Rádio Notícias",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese,português brasil",
+ "tags": [
+ "desporto",
+ "futebol",
+ "notícias",
+ "portugal",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://directo.tsf.pt/tsfdirecto.mp3",
+ "homepage": "https://www.tsf.pt/",
+ "logoUrl": "https://www.celsoazevedo.com/files/2024/tsf.png",
+ "votes": 840,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "cc461784-3150-4a34-81c5-2116fe024740"
+ },
+ {
+ "id": "26592f49-564a-402c-8123-19dc8d496271",
+ "name": "Smooth FM (AAC)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "jazz",
+ "smooth jazz"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/smooth.aac",
+ "homepage": "https://smoothfm.iol.pt/",
+ "logoUrl": null,
+ "votes": 414,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "26592f49-564a-402c-8123-19dc8d496271"
+ },
+ {
+ "id": "dfe3ebed-08cd-447a-9a58-efb8eebab9f8",
+ "name": "RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "dance",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RFMAAC_SC",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/touch-icon-iphone-retina.png",
+ "votes": 1162,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "dfe3ebed-08cd-447a-9a58-efb8eebab9f8"
+ },
+ {
+ "id": "909735da-70e8-4527-b771-52793d9f0086",
+ "name": "Antena 1 (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "live sports",
+ "musica",
+ "talk & speech"
+ ],
+ "codec": "AAC",
+ "bitrate": 181,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena180a/playlist.m3u8",
+ "homepage": "https://www.rtp.pt/play/direto/antena1",
+ "logoUrl": "https://cdn-images.rtp.pt/play/images/apple-touch-icon.png-120x120.png",
+ "votes": 10222,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "909735da-70e8-4527-b771-52793d9f0086"
+ },
+ {
+ "id": "a08d74ca-2172-447a-941a-b5c5c20afdd6",
+ "name": "M80 Rádio – Ballads",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "romantic"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80ballads.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 987,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "a08d74ca-2172-447a-941a-b5c5c20afdd6"
+ },
+ {
+ "id": "ae8f651c-f768-4243-83a0-7d535a5d4d8b",
+ "name": "M80 Rádio – Portugal",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "portuguese music",
+ "portuguese pop",
+ "português"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80nacional.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": "http://webradiodirectory.com/wp-content/uploads/2021/01/f506762ed247f010c6c41c494c279e57.jpg",
+ "votes": 604,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae8f651c-f768-4243-83a0-7d535a5d4d8b"
+ },
+ {
+ "id": "a1259280-4e93-47f9-b524-d491e9b622be",
+ "name": "Radio Comercial Rock",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/rcrock.aac",
+ "homepage": "https://radiocomercial.pt/",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/6/79496.v16.png",
+ "votes": 82,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "a1259280-4e93-47f9-b524-d491e9b622be"
+ },
+ {
+ "id": "ba4a59be-3ba1-4461-b9de-f489d605c7ac",
+ "name": "Antena 3 (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "alternative",
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 174,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena380a/playlist.m3u8?DVR",
+ "homepage": "https://www.rtp.pt/",
+ "logoUrl": "https://i.ibb.co/1rcQ9sr/1-143718101410.webp",
+ "votes": 186,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba4a59be-3ba1-4461-b9de-f489d605c7ac"
+ },
+ {
+ "id": "4c3d781a-16b7-4b9f-ac61-66b54c97f23c",
+ "name": "Rádio NoAr",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "popular music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radios.justweb.pt/8034/stream",
+ "homepage": "https://radionoar.pt/",
+ "logoUrl": null,
+ "votes": 109,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c3d781a-16b7-4b9f-ac61-66b54c97f23c"
+ },
+ {
+ "id": "264afd2f-8aa2-40c1-a5c5-b4ef1627e7be",
+ "name": "RDP Africa (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "africa",
+ "antena 1",
+ "portugal",
+ "portuguese",
+ "português",
+ "rdp",
+ "rdp africa",
+ "rtp"
+ ],
+ "codec": "AAC",
+ "bitrate": 168,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/rdpafrica80a/playlist.m3u8",
+ "homepage": "https://www.rtp.pt/play/direto/rdpafrica",
+ "logoUrl": "https://www.celsoazevedo.com/files/2022/11/rdp-africa.jpg",
+ "votes": 6821,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "264afd2f-8aa2-40c1-a5c5-b4ef1627e7be"
+ },
+ {
+ "id": "1ac20829-1ca7-4abe-bd7f-b8dcd835b29b",
+ "name": "M80 Rádio – 60s",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "60s",
+ "70s",
+ "80s"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m8060.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": "http://webradiodirectory.com/wp-content/uploads/2021/01/fe90a6d0b5158acae63737fe4b9b204f.jpg",
+ "votes": 584,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "1ac20829-1ca7-4abe-bd7f-b8dcd835b29b"
+ },
+ {
+ "id": "645c7030-4baa-4497-8f98-aeccc4c34160",
+ "name": "Orbital FM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ec2.yesstreaming.net:3025/stream",
+ "homepage": "https://www.orbital.pt/",
+ "logoUrl": "https://www.orbital.pt/icon.png",
+ "votes": 204,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "645c7030-4baa-4497-8f98-aeccc4c34160"
+ },
+ {
+ "id": "cff465ef-869b-4270-9839-b37708e13561",
+ "name": "SmoothFM Soul",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [
+ "smooth soul"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/smoothsoul.aac",
+ "homepage": "https://smoothfm.pt/",
+ "logoUrl": "https://smoothfm.pt/favicon.ico",
+ "votes": 192,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "cff465ef-869b-4270-9839-b37708e13561"
+ },
+ {
+ "id": "69157655-60d8-4a46-8088-764482b9eb73",
+ "name": "Wonder 80's",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://80.streeemer.com/listen/80s/radio.mp3",
+ "homepage": "https://mytuner-radio.com/radio/wonder-80s-492680/",
+ "logoUrl": "https://static2.mytuner.mobi/media/tvos_radios/2C5DZ9pVXS.jpg",
+ "votes": 382,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "69157655-60d8-4a46-8088-764482b9eb73"
+ },
+ {
+ "id": "32261346-3238-4017-b9de-61d86b4bbb31",
+ "name": "80'S RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "80's",
+ "the best of 80's"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://25343.live.streamtheworld.com/GR80SRFMAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 109,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "32261346-3238-4017-b9de-61d86b4bbb31"
+ },
+ {
+ "id": "30c9039c-85ca-4c00-80d0-d482ae637e34",
+ "name": "Antena 3 - Main",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radiocast.rtp.pt/antena380a.mp3",
+ "homepage": "https://www.rtp.pt/play/direto/antena3",
+ "logoUrl": "https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/1-143718101410.png?q=10&v=3&w=275",
+ "votes": 250,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "30c9039c-85ca-4c00-80d0-d482ae637e34"
+ },
+ {
+ "id": "d47f4a27-d7a5-435c-882f-1f0a2d062b55",
+ "name": "Rádio Amor Portugal",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "musica popular"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radioamorportugal.com:8443/rap.mp3",
+ "homepage": "https://radioamorportugal.com/",
+ "logoUrl": null,
+ "votes": 573,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "d47f4a27-d7a5-435c-882f-1f0a2d062b55"
+ },
+ {
+ "id": "e8afec33-6577-4f2e-8a99-ea61a62b7485",
+ "name": "Rádio Lafões FM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://sp0.redeaudio.com/9304/stream",
+ "homepage": "https://www.radiolafoes.pt/no-ar/",
+ "logoUrl": "https://www.radiolafoes.pt/favicon.ico",
+ "votes": 12,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "e8afec33-6577-4f2e-8a99-ea61a62b7485"
+ },
+ {
+ "id": "0f4f1565-e7cc-4705-abc7-2593d3b38de6",
+ "name": "SuperFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "metal",
+ "portugal",
+ "portuguese",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://play.radioregional.pt:8210/stream/2/;/stream.mp3",
+ "homepage": "https://www.superfm.com/",
+ "logoUrl": "https://www.superfm.com/wp-content/uploads/2015/09/superfmlogo.png",
+ "votes": 51,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f4f1565-e7cc-4705-abc7-2593d3b38de6"
+ },
+ {
+ "id": "9cdbc707-6729-4887-93fc-75bce2198484",
+ "name": "00'S RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "00s",
+ "2000s"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://25343.live.streamtheworld.com/LIVESTREAMAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 41,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "9cdbc707-6729-4887-93fc-75bce2198484"
+ },
+ {
+ "id": "65c33fc8-8710-438d-a309-308ba6db729d",
+ "name": "90'S RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "90's",
+ "90s"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://25343.live.streamtheworld.com/RFM_90SAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 38,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "65c33fc8-8710-438d-a309-308ba6db729d"
+ },
+ {
+ "id": "282ac845-f97c-401b-a5ba-2e2c2a2e0d15",
+ "name": "Antena 3",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 170,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena380a/playlist.m3u8",
+ "homepage": "https://rtp.pt/",
+ "logoUrl": "https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/1-143718101410.png?q=10&v=3&w=275",
+ "votes": 24,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "282ac845-f97c-401b-a5ba-2e2c2a2e0d15"
+ },
+ {
+ "id": "49ba09e7-ffcf-4124-b556-e75bb5623c5a",
+ "name": "FUTURA - Rádio de Autor",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://s4.radio.co/s7e7b6c165/listen",
+ "homepage": "http://www.radiofutura.pt/",
+ "logoUrl": "http://www.radiofutura.pt/favicon.ico",
+ "votes": 252,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "49ba09e7-ffcf-4124-b556-e75bb5623c5a"
+ },
+ {
+ "id": "5848aa9f-1e09-425a-9609-b76686144681",
+ "name": "M80 Rádio – 90s",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m8090.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": "http://webradiodirectory.com/wp-content/uploads/2021/01/cfcb79082683b5572d795042815462f7.jpg",
+ "votes": 168,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "5848aa9f-1e09-425a-9609-b76686144681"
+ },
+ {
+ "id": "b50fea42-9c22-45c3-a7d5-afc772cab87d",
+ "name": "M80 Rádio – Pop",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80pop.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 254,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b50fea42-9c22-45c3-a7d5-afc772cab87d"
+ },
+ {
+ "id": "26cf6195-4b57-4f9f-aeff-36496b0a55c0",
+ "name": "M80 Rádio – Rock",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "80s",
+ "pop rock",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80rock.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 204,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "26cf6195-4b57-4f9f-aeff-36496b0a55c0"
+ },
+ {
+ "id": "e4b5616e-6ad3-4dcb-a486-021b0607d807",
+ "name": "SoundWorks Radio",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [
+ "'dark ambient'",
+ "'darkwave'",
+ "'ebm'",
+ "'electro'",
+ "'electro-industrial'",
+ "'electronic'",
+ "'futurepop'",
+ "'industrial metal'",
+ "'industrial rock'",
+ "'industrial'",
+ "'neofolk'",
+ "'synthpop'"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://soundworks.live:8000/radio.mp3",
+ "homepage": "https://radio.soundworks.live/",
+ "logoUrl": "https://soundworks.live/static/uploads/browser_icon/original.1754442702.png",
+ "votes": 6,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "e4b5616e-6ad3-4dcb-a486-021b0607d807"
+ },
+ {
+ "id": "7b6c8b15-4fa1-4a11-a737-d34a8b428151",
+ "name": "105.4 Cascais - O Rock da Linha",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://play.radioregional.pt:8220/stream/2/;;/stream.mp3",
+ "homepage": "https://www.1054cascais.com/",
+ "logoUrl": "https://www.1054cascais.com/img/cover.jpg",
+ "votes": 183,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b6c8b15-4fa1-4a11-a737-d34a8b428151"
+ },
+ {
+ "id": "8267a9f9-e776-4b59-90e5-1179dfe1ad40",
+ "name": "Antena 1 (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "sports",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 181,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena180a/playlist.m3u8?DVR",
+ "homepage": "https://www.rtp.pt/",
+ "logoUrl": "https://www.celsoazevedo.com/files/2022/antena-1.png",
+ "votes": 33,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "8267a9f9-e776-4b59-90e5-1179dfe1ad40"
+ },
+ {
+ "id": "7365e570-cacc-4e43-a38b-533bb0b70236",
+ "name": "Cantinho dos Emigrantes",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast.redewt.net:9825/stream",
+ "homepage": "https://cantinhodosemigrantes.pt/",
+ "logoUrl": "https://cantinhodosemigrantes.pt/wp-content/uploads/2023/03/logo_radio.png",
+ "votes": 144,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7365e570-cacc-4e43-a38b-533bb0b70236"
+ },
+ {
+ "id": "311a0770-f57b-42fe-9de4-9c8fdc7b84e1",
+ "name": "Cidade_fm",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "cdd_fm",
+ "cidade",
+ "jovem",
+ "new age",
+ "só se quiseres!"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-hls.bauermedia.pt/cidade.aac/playlist.m3u8",
+ "homepage": "https://cidade.fm/",
+ "logoUrl": null,
+ "votes": 406,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "311a0770-f57b-42fe-9de4-9c8fdc7b84e1"
+ },
+ {
+ "id": "f7ef7fc8-fa3f-4ae5-92de-fe320bb79971",
+ "name": "CMR - Correio da Manhã Rádio",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://emdireto.cmradio.pt/audio2/output-stream_1.m3u8",
+ "homepage": "https://cmradio.pt/",
+ "logoUrl": null,
+ "votes": 134,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f7ef7fc8-fa3f-4ae5-92de-fe320bb79971"
+ },
+ {
+ "id": "40e31aa5-7f90-44be-b290-6ea6cb44f0e6",
+ "name": "RFM TOCA PORTUGAL",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "portuguese music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://27793.live.streamtheworld.com/RFM_PORTUGALAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 89,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "40e31aa5-7f90-44be-b290-6ea6cb44f0e6"
+ },
+ {
+ "id": "bf7a7180-2465-48d2-983c-3bc182ba0c83",
+ "name": "Antena 2 (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "classical"
+ ],
+ "codec": "AAC",
+ "bitrate": 262,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena280a/playlist.m3u8?DVR",
+ "homepage": "https://www.rtp.pt/play/direto/antena2",
+ "logoUrl": "https://www.celsoazevedo.com/files/2024/antena-2.png",
+ "votes": 235,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "bf7a7180-2465-48d2-983c-3bc182ba0c83"
+ },
+ {
+ "id": "d6db3215-8210-4fb6-a968-be79bf05e202",
+ "name": "Cascais FM 105.4",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://play.radioregional.pt:8220/stream/2/;/stream.mp3",
+ "homepage": "https://www.1054cascais.com/",
+ "logoUrl": "https://www.1054cascais.com/img/logo_white.png",
+ "votes": 33,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "d6db3215-8210-4fb6-a968-be79bf05e202"
+ },
+ {
+ "id": "8d71b081-833c-4ab2-a8a2-ada5d85cf0a1",
+ "name": "Radio Comercial Portugal",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/rctuga.aac",
+ "homepage": "https://radiocomercial.pt/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1763806752/brand_manager/stations/yc8sxrm0mataidq23uhi.pngsxrm0mataidq23uhi.png",
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8d71b081-833c-4ab2-a8a2-ada5d85cf0a1"
+ },
+ {
+ "id": "4694a5fd-c9e9-439d-94c6-c2aeb8f17171",
+ "name": "Radio Fado de Coimbra",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "fado"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://nl.digitalrm.pt:8048/stream",
+ "homepage": "https://www.radiofadodecoimbra.pt/",
+ "logoUrl": null,
+ "votes": 1317,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "4694a5fd-c9e9-439d-94c6-c2aeb8f17171"
+ },
+ {
+ "id": "0a189e2f-e3d0-4a70-8e67-750c0087e1f1",
+ "name": "Rádio Lusitânia",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "antena 1",
+ "local music",
+ "portugal",
+ "rdp",
+ "rtp"
+ ],
+ "codec": "AAC",
+ "bitrate": 188,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/lusitania80a/playlist.m3u8",
+ "homepage": "https://www.rtp.pt/play/direto/radiolusitania",
+ "logoUrl": "https://www.celsoazevedo.com/files/2022/11/radio-lusitania.png",
+ "votes": 129,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "0a189e2f-e3d0-4a70-8e67-750c0087e1f1"
+ },
+ {
+ "id": "46f17b0b-d886-48ee-b6ae-e3e1c76a021f",
+ "name": "RDS Romantica",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://s9.yesstreaming.net:9066/stream",
+ "homepage": "https://rds.pt/",
+ "logoUrl": "https://player.yesstreaming.com/uploads/logos/1727175777_c4e6b4b27f8127d74391.jpg",
+ "votes": 2,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "46f17b0b-d886-48ee-b6ae-e3e1c76a021f"
+ },
+ {
+ "id": "ece826dd-3eba-4c89-ab1c-24e34bfc6407",
+ "name": "Smooth Jazz Portugal",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "smooth jazz"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-hls.bauermedia.pt/smojazz.aac/playlist.m3u8",
+ "homepage": "https://bauermedia.pt/smoothfm/smooth-jazz",
+ "logoUrl": "https://bauermedia.pt/favicon.ico",
+ "votes": 709,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ece826dd-3eba-4c89-ab1c-24e34bfc6407"
+ },
+ {
+ "id": "7b56337d-048b-4545-ba70-704e37cdba7a",
+ "name": "GoloFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [
+ "desporto"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://sp0.redeaudio.com/8154/stream",
+ "homepage": "https://golo.fm/",
+ "logoUrl": "https://golo.fm/favicon.ico",
+ "votes": 907,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7b56337d-048b-4545-ba70-704e37cdba7a"
+ },
+ {
+ "id": "11bbe5f0-e0b3-408b-859c-97a6fb7eb313",
+ "name": "Gongas Radio",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "english",
+ "tags": [
+ "1980s",
+ "1990s"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a6.asurahosting.com:7930/radio.mp3",
+ "homepage": "https://instagram.com/gongasradio/",
+ "logoUrl": "https://links.mail.timberapps.io/file/upload/session/c747d5b028d94800/d0069737570b07666d11d601c3582a94f8cfc495.jpeg",
+ "votes": 8,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "11bbe5f0-e0b3-408b-859c-97a6fb7eb313"
+ },
+ {
+ "id": "1e7aaace-06eb-4181-86b9-a5af7963dd14",
+ "name": "Porão da nau radio",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "english",
+ "tags": [
+ "classic hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/rwmao7mxxt8vv",
+ "homepage": "https://xn--radioporodanau-xhb.blogspot.com/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/110/porao-da-nau-radio.5abfe912.jpg",
+ "votes": 16,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e7aaace-06eb-4181-86b9-a5af7963dd14"
+ },
+ {
+ "id": "25847e5e-2769-478a-9bb3-a9ae9b8a0a9e",
+ "name": "Rádio Festival Madeira (98.4 FM)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "pop",
+ "popular"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://audio.serv.pt/8012/stream.mp3",
+ "homepage": "https://rfestival.pt/",
+ "logoUrl": "https://www.celsoazevedo.com/files/random/2024/radio-festival.png",
+ "votes": 78,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "25847e5e-2769-478a-9bb3-a9ae9b8a0a9e"
+ },
+ {
+ "id": "fb952115-4a5a-4b67-858e-b1a4353bf118",
+ "name": "Radio Maria Portugal",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "catholic",
+ "radio maria",
+ "religious"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://dreamsiteradiocp5.com/proxy/rmportugal1?mp=/stream",
+ "homepage": "https://radiomaria.pt/",
+ "logoUrl": null,
+ "votes": 136,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "fb952115-4a5a-4b67-858e-b1a4353bf118"
+ },
+ {
+ "id": "bb3406be-edb7-455d-a346-b322139596db",
+ "name": "Rádio Popular de Source",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "local news",
+ "local radio",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://nl.digitalrm.pt:8072/stream?1671016403075=",
+ "homepage": "https://radiosoure.pt/",
+ "logoUrl": null,
+ "votes": 45,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "bb3406be-edb7-455d-a346-b322139596db"
+ },
+ {
+ "id": "91b76901-a68a-42d9-b70e-c57e01bf47a6",
+ "name": "REWIND 2000's",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://2000.streeemer.com/listen/2000s/radio.aac",
+ "homepage": "https://mytuner-radio.com/radio/rewind-2000s-492677/",
+ "logoUrl": "https://static2.mytuner.mobi/media/tvos_radios/KpJGgFhkNZ.png",
+ "votes": 161,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "91b76901-a68a-42d9-b70e-c57e01bf47a6"
+ },
+ {
+ "id": "b1a88a64-8897-4647-8015-9f04881b81fc",
+ "name": "Voz do Neiva",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://sp0.redeaudio.com/8092/stream",
+ "homepage": "https://radiovozdoneiva.net/",
+ "logoUrl": "https://radiovozdoneiva.net/voz-neiva.jpg",
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b1a88a64-8897-4647-8015-9f04881b81fc"
+ },
+ {
+ "id": "2921e1d9-a581-4799-a380-d2b8268044f5",
+ "name": "00's RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "2000s"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://27793.live.streamtheworld.com/LIVESTREAMAAC.aac",
+ "homepage": "https://rfm.sapo.pt/ouvir-emissao-rfm-00s",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/images/webrads/rfm-00s-radio-online_100x100.jpg",
+ "votes": 24,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2921e1d9-a581-4799-a380-d2b8268044f5"
+ },
+ {
+ "id": "29489790-0b8a-47d7-9b9d-630ebd9934fd",
+ "name": "Antena 1 Madeira (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "antena 1 madeira",
+ "madeira",
+ "news talk",
+ "notícias",
+ "rdp",
+ "rdp madeira",
+ "rtp"
+ ],
+ "codec": "AAC",
+ "bitrate": 182,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena1madeira80a/playlist.m3u8",
+ "homepage": "https://www.rtp.pt/play/direto/antena1madeira",
+ "logoUrl": "https://www.celsoazevedo.com/files/2022/11/antena-1-madeira.png",
+ "votes": 154,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "29489790-0b8a-47d7-9b9d-630ebd9934fd"
+ },
+ {
+ "id": "070c21d8-f919-4c30-aac3-63de93a0d579",
+ "name": "Antena 3 Madeira (Portugal)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "antena 1",
+ "madeira",
+ "music",
+ "rdp",
+ "rtp"
+ ],
+ "codec": "AAC",
+ "bitrate": 166,
+ "streamUrl": "https://streaming-live.rtp.pt/liveradio/antena3madeira80a/playlist.m3u8",
+ "homepage": "https://www.rtp.pt/play/direto/antena3madeira",
+ "logoUrl": "https://www.celsoazevedo.com/files/2022/11/antena-3-madeira.png",
+ "votes": 117,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "070c21d8-f919-4c30-aac3-63de93a0d579"
+ },
+ {
+ "id": "9ac5ac2e-d34c-4814-b3ad-9958a0de9b6a",
+ "name": "cidade hiphop",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "hip hop"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-hls.bauermedia.pt/cidhiphop.aac/playlist.m3u8",
+ "homepage": "https://cidade.fm/",
+ "logoUrl": null,
+ "votes": 175,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9ac5ac2e-d34c-4814-b3ad-9958a0de9b6a"
+ },
+ {
+ "id": "291257ce-928c-4471-96a0-f33d22950519",
+ "name": "Cool FM Albufeira",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://a1.asurahosting.com:9360/radio.mp3",
+ "homepage": "https://coolfm.live/",
+ "logoUrl": "https://coolfm.live/assets/images/faveicon/favicon-96x96.png",
+ "votes": 6,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "291257ce-928c-4471-96a0-f33d22950519"
+ },
+ {
+ "id": "6c1ef496-8fd1-4f93-b0f7-30ac6032bb34",
+ "name": "jovembsk",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-42.zeno.fm/ppgb4k7vhqztv?zs=c_kj97VBTyuKVVdB2EEdEg",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 613,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6c1ef496-8fd1-4f93-b0f7-30ac6032bb34"
+ },
+ {
+ "id": "2ac1284f-231a-4516-939b-939b193b6565",
+ "name": "M80 Rádio – 70s",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "70s",
+ "80s",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m8070.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 134,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2ac1284f-231a-4516-939b-939b193b6565"
+ },
+ {
+ "id": "06b3a0bc-3feb-474e-931a-719d30399af8",
+ "name": "M80 Rádio – Dance",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "dance"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80dance.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 246,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "06b3a0bc-3feb-474e-931a-719d30399af8"
+ },
+ {
+ "id": "7119e56e-a767-4b1a-b31e-6f39d2d9c030",
+ "name": "M80 Rádio – Indie",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "indie",
+ "indie rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80indie.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": "http://webradiodirectory.com/wp-content/uploads/2021/01/bb1443327bbcc1a1ef97d0668929c581.jpg",
+ "votes": 138,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "7119e56e-a767-4b1a-b31e-6f39d2d9c030"
+ },
+ {
+ "id": "0602f873-4a47-4536-9039-bbbdee1ecc1d",
+ "name": "M80 Rádio (AAC)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "2000's",
+ "70's",
+ "80's",
+ "90's",
+ "portugal"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 326,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0602f873-4a47-4536-9039-bbbdee1ecc1d"
+ },
+ {
+ "id": "0aed61c5-962f-4999-8a68-653d37834e41",
+ "name": "Nove3cinco",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://centova.radio.com.pt/proxy/522?mp=/stream&1715267171",
+ "homepage": "https://nove3cinco.pt/",
+ "logoUrl": "https://nove3cinco.pt/sv/wp-content/uploads/2015/05/Nove3Cinco-Menu-Logo.png",
+ "votes": 30,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0aed61c5-962f-4999-8a68-653d37834e41"
+ },
+ {
+ "id": "3be30d15-6f8e-41a6-bc66-dfe60cc25111",
+ "name": "Rádio Freguesia de Belém",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "local news",
+ "local programming",
+ "local radio",
+ "top hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s2.radio.co/s0ddea4a53/listen",
+ "homepage": "https://radiobelem.jf-belem.pt/",
+ "logoUrl": null,
+ "votes": 94,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3be30d15-6f8e-41a6-bc66-dfe60cc25111"
+ },
+ {
+ "id": "e1630f99-1069-4555-b28a-cedcd17e6d0a",
+ "name": "Radio Meio Do Mato",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "english",
+ "tags": [
+ "radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio.meiodomato.com/stream",
+ "homepage": "https://radio.meiodomato.com/",
+ "logoUrl": "https://meiodomato.com/static/img/logo.png",
+ "votes": 0,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e1630f99-1069-4555-b28a-cedcd17e6d0a"
+ },
+ {
+ "id": "ea9307a6-42d4-43b6-b22d-ecc3cb3ec4c0",
+ "name": "Radio Metal On: The Heavy",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radiometalon.com/listen/radio_metal_on_the_heavy/radio.mp3",
+ "homepage": "https://metalon.org/",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ea9307a6-42d4-43b6-b22d-ecc3cb3ec4c0"
+ },
+ {
+ "id": "a6a7e44f-8845-49e5-91c6-2387fa25d534",
+ "name": "Rádio Nova Era",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://centova.radio.com.pt/proxy/478?mp=/stream",
+ "homepage": "https://radionovaera.pt/",
+ "logoUrl": null,
+ "votes": 61,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a6a7e44f-8845-49e5-91c6-2387fa25d534"
+ },
+ {
+ "id": "cea4c68f-aa55-4760-b65c-530ee5b89bd7",
+ "name": "radio orbital",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://centova.radio.com.pt/proxy/401?mp=/stream",
+ "homepage": "https://www.orbital.pt/",
+ "logoUrl": "https://www.orbital.pt/icon.png",
+ "votes": 249,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "cea4c68f-aa55-4760-b65c-530ee5b89bd7"
+ },
+ {
+ "id": "89938c58-5bd1-4e86-897c-f3b5e046aaf6",
+ "name": "Radio Record Porto",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://nl.digitalrm.pt:8028/stream",
+ "homepage": "https://www.recordfm.pt/",
+ "logoUrl": null,
+ "votes": 15,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "89938c58-5bd1-4e86-897c-f3b5e046aaf6"
+ },
+ {
+ "id": "31691688-2a1a-4fea-b67c-ac94980c4c74",
+ "name": "Radio Renascença",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "generalist",
+ "national news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://22593.live.streamtheworld.com/RADIO_RENASCENCAAAC.aac",
+ "homepage": "https://rr.sapo.pt/",
+ "logoUrl": "https://rrsite-images.azureedge.net/favicon/apple-touch-icon.png",
+ "votes": 89,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "31691688-2a1a-4fea-b67c-ac94980c4c74"
+ },
+ {
+ "id": "df6c713f-7558-4c87-bdee-f8255c95511e",
+ "name": "Radio TugaNet",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "english,portuguese",
+ "tags": [
+ "80s",
+ "90s",
+ "brazilian music",
+ "classic hits",
+ "classic rock",
+ "pop",
+ "portuguese",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://ssl.stmxp.net:8006/;",
+ "homepage": "https://tuganet.fm/",
+ "logoUrl": null,
+ "votes": 163,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "df6c713f-7558-4c87-bdee-f8255c95511e"
+ },
+ {
+ "id": "a27c1c5d-f05b-45dd-841a-d2b3d93cebdb",
+ "name": "Rádio Vizela",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "hits",
+ "local news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://proxy-audio.ptisp.com:8100/stream",
+ "homepage": "http://www.radiovizela.pt/",
+ "logoUrl": null,
+ "votes": 207,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a27c1c5d-f05b-45dd-841a-d2b3d93cebdb"
+ },
+ {
+ "id": "d1aed693-0120-4c9c-bfd1-3829e41fc693",
+ "name": "Rádio XL",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "oldies",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radios.justweb.pt/8002/stream",
+ "homepage": "https://radioxlfm.pt/",
+ "logoUrl": null,
+ "votes": 158,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "d1aed693-0120-4c9c-bfd1-3829e41fc693"
+ },
+ {
+ "id": "10df8eab-7994-4f3d-a615-05eb77e105bc",
+ "name": "RFM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "dance",
+ "generalist",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://22593.live.streamtheworld.com/RFMAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 19,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "10df8eab-7994-4f3d-a615-05eb77e105bc"
+ },
+ {
+ "id": "fe2a2341-9fc3-486e-8d6c-93af792fdbcb",
+ "name": "RFM ROCKS",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://25343.live.streamtheworld.com/RFMONTHEROCKAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 33,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "fe2a2341-9fc3-486e-8d6c-93af792fdbcb"
+ },
+ {
+ "id": "ae4b9856-2eff-4d29-882f-660f575ff69d",
+ "name": "RIO - Rádio Internacional Odemira",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://hts02.brascast.com:10476/live",
+ "homepage": "https://radiodemira.pt/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae4b9856-2eff-4d29-882f-660f575ff69d"
+ },
+ {
+ "id": "4b323f8e-cb0b-4db6-8c28-21269186e25a",
+ "name": "Antena Livre de Gouveia",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://centova.radio.com.pt/proxy/456?mp=/stream",
+ "homepage": "https://896fm.pt/",
+ "logoUrl": null,
+ "votes": 20,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b323f8e-cb0b-4db6-8c28-21269186e25a"
+ },
+ {
+ "id": "d0808b14-f138-4bac-9018-f9d120de3ede",
+ "name": "Geice FM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "english,portuguese",
+ "tags": [
+ "classic hits",
+ "hits",
+ "oldies",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://ec2.yesstreaming.net:3275/stream",
+ "homepage": "https://radiogeice.com/",
+ "logoUrl": "https://radiogeice.com/favicon.ico",
+ "votes": 19,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d0808b14-f138-4bac-9018-f9d120de3ede"
+ },
+ {
+ "id": "06efe05f-7471-49b2-85b3-fcbecd8ebc4e",
+ "name": "Lusophonica",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "english,portuguese",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.radiojar.com/dxkmh6hv1f8uv?1651072328",
+ "homepage": "https://www.lusophonica.com/",
+ "logoUrl": null,
+ "votes": 79,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "06efe05f-7471-49b2-85b3-fcbecd8ebc4e"
+ },
+ {
+ "id": "8d7f68a9-d1c8-4a49-ad3e-69e56db8d280",
+ "name": "M80 Rádio – Soul",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "70s",
+ "classic soul",
+ "soul"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://stream-icy.bauermedia.pt/m80soul.aac",
+ "homepage": "https://m80.iol.pt/",
+ "logoUrl": null,
+ "votes": 65,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8d7f68a9-d1c8-4a49-ad3e-69e56db8d280"
+ },
+ {
+ "id": "b05bc526-0822-4a8d-9e86-e0b19f119f30",
+ "name": "MetalON - The Heavy",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [
+ "heavy metal",
+ "metal"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://radiometalon.com/radio/8000/radio.mp3",
+ "homepage": "https://metalon.org/",
+ "logoUrl": "https://metalon.org/wordpress/wp-content/uploads/2017/01/cropped-cropped-metalon-3-9.png",
+ "votes": 30,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b05bc526-0822-4a8d-9e86-e0b19f119f30"
+ },
+ {
+ "id": "70f4ade6-731f-40cf-b215-aadf26deb2c2",
+ "name": "nigga.pt (ambient)",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": null,
+ "tags": [
+ "ambient",
+ "athmospheric black metal",
+ "dungeon synth"
+ ],
+ "codec": "OGG",
+ "bitrate": 0,
+ "streamUrl": "https://nigga.pt/ambient.ogg",
+ "homepage": "https://nigga.pt/",
+ "logoUrl": "https://nigga.pt/favicon.png",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "70f4ade6-731f-40cf-b215-aadf26deb2c2"
+ },
+ {
+ "id": "e21f12c2-5c2b-4926-9ff4-dd4167d63161",
+ "name": "NiTfm",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "pop rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://sp0.redeaudio.com/8028/stream/",
+ "homepage": "https://www.nit.pt/",
+ "logoUrl": "https://www.nit.pt/wp-content/themes/nit-sage-v2/dist/images/favicon/favicon-128.png",
+ "votes": 75,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "e21f12c2-5c2b-4926-9ff4-dd4167d63161"
+ },
+ {
+ "id": "b0e33f48-ea02-4843-98b0-6729338bcccb",
+ "name": "Rádio Comercial Dance",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "dance",
+ "pop dance"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/rcdance.aac",
+ "homepage": "https://radiocomercial.iol.pt/",
+ "logoUrl": null,
+ "votes": 201,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0e33f48-ea02-4843-98b0-6729338bcccb"
+ },
+ {
+ "id": "ed07129e-0174-4dff-afaa-3fde476904b5",
+ "name": "Rádio Comercial Kids",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "kids"
+ ],
+ "codec": "AAC",
+ "bitrate": 127,
+ "streamUrl": "https://stream-icy.bauermedia.pt/rckids.aac",
+ "homepage": "https://bauermedia.pt/radiocomercial/rc-kids",
+ "logoUrl": null,
+ "votes": 59,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "ed07129e-0174-4dff-afaa-3fde476904b5"
+ },
+ {
+ "id": "c0682eee-a97d-4fbe-b970-dea2ffb18ef0",
+ "name": "Rádio Observador",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/OBSERVADORAAC.aac?dist=web-popup&devicename=aac",
+ "homepage": "https://observador.pt/radio/player/",
+ "logoUrl": "https://observador.pt/wp-content/themes/observador-child/assets/build/img/favicon.ico",
+ "votes": 103,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c0682eee-a97d-4fbe-b970-dea2ffb18ef0"
+ },
+ {
+ "id": "bd2539d1-bd21-4555-a32c-43deba0eccfd",
+ "name": "RADIO RCP-VAR",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "musica tradicional"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://sonic.servsonic.com/8028/stream",
+ "homepage": "https://www.rcp-var.com/",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "bd2539d1-bd21-4555-a32c-43deba0eccfd"
+ },
+ {
+ "id": "9f0765ed-8700-4ea9-a340-4dc7d050466b",
+ "name": "RFM DANCE IT",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "dance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://25453.live.streamtheworld.com/DANCEONTHEFLOORAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 44,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f0765ed-8700-4ea9-a340-4dc7d050466b"
+ },
+ {
+ "id": "704298d4-fbfc-424a-85c0-25937cde9814",
+ "name": "RFM LATINAS",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "latin music",
+ "latin pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://25693.live.streamtheworld.com/RFM_LATINASAAC.aac",
+ "homepage": "https://rfm.sapo.pt/",
+ "logoUrl": "https://rfmsite2023-images.azureedge.net/icons/favicon.ico",
+ "votes": 30,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "704298d4-fbfc-424a-85c0-25937cde9814"
+ },
+ {
+ "id": "f683a45f-e801-4735-916c-166debeb4ece",
+ "name": "RUA FM",
+ "country": "Portugal",
+ "countryCode": "PT",
+ "language": "portuguese",
+ "tags": [
+ "electric",
+ "groove",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://centova.radio.com.pt/proxy/037?mp=/stream",
+ "homepage": "https://rua.pt/",
+ "logoUrl": "https://rua.pt/wp-content/uploads/2021/10/cropped-favicon-270x270.png",
+ "votes": 26,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f683a45f-e801-4735-916c-166debeb4ece"
+ },
+ {
+ "id": "5c7a7785-6f77-4819-87c0-8776138fe996",
+ "name": "Kiss Fm",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "dance",
+ "dance pop",
+ "house",
+ "pop",
+ "pop music",
+ "top 40"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.kissfm.ro/kissfm.aacp",
+ "homepage": "https://www.kissfm.ro/",
+ "logoUrl": "https://www.kissfm.ro/apple-touch-icon.png",
+ "votes": 573,
+ "clickcount": 36,
+ "source": "radio-browser",
+ "sourceStationUuid": "5c7a7785-6f77-4819-87c0-8776138fe996"
+ },
+ {
+ "id": "d33eb5f1-6250-4a28-a39a-b5f85f12c92a",
+ "name": "Magic Fm",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "easy listening",
+ "oldies",
+ "soft",
+ "soft music"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.magicfm.ro/magicfm.aacp",
+ "homepage": "https://www.magicfm.ro/",
+ "logoUrl": null,
+ "votes": 470,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "d33eb5f1-6250-4a28-a39a-b5f85f12c92a"
+ },
+ {
+ "id": "c4eb7648-e867-4545-bdda-71b1368db779",
+ "name": "Atmospheric dnb s0urce",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english",
+ "tags": [
+ "drum and bass",
+ "jungle"
+ ],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://brokenbeats.net/stream/aac",
+ "homepage": "https://brokenbeats.net/",
+ "logoUrl": "https://brokenbeats.net/favicon.ico",
+ "votes": 644,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "c4eb7648-e867-4545-bdda-71b1368db779"
+ },
+ {
+ "id": "da7c8174-3e94-4fa7-966a-cf9907a4b0d1",
+ "name": "Dance FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://edge126.rcs-rds.ro/profm/dancefm.mp3",
+ "homepage": "https://www.dancefm.ro/",
+ "logoUrl": "https://www.dancefm.ro/static/theme-repo/apple-touch-icon.png?cache=rel-20221003-07-3",
+ "votes": 1090,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "da7c8174-3e94-4fa7-966a-cf9907a4b0d1"
+ },
+ {
+ "id": "00d1815f-8752-472b-8e1f-805431e96952",
+ "name": "Radio Impuls Romania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "top40"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.radio-impuls.ro/stream",
+ "homepage": "https://www.radioimpuls.ro/",
+ "logoUrl": "https://w7.pngwing.com/pngs/843/39/png-transparent-cluj-napoca-radio-impuls-paprika-radio-fm-broadcasting-radio-electronics-text-logo.png",
+ "votes": 578,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "00d1815f-8752-472b-8e1f-805431e96952"
+ },
+ {
+ "id": "c63f7402-f143-4f92-9cc9-e2d49f2a0bc5",
+ "name": "Europa FM Romania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://astreaming.edi.ro:8443/EuropaFM_aac",
+ "homepage": "http://www.europafm.ro/",
+ "logoUrl": "http://www.europafm.ro/favicon.ico",
+ "votes": 3684,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "c63f7402-f143-4f92-9cc9-e2d49f2a0bc5"
+ },
+ {
+ "id": "1d6d9870-b554-4919-a0a9-93457d3de6da",
+ "name": "Virgin Radio Romania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "hip hop",
+ "hip hop romanian",
+ "pop",
+ "pop dance",
+ "pop music",
+ "rnb",
+ "romanian",
+ "romanian pop",
+ "trap"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://astreaming.edi.ro:8443/VirginRadio_aac",
+ "homepage": "https://virginradio.ro/",
+ "logoUrl": null,
+ "votes": 1980,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d6d9870-b554-4919-a0a9-93457d3de6da"
+ },
+ {
+ "id": "0ae51e4d-6c87-467f-b630-85548b428310",
+ "name": "Magic Party Mix",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "80s",
+ "90s",
+ "dance",
+ "dj",
+ "gold",
+ "mix",
+ "oldies",
+ "party"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.magicfm.ro/magic.party.mix",
+ "homepage": "https://www.magicfm.ro/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1606492636/brand_manager/stations/agepcxvlmp6fbmslx6tt.jpg",
+ "votes": 1078,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "0ae51e4d-6c87-467f-b630-85548b428310"
+ },
+ {
+ "id": "73ee836b-e9f2-4758-9cd6-2886da6db476",
+ "name": "Digi24FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://edge76.rcs-rds.ro/digifm/digi24fm.mp3",
+ "homepage": "https://www.digi24.ro/live/digi24-fm",
+ "logoUrl": "https://www.digi24.ro/static/theme-repo/apple-touch-icon.png",
+ "votes": 2104,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "73ee836b-e9f2-4758-9cd6-2886da6db476"
+ },
+ {
+ "id": "ba12510c-33f1-40a9-add1-45516d73b197",
+ "name": "Radio Disco Mix",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "disco",
+ "hits",
+ "pop",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://play.discomix.ro/8002/stream",
+ "homepage": "https://discomix.ro/",
+ "logoUrl": "https://scontent.fsbz4-1.fna.fbcdn.net/v/t39.30808-6/335841304_737873554406490_4291068825206123225_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=6ee11a&_nc_ohc=Rzwicn1igMAQ7kNvgHp9yeH&_nc_zt=23&_nc_ht=scontent.fsbz4-1.fna&_nc_gid=ASHALMr8ce0swTJpiBYArx9&oh=00_AYBX8OTWi0wbmHhUnFC2SPQI0JiLSzwkiKZ3ia4lBvzHqA&oe=673FD069",
+ "votes": 235,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba12510c-33f1-40a9-add1-45516d73b197"
+ },
+ {
+ "id": "db61d84c-620c-4e56-b262-cbbe0909c828",
+ "name": "EBS | Movie Soundtracks",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "movie scores",
+ "movie soundtracks",
+ "soundtracks"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://azura.ebsmedia.ro/listen/movies/movies128.mp3",
+ "homepage": "https://www.ebsradio.ro/",
+ "logoUrl": "https://ebsradio.ro/stream/img/stream-movies-soundtrack.png",
+ "votes": 392,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "db61d84c-620c-4e56-b262-cbbe0909c828"
+ },
+ {
+ "id": "76033286-f219-4693-bd11-a8ada3408a91",
+ "name": "DJ Radio Romania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "dance",
+ "dance pop",
+ "house",
+ "pop",
+ "pop dance",
+ "pop music",
+ "romanian pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.djradio.ro/radio/8000/stream.mp3",
+ "homepage": "https://djradio.ro/",
+ "logoUrl": null,
+ "votes": 1237,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "76033286-f219-4693-bd11-a8ada3408a91"
+ },
+ {
+ "id": "6d4f60a9-fafa-474a-8917-8999fd1db5b5",
+ "name": "Pescobar Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://play.radioking.io/pescobar",
+ "homepage": "https://pescobar.radio/",
+ "logoUrl": "https://pescobar.radio/wp-content/uploads/2025/04/logo_pescobar_radio_blue_background@512x.png",
+ "votes": 2,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "6d4f60a9-fafa-474a-8917-8999fd1db5b5"
+ },
+ {
+ "id": "5e063320-07d6-4d99-a434-f34e7e2a7431",
+ "name": "Pescobar Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english,romanian",
+ "tags": [
+ "afro house",
+ "chill",
+ "dance",
+ "deep",
+ "deep house",
+ "electronic",
+ "house",
+ "relax"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen.radioking.com/radio/701141/stream/766385",
+ "homepage": "https://pescobar.radio/",
+ "logoUrl": "https://image.radioking.io/radios/701141/logo/6451afd2-e9e2-4738-a826-eea1b1ba0585.jpeg",
+ "votes": 50,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e063320-07d6-4d99-a434-f34e7e2a7431"
+ },
+ {
+ "id": "063759b2-3420-4a70-8b6b-a0462147128a",
+ "name": "Radio MANELE",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://play.wrhradios.com/8044/stream",
+ "homepage": null,
+ "logoUrl": "https://myradioonline.ro/public/uploads/radio_img/radio-manele/play_250_250.jpg",
+ "votes": 491,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "063759b2-3420-4a70-8b6b-a0462147128a"
+ },
+ {
+ "id": "cc5a46e8-a73f-43eb-8aa3-84107dc123be",
+ "name": "RADIO MANELE PETRECERE",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "manele",
+ "petrecere"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ssl.servereradio.ro/8123/stream",
+ "homepage": "https://fmradiomanele.ro/",
+ "logoUrl": "https://fmradiomanele.ro/favicon.ico",
+ "votes": 571,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "cc5a46e8-a73f-43eb-8aa3-84107dc123be"
+ },
+ {
+ "id": "7912ccbd-e75d-425c-85b9-0b2ac2a4b213",
+ "name": "Radio ZU",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://live7digi.antenaplay.ro/radiozu/radiozu-48000.m3u8",
+ "homepage": "https://radiozu.ro/live",
+ "logoUrl": "https://radiozu.ro/favicon-96x96.png",
+ "votes": 921,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "7912ccbd-e75d-425c-85b9-0b2ac2a4b213"
+ },
+ {
+ "id": "e76147c6-7657-11ea-b1cf-52543be04c81",
+ "name": "RockFM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "rock",
+ "romanian"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.rockfm.ro/rockfm.aacp",
+ "homepage": "https://www.rockfm.ro/",
+ "logoUrl": "https://www.rockfm.ro/apple-touch-icon.png",
+ "votes": 744,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "e76147c6-7657-11ea-b1cf-52543be04c81"
+ },
+ {
+ "id": "ea2bd72b-71e2-42f3-8a56-aa2b3d445ea3",
+ "name": "Digi FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "music",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://edge76.rcs-rds.ro/digifm/digifm.mp3",
+ "homepage": "https://www.digifm.ro/",
+ "logoUrl": "https://www.digifm.ro/static/theme-repo/apple-touch-icon.png?v=2.0&cache=release-2022091104-v15",
+ "votes": 673,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "ea2bd72b-71e2-42f3-8a56-aa2b3d445ea3"
+ },
+ {
+ "id": "b1d47504-a08b-464b-b054-f404b1cb7d60",
+ "name": "Magic Gold Hits",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "classic hits",
+ "gold",
+ "goldies",
+ "greatest hits",
+ "oldies",
+ "soft music"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.magicfm.ro/magic.gold.hits",
+ "homepage": "https://www.magicfm.ro/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1606494213/brand_manager/stations/x6xeyevggfagng9eahwl.jpg",
+ "votes": 288,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "b1d47504-a08b-464b-b054-f404b1cb7d60"
+ },
+ {
+ "id": "bb12ddb1-eca4-48b0-bf98-9083820ea4b4",
+ "name": "Radio Flo Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "manele",
+ "manele noi",
+ "manele vechi",
+ "muzică de petrecere",
+ "petrecere"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://live.radioflomanele.ro/8084/stream",
+ "homepage": "https://radioflomanele.ro/",
+ "logoUrl": null,
+ "votes": 488,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "bb12ddb1-eca4-48b0-bf98-9083820ea4b4"
+ },
+ {
+ "id": "c74ab78c-a541-44d9-b8ba-2c87f67557ac",
+ "name": "Luduș Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "românä",
+ "tags": [
+ "dance",
+ "manele",
+ "petrecere",
+ "populară"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.gazduirejocuri.ro/8002/stream",
+ "homepage": "http://radio-ludus-manele/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "c74ab78c-a541-44d9-b8ba-2c87f67557ac"
+ },
+ {
+ "id": "2eb897a7-b86b-4bb2-b245-94a43829b7e5",
+ "name": "Rock Fm Hard Rock",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "classic rock",
+ "hard rock",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.rockfm.ro/hard.rock",
+ "homepage": "https://www.rockfm.ro/",
+ "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1606737505/brand_manager/stations/qyxv7nnrvwnnokjxrxgi.jpg",
+ "votes": 1699,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "2eb897a7-b86b-4bb2-b245-94a43829b7e5"
+ },
+ {
+ "id": "b0e1799a-be39-4fde-8765-84d80f7a8224",
+ "name": "Super Fm Manele Prahova",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://asculta.superfmradio.ro/9720/stream",
+ "homepage": "https://www.radiomanele.net/super-fm-radio-manele-prahova/",
+ "logoUrl": "https://www.radiomanele.net/wp-content/uploads/2024/01/Super-FM-Prahova.jpg",
+ "votes": 75,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0e1799a-be39-4fde-8765-84d80f7a8224"
+ },
+ {
+ "id": "57edf0e2-6f3b-4103-981a-2e9d1e4294a2",
+ "name": "Super Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/w8461rwck5zuv",
+ "homepage": "https://zeno.fm/radio/radio-super-manele/",
+ "logoUrl": "https://zeno.fm/_ipx/_/https://images.zeno.fm/cfKVjEjbHnRLCVtXf6rex3gJ_b_eSddr8qU7S4AtXhA/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvYWd4emZucGxibTh0YzNSaGRITnlNZ3NTQ2tGMWRHaERiR2xsYm5RWWdJQ1EwN19XaXdvTUN4SU9VM1JoZEdsdmJsQnliMlpwYkdVWWdJQ1EwOEthLVFvTW9nRUVlbVZ1YncvaW1hZ2UvP3U9MTY2MTcwOTU4OTAwMA.webp",
+ "votes": 71,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "57edf0e2-6f3b-4103-981a-2e9d1e4294a2"
+ },
+ {
+ "id": "0c7f9b48-f144-413c-a223-4758100d3e19",
+ "name": "One FM Dance",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 88,
+ "streamUrl": "https://live.onefm.ro/onefm.aacp",
+ "homepage": "https://www.onefm.ro/",
+ "logoUrl": "https://www.onefm.ro/img/onefm-logo.png",
+ "votes": 2023,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c7f9b48-f144-413c-a223-4758100d3e19"
+ },
+ {
+ "id": "fbf65b83-6883-4b09-8f8b-5205cdbd509d",
+ "name": "Realitatea FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 141,
+ "streamUrl": "https://shout.realitatea.net:8001/rfmweb",
+ "homepage": "https://realitateafm.net/",
+ "logoUrl": "https://radiorfm.ro/wp-content/uploads/2023/05/favicon.png",
+ "votes": 2136,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "fbf65b83-6883-4b09-8f8b-5205cdbd509d"
+ },
+ {
+ "id": "7886e4be-9857-4a79-bd08-03d853ddbace",
+ "name": "Stil România -Radio Stil Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mp3.radiostill.ro:8888/stream",
+ "homepage": "https://www.facebook.com/people/Radio-Stil-Oficial/100092264674282/",
+ "logoUrl": "https://play-lh.googleusercontent.com/iP4ePfGMfG3juEavcLE8lazbWBE9xmq3pFj0DHLS5qOAtHku4GbAAfrPT_UtXxE2gg",
+ "votes": 57,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "7886e4be-9857-4a79-bd08-03d853ddbace"
+ },
+ {
+ "id": "19743e4c-21f0-4100-841f-5ac141dbf11f",
+ "name": "Tradițional Radio - Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele",
+ "muzică"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.ascultatare.ro/7000/stream",
+ "homepage": "https://www.radiotraditional.ro/radio-manele/",
+ "logoUrl": "https://www.radiotraditional.ro/wp-content/plugins/radio-player/assets/images/placeholder.png",
+ "votes": 14,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "19743e4c-21f0-4100-841f-5ac141dbf11f"
+ },
+ {
+ "id": "5c6e31af-a4f7-4550-aee4-82a3966c27ad",
+ "name": "Urban FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "hip hop",
+ "hip-hop",
+ "r'n'b",
+ "rap",
+ "rnb",
+ "trap"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://urbanfm.ro:8777/live",
+ "homepage": "https://urbanfm.ro/",
+ "logoUrl": "https://urbanfm.ro/logo_drept.png",
+ "votes": 22,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "5c6e31af-a4f7-4550-aee4-82a3966c27ad"
+ },
+ {
+ "id": "d3d46ce1-6c76-40e3-9133-b646f4b9b1f6",
+ "name": "149FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english,hungarian,romanian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/6vc4ddpr3ehvv",
+ "homepage": "https://149fm.duckdns.org/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "d3d46ce1-6c76-40e3-9133-b646f4b9b1f6"
+ },
+ {
+ "id": "c57670ff-eb19-49a2-8a79-d84dd8e855c4",
+ "name": "Acustic Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "classical",
+ "instrumental music",
+ "orchestral"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/xmgnc6mcwnhvv",
+ "homepage": "https://zeno.fm/radio/acustic-radiotrepc6mcwnhvv/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2FA-CH5UTDUKdgecn2CYCJIhTTCOYrun5XkrLRiZqY2c8%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSUN3LTdQamdRa01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSUNJeGZhYXNna01vZ0VFZW1WdWJ3L2ltYWdlLz91cGRhdGVkPTE2NjA4MDQ1MjQwMDA.webp&w=1920&q=100",
+ "votes": 40,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c57670ff-eb19-49a2-8a79-d84dd8e855c4"
+ },
+ {
+ "id": "d428c4e5-bfeb-4856-b99d-9b30982ddaf3",
+ "name": "Bucuresti FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream4.srr.ro:8443/bucuresti-fm",
+ "homepage": "http://www.bucurestifm.ro/",
+ "logoUrl": null,
+ "votes": 60,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "d428c4e5-bfeb-4856-b99d-9b30982ddaf3"
+ },
+ {
+ "id": "e49db061-4c6f-4d81-8053-3fcc1894a722",
+ "name": "Capital FM - Dance",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "dance",
+ "fresh",
+ "hits",
+ "pop",
+ "top40"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ssl.omegahost.ro:8020/stream",
+ "homepage": "https://capitalfm.ro/",
+ "logoUrl": null,
+ "votes": 31,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "e49db061-4c6f-4d81-8053-3fcc1894a722"
+ },
+ {
+ "id": "f7a27449-af1b-470e-aa50-bc5f1df79f4e",
+ "name": "Minimal Techno Radio & Track Discovery - ROminimal.club",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english",
+ "tags": [
+ "electronic",
+ "minimal techno",
+ "techno"
+ ],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://r4.rominimal.club/listen/rominimal.club/radio2.m4a",
+ "homepage": "https://rominimal.club/",
+ "logoUrl": "https://rominimal.club/images/logo.png",
+ "votes": 12,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f7a27449-af1b-470e-aa50-bc5f1df79f4e"
+ },
+ {
+ "id": "331f8e7c-a7ca-4c19-b1f2-1998cca09d4c",
+ "name": "Radio Guerrilla",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://live.guerrillaradio.ro:8443/guerrilla.aac",
+ "homepage": "https://www.guerrillaradio.ro/",
+ "logoUrl": "https://guerrillaradio.b-cdn.net/wp-content/themes/guerrilla/library/images/favicon/apple-icon-120x120.png",
+ "votes": 151,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "331f8e7c-a7ca-4c19-b1f2-1998cca09d4c"
+ },
+ {
+ "id": "62d99a98-b21a-4bb9-af1b-769e7c2b8007",
+ "name": "Rock Ballads",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.rockfm.ro/ballads.rock",
+ "homepage": "https://www.rockfm.ro/rock-ballads",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "62d99a98-b21a-4bb9-af1b-769e7c2b8007"
+ },
+ {
+ "id": "b09e7ff4-fa15-4d81-821b-ec7751c3b9ad",
+ "name": "Stil Mix Manele 107.9 MHz FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/zt84vax7ptzuv",
+ "homepage": "https://zeno.fm/radio/radio-stil-mix-manele-107-9-mhz-fm/",
+ "logoUrl": "https://zeno.fm/_ipx/_/https://images.zeno.fm/qpp8PZC2Iv47ReKxCN_iDii6O0esnPhhFiZbC3dGCaE/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvZTBkYTc1YWMtZWMwOC00MDY3LThjNGItMzQ0NTU3Nzg2MjZkL2ltYWdlLz91PTE3NDYzNzg4NjgwMDA.webp",
+ "votes": 72,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "b09e7ff4-fa15-4d81-821b-ec7751c3b9ad"
+ },
+ {
+ "id": "5b59f175-b633-4861-a17d-de155de0e8bf",
+ "name": "Vibe FM Romania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radiotrucker.com/en/play/vibe-fm-romania",
+ "homepage": "https://radiook.ro/",
+ "logoUrl": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da847c688eefabb0fda4219fd9d4",
+ "votes": 263,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "5b59f175-b633-4861-a17d-de155de0e8bf"
+ },
+ {
+ "id": "5a1c5abc-dfd5-4b96-bbb8-6d7eab7a34a6",
+ "name": "Aripi Spre Cer Popular",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "christian",
+ "christian music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://popular.stream.aripisprecer.ro/radio.mp3",
+ "homepage": "https://www.aripisprecer.ro/popular/",
+ "logoUrl": null,
+ "votes": 41,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5a1c5abc-dfd5-4b96-bbb8-6d7eab7a34a6"
+ },
+ {
+ "id": "9aa8d64f-338f-40f5-b0ed-efccaf54a72c",
+ "name": "BOOM Rock-Less Talk & More Rock!",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.radioboom.ro/listen/boom_rock/radio.mp3",
+ "homepage": "https://stream.radioboom.ro/public/boom_rock",
+ "logoUrl": "https://stream.radioboom.ro/api/station/boom_rock/art/c0fa46991edf0d642bcd351d-1745487803.jpg",
+ "votes": 2,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "9aa8d64f-338f-40f5-b0ed-efccaf54a72c"
+ },
+ {
+ "id": "53fd0aba-e88c-4513-8457-31af5124388e",
+ "name": "BOOM TV",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "classic hits",
+ "hits",
+ "pop rock",
+ "top hits"
+ ],
+ "codec": "AAC",
+ "bitrate": 5090,
+ "streamUrl": "https://live.radioboom.ro/live-tv/live.m3u8",
+ "homepage": "https://live.radioboom.ro/",
+ "logoUrl": "https://live.radioboom.ro/livetv.png",
+ "votes": 18,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "53fd0aba-e88c-4513-8457-31af5124388e"
+ },
+ {
+ "id": "6f96c929-0443-4402-b576-c5674b9e3b4a",
+ "name": "Chill FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://edge126.rcs-rds.ro/profm/chillfm.mp3?1712405207687",
+ "homepage": "https://www.chillfm.ro/",
+ "logoUrl": "https://www.chillfm.ro/images/logo-chillfm.png",
+ "votes": 66,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "6f96c929-0443-4402-b576-c5674b9e3b4a"
+ },
+ {
+ "id": "c6bc0419-2d4e-442f-956d-affd47e18cd9",
+ "name": "Manastirea Putna",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://www.ortodoxradio.ro:8000/stream48",
+ "homepage": "https://www.ortodoxradio.ro/",
+ "logoUrl": "https://www.ortodoxradio.ro/images/favicon/apple-icon-120x120.png",
+ "votes": 35,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c6bc0419-2d4e-442f-956d-affd47e18cd9"
+ },
+ {
+ "id": "f979d55f-91cf-49ae-951a-698c4aa8c87b",
+ "name": "Napoca FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "dance",
+ "dance pop",
+ "pop",
+ "pop music",
+ "romanian pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.napocalive.ro/napoca-fm",
+ "homepage": "https://napocafm.ro/",
+ "logoUrl": null,
+ "votes": 35,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "f979d55f-91cf-49ae-951a-698c4aa8c87b"
+ },
+ {
+ "id": "ee7abbd2-4195-4e48-8424-743533cbf74f",
+ "name": "Radio Flacăra Rusaliilor",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "românä",
+ "tags": [
+ "evangelical",
+ "religios"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radio-flacararusaliilor.ro/stream",
+ "homepage": "https://radio-flacararusaliilor.ro/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s158262d.png",
+ "votes": 1,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "ee7abbd2-4195-4e48-8424-743533cbf74f"
+ },
+ {
+ "id": "dcae60bc-ffb7-403b-9a42-30be18b42fc0",
+ "name": "Radio Tequila Manele Romania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://petrecere.radiotequila.ro/7000/stream",
+ "homepage": "https://www.radiotequila.ro/",
+ "logoUrl": "https://www.radiotequila.ro/wp-content/uploads/2023/11/logo.png",
+ "votes": 202,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "dcae60bc-ffb7-403b-9a42-30be18b42fc0"
+ },
+ {
+ "id": "8b732d36-178f-4018-b42c-227d5da6267d",
+ "name": "Sibiu Radio -Sibiu 91.1 FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "local news",
+ "local radio",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://asculta.radiosibiu.ro:8443/RS",
+ "homepage": "https://radiosibiu.ro/",
+ "logoUrl": "https://radiosibiu.ro/wp-content/uploads/2020/07/radio_sibiu-768x540.png",
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8b732d36-178f-4018-b42c-227d5da6267d"
+ },
+ {
+ "id": "3e7745c9-ab52-4737-bce3-4f44198174bf",
+ "name": "Space Fm Dance",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "dance",
+ "dj",
+ "edm",
+ "electronic",
+ "house"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://spacefm.live/radio/8000/spacefm128",
+ "homepage": "https://spacefm.ro/",
+ "logoUrl": "https://spacefm.ro/wp-content/uploads/2022/04/Logo-alb.png",
+ "votes": 196,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e7745c9-ab52-4737-bce3-4f44198174bf"
+ },
+ {
+ "id": "4fd3e923-bb44-4209-91dc-f2e47e8defe1",
+ "name": "Activ România",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "dance",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/72xsfrg0bfhvv",
+ "homepage": "https://zeno.fm/radio/radioactivromania/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2F1QphutJNmGauWlV0y1JLiTGrJviGBJdUs5byl8DnKNc%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSUNJckphWW9nb01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSUNJbk0yVnR3c01vZ0VFZW1WdWJ3L2ltYWdlLz91cGRhdGVkPTE2ODE3Njk4MTMwMDA.webp&w=1920&q=100",
+ "votes": 34,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4fd3e923-bb44-4209-91dc-f2e47e8defe1"
+ },
+ {
+ "id": "214f3da4-7795-491e-b5e7-91a18b18d089",
+ "name": "Club Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english,romanian",
+ "tags": [
+ "club",
+ "dance",
+ "electronic",
+ "house"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://live.clubradio.ro/listen/clubradio/live",
+ "homepage": "https://clubradio.ro/",
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/0/132460.v3.png",
+ "votes": 24,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "214f3da4-7795-491e-b5e7-91a18b18d089"
+ },
+ {
+ "id": "a86e2000-1958-4bd3-965d-1ba8881cdc8f",
+ "name": "EBS | Electro",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://azura.ebsmedia.ro/listen/electro/electro128.mp3",
+ "homepage": "https://ebsradio.ro/",
+ "logoUrl": "https://ebsradio.ro/stream/img/stream-electro.png",
+ "votes": 51,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a86e2000-1958-4bd3-965d-1ba8881cdc8f"
+ },
+ {
+ "id": "5f793773-0b06-4bf1-b51d-c4bd9f80f672",
+ "name": "Eveniment FM Sibiu 103.2",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "dance",
+ "house",
+ "news",
+ "pop",
+ "populara",
+ "romanian"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.gofm.ro:2000/stream/eveniment",
+ "homepage": "https://evenimentfm.ro/",
+ "logoUrl": null,
+ "votes": 45,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5f793773-0b06-4bf1-b51d-c4bd9f80f672"
+ },
+ {
+ "id": "66cd5760-0907-4f1a-9431-dbb5d4c9d160",
+ "name": "Love Marilena Galați",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "dance",
+ "etno",
+ "manele",
+ "mixta",
+ "populară"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.sonicpanel.ro/8068/stream",
+ "homepage": "https://xat.com/Radio_Marilena_love",
+ "logoUrl": "https://www.radioexpert.net/radio-logo/romania/radio-love-marilena-186-gala%C8%9Bi-romania-320.jpg",
+ "votes": 33,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "66cd5760-0907-4f1a-9431-dbb5d4c9d160"
+ },
+ {
+ "id": "dafe7154-c2cd-4c53-bf41-fbfd746d7bee",
+ "name": "Magic FM Party Mix",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english,romanian",
+ "tags": [
+ "magic fm",
+ "party",
+ "party hits",
+ "partymix"
+ ],
+ "codec": "AAC",
+ "bitrate": 72,
+ "streamUrl": "https://live.kissfm.ro/magic.party.mix",
+ "homepage": "https://www.magicfm.ro/magic-party-mix",
+ "logoUrl": "https://api.magicfm.ro/resized/streams/2024/04/19/magic-party-mix-970ce8_12fcac544902ec61f67c046643468ec2.jpg?w=120&h=120&c=1",
+ "votes": 4,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "dafe7154-c2cd-4c53-bf41-fbfd746d7bee"
+ },
+ {
+ "id": "213c4d3a-8b38-404b-81de-5b5f1e726a25",
+ "name": "Radio Folclor",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "folclor",
+ "folk",
+ "muzică de petrecere",
+ "muzică populară",
+ "muzică românească",
+ "petrecere",
+ "populară",
+ "romanian",
+ "romanian music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ssl.omegahost.ro/8092/stream",
+ "homepage": "https://radiofolclor.ro/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s152191g.png",
+ "votes": 151,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "213c4d3a-8b38-404b-81de-5b5f1e726a25"
+ },
+ {
+ "id": "46d201ed-c61c-4a54-8c07-6a837f6014dc",
+ "name": "Radio Goldies",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "80s",
+ "90s",
+ "dance",
+ "oldies",
+ "pop",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://s10.streamingcloud.online/stream/13664",
+ "homepage": "https://www.radiogoldies.org/",
+ "logoUrl": "https://static.wixstatic.com/media/2bbd78_a51b1b16db544c5a8c15c35f3aa814dd~mv2.png/v1/fill/w_386,h_304,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/PicsArt_05-19-04_25_59.png",
+ "votes": 42,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "46d201ed-c61c-4a54-8c07-6a837f6014dc"
+ },
+ {
+ "id": "703952a3-580d-46fd-a97f-0a6d70266ab9",
+ "name": "Radio Vocea Speranței RVS",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "religious"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.rvs.ro/play",
+ "homepage": "https://rvs.ro/",
+ "logoUrl": "https://rvs.ro/imgs/logo.png",
+ "votes": 7,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "703952a3-580d-46fd-a97f-0a6d70266ab9"
+ },
+ {
+ "id": "39ad3c71-df68-4b64-a7de-23370c5bbcec",
+ "name": "Stil Mix -Radio Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/87sktrysmuqtv",
+ "homepage": "https://radiostilromania107.blogspot.com/",
+ "logoUrl": "https://app.radio.com.ro/v5/images/17365_radio.webp",
+ "votes": 7,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "39ad3c71-df68-4b64-a7de-23370c5bbcec"
+ },
+ {
+ "id": "87dc3921-6858-4d43-abd0-7417667324c5",
+ "name": "Tranquila Manele România",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radiotranquila.net:8032/stream",
+ "homepage": "https://radiotranquila.net/",
+ "logoUrl": "https://radiotranquila.net/wp-content/uploads/2022/11/RADIO-TRANQUILA-1.png",
+ "votes": 6,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "87dc3921-6858-4d43-abd0-7417667324c5"
+ },
+ {
+ "id": "7771bf6e-401f-42e5-b2a7-587670915b39",
+ "name": "TWIST -Radio Manele",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/stx4kwycmg0uv",
+ "homepage": "https://zeno.fm/radio/radio-manele-twist/",
+ "logoUrl": "https://zeno.fm/_ipx/_/https://images.zeno.fm/RD1pxTew1LH4dd8NmupjPAyUNWspT19R9iGtpe5sPbI/rs:fill:288:288/g:ce:0:0/aHR0cHM6Ly9wcm94eS56ZW5vLmZtL2NvbnRlbnQvc3RhdGlvbnMvYWd4emZucGxibTh0YzNSaGRITnlNZ3NTQ2tGMWRHaERiR2xsYm5RWWdJRFE3cmlUNlFzTUN4SU9VM1JoZEdsdmJsQnliMlpwYkdVWWdJRFE5c0gtaFFvTW9nRUVlbVZ1YncvaW1hZ2UvP3U9MTY2MDg1NTM3NzAwMA.webp",
+ "votes": 1,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7771bf6e-401f-42e5-b2a7-587670915b39"
+ },
+ {
+ "id": "bbfa7a05-bc27-411b-9e37-375184fec3be",
+ "name": "Valoare Radio -Manele Vechi",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele",
+ "manele vechi"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ssl.omegahost.ro/8000/stream",
+ "homepage": "https://radiovaloare.ro/",
+ "logoUrl": "https://radiovaloare.ro/wp-content/uploads/2021/08/cropped-Logo.png",
+ "votes": 9,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "bbfa7a05-bc27-411b-9e37-375184fec3be"
+ },
+ {
+ "id": "0be12ef3-8de9-497a-aee1-33e9489159d8",
+ "name": "Ade FM Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "hip-hop",
+ "manele",
+ "rap"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/rshamge8mgntv",
+ "homepage": "https://zeno.fm/radio/ade-fm-wmvd/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2FipUeZVbK-qD3vgkWcgNXnJX9B7w3CAB7lmPcVB86NRg%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zLzRiNTgyMGRlLWNkMTItNGRjOS05Nzg3LTRhYWM2MTI4MTZkMC9pbWFnZS8_dXBkYXRlZD0xNjgxOTM4MDAxMDAw.webp&w=1920&q=100",
+ "votes": 17,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0be12ef3-8de9-497a-aee1-33e9489159d8"
+ },
+ {
+ "id": "29608d24-dda0-446d-a691-dc05ac8d6ec1",
+ "name": "Ambiento",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "ambient",
+ "chillout",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ambiento-adradio.radioca.st/128",
+ "homepage": "https://ambientoradio.com/",
+ "logoUrl": null,
+ "votes": 101,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "29608d24-dda0-446d-a691-dc05ac8d6ec1"
+ },
+ {
+ "id": "5b6ed30b-82bf-4cb4-bd50-e966868cd8fc",
+ "name": "Aripi Spre Cer Predici",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://predici.aac.aripisprecer.ro/radio.mp3",
+ "homepage": "https://www.aripisprecer.ro/",
+ "logoUrl": "https://www.aripisprecer.ro/upd/2020/11/cropped-logo-aripi-bg-rosu-logo-alb-192x192.png",
+ "votes": 19,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5b6ed30b-82bf-4cb4-bd50-e966868cd8fc"
+ },
+ {
+ "id": "5340dba1-bf4a-4e7a-92fb-b7b53c2bc089",
+ "name": "Dark Edge Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "alternative",
+ "indie"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.darkedge.ro:8002/stream/1/",
+ "homepage": "https://darkedge.ro/",
+ "logoUrl": "https://darkedge.ro/logo.svg",
+ "votes": 112,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5340dba1-bf4a-4e7a-92fb-b7b53c2bc089"
+ },
+ {
+ "id": "9d4412a0-475f-4eaa-92b5-ca6bc4442c24",
+ "name": "Erdélyi Magyar Rádió",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "hungarian",
+ "tags": [
+ "amateur radio",
+ "classic hits",
+ "pop rock",
+ "regional",
+ "retro"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://adas.erdelyimagyarradio.eu:8443/emr",
+ "homepage": "https://erdelyimagyarradio.eu/",
+ "logoUrl": "https://s02.diazol.hu:633/covers/qeyvepyd/nocover.png",
+ "votes": 17,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9d4412a0-475f-4eaa-92b5-ca6bc4442c24"
+ },
+ {
+ "id": "21292a8b-9ff6-45b6-8e54-618d8d8b8ab3",
+ "name": "Free FM Rock București",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english uk,romanian,spanish",
+ "tags": [
+ "#"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://freefmrock.radioca.st/stream",
+ "homepage": "http://freefmrock.com/",
+ "logoUrl": null,
+ "votes": 83,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "21292a8b-9ff6-45b6-8e54-618d8d8b8ab3"
+ },
+ {
+ "id": "2d9f5e3b-9d69-426e-93e3-70d5f03af07e",
+ "name": "Jurnal FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ssl.radios.show:7009/stream/",
+ "homepage": "https://jurnalfm.ro/tag/moinesti/#",
+ "logoUrl": "https://jurnalfm.ro/wp-content/uploads/2020/02/jurnal-fm-logo-fara-fereastra-300x103.png",
+ "votes": 22,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2d9f5e3b-9d69-426e-93e3-70d5f03af07e"
+ },
+ {
+ "id": "ac374ffc-407d-4448-af2d-193a2c708430",
+ "name": "Kiss Millenium Hits",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "00s"
+ ],
+ "codec": "AAC",
+ "bitrate": 80,
+ "streamUrl": "https://live.kissfm.ro/milleniumhits",
+ "homepage": "https://www.kissfm.ro/",
+ "logoUrl": "https://www.kissfm.ro/apple-touch-icon.png",
+ "votes": 59,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ac374ffc-407d-4448-af2d-193a2c708430"
+ },
+ {
+ "id": "9f6625fe-b0a4-4f27-a876-fe53d7460226",
+ "name": "Magic FM 80s HIts",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english,romanian",
+ "tags": [
+ "1980s",
+ "80's",
+ "80s",
+ "the best of 80's"
+ ],
+ "codec": "AAC",
+ "bitrate": 72,
+ "streamUrl": "https://live.kissfm.ro/Magic-80s",
+ "homepage": "https://www.magicfm.ro/magic-80s-hits",
+ "logoUrl": "https://api.magicfm.ro/resized/streams/2024/04/19/magic-80s-hits-1e54d0_663a0daa2427fb8374951086d4b03106.jpg?w=120&h=120&c=1",
+ "votes": 9,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9f6625fe-b0a4-4f27-a876-fe53d7460226"
+ },
+ {
+ "id": "a89adf47-b311-4c2b-afbd-611dca3b1140",
+ "name": "Magic FM Love",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "english,romanian",
+ "tags": [
+ "classic",
+ "love",
+ "love radio",
+ "love songs",
+ "magic fm",
+ "romantic",
+ "romantic music"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://dc.digi.live.kissfm.ro/magiclove",
+ "homepage": "https://www.magicfm.ro/magic-love",
+ "logoUrl": "https://api.magicfm.ro/resized/streams/2025/02/02/magic-love-941500_47c3934c256efc85b54b9442adaf0cb3.jpg?w=120&h=120&c=1",
+ "votes": 2,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "a89adf47-b311-4c2b-afbd-611dca3b1140"
+ },
+ {
+ "id": "e455cc17-efcf-4575-8a3c-42feee4412a6",
+ "name": "Nostalgia Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "00s",
+ "1990s",
+ "2000s",
+ "90s",
+ "dance",
+ "disco",
+ "future",
+ "pop",
+ "retro"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://live.radionostalgia.ro:8443/nostalgia.aac",
+ "homepage": "https://radionostalgia.ro/",
+ "logoUrl": "https://scontent.fomr1-1.fna.fbcdn.net/v/t39.30808-6/627364033_122120835507135558_4839808635265310328_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=1d70fc&_nc_ohc=oNgJ-q1cQvEQ7kNvwEiJ0SD&_nc_oc=AdllDPp35K7WFNgLJW4rhENvCpAmgowGPkmK_56oOT7VC2KX0e8lXELYM6a9P6XDync&_nc_zt=23&_nc_ht=scontent.fomr1-1.fna&_nc_gid=O4-UTKUsWejdzbT_gTIzMw&oh=00_AfsqV7dr3QenRPDckeb6Tme-NrPB1rfFZYMiHO5xvRYXzQ&oe=699F4E7F",
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e455cc17-efcf-4575-8a3c-42feee4412a6"
+ },
+ {
+ "id": "ef18816d-31b6-4e0f-9da5-6297244b0e53",
+ "name": "RADAIO ROMANCE21.ROMANIA",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.rcast.net/200392",
+ "homepage": "https://www.radioromance21.ro/",
+ "logoUrl": null,
+ "votes": 1200,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ef18816d-31b6-4e0f-9da5-6297244b0e53"
+ },
+ {
+ "id": "0d7cab56-57bb-46d0-bc83-335cdc3dc7e4",
+ "name": "Radio Etno Mania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "folk",
+ "muzică populară",
+ "petrecere",
+ "populară"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.sonicpanel.ro:9300/",
+ "homepage": "https://radioetnomania.com/",
+ "logoUrl": null,
+ "votes": 410,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0d7cab56-57bb-46d0-bc83-335cdc3dc7e4"
+ },
+ {
+ "id": "2578d606-817d-4b3f-98e6-44ed4151c553",
+ "name": "Radio Folclor Buzau",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [
+ "folk",
+ "muzică de petrecere",
+ "muzică populară",
+ "petrecere",
+ "populară",
+ "romanian",
+ "romanian music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radiofolclorbuzaufm.ro:8910/stream",
+ "homepage": "https://www.radiofolclorbuzaufm.ro/",
+ "logoUrl": null,
+ "votes": 49,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2578d606-817d-4b3f-98e6-44ed4151c553"
+ },
+ {
+ "id": "1a2c9de3-ae45-4f09-b7d6-0c8a55bd6f97",
+ "name": "Rádió GaGa Gold",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "hungarian",
+ "tags": [
+ "gold",
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://a2.asurahosting.com:7020/radio.mp3?1741449673",
+ "homepage": "https://www.radiogaga.ro/",
+ "logoUrl": "https://www.radiogaga.ro/wp-content/themes/sounder-child/images/GaGa_Logo_GOLD.jpg",
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "1a2c9de3-ae45-4f09-b7d6-0c8a55bd6f97"
+ },
+ {
+ "id": "5c063d2e-79a3-4767-853e-b8bf841f7dc7",
+ "name": "RadioPitesteanuRomania",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://free.rcast.net/246157",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 29,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5c063d2e-79a3-4767-853e-b8bf841f7dc7"
+ },
+ {
+ "id": "125ad775-4045-420c-bfa3-c20057db6512",
+ "name": "Smile FM Romania -Călărași-Oltenița",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "manele"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/eexnxpddu0hvv",
+ "homepage": "https://www.facebook.com/p/Radio-Smile-Fm-Romania-100047190047889/",
+ "logoUrl": "https://scontent.fotp3-4.fna.fbcdn.net/v/t39.30808-1/471662606_1222675165982140_3611377140740790210_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=108&ccb=1-7&_nc_sid=2d3e12&_nc_ohc=zF7zA6spVMkQ7kNvwHYcOSY&_nc_oc=AdnuUeTt4a5dgT-TIpuRroy-sOHSGV5woZtDxNLQSL-MIsbBotZjw-UfpHRFBchwMVtjBU_fWAKHhj729mNw0g-T&_nc_zt=24&_nc_ht=scontent.fotp3-4.fna&_nc_gid=b7Eg6ez3oG3n9v7BvI6RWQ&oh=00_Afv_6Y3fGYdbqHsF4nWpz3sqKXc5c5_ilmoRPug3MGM4YA&oe=69A26A95",
+ "votes": 0,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "125ad775-4045-420c-bfa3-c20057db6512"
+ },
+ {
+ "id": "5eeb1b61-9472-4305-90ce-c6afe9d429d8",
+ "name": "Soft Rock Radio",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romania",
+ "tags": [
+ "70s soft rock",
+ "80s rock",
"classic rock",
- "punk rock",
"rock"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://25633.live.streamtheworld.com/RADIO_ROCK.mp3",
- "homepage": "https://rockradio.pl/",
- "logoUrl": "https://gfx.rockradio.pl/extension/rockradio/design/standard/images/favicon/apple-touch-icon.png",
- "votes": 7,
- "clickcount": 3,
+ "streamUrl": "https://gold.streamguys1.com/softrock.mp3",
+ "homepage": "https://www.softrockradio.net/",
+ "logoUrl": "https://www.softrockradio.net//__static/7e0109940c663c93eeb2e016930c4613/srr-sm.jpg",
+ "votes": 10,
+ "clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "17f569d6-46e4-4bd1-9c54-c5d37e7fd3b4"
+ "sourceStationUuid": "5eeb1b61-9472-4305-90ce-c6afe9d429d8"
+ },
+ {
+ "id": "2ab0f5db-f677-11e9-bbf2-52543be04c81",
+ "name": "Super FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "romanian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.superfm.ro/stream.mp3",
+ "homepage": "https://superfm.ro/",
+ "logoUrl": null,
+ "votes": 1316,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2ab0f5db-f677-11e9-bbf2-52543be04c81"
+ },
+ {
+ "id": "85160a6a-7bd3-4a7b-b1c8-1f6fa57841db",
+ "name": "Szépvíz FM",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "hungarian",
+ "tags": [
+ "local news",
+ "top hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://szepvizfm.ro:8000/stream",
+ "homepage": "https://szepvizfm.ro/",
+ "logoUrl": "https://onlinestream.live/logos/3266.png",
+ "votes": 31,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "85160a6a-7bd3-4a7b-b1c8-1f6fa57841db"
+ },
+ {
+ "id": "0461bd47-c4b9-4f93-b057-1e03039a02d6",
+ "name": "TWIST -Radio Trap",
+ "country": "Romania",
+ "countryCode": "RO",
+ "language": "românä",
+ "tags": [
+ "romanian trap",
+ "trap"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/9dhe4r7upg8uv",
+ "homepage": "https://zeno.fm/radio/radio-trap-twist/",
+ "logoUrl": "https://zeno.fm/_next/image/?url=https%3A%2F%2Fimages.zeno.fm%2Fh3proKiqAORLmJMZPaMlNZVimSUyWy0TC-jdiVgHdEs%2Frs%3Afit%3A240%3A240%2Fg%3Ace%3A0%3A0%2FaHR0cHM6Ly9zdHJlYW0tdG9vbHMuemVub21lZGlhLmNvbS9jb250ZW50L3N0YXRpb25zL2FneHpmbnBsYm04dGMzUmhkSE55TWdzU0NrRjFkR2hEYkdsbGJuUVlnSURRN3JpVDZRc01DeElPVTNSaGRHbHZibEJ5YjJacGJHVVlnSURRaTRhY21Ba01vZ0VFZW1WdWJ3L2ltYWdlLz91cGRhdGVkPTE2NjE2NzQxNjcwMDA.webp&w=1920&q=100",
+ "votes": 30,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "0461bd47-c4b9-4f93-b057-1e03039a02d6"
},
{
"id": "c97e2821-9f9e-4ee3-b043-25823e459832",
@@ -20855,44 +47716,10 @@
"homepage": "https://www.okradio.net/",
"logoUrl": "https://www.okradio.net/wp-content/uploads/2021/11/ok-logo-m.png",
"votes": 9697,
- "clickcount": 35,
+ "clickcount": 33,
"source": "radio-browser",
"sourceStationUuid": "c97e2821-9f9e-4ee3-b043-25823e459832"
},
- {
- "id": "a8dabf9f-2b7f-4bad-bc80-f54cbe8d52ca",
- "name": "Naxi ExYu Radio",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://naxidigital-exyu128ssl.streaming.rs:8242/;stream.nsv",
- "homepage": "https://www.naxi.rs/exyu",
- "logoUrl": null,
- "votes": 2872,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "a8dabf9f-2b7f-4bad-bc80-f54cbe8d52ca"
- },
- {
- "id": "72a0c58a-54e6-43da-b493-b0e38baa9867",
- "name": "Radio Beograd 202",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [],
- "codec": "UNKNOWN",
- "bitrate": 128,
- "streamUrl": "https://rtsradio-live.morescreens.com/RTS_2_004/playlist.m3u8",
- "homepage": "https://www.rts.rs/page/radio/sr/live.html",
- "logoUrl": null,
- "votes": 1313,
- "clickcount": 22,
- "source": "radio-browser",
- "sourceStationUuid": "72a0c58a-54e6-43da-b493-b0e38baa9867"
- },
{
"id": "9da085e5-e818-4f67-a35b-5adcac125ede",
"name": "Radio Karolina",
@@ -20906,10 +47733,44 @@
"homepage": "https://player.karolina.rs/",
"logoUrl": "https://player.karolina.rs/img/CD/cd-karolina.png",
"votes": 235,
- "clickcount": 22,
+ "clickcount": 24,
"source": "radio-browser",
"sourceStationUuid": "9da085e5-e818-4f67-a35b-5adcac125ede"
},
+ {
+ "id": "72a0c58a-54e6-43da-b493-b0e38baa9867",
+ "name": "Radio Beograd 202",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 128,
+ "streamUrl": "https://rtsradio-live.morescreens.com/RTS_2_004/playlist.m3u8",
+ "homepage": "https://www.rts.rs/page/radio/sr/live.html",
+ "logoUrl": null,
+ "votes": 1313,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "72a0c58a-54e6-43da-b493-b0e38baa9867"
+ },
+ {
+ "id": "a8dabf9f-2b7f-4bad-bc80-f54cbe8d52ca",
+ "name": "Naxi ExYu Radio",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://naxidigital-exyu128ssl.streaming.rs:8242/;stream.nsv",
+ "homepage": "https://www.naxi.rs/exyu",
+ "logoUrl": null,
+ "votes": 2872,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "a8dabf9f-2b7f-4bad-bc80-f54cbe8d52ca"
+ },
{
"id": "f25df3be-0f73-42a4-8e49-a6af07e8f433",
"name": "Naxi 80-e Radio",
@@ -20923,7 +47784,7 @@
"homepage": "https://www.naxi.rs/80e",
"logoUrl": null,
"votes": 1376,
- "clickcount": 18,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "f25df3be-0f73-42a4-8e49-a6af07e8f433"
},
@@ -20944,7 +47805,7 @@
"homepage": "https://tdiradio.com/",
"logoUrl": "https://tdiradio.com/wp-content/uploads/2022/05/TDI-crna-Logo-png-e1647953245156.png",
"votes": 158,
- "clickcount": 15,
+ "clickcount": 16,
"source": "radio-browser",
"sourceStationUuid": "01ca5438-74ce-42e8-892e-a71b85b3f3af"
},
@@ -20961,7 +47822,7 @@
"homepage": "https://www.radios.rs/digitalni-radio/18/narodni",
"logoUrl": null,
"votes": 2764,
- "clickcount": 12,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "fa0f6975-f097-4b61-89af-27f86bb69d19"
},
@@ -21038,23 +47899,6 @@
"source": "radio-browser",
"sourceStationUuid": "83aee402-c381-458e-b471-16a806e8dd69"
},
- {
- "id": "4fd158f6-7f93-43fd-b209-79d17826390d",
- "name": "Radio 021 100% domaće",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://centova.dukahosting.com/proxy/021domaca/stream",
- "homepage": "https://radio021.rs/station/100-posto-domace/",
- "logoUrl": "https://radio021.rs/wp-content/uploads/2021/07/logo.png",
- "votes": 34,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "4fd158f6-7f93-43fd-b209-79d17826390d"
- },
{
"id": "2db4c101-02d8-4c92-8974-871ac5a4f8f3",
"name": "Naxi Cafe Radio",
@@ -21072,6 +47916,23 @@
"source": "radio-browser",
"sourceStationUuid": "2db4c101-02d8-4c92-8974-871ac5a4f8f3"
},
+ {
+ "id": "00f796ae-9ccb-4235-8c99-9c80b556ff16",
+ "name": "Radio 021",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 80,
+ "streamUrl": "https://radio.dukahosting.com/8006/stream",
+ "homepage": "https://radio021.rs/",
+ "logoUrl": null,
+ "votes": 196,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "00f796ae-9ccb-4235-8c99-9c80b556ff16"
+ },
{
"id": "6205f52c-7df3-426c-b2be-d62506c2fdd8",
"name": "Đorđe Balašević",
@@ -21129,43 +47990,21 @@
"sourceStationUuid": "5f1c7718-f877-435c-8511-11ee851658b5"
},
{
- "id": "00f796ae-9ccb-4235-8c99-9c80b556ff16",
- "name": "Radio 021",
+ "id": "4fd158f6-7f93-43fd-b209-79d17826390d",
+ "name": "Radio 021 100% domaće",
"country": "Serbia",
"countryCode": "RS",
"language": "serbian",
"tags": [],
- "codec": "AAC+",
- "bitrate": 80,
- "streamUrl": "https://radio.dukahosting.com/8006/stream",
- "homepage": "https://radio021.rs/",
- "logoUrl": null,
- "votes": 196,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "00f796ae-9ccb-4235-8c99-9c80b556ff16"
- },
- {
- "id": "1fd1da76-f0a8-4dfc-a208-baa9755cff86",
- "name": "Radio IN Beograd",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "folk",
- "music",
- "pop",
- "world music"
- ],
"codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://radio3-64ssl.streaming.rs:9212/;*.mp3",
- "homepage": "https://www.radioinbeograd.rs/",
- "logoUrl": "https://www.radioinbeograd.rs/favicon.ico",
- "votes": 1747,
+ "bitrate": 128,
+ "streamUrl": "https://centova.dukahosting.com/proxy/021domaca/stream",
+ "homepage": "https://radio021.rs/station/100-posto-domace/",
+ "logoUrl": "https://radio021.rs/wp-content/uploads/2021/07/logo.png",
+ "votes": 34,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "1fd1da76-f0a8-4dfc-a208-baa9755cff86"
+ "sourceStationUuid": "4fd158f6-7f93-43fd-b209-79d17826390d"
},
{
"id": "b9a14f65-9e0e-45bb-9556-7b635e93f01f",
@@ -21206,48 +48045,57 @@
"sourceStationUuid": "8919e72b-2fba-4130-a2ff-aa141742fdb0"
},
{
- "id": "535eea60-bbf7-4139-8057-1f1d69f0d41b",
- "name": "mr.chem fm",
+ "id": "dd6ef396-b24c-46b6-af9a-05f4ef18ffe7",
+ "name": "Radio Beograd 1",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://rtsradio-live.morescreens.com/RTS_2_001/audio/chunklist.m3u8",
+ "homepage": "https://www.rts.rs/page/radio/sr/live.html",
+ "logoUrl": null,
+ "votes": 3028,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "dd6ef396-b24c-46b6-af9a-05f4ef18ffe7"
+ },
+ {
+ "id": "02287fc6-245a-4260-9593-005a31352b81",
+ "name": "Radio JAT",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://streaming.tdiradio.com/radiojat.mp3",
+ "homepage": "https://player.radiojat.rs/",
+ "logoUrl": "https://player.radiojat.rs/img/CD/cd-jat.png",
+ "votes": 35,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "02287fc6-245a-4260-9593-005a31352b81"
+ },
+ {
+ "id": "db4feb1f-93ad-418d-8124-2896035429d3",
+ "name": "Rock Radio Beograd",
"country": "Serbia",
"countryCode": "RS",
"language": null,
"tags": [
- "chillout",
- "downtempo",
- "electro",
- "electronic",
- "house",
- "techno"
+ "rock"
],
"codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://e20.yesstreaming.net:6217/stream",
- "homepage": "https://www.mrchem-fm.com/",
- "logoUrl": "https://ptpimg.me/25mrpr.jpg",
- "votes": 21,
- "clickcount": 5,
+ "bitrate": 192,
+ "streamUrl": "https://edge9.pink.rs/rockstream/",
+ "homepage": "https://rockradio.rs/",
+ "logoUrl": null,
+ "votes": 931,
+ "clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "535eea60-bbf7-4139-8057-1f1d69f0d41b"
- },
- {
- "id": "3fcfaab2-dd6d-4616-bc1f-5000f1519822",
- "name": "NAŠ MM Radio 97.8",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "folk",
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://radio.dukahosting.com:7045/stream",
- "homepage": "https://nasradiomm.com/",
- "logoUrl": "https://nasradiomm.com/wp-content/uploads/2023/12/cropped-logo-nas-radio-MM-png.png",
- "votes": 15,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "3fcfaab2-dd6d-4616-bc1f-5000f1519822"
+ "sourceStationUuid": "db4feb1f-93ad-418d-8124-2896035429d3"
},
{
"id": "3a8e8dd4-dcce-4e9c-b2ad-7696c2bd6313",
@@ -21269,55 +48117,26 @@
"sourceStationUuid": "3a8e8dd4-dcce-4e9c-b2ad-7696c2bd6313"
},
{
- "id": "1b1f0fc3-8b03-461e-bd68-cb07987d58a1",
- "name": "Naxi Kids Radio",
+ "id": "1fd1da76-f0a8-4dfc-a208-baa9755cff86",
+ "name": "Radio IN Beograd",
"country": "Serbia",
"countryCode": "RS",
"language": "serbian",
- "tags": [],
+ "tags": [
+ "folk",
+ "music",
+ "pop",
+ "world music"
+ ],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://naxidigital-kids128ssl.streaming.rs:8052/;",
- "homepage": null,
- "logoUrl": null,
- "votes": 57,
+ "bitrate": 64,
+ "streamUrl": "https://radio3-64ssl.streaming.rs:9212/;*.mp3",
+ "homepage": "https://www.radioinbeograd.rs/",
+ "logoUrl": "https://www.radioinbeograd.rs/favicon.ico",
+ "votes": 1747,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "1b1f0fc3-8b03-461e-bd68-cb07987d58a1"
- },
- {
- "id": "dd6ef396-b24c-46b6-af9a-05f4ef18ffe7",
- "name": "Radio Beograd 1",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [],
- "codec": "UNKNOWN",
- "bitrate": 0,
- "streamUrl": "https://rtsradio-live.morescreens.com/RTS_2_001/audio/chunklist.m3u8",
- "homepage": "https://www.rts.rs/page/radio/sr/live.html",
- "logoUrl": null,
- "votes": 3028,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "dd6ef396-b24c-46b6-af9a-05f4ef18ffe7"
- },
- {
- "id": "02287fc6-245a-4260-9593-005a31352b81",
- "name": "Radio JAT",
- "country": "Serbia",
- "countryCode": "RS",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://streaming.tdiradio.com/radiojat.mp3",
- "homepage": "https://player.radiojat.rs/",
- "logoUrl": "https://player.radiojat.rs/img/CD/cd-jat.png",
- "votes": 35,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "02287fc6-245a-4260-9593-005a31352b81"
+ "sourceStationUuid": "1fd1da76-f0a8-4dfc-a208-baa9755cff86"
},
{
"id": "6fe2696f-5df9-4b5e-bf12-1ad3ad0d0141",
@@ -21375,23 +48194,23 @@
"sourceStationUuid": "e6c98f7a-865a-4e38-bc77-872262bb4d2a"
},
{
- "id": "db4feb1f-93ad-418d-8124-2896035429d3",
- "name": "Rock Radio Beograd",
+ "id": "0827bb1f-a4f6-417c-b68e-5f5ecbc87a39",
+ "name": "Radio Šumadinac Narodna",
"country": "Serbia",
"countryCode": "RS",
- "language": null,
+ "language": "serbian",
"tags": [
- "rock"
+ "narodna - etno"
],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://edge9.pink.rs/rockstream/",
- "homepage": "https://rockradio.rs/",
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://media.srb-streaming.com/stream/radio-sumadinac-narodna",
+ "homepage": "https://www.radiosumadinac.org/forum.php",
"logoUrl": null,
- "votes": 931,
+ "votes": 195,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "db4feb1f-93ad-418d-8124-2896035429d3"
+ "sourceStationUuid": "0827bb1f-a4f6-417c-b68e-5f5ecbc87a39"
},
{
"id": "8d8f7715-aed4-4041-8b8c-ccf126c86c55",
@@ -21410,26 +48229,6 @@
"source": "radio-browser",
"sourceStationUuid": "8d8f7715-aed4-4041-8b8c-ccf126c86c55"
},
- {
- "id": "1673623d-4732-4798-ba23-a345bf31e73f",
- "name": "Zrenjanin 103.6",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "exyu",
- "folk"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://radio.dukahosting.com:7031/stream",
- "homepage": "https://radiozrenjanin.rs/",
- "logoUrl": "https://radiozrenjanin.rs/wp-content/uploads/2024/11/LOGO-RADIO-ZRENJANIN.png",
- "votes": 21,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "1673623d-4732-4798-ba23-a345bf31e73f"
- },
{
"id": "5ac13e6f-3d5b-4312-ab5e-3ec6c1149824",
"name": "021 caffe",
@@ -21466,6 +48265,30 @@
"source": "radio-browser",
"sourceStationUuid": "c99a96bd-2ebe-4b52-a3b6-3dd9f40202ee"
},
+ {
+ "id": "535eea60-bbf7-4139-8057-1f1d69f0d41b",
+ "name": "mr.chem fm",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": null,
+ "tags": [
+ "chillout",
+ "downtempo",
+ "electro",
+ "electronic",
+ "house",
+ "techno"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://e20.yesstreaming.net:6217/stream",
+ "homepage": "https://www.mrchem-fm.com/",
+ "logoUrl": "https://ptpimg.me/25mrpr.jpg",
+ "votes": 21,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "535eea60-bbf7-4139-8057-1f1d69f0d41b"
+ },
{
"id": "bf3946c0-5a9d-4b8a-b73c-e2f86fe2c55b",
"name": "Nas Radio 107,80 Zabalj",
@@ -21484,38 +48307,21 @@
"sourceStationUuid": "bf3946c0-5a9d-4b8a-b73c-e2f86fe2c55b"
},
{
- "id": "d24a5ee7-4e67-4670-bc7b-957ebb39705b",
- "name": "Naxi ex YU",
- "country": "Serbia",
- "countryCode": "RS",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://naxidigital-exyu128ssl.streaming.rs:8242/",
- "homepage": null,
- "logoUrl": null,
- "votes": 3,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "d24a5ee7-4e67-4670-bc7b-957ebb39705b"
- },
- {
- "id": "0e053aac-8590-44cb-aa3c-a11e68a64ff8",
- "name": "Naxi House Radio",
+ "id": "1b1f0fc3-8b03-461e-bd68-cb07987d58a1",
+ "name": "Naxi Kids Radio",
"country": "Serbia",
"countryCode": "RS",
"language": "serbian",
"tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://naxidigital-house128ssl.streaming.rs:8002/;",
- "homepage": "https://www.naxi.rs/house",
+ "streamUrl": "https://naxidigital-kids128ssl.streaming.rs:8052/;",
+ "homepage": null,
"logoUrl": null,
- "votes": 289,
+ "votes": 57,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "0e053aac-8590-44cb-aa3c-a11e68a64ff8"
+ "sourceStationUuid": "1b1f0fc3-8b03-461e-bd68-cb07987d58a1"
},
{
"id": "92a86a74-439b-46f6-b85d-b843641ba5e6",
@@ -21587,28 +48393,6 @@
"source": "radio-browser",
"sourceStationUuid": "d330d0b5-cd47-448b-a31a-6beba8523f02"
},
- {
- "id": "57293139-b44f-43e4-89a6-93a262f503bf",
- "name": "Radio S4",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "dance",
- "house",
- "pop",
- "rock"
- ],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://stream.radios.rs:9006/;",
- "homepage": "https://www.radios.rs/radio/21/radio-s4",
- "logoUrl": "https://www.radios.rs/media/footerlogo/s4.png",
- "votes": 4,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "57293139-b44f-43e4-89a6-93a262f503bf"
- },
{
"id": "824327cd-2a17-4970-901a-6ffcf76e8e48",
"name": "Radio Šumadinac Južni Vetar",
@@ -21628,25 +48412,6 @@
"source": "radio-browser",
"sourceStationUuid": "824327cd-2a17-4970-901a-6ffcf76e8e48"
},
- {
- "id": "0827bb1f-a4f6-417c-b68e-5f5ecbc87a39",
- "name": "Radio Šumadinac Narodna",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "narodna - etno"
- ],
- "codec": "AAC+",
- "bitrate": 128,
- "streamUrl": "https://media.srb-streaming.com/stream/radio-sumadinac-narodna",
- "homepage": "https://www.radiosumadinac.org/forum.php",
- "logoUrl": null,
- "votes": 195,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "0827bb1f-a4f6-417c-b68e-5f5ecbc87a39"
- },
{
"id": "2fc5631b-1e93-400d-8a85-496d2b0589db",
"name": "Rock Radio Belgrade (Рок Радио Београд)",
@@ -21664,6 +48429,26 @@
"source": "radio-browser",
"sourceStationUuid": "2fc5631b-1e93-400d-8a85-496d2b0589db"
},
+ {
+ "id": "1673623d-4732-4798-ba23-a345bf31e73f",
+ "name": "Zrenjanin 103.6",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [
+ "exyu",
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.dukahosting.com:7031/stream",
+ "homepage": "https://radiozrenjanin.rs/",
+ "logoUrl": "https://radiozrenjanin.rs/wp-content/uploads/2024/11/LOGO-RADIO-ZRENJANIN.png",
+ "votes": 21,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "1673623d-4732-4798-ba23-a345bf31e73f"
+ },
{
"id": "72a04ab0-d747-4c0d-b93e-f2ecb6cdf661",
"name": "РТС - Радио Београд - 202",
@@ -21685,25 +48470,6 @@
"source": "radio-browser",
"sourceStationUuid": "72a04ab0-d747-4c0d-b93e-f2ecb6cdf661"
},
- {
- "id": "296339f7-2b7b-4001-9ae2-37c573d36975",
- "name": "Buca",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "folk"
- ],
- "codec": "MP3",
- "bitrate": 160,
- "streamUrl": "https://live.bucaradio.com/",
- "homepage": "https://bucaradio.com/slusaj_uzivo.html",
- "logoUrl": "null",
- "votes": 73,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "296339f7-2b7b-4001-9ae2-37c573d36975"
- },
{
"id": "8891326d-ec93-4706-85d3-e5230f03607d",
"name": "Bum Bum Radio",
@@ -21721,23 +48487,6 @@
"source": "radio-browser",
"sourceStationUuid": "8891326d-ec93-4706-85d3-e5230f03607d"
},
- {
- "id": "d3e6447f-a999-4469-bbb2-f001d7c1dc6c",
- "name": "Focus Radio",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://streamer.radio.co/s34d2c17d8/listen",
- "homepage": null,
- "logoUrl": null,
- "votes": 68,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "d3e6447f-a999-4469-bbb2-f001d7c1dc6c"
- },
{
"id": "8ccccd58-1053-4e05-aa7a-daaa41336b87",
"name": "Mugadavanje",
@@ -21757,6 +48506,26 @@
"source": "radio-browser",
"sourceStationUuid": "8ccccd58-1053-4e05-aa7a-daaa41336b87"
},
+ {
+ "id": "3fcfaab2-dd6d-4616-bc1f-5000f1519822",
+ "name": "NAŠ MM Radio 97.8",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [
+ "folk",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.dukahosting.com:7045/stream",
+ "homepage": "https://nasradiomm.com/",
+ "logoUrl": "https://nasradiomm.com/wp-content/uploads/2023/12/cropped-logo-nas-radio-MM-png.png",
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3fcfaab2-dd6d-4616-bc1f-5000f1519822"
+ },
{
"id": "b6c5a106-4ea9-4751-a406-42b477033ec8",
"name": "Naxi",
@@ -21797,6 +48566,23 @@
"source": "radio-browser",
"sourceStationUuid": "02c3c046-8809-4ca9-9110-dfec2c45b51a"
},
+ {
+ "id": "d24a5ee7-4e67-4670-bc7b-957ebb39705b",
+ "name": "Naxi ex YU",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://naxidigital-exyu128ssl.streaming.rs:8242/",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "d24a5ee7-4e67-4670-bc7b-957ebb39705b"
+ },
{
"id": "ca4f9d92-a5a7-4be3-b1e0-15020cfc7231",
"name": "Naxi Gold Radio",
@@ -21814,6 +48600,23 @@
"source": "radio-browser",
"sourceStationUuid": "ca4f9d92-a5a7-4be3-b1e0-15020cfc7231"
},
+ {
+ "id": "0e053aac-8590-44cb-aa3c-a11e68a64ff8",
+ "name": "Naxi House Radio",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://naxidigital-house128ssl.streaming.rs:8002/;",
+ "homepage": "https://www.naxi.rs/house",
+ "logoUrl": null,
+ "votes": 289,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e053aac-8590-44cb-aa3c-a11e68a64ff8"
+ },
{
"id": "a5caf186-4062-45e9-b4df-6822d7b26aee",
"name": "Psychedelic Travel Radio",
@@ -21854,23 +48657,6 @@
"source": "radio-browser",
"sourceStationUuid": "8e486586-7c30-4071-a000-112bec4e3387"
},
- {
- "id": "8072d8fd-036d-4131-8205-3880d66dfed8",
- "name": "Radio Balkan Zabavna",
- "country": "Serbia",
- "countryCode": "RS",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://radiobalkan.live/radio/live/zabavna.mp3",
- "homepage": "https://radiobalkan.live/",
- "logoUrl": null,
- "votes": 236,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "8072d8fd-036d-4131-8205-3880d66dfed8"
- },
{
"id": "9c18ea0b-42b7-433f-b497-5ee68973f217",
"name": "Radio Kolubara Lajkovac",
@@ -21910,25 +48696,6 @@
"source": "radio-browser",
"sourceStationUuid": "0e0d15ed-2e2f-4b81-ac37-d20172966959"
},
- {
- "id": "b8eed0cc-84c9-4365-a13d-5cfd2b57d088",
- "name": "Radio S2 - Index radio",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "pop - zabavna"
- ],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://stream.radios.rs:9002/;",
- "homepage": "https://www.radios.rs/",
- "logoUrl": "https://www.radios.rs/images/radios/favicon/apple-icon-120x120.png",
- "votes": 51,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "b8eed0cc-84c9-4365-a13d-5cfd2b57d088"
- },
{
"id": "99eab096-d331-4a4f-9f8f-5e864710d853",
"name": "Radio S3",
@@ -21965,6 +48732,45 @@
"source": "radio-browser",
"sourceStationUuid": "06a9bb6a-7be3-43b8-92d9-f3b3f5c38b96"
},
+ {
+ "id": "57293139-b44f-43e4-89a6-93a262f503bf",
+ "name": "Radio S4",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [
+ "dance",
+ "house",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://stream.radios.rs:9006/;",
+ "homepage": "https://www.radios.rs/radio/21/radio-s4",
+ "logoUrl": "https://www.radios.rs/media/footerlogo/s4.png",
+ "votes": 4,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "57293139-b44f-43e4-89a6-93a262f503bf"
+ },
+ {
+ "id": "da5f8fc8-6e8a-4d7d-bad7-e9ea957d78bf",
+ "name": "Red radio Beograd",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.redradio.rs/sid=1",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 119,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "da5f8fc8-6e8a-4d7d-bad7-e9ea957d78bf"
+ },
{
"id": "ec37f9d8-dc2d-49ae-aa89-c9c378f0653b",
"name": "РТС - Радио Београд - 2",
@@ -21986,6 +48792,42 @@
"source": "radio-browser",
"sourceStationUuid": "ec37f9d8-dc2d-49ae-aa89-c9c378f0653b"
},
+ {
+ "id": "296339f7-2b7b-4001-9ae2-37c573d36975",
+ "name": "Buca",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://live.bucaradio.com/",
+ "homepage": "https://bucaradio.com/slusaj_uzivo.html",
+ "logoUrl": "null",
+ "votes": 73,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "296339f7-2b7b-4001-9ae2-37c573d36975"
+ },
+ {
+ "id": "d3e6447f-a999-4469-bbb2-f001d7c1dc6c",
+ "name": "Focus Radio",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": "serbian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://streamer.radio.co/s34d2c17d8/listen",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 68,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "d3e6447f-a999-4469-bbb2-f001d7c1dc6c"
+ },
{
"id": "38ff6706-919c-4f68-a013-46b2d32846a6",
"name": "Hype.FM",
@@ -22162,6 +49004,23 @@
"source": "radio-browser",
"sourceStationUuid": "2330f476-d406-4b7e-b584-695f13054831"
},
+ {
+ "id": "8072d8fd-036d-4131-8205-3880d66dfed8",
+ "name": "Radio Balkan Zabavna",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiobalkan.live/radio/live/zabavna.mp3",
+ "homepage": "https://radiobalkan.live/",
+ "logoUrl": null,
+ "votes": 236,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "8072d8fd-036d-4131-8205-3880d66dfed8"
+ },
{
"id": "9b016d3e-73f7-4dcc-882d-6717d9b2112f",
"name": "Radio Futog",
@@ -22262,6 +49121,23 @@
"source": "radio-browser",
"sourceStationUuid": "96feee92-485f-4f55-ac86-4f398f148fdc"
},
+ {
+ "id": "bb1d8d18-b3c5-4b79-8b76-39ab57af8462",
+ "name": "Radio S EX YU",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 43,
+ "streamUrl": "https://53a7ed211fc32.streamlock.net/asmedia/radio_s_ex_yu/playlist.m3u8",
+ "homepage": "https://www.radios.rs/digitalni-radio/36/radio-s-ex-yu",
+ "logoUrl": null,
+ "votes": 574,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "bb1d8d18-b3c5-4b79-8b76-39ab57af8462"
+ },
{
"id": "88c46a95-c022-425d-a44b-398dfc8785d4",
"name": "Radio S Južni",
@@ -22303,23 +49179,23 @@
"sourceStationUuid": "c0d363e9-32df-49cf-abbd-025fc35a2de1"
},
{
- "id": "ee16d62a-c4ba-4bb0-be5b-2ddaa571a0ba",
- "name": "Radio S1",
+ "id": "b8eed0cc-84c9-4365-a13d-5cfd2b57d088",
+ "name": "Radio S2 - Index radio",
"country": "Serbia",
"countryCode": "RS",
"language": "serbian",
"tags": [
- "zabavna"
+ "pop - zabavna"
],
"codec": "AAC+",
"bitrate": 64,
- "streamUrl": "https://stream.radios.rs:9000/;",
+ "streamUrl": "https://stream.radios.rs:9002/;",
"homepage": "https://www.radios.rs/",
"logoUrl": "https://www.radios.rs/images/radios/favicon/apple-icon-120x120.png",
- "votes": 213,
+ "votes": 51,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "ee16d62a-c4ba-4bb0-be5b-2ddaa571a0ba"
+ "sourceStationUuid": "b8eed0cc-84c9-4365-a13d-5cfd2b57d088"
},
{
"id": "d6e1ff18-6c76-4fb4-a978-fcc78a7b5706",
@@ -22340,23 +49216,6 @@
"source": "radio-browser",
"sourceStationUuid": "d6e1ff18-6c76-4fb4-a978-fcc78a7b5706"
},
- {
- "id": "871a586b-4aa2-47ae-94dc-32e03f2f1bc7",
- "name": "Radio S4",
- "country": "Serbia",
- "countryCode": "RS",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 43,
- "streamUrl": "https://53a7ed211fc32.streamlock.net/asmedia/gradski/playlist.m3u8",
- "homepage": "https://www.radios.rs/radio/21/radio-s4",
- "logoUrl": "https://www.radios.rs/media/footerlogo/s4.png",
- "votes": 244,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "871a586b-4aa2-47ae-94dc-32e03f2f1bc7"
- },
{
"id": "acf5ee7c-2d17-4714-8a0b-1db39a9343b4",
"name": "Radio Šumadinac",
@@ -22377,21 +49236,21 @@
"sourceStationUuid": "acf5ee7c-2d17-4714-8a0b-1db39a9343b4"
},
{
- "id": "da5f8fc8-6e8a-4d7d-bad7-e9ea957d78bf",
- "name": "Red radio Beograd",
+ "id": "45b3d69a-ccec-4028-b468-00b88bc92b7c",
+ "name": "Super FM Beograd",
"country": "Serbia",
"countryCode": "RS",
- "language": "serbian",
+ "language": null,
"tags": [],
"codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.redradio.rs/sid=1",
- "homepage": null,
+ "bitrate": 128,
+ "streamUrl": "https://onair.superfm.rs/superfm.mp3",
+ "homepage": "https://superfm.rs/",
"logoUrl": null,
- "votes": 119,
+ "votes": 45,
"clickcount": 2,
"source": "radio-browser",
- "sourceStationUuid": "da5f8fc8-6e8a-4d7d-bad7-e9ea957d78bf"
+ "sourceStationUuid": "45b3d69a-ccec-4028-b468-00b88bc92b7c"
},
{
"id": "14421bd3-adfd-4306-bce2-2a2d4bebb094",
@@ -22410,26 +49269,6 @@
"source": "radio-browser",
"sourceStationUuid": "14421bd3-adfd-4306-bce2-2a2d4bebb094"
},
- {
- "id": "09fd84d4-f03c-4e99-8740-5e9837ba73bc",
- "name": "Kiss Club FM",
- "country": "Serbia",
- "countryCode": "RS",
- "language": null,
- "tags": [
- "dance",
- "house"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.zeno.fm/572ugg75ztzuv",
- "homepage": "https://zeno.fm/radio/kiss-club-fm/",
- "logoUrl": null,
- "votes": 1,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "09fd84d4-f03c-4e99-8740-5e9837ba73bc"
- },
{
"id": "227c44c1-5004-447e-8e1f-8b23872c4aba",
"name": "MansionNET Radio",
@@ -22471,26 +49310,6 @@
"source": "radio-browser",
"sourceStationUuid": "f584deac-5bfa-4941-a41f-4939a4b5f0ac"
},
- {
- "id": "cdcba305-125a-41cd-9235-445cfa9a25b6",
- "name": "Radio KISS Lazarevac 106.1",
- "country": "Serbia",
- "countryCode": "RS",
- "language": "serbian",
- "tags": [
- "folk",
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://cast2.asurahosting.com/proxy/kissdoog/stream",
- "homepage": "https://kissinfo.rs/",
- "logoUrl": "https://www.radiofm.rs/images/radio/kissfm-big.png",
- "votes": 17,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "cdcba305-125a-41cd-9235-445cfa9a25b6"
- },
{
"id": "468ab3c4-e0c6-4f3f-9d29-4412abceedac",
"name": "Radio Maestro",
@@ -22534,27 +49353,40 @@
"sourceStationUuid": "c8702546-4543-4b52-93a4-54264f6272a5"
},
{
- "id": "0f08d72e-276d-41cd-b0d6-25e6dfca2cfd",
- "name": "Radio S Lounge",
+ "id": "ee16d62a-c4ba-4bb0-be5b-2ddaa571a0ba",
+ "name": "Radio S1",
"country": "Serbia",
"countryCode": "RS",
- "language": "english,serbian",
+ "language": "serbian",
"tags": [
- "chillout",
- "domaca",
- "lounge",
- "soft electronic",
- "strana"
+ "zabavna"
],
"codec": "AAC+",
"bitrate": 64,
- "streamUrl": "https://stream.radios.rs:9062/stream",
- "homepage": "https://www.radios.rs/digitalni-radio/63/lounge",
- "logoUrl": "https://www.radios.rs/media/PNG%20LOGOS/Novi%20strimovi/Lounge1000px.png",
- "votes": 2,
+ "streamUrl": "https://stream.radios.rs:9000/;",
+ "homepage": "https://www.radios.rs/",
+ "logoUrl": "https://www.radios.rs/images/radios/favicon/apple-icon-120x120.png",
+ "votes": 213,
"clickcount": 1,
"source": "radio-browser",
- "sourceStationUuid": "0f08d72e-276d-41cd-b0d6-25e6dfca2cfd"
+ "sourceStationUuid": "ee16d62a-c4ba-4bb0-be5b-2ddaa571a0ba"
+ },
+ {
+ "id": "871a586b-4aa2-47ae-94dc-32e03f2f1bc7",
+ "name": "Radio S4",
+ "country": "Serbia",
+ "countryCode": "RS",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 43,
+ "streamUrl": "https://53a7ed211fc32.streamlock.net/asmedia/gradski/playlist.m3u8",
+ "homepage": "https://www.radios.rs/radio/21/radio-s4",
+ "logoUrl": "https://www.radios.rs/media/footerlogo/s4.png",
+ "votes": 244,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "871a586b-4aa2-47ae-94dc-32e03f2f1bc7"
},
{
"id": "00ed507b-9dc1-4ad9-b855-f04f95a7f0bc",
@@ -22593,6 +49425,1940 @@
"source": "radio-browser",
"sourceStationUuid": "260195b9-e602-4b9d-9b1e-fb8fef1c9220"
},
+ {
+ "id": "f75cc3d3-10eb-40e3-926a-a9030eae3bba",
+ "name": "Rádio Melody",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.sk/melody-hi.mp3",
+ "homepage": "https://radiomelody.sk/",
+ "logoUrl": null,
+ "votes": 3268,
+ "clickcount": 36,
+ "source": "radio-browser",
+ "sourceStationUuid": "f75cc3d3-10eb-40e3-926a-a9030eae3bba"
+ },
+ {
+ "id": "cb61763d-d635-4983-82c1-4a6a1e8ad17b",
+ "name": "Europa 2",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.sk/europa2.mp3",
+ "homepage": "https://www.europa2.sk/",
+ "logoUrl": "https://www.europa2.sk/wp-content/uploads/2023/05/cropped-favicon-128x128.png?w=128&h=128",
+ "votes": 3586,
+ "clickcount": 34,
+ "source": "radio-browser",
+ "sourceStationUuid": "cb61763d-d635-4983-82c1-4a6a1e8ad17b"
+ },
+ {
+ "id": "a39a5e69-81c7-4823-aabd-202472fc644b",
+ "name": "RÁDIO EXPRES",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.sk/128.mp3",
+ "homepage": "https://www.expres.sk/",
+ "logoUrl": "https://i.imgur.com/Q7pqtwX.png",
+ "votes": 715,
+ "clickcount": 29,
+ "source": "radio-browser",
+ "sourceStationUuid": "a39a5e69-81c7-4823-aabd-202472fc644b"
+ },
+ {
+ "id": "2fb5eb01-7e34-42b7-9b06-2bff5084127b",
+ "name": "Rádio Vlna Oldies Party",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radiovlna.sk/party-hi.mp3",
+ "homepage": "https://radiovlna.sk/",
+ "logoUrl": "https://cdn.radiovlna.sk/img/logo/apple-touch-icon.png?v=2023-10-09-10-40",
+ "votes": 357,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "2fb5eb01-7e34-42b7-9b06-2bff5084127b"
+ },
+ {
+ "id": "cb61d755-6bb7-4575-98d1-cd7434bfa567",
+ "name": "Rádio ROCK",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bauermedia.sk/rock-hi.mp3",
+ "homepage": "https://radiorock.sk/",
+ "logoUrl": "https://radiorock.sk/favicon.ico",
+ "votes": 140,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "cb61d755-6bb7-4575-98d1-cd7434bfa567"
+ },
+ {
+ "id": "2b6f3fe7-29fa-4c9b-9687-ba7b54730df5",
+ "name": "Radio Basavel",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "roma,slovak",
+ "tags": [
+ "basavel",
+ "bašavel",
+ "ciganske"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/6gd9c6yn4nhvv",
+ "homepage": "https://zeno.fm/radio/radio-basavel/",
+ "logoUrl": null,
+ "votes": 43,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "2b6f3fe7-29fa-4c9b-9687-ba7b54730df5"
+ },
+ {
+ "id": "6842fffe-1676-47d7-9a2e-9c859b25af26",
+ "name": "Radio Zabava",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/eyac00cx1nhvv",
+ "homepage": "https://zeno.fm/radio/radio-zabavaqd3c00cx1nhvv/",
+ "logoUrl": "https://zeno.fm/favicon.ico",
+ "votes": 543,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "6842fffe-1676-47d7-9a2e-9c859b25af26"
+ },
+ {
+ "id": "3e108ce9-d0cd-4ea8-9392-1c2a99bb47f8",
+ "name": "BestFM",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 160,
+ "streamUrl": "https://stream3.bestfm.sk:8000/160.aac",
+ "homepage": "https://www.bestfm.sk/",
+ "logoUrl": null,
+ "votes": 163,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e108ce9-d0cd-4ea8-9392-1c2a99bb47f8"
+ },
+ {
+ "id": "f7112601-ad6b-4cbe-a2b3-be99cbe15229",
+ "name": "Fit family Radio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://solid67.streamupsolutions.com/proxy/reqsithw/stream",
+ "homepage": "https://www.fitfamilyradio.com/",
+ "logoUrl": null,
+ "votes": 15,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "f7112601-ad6b-4cbe-a2b3-be99cbe15229"
+ },
+ {
+ "id": "1c05a63e-76a3-45ad-be21-13b1ec74bf6b",
+ "name": "Radio Melody",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://stream.bauermedia.sk/melody-lo.mp3?aw_0_req.gdpr=false&aw_0_1st.playerid=melody_web_mobile",
+ "homepage": "https://www.radiomelody.sk/",
+ "logoUrl": "https://www.radiomelody.sk/wp-content/uploads/2023/01/cropped-radio-melody-favicon-1-256x256.png?w=256&h=256",
+ "votes": 74,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "1c05a63e-76a3-45ad-be21-13b1ec74bf6b"
+ },
+ {
+ "id": "800803bb-a650-4711-b1eb-d7bd33674aee",
+ "name": "RÁDIO SLOVENSKO",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/slovensko_128.mp3",
+ "homepage": "https://slovensko.rtvs.sk/",
+ "logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse2.mm.bing.net%2Fth%3Fid%3DOIP.gItQZStw2mHIGhvJGp8aFwAAAA%26pid%3DApi&f=1&ipt=698c390e95f6a2d64349aa8e80bd8f925a2cc5c8d3b1f4f21070cdeaa2118d2d&ipo=images",
+ "votes": 167,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "800803bb-a650-4711-b1eb-d7bd33674aee"
+ },
+ {
+ "id": "f077f5bd-f4ce-4636-81f3-0563867b82b6",
+ "name": "TV Lux (audio)",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://stream.tvlux.sk/lux/lux.stream_aac/playlist.m3u8",
+ "homepage": "https://www.tvlux.sk/",
+ "logoUrl": "https://www.tvlux.sk/project/tvlux/design/favicon/favicon-32x32.png",
+ "votes": 29,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "f077f5bd-f4ce-4636-81f3-0563867b82b6"
+ },
+ {
+ "id": "e61ff127-65d0-429d-9c5e-83a9803b697c",
+ "name": "Radio 7",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "christian"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://play.radio7.sk/128",
+ "homepage": "https://radio7.sk/",
+ "logoUrl": null,
+ "votes": 324,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "e61ff127-65d0-429d-9c5e-83a9803b697c"
+ },
+ {
+ "id": "d3ea2946-e400-4c8c-9b7e-6eb5664ae9a0",
+ "name": "Rusyn FM",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "carpatho-rusyn",
+ "tags": [
+ "ethnic programming",
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://stream.rusyn.fm/rusyny.mp3",
+ "homepage": "https://www.rusyn.fm/play/",
+ "logoUrl": "https://www.rusyn.fm/favicon.ico",
+ "votes": 271,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "d3ea2946-e400-4c8c-9b7e-6eb5664ae9a0"
+ },
+ {
+ "id": "b476dd00-2453-42d2-89bb-ccfb61f28b67",
+ "name": "Fred Film Radio-25 Slovenčina",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "film"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://s10.webradio-hosting.com/proxy/fredradiosk/stream",
+ "homepage": "https://www.fred.fm/",
+ "logoUrl": "https://www.fred.fm/wp-content/uploads/2014/12/Fred-Logo_trasp_-copia.png",
+ "votes": 9,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "b476dd00-2453-42d2-89bb-ccfb61f28b67"
+ },
+ {
+ "id": "576e64fd-74ac-11ea-b1cf-52543be04c81",
+ "name": "Radio FM",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [
+ "alternative",
+ "local music",
+ "multicultural",
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/fm_128.mp3",
+ "homepage": "https://fm.rtvs.sk/",
+ "logoUrl": null,
+ "votes": 9531,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "576e64fd-74ac-11ea-b1cf-52543be04c81"
+ },
+ {
+ "id": "7d334f43-30b8-49e3-9a7a-6db9fdd97eec",
+ "name": "Rádio Folk",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "ľudovky"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://mpc1.mediacp.eu/stream/demo2",
+ "homepage": "https://www.radiofolk.sk/",
+ "logoUrl": null,
+ "votes": 46,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7d334f43-30b8-49e3-9a7a-6db9fdd97eec"
+ },
+ {
+ "id": "a1382ead-1c26-4ba7-a431-c5e17fb4e577",
+ "name": "Rádio KIKS - Big 90s",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "90's",
+ "90s"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiokiks.sk:8000/kiks_big90s.mp3",
+ "homepage": "https://www.radiokiks.sk/",
+ "logoUrl": "https://www.radiokiks.sk/favicon.ico",
+ "votes": 89,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "a1382ead-1c26-4ba7-a431-c5e17fb4e577"
+ },
+ {
+ "id": "6d8788ec-3006-40de-b674-35b367940e0d",
+ "name": "Rádio Vlna Golden hits",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "goldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radiovlna.sk/gold-hi.mp3",
+ "homepage": "https://radiovlna.sk/",
+ "logoUrl": "https://cdn.radiovlna.sk/img/logo/apple-touch-icon.png?v=9",
+ "votes": 1026,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6d8788ec-3006-40de-b674-35b367940e0d"
+ },
+ {
+ "id": "00c38432-76ce-4d8c-9e92-121f7a982232",
+ "name": "Regina Východ",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/regina-ke_128.mp3",
+ "homepage": "https://reginavychod.rtvs.sk/",
+ "logoUrl": "https://www.rtvs.sk/media/images/home-pink.svg",
+ "votes": 16,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "00c38432-76ce-4d8c-9e92-121f7a982232"
+ },
+ {
+ "id": "188a79f7-f612-43b9-8216-afc25d9ce2bd",
+ "name": "FRESH Rádio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast2.radionet.sk/freshradio.sk",
+ "homepage": "https://www.freshradio.sk/",
+ "logoUrl": null,
+ "votes": 31,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "188a79f7-f612-43b9-8216-afc25d9ce2bd"
+ },
+ {
+ "id": "8df48ad2-62ab-421d-828e-7a13e0499c77",
+ "name": "Infovojna",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream1.infovojna.com:8000/live",
+ "homepage": "https://www.infovojna.com/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "8df48ad2-62ab-421d-828e-7a13e0499c77"
+ },
+ {
+ "id": "d05ad985-7193-4de8-80ca-225052e6b1d6",
+ "name": "Rádio MÁRIA SLOVENSKO",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 40,
+ "streamUrl": "https://dreamsiteradiocp5.com/proxy/radiomariaslomp3?mp=/stream.mp3",
+ "homepage": "https://www.radiomaria.sk/",
+ "logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse1.mm.bing.net%2Fth%3Fid%3DOIP.430SifHOiQrgPJT5x7bVkwHaCK%26pid%3DApi&f=1&ipt=bc089d517a31dcf260ec12eaa1e9808783150eb69c62a757ac3b4ed4b07a2aaf&ipo=images",
+ "votes": 17,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "d05ad985-7193-4de8-80ca-225052e6b1d6"
+ },
+ {
+ "id": "b1b95ad4-306b-4fb8-9ae8-7859634beffe",
+ "name": "897",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [
+ "club",
+ "club dance",
+ "club dance electronic house trance",
+ "dance",
+ "dance classics",
+ "deep house",
+ "funky",
+ "funky house",
+ "future house",
+ "groove",
+ "jackin house",
+ "nu disco"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://c34.radioboss.fm:8106/stream",
+ "homepage": "https://www.897radio.online/",
+ "logoUrl": "https://07912288e7.clvaw-cdnwnd.com/e113f3229f68b2ec4c7679e66a624900/200000070-8cef18cef3/favicon-7.ico?ph=07912288e7",
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "b1b95ad4-306b-4fb8-9ae8-7859634beffe"
+ },
+ {
+ "id": "81b88161-c3f7-4958-8165-7d408d7689db",
+ "name": "Fun Radio Chill",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "chill",
+ "chillout",
+ "jazz",
+ "smooth jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.funradio.sk:8000/chill128.mp3",
+ "homepage": "http://www.funradio.sk/",
+ "logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse3.mm.bing.net%2Fth%3Fid%3DOIP.E65vroGDtTyTMl18lUuGuwHaHa%26pid%3DApi&f=1&ipt=8e1260db0157c0b572b4326122c7511e15bc8c6afb4e0423cd1b9bb620cf57f2&ipo=images",
+ "votes": 109,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "81b88161-c3f7-4958-8165-7d408d7689db"
+ },
+ {
+ "id": "4aab763b-38ad-42ba-af29-a377d9b26943",
+ "name": "InfoVojna 2",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream2.infovojna.com:8000/live",
+ "homepage": "https://www.infovojna.com/",
+ "logoUrl": null,
+ "votes": 15,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4aab763b-38ad-42ba-af29-a377d9b26943"
+ },
+ {
+ "id": "79bfc948-cc01-4b1e-82f1-1eb1ea4556b7",
+ "name": "Rádio Paráda",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "various"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://extra.mediacp.eu/stream/RadioParada,o.z.",
+ "homepage": "https://www.radioparada.sk/",
+ "logoUrl": "https://www.radioparada.sk/favicon.ico",
+ "votes": 163,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "79bfc948-cc01-4b1e-82f1-1eb1ea4556b7"
+ },
+ {
+ "id": "def06385-f1ab-40a9-8cbb-ae61f9b53d08",
+ "name": "Radio X Ľudovky (Uniza)",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radiox.sk:8443/ludovky.mp3",
+ "homepage": "https://www.radiox.sk/",
+ "logoUrl": "https://www.radiox.sk/favicon.ico",
+ "votes": 0,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "def06385-f1ab-40a9-8cbb-ae61f9b53d08"
+ },
+ {
+ "id": "53771506-fa99-4778-878a-c74ff3c52f20",
+ "name": "TA3",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 631,
+ "streamUrl": "https://n13.stv.livebox.sk/ta3/685d9a141bd846e8facf83bc378da26b/1.smil/chunklist_b2691072.m3u8",
+ "homepage": "https://www.ta3.com/",
+ "logoUrl": "https://www.ta3.com/ta3static/images/favicon.ico?62d93f",
+ "votes": 33,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "53771506-fa99-4778-878a-c74ff3c52f20"
+ },
+ {
+ "id": "ed3d4fe9-bb9e-4d9d-9985-fa0bda0c08dd",
+ "name": "Trnavské Rádio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "oldies",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://solid33.streamupsolutions.com/proxy/mujdmamw/trnavske",
+ "homepage": "https://trnavske.radio/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Trnavske_radio_%28logo%29.png/250px-Trnavske_radio_%28logo%29.png",
+ "votes": 8,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ed3d4fe9-bb9e-4d9d-9985-fa0bda0c08dd"
+ },
+ {
+ "id": "47751242-203e-49a0-9755-0a2aef69c581",
+ "name": "InfoVojna",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream3.infovojna.com:8000/live",
+ "homepage": "https://www.infovojna.com/",
+ "logoUrl": null,
+ "votes": 4,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "47751242-203e-49a0-9755-0a2aef69c581"
+ },
+ {
+ "id": "f77411a2-8285-4271-8fa8-178a0792a22c",
+ "name": "METALSCENA netRADIO",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "heavy metal",
+ "underground"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen.radioking.com/radio/263218/stream/308365",
+ "homepage": "https://www.metalscena.sk/",
+ "logoUrl": null,
+ "votes": 168,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f77411a2-8285-4271-8fa8-178a0792a22c"
+ },
+ {
+ "id": "5efb7095-c97b-4f67-98b9-eaf1239e9011",
+ "name": "radio metropolitan",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "nitra"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://mpc2.mediacp.eu:8214/stream",
+ "homepage": "https://www.facebook.com/radiometropolitan/",
+ "logoUrl": null,
+ "votes": 25,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5efb7095-c97b-4f67-98b9-eaf1239e9011"
+ },
+ {
+ "id": "5891782f-232b-4faf-8a0b-356bb3be68b8",
+ "name": "rádio Piešťany",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "good music heals"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://solid33.streamupsolutions.com/proxy/gktiemqb/stream",
+ "homepage": "https://www.radiopiestany.sk/",
+ "logoUrl": null,
+ "votes": 4,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "5891782f-232b-4faf-8a0b-356bb3be68b8"
+ },
+ {
+ "id": "295acdf1-0599-4963-b143-118bdab6bf43",
+ "name": "Rádio Rebeca",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "cz sk",
+ "pop",
+ "pop rock",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://mpc2.mediacp.eu:8200/rebecaweb",
+ "homepage": "https://rebeca.sk/",
+ "logoUrl": "https://rebeca.sk/wp-content/uploads/2018/02/rebeca_4K_bez-vlnky.png",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "295acdf1-0599-4963-b143-118bdab6bf43"
+ },
+ {
+ "id": "c1d05d02-4974-419c-a9cb-030d9739a052",
+ "name": "Rádio RSI",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "english,french,german,russian,slovak,spanish",
+ "tags": [
+ "culture",
+ "international",
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/rsi_128.mp3",
+ "homepage": "https://rsi.rtvs.sk/",
+ "logoUrl": "https://i.ibb.co/4jyQ9sj/radio-rsi-w.png",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1d05d02-4974-419c-a9cb-030d9739a052"
+ },
+ {
+ "id": "2a296a53-8e1d-409c-9044-7f91bf69abfe",
+ "name": "Tiché Rádio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "soft adult contemporary"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.ticheradio.sk/tiche.mp3",
+ "homepage": "https://ticheradio.sk/",
+ "logoUrl": null,
+ "votes": 5,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2a296a53-8e1d-409c-9044-7f91bf69abfe"
+ },
+ {
+ "id": "6ae3a862-44eb-44da-8c21-d87aaa10e582",
+ "name": "Top Rádio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://solid1.streamupsolutions.com/proxy/vhhggmih/stream",
+ "homepage": "https://www.radiotop.sk/",
+ "logoUrl": null,
+ "votes": 65,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "6ae3a862-44eb-44da-8c21-d87aaa10e582"
+ },
+ {
+ "id": "d2427cd9-ec80-4c07-976b-118b777e6679",
+ "name": "Dobré Rádio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "news",
+ "pop",
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.dobreradio.sk/dobreradio.mp3",
+ "homepage": "https://www.dobreradio.sk/",
+ "logoUrl": "https://dobreradio.dmcdn.sk/2024/09/cropped-appicon_DR_1024_blue-to-yellow___symbol-32x32.jpg",
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "d2427cd9-ec80-4c07-976b-118b777e6679"
+ },
+ {
+ "id": "8fb8daed-9737-4848-84ff-83998d24f993",
+ "name": "Hitrádio Slovakia",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://hitradioslovakia.stream.laut.fm/hitradioslovakia",
+ "homepage": "https://www.hitradioslovakia.com/",
+ "logoUrl": null,
+ "votes": 101,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8fb8daed-9737-4848-84ff-83998d24f993"
+ },
+ {
+ "id": "dfb1911a-35be-4df4-8214-1a83319e87a7",
+ "name": "mars dance",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovenian",
+ "tags": [
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-153.zeno.fm/683gf5xrxfeuv?zs=gtI4gERBSUGu8f0FOcDOWw&1686916511841",
+ "homepage": "https://dance80.wixsite.com/marsdanceradio",
+ "logoUrl": "null",
+ "votes": 50,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "dfb1911a-35be-4df4-8214-1a83319e87a7"
+ },
+ {
+ "id": "f0b20e25-3fcd-4d5c-95e9-85f051a81fbb",
+ "name": "Rádio BestFM",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream3.bestfm.sk:8000/128.mp3",
+ "homepage": "https://bestfm.sk/",
+ "logoUrl": null,
+ "votes": 178,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0b20e25-3fcd-4d5c-95e9-85f051a81fbb"
+ },
+ {
+ "id": "21cd0c8e-1d30-43a7-a7c6-e3e2244339e5",
+ "name": "Radio Dychovka",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "czech,slovak",
+ "tags": [
+ "blasmusik",
+ "brass",
+ "folk music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://epanel.mediacp.eu:7661/stream",
+ "homepage": "https://www.radiodychovka.sk/",
+ "logoUrl": "https://cdn.websupport.eu/odin/custom_error_pages/images/favicon.png",
+ "votes": 134,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "21cd0c8e-1d30-43a7-a7c6-e3e2244339e5"
+ },
+ {
+ "id": "8f423278-840d-40b3-bb3e-6b69f74c8492",
+ "name": "Rádio KIKS - Big 80s",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiokiks.sk:8000/kiks_big80s.mp3",
+ "homepage": "https://www.radiokiks.sk/",
+ "logoUrl": "https://www.radiokiks.sk/favicon.ico",
+ "votes": 97,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f423278-840d-40b3-bb3e-6b69f74c8492"
+ },
+ {
+ "id": "fa0d1cc7-d162-41a3-9192-6742ad04a401",
+ "name": "Rádio Pyramída",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "classical",
+ "culture",
+ "drama",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/klasika_128.mp3",
+ "homepage": "https://pyramida.rtvs.sk/",
+ "logoUrl": "https://i.ibb.co/Y0sLyvM/radio-pyramida-w.png",
+ "votes": 12,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fa0d1cc7-d162-41a3-9192-6742ad04a401"
+ },
+ {
+ "id": "043fba3d-9977-4991-97b1-64576df4da6d",
+ "name": "Rádio REGINA ZÁPAD",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/regina-ba_128.mp3",
+ "homepage": "https://reginazapad.rtvs.sk/",
+ "logoUrl": "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse1.mm.bing.net%2Fth%3Fid%3DOIP.yfbXYckxrPxjXALPpN_LnAHaD2%26pid%3DApi&f=1&ipt=adb01ec0af436d9e0e0d8b2c71c88db5e93304f6c1789a2ce3b3f2686c70243c&ipo=images",
+ "votes": 45,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "043fba3d-9977-4991-97b1-64576df4da6d"
+ },
+ {
+ "id": "bda90961-e6e1-4964-8516-90a0b72fb83d",
+ "name": "Rádio Sity",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "dance"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://radiosity.online:8000/aac",
+ "homepage": "https://radiosity.sk/",
+ "logoUrl": null,
+ "votes": 701,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "bda90961-e6e1-4964-8516-90a0b72fb83d"
+ },
+ {
+ "id": "70e74968-bb73-4555-92fc-49004b0f525d",
+ "name": "Radio X 256",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.radiox.sk:8443/radiox_256.mp3",
+ "homepage": "https://www.radiox.sk/",
+ "logoUrl": "https://www.radiox.sk/favicon.ico",
+ "votes": 1,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "70e74968-bb73-4555-92fc-49004b0f525d"
+ },
+ {
+ "id": "b141d7a8-81a2-4e96-8b3d-23e7938193fa",
+ "name": "Radio X Metal",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "metal"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radiox.sk:8443/metal.mp3",
+ "homepage": "https://stream.radiox.sk/",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b141d7a8-81a2-4e96-8b3d-23e7938193fa"
+ },
+ {
+ "id": "9312ae29-0319-486a-854f-78e57493f2f9",
+ "name": "Radio X64",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://stream.radiox.sk:8443/radiox_64.mp3",
+ "homepage": "https://www.radiox.sk/",
+ "logoUrl": "https://www.radiox.sk/favicon.ico",
+ "votes": 0,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9312ae29-0319-486a-854f-78e57493f2f9"
+ },
+ {
+ "id": "fb47dc6d-e323-4fbe-af3e-52980e11a5c9",
+ "name": "SubFM",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "electronic",
+ "electronica",
+ "hip-hop",
+ "nu-jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.subfm.sk/subfm",
+ "homepage": "https://www.subfm.sk/",
+ "logoUrl": null,
+ "votes": 21,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fb47dc6d-e323-4fbe-af3e-52980e11a5c9"
+ },
+ {
+ "id": "8e94c1a0-d37c-4f3a-aa1a-0911a57fbc30",
+ "name": "Party Radio",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "party",
+ "party hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://mpc1.mediacp.eu/stream/partyradio",
+ "homepage": "https://www.partyradio.sk/",
+ "logoUrl": null,
+ "votes": 13,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "8e94c1a0-d37c-4f3a-aa1a-0911a57fbc30"
+ },
+ {
+ "id": "0ab0056c-6b80-11ea-b1cf-52543be04c81",
+ "name": "Pátria Rádió",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "hungarian,slovak",
+ "tags": [
+ "minority",
+ "public radio",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/patria_128.mp3",
+ "homepage": "https://patria.rtvs.sk/",
+ "logoUrl": null,
+ "votes": 1329,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "0ab0056c-6b80-11ea-b1cf-52543be04c81"
+ },
+ {
+ "id": "f69a6077-0486-47b3-928d-3df68e09eb3d",
+ "name": "Rádio Devín",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "classical",
+ "culture",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/devin_128.mp3",
+ "homepage": "https://devin.rtvs.sk/",
+ "logoUrl": "https://i.ibb.co/yddHjYL/radio-devin-w.png",
+ "votes": 30,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "f69a6077-0486-47b3-928d-3df68e09eb3d"
+ },
+ {
+ "id": "315e6ac6-d6a4-4d23-8796-8cb2cb28a07c",
+ "name": "Radio Ekspres",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/ekspres1?mp=/stream",
+ "homepage": "https://www.radioekspres.si/",
+ "logoUrl": null,
+ "votes": 51,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "315e6ac6-d6a4-4d23-8796-8cb2cb28a07c"
+ },
+ {
+ "id": "524c6d90-493a-4692-aa6d-292ab4cc6350",
+ "name": "Rádio KIKS",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiokiks.sk:8000/kiks_hq.mp3",
+ "homepage": "https://www.radiokiks.sk/",
+ "logoUrl": null,
+ "votes": 21,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "524c6d90-493a-4692-aa6d-292ab4cc6350"
+ },
+ {
+ "id": "07948109-21d6-4646-ba28-c35467973895",
+ "name": "Rádio KIKS - Rock Music",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "classic rock",
+ "hard rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiokiks.sk:8000/kiks_rock.mp3",
+ "homepage": "https://www.rockmusic.sk/",
+ "logoUrl": null,
+ "votes": 114,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "07948109-21d6-4646-ba28-c35467973895"
+ },
+ {
+ "id": "9085bd94-5e3d-4d15-a223-0588c235e11e",
+ "name": "Rádio Litera",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": "slovak",
+ "tags": [
+ "culture",
+ "drama",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.stv.livebox.sk/litera_128.mp3",
+ "homepage": "https://litera.rtvs.sk/",
+ "logoUrl": "https://i.ibb.co/68qvmxY/radio-litera-w.png",
+ "votes": 49,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "9085bd94-5e3d-4d15-a223-0588c235e11e"
+ },
+ {
+ "id": "3f07f08f-5e26-4794-947e-9565b6b50eeb",
+ "name": "Rádio Rock SV",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://s2.myradiostream.com/:4870/listen.mp3",
+ "homepage": "https://www.radiorocksv.eu/",
+ "logoUrl": null,
+ "votes": 170,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "3f07f08f-5e26-4794-947e-9565b6b50eeb"
+ },
+ {
+ "id": "4bbf64b0-ab2f-4da7-96bb-0529b1f21331",
+ "name": "Radio VIVA",
+ "country": "Slovakia",
+ "countryCode": "SK",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.sepia.sk/viva128.mp3",
+ "homepage": "https://radioviva.zoznam.sk/",
+ "logoUrl": "https://radioviva.zoznam.sk/wp-content/themes/invelity/favicon.ico",
+ "votes": 33,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "4bbf64b0-ab2f-4da7-96bb-0529b1f21331"
+ },
+ {
+ "id": "a96ef484-3430-4148-acc3-d135f412b7e6",
+ "name": "BestFM",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "balkan",
+ "slovenia"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/BestFM",
+ "homepage": "https://bestfm.si/",
+ "logoUrl": "https://bestfm.si/icons/apple-touch-icon.png",
+ "votes": 1025,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "a96ef484-3430-4148-acc3-d135f412b7e6"
+ },
+ {
+ "id": "7ead079d-1573-4e99-95e6-5d976f528cd0",
+ "name": "bAm BaM RADIO - All shades of house",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [
+ "club",
+ "club dance",
+ "club hits",
+ "club house",
+ "deep house",
+ "funky house",
+ "hits",
+ "house",
+ "party hits",
+ "tech house",
+ "vocal house"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.laidbackvib.es:8888/320",
+ "homepage": "https://www.bambamradio.com/",
+ "logoUrl": "https://www.bambamradio.com/img/favicon.png",
+ "votes": 9,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ead079d-1573-4e99-95e6-5d976f528cd0"
+ },
+ {
+ "id": "474c879b-b337-4cdc-a68f-d43152f5b64a",
+ "name": "Radio 1",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radio1.si/Radio1",
+ "homepage": "https://radio1.si/",
+ "logoUrl": "https://media.radio1.si/ico/32.png",
+ "votes": 46,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "474c879b-b337-4cdc-a68f-d43152f5b64a"
+ },
+ {
+ "id": "a7b6e9b7-6d9d-476b-b07c-be676d6f6d87",
+ "name": "Radio ENTER",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "english",
+ "tags": [
+ "disco",
+ "house",
+ "techno"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/enter_1?mp=/enter",
+ "homepage": "https://enter.radio/",
+ "logoUrl": "https://enter.radio/images/icons/icon_192x192.png",
+ "votes": 1145,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a7b6e9b7-6d9d-476b-b07c-be676d6f6d87"
+ },
+ {
+ "id": "05fc6e55-9b78-4801-931a-5fac1c3e3a99",
+ "name": "Radio Antena (105.2MHz)",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian,slovenski",
+ "tags": [
+ "mix",
+ "pop",
+ "rock",
+ "song hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radio.si/Antena",
+ "homepage": "https://www.radioantena.si/",
+ "logoUrl": "https://media.radioantena.si/ico/32.png",
+ "votes": 214,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "05fc6e55-9b78-4801-931a-5fac1c3e3a99"
+ },
+ {
+ "id": "a3685970-960f-4454-9bb3-a047c23908ac",
+ "name": "Radio Nula",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [
+ "cafe",
+ "disco",
+ "funk",
+ "hiphop",
+ "jazz",
+ "soul"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://strm.radionula.com/classics",
+ "homepage": "https://radionula.com/",
+ "logoUrl": "https://radionula.com/favicon.png",
+ "votes": 1524,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a3685970-960f-4454-9bb3-a047c23908ac"
+ },
+ {
+ "id": "3e5be19c-3469-4de2-b3aa-282db4c74650",
+ "name": "Radio robin",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "entertainment",
+ "local radio",
+ "mix",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/Robin",
+ "homepage": "https://www.robin.si/",
+ "logoUrl": "https://www.robin.si/wp-content/uploads/2021/09/cropped-robin-favicon-270x270.png",
+ "votes": 56,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e5be19c-3469-4de2-b3aa-282db4c74650"
+ },
+ {
+ "id": "e599b489-da1f-4b5e-ac17-3e727980ac6b",
+ "name": "Radio Ognjišče",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://live.radio.si/ognjisce.mp3",
+ "homepage": "https://radio.ognjisce.si/",
+ "logoUrl": null,
+ "votes": 301,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e599b489-da1f-4b5e-ac17-3e727980ac6b"
+ },
+ {
+ "id": "852c1ebc-1871-473e-9282-54c1071f93cf",
+ "name": "Rock Radio",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rockr1_1?mp=/rock;",
+ "homepage": "https://www.rockradio.si/",
+ "logoUrl": "https://www.rockradio.si/images/icons/icon_192x192.png",
+ "votes": 37,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "852c1ebc-1871-473e-9282-54c1071f93cf"
+ },
+ {
+ "id": "aa1baab7-c967-478a-84e2-db318443ec90",
+ "name": "Rock radio classics",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rocks_3",
+ "homepage": "https://stream.nextmedia.si/proxy/rocks_3",
+ "logoUrl": null,
+ "votes": 16,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "aa1baab7-c967-478a-84e2-db318443ec90"
+ },
+ {
+ "id": "cd38e3f6-038d-4a22-8661-2d20108f5235",
+ "name": "Toti Radio",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "football",
+ "news",
+ "pop music",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/Toti",
+ "homepage": "https://totiradio.si/",
+ "logoUrl": "https://media.totiradio.si/toti.jpg",
+ "votes": 170,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "cd38e3f6-038d-4a22-8661-2d20108f5235"
+ },
+ {
+ "id": "37ce55a3-30ab-499c-bea5-cf3820c8400a",
+ "name": "Zeleni val",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "slovenian music"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://jurepeterka.radioca.st/stream",
+ "homepage": "https://radio.zelenival.com/",
+ "logoUrl": null,
+ "votes": 111,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "37ce55a3-30ab-499c-bea5-cf3820c8400a"
+ },
+ {
+ "id": "99ad873a-eea6-4462-8694-b0bff5e76fa4",
+ "name": "FRAJER RADIO",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/frajer_1?mp=/frajer?uid=frjweb;",
+ "homepage": "https://radiofrajer.si/",
+ "logoUrl": "https://api.lemon-radio.com/public/logos/19410.png",
+ "votes": 5,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "99ad873a-eea6-4462-8694-b0bff5e76fa4"
+ },
+ {
+ "id": "dd707adb-aed6-4e9f-93ff-3b24f8aa3f4d",
+ "name": "Radi Frajer",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [
+ "narodnozabavna glasba",
+ "oberkrainer"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://stream2.nextmedia.si/hls/frj/128k/frj-128.m3u8",
+ "homepage": "https://radiofrajer.si/",
+ "logoUrl": "https://www.datocms-assets.com/162001/1751630822-frajer-logo.svg",
+ "votes": 2,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "dd707adb-aed6-4e9f-93ff-3b24f8aa3f4d"
+ },
+ {
+ "id": "fafeac6a-8cf1-4f9d-8d04-c102560d6e6e",
+ "name": "Radio Bob",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radio.si/BOB",
+ "homepage": "https://radiobob.si/",
+ "logoUrl": null,
+ "votes": 34,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fafeac6a-8cf1-4f9d-8d04-c102560d6e6e"
+ },
+ {
+ "id": "9030dc2d-5d4a-4a9e-9323-22e4f163b0d2",
+ "name": "Radio Celje",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.rgl.si/Celje",
+ "homepage": "https://www.radiocelje.si/",
+ "logoUrl": null,
+ "votes": 37,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "9030dc2d-5d4a-4a9e-9323-22e4f163b0d2"
+ },
+ {
+ "id": "b6b3f028-6991-4d2b-8d1e-709ee7654cd0",
+ "name": "Radio Center Gen X",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian,slovenski",
+ "tags": [
+ "80s",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 134,
+ "streamUrl": "https://stream2.nextmedia.si/hls/gex/live.m3u8",
+ "homepage": "https://www.radiocenter.si/",
+ "logoUrl": "http://radiocenter.si/images/icons/icon_192x192.png",
+ "votes": 8,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "b6b3f028-6991-4d2b-8d1e-709ee7654cd0"
+ },
+ {
+ "id": "fd7d0ef0-3227-4215-bfb8-a82ec4fa420a",
+ "name": "Radio KRka",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian,slovenski",
+ "tags": [
+ "balkan",
+ "mix",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radio.si/Krka",
+ "homepage": "https://radiokrka.si/",
+ "logoUrl": "https://radiokrka.si/images/favicon.bmp",
+ "votes": 1560,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fd7d0ef0-3227-4215-bfb8-a82ec4fa420a"
+ },
+ {
+ "id": "1d7bf408-11cd-4ae2-b3ea-7c435503045c",
+ "name": "Radio Nula Beatz",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://strm.radionula.com/lounge",
+ "homepage": "https://radionula.com/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s111827g.png",
+ "votes": 579,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d7bf408-11cd-4ae2-b3ea-7c435503045c"
+ },
+ {
+ "id": "f3852793-afa2-4087-b4ed-ac2d2fa21706",
+ "name": "Radio NULA Organic",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://strm.radionula.com/channel2",
+ "homepage": "https://radionula.com/",
+ "logoUrl": "https://radionula.com/favicon.png",
+ "votes": 17,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "f3852793-afa2-4087-b4ed-ac2d2fa21706"
+ },
+ {
+ "id": "60412038-eddc-4d65-bbaa-c67e97ae1ca5",
+ "name": "Radio Ptuj",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radio.si/Ptuj",
+ "homepage": "https://radioptuj.svet24.si/",
+ "logoUrl": "https://radioptuj.svet24.si/images/RadioPtuj_logo.png",
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "60412038-eddc-4d65-bbaa-c67e97ae1ca5"
+ },
+ {
+ "id": "fc1ed7c2-61cc-446c-9dbb-89f0080b80a4",
+ "name": "Radio Štajerski val",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "local news",
+ "local radio",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.stajerskival.si:8443/live",
+ "homepage": "https://www.stajerskival.si/",
+ "logoUrl": "https://www.stajerskival.si/assets/banners/0855810001603838423.png",
+ "votes": 45,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fc1ed7c2-61cc-446c-9dbb-89f0080b80a4"
+ },
+ {
+ "id": "fc5a13e6-11a6-4761-b2f4-d6a5be02c9d4",
+ "name": "Rock Radio Best Ballads SLO",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "rock",
+ "rock ballads",
+ "soft rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rocks_1?mp=/stream",
+ "homepage": "https://www.rockradio.si/",
+ "logoUrl": "https://radijskepostaje.si/uploads/img/rock-radio.jpg",
+ "votes": 58,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "fc5a13e6-11a6-4761-b2f4-d6a5be02c9d4"
+ },
+ {
+ "id": "b70b375d-ec53-409e-ab23-7be73603ecc8",
+ "name": "Radio 1 Rock",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://live.radio.si/Radio1Rock?t=1776880155210",
+ "homepage": "https://radio1rock.si/",
+ "logoUrl": "https://media.radio1.si/ico/rock/32.png",
+ "votes": 2,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "b70b375d-ec53-409e-ab23-7be73603ecc8"
+ },
+ {
+ "id": "e655e587-ecf7-4358-9223-5c13b3c12bf3",
+ "name": "Radio City",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream1.radiocity.si/CityMp3128.mp3",
+ "homepage": "https://www.radiocity.si/",
+ "logoUrl": null,
+ "votes": 116,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "e655e587-ecf7-4358-9223-5c13b3c12bf3"
+ },
+ {
+ "id": "7e290430-d899-4e27-b58b-d224bb14c30a",
+ "name": "Radio Maribor",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "general",
+ "local"
+ ],
+ "codec": "AAC",
+ "bitrate": 192,
+ "streamUrl": "https://mp3.rtvslo.si/rmb",
+ "homepage": "https://www.rtvslo.si/radio-maribor",
+ "logoUrl": "https://img.rtvslo.si/_static/novi/bootstrap/public/themes/ramb/icons/favicon-32x32.png",
+ "votes": 937,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "7e290430-d899-4e27-b58b-d224bb14c30a"
+ },
+ {
+ "id": "baec8698-bffd-4491-8715-1d5c14df557b",
+ "name": "Radio Maxi",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/Maxi?t=1722577989752",
+ "homepage": "https://radiomaxi.si/",
+ "logoUrl": "https://media.radiomaxi.si/ico/32.png",
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "baec8698-bffd-4491-8715-1d5c14df557b"
+ },
+ {
+ "id": "0f0f86e5-2d35-4384-a122-f642f7306845",
+ "name": "Radio Student",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://kruljo.radiostudent.si:8001/hiq",
+ "homepage": "https://radiostudent.si/",
+ "logoUrl": null,
+ "votes": 10,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f0f86e5-2d35-4384-a122-f642f7306845"
+ },
+ {
+ "id": "b3efdf8f-dba0-11e9-a8ba-52543be04c81",
+ "name": "Radio Terminal",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "english,slovenian",
+ "tags": [
+ "alternative"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://air.radioterminal.si/live",
+ "homepage": "https://radioterminal.si/",
+ "logoUrl": "https://radioterminal.si/favicon.ico",
+ "votes": 160,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3efdf8f-dba0-11e9-a8ba-52543be04c81"
+ },
+ {
+ "id": "3cd65080-c8b5-4d06-86bb-62481e5d6e06",
+ "name": "Radio1",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radio1.si/Radio80",
+ "homepage": "https://live.radio1.si/",
+ "logoUrl": null,
+ "votes": 7,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "3cd65080-c8b5-4d06-86bb-62481e5d6e06"
+ },
+ {
+ "id": "4b59466c-4b49-4aae-b9c7-64f856338b5c",
+ "name": "Retro Radio",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://zvok.ragla.si/gr",
+ "homepage": "https://www.retro.sg/",
+ "logoUrl": "https://www.retro.sg/favicon.ico",
+ "votes": 30,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b59466c-4b49-4aae-b9c7-64f856338b5c"
+ },
+ {
+ "id": "786fd959-8ec1-4a10-a58d-49f3403a702d",
+ "name": "Retro Radio",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://zvok.ragla.si/gr?1670057106819",
+ "homepage": "https://www.retrodab.plus/",
+ "logoUrl": null,
+ "votes": 96,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "786fd959-8ec1-4a10-a58d-49f3403a702d"
+ },
+ {
+ "id": "aca62f9e-6ab6-4959-a82a-8c6a8dc561e3",
+ "name": "Rock Maribor",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/RockMB?t=1732114443550",
+ "homepage": "https://rockmaribor.si/",
+ "logoUrl": "https://media.radio1.si/ico/rock/32.png",
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "aca62f9e-6ab6-4959-a82a-8c6a8dc561e3"
+ },
+ {
+ "id": "709947f6-f1d5-4bf8-b9eb-0498d0ef15e1",
+ "name": "Rock Radio Classics",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian,slovenski",
+ "tags": [
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rocks_3?mp=/rock?uid=rrweb",
+ "homepage": "https://stream.nextmedia.si/proxy/rocks_3?mp=/rock?uid=rrweb",
+ "logoUrl": null,
+ "votes": 12,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "709947f6-f1d5-4bf8-b9eb-0498d0ef15e1"
+ },
+ {
+ "id": "a4725ec1-fc58-483b-bcf1-0344a379d1f3",
+ "name": "Rock Radio Classics SLO",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "classic hits",
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rocks_3?mp=/stream",
+ "homepage": "https://www.rockradio.si/",
+ "logoUrl": "https://radijskepostaje.si/uploads/img/rock-radio.jpg",
+ "votes": 25,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "a4725ec1-fc58-483b-bcf1-0344a379d1f3"
+ },
+ {
+ "id": "f385b04f-6882-4cb4-8a96-58d2c90b5fbc",
+ "name": "Rock Radio Hard & Heavy SLO",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": "slovenian",
+ "tags": [
+ "hard rock",
+ "hard rock heavy metal",
+ "heavy metal",
+ "heavy rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rocks_2?mp=/stream",
+ "homepage": "https://www.rockradio.si/",
+ "logoUrl": "https://radijskepostaje.si/uploads/img/rock-radio.jpg",
+ "votes": 26,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "f385b04f-6882-4cb4-8a96-58d2c90b5fbc"
+ },
+ {
+ "id": "24292fac-ea8c-4810-9ac0-db2cfea104b1",
+ "name": "Rock Radio SLO",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 160,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rockr2_2?mp=/stream",
+ "homepage": "https://www.rockradio.si/",
+ "logoUrl": "https://radijskepostaje.si/uploads/img/rock-radio.jpg",
+ "votes": 14,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "24292fac-ea8c-4810-9ac0-db2cfea104b1"
+ },
+ {
+ "id": "5d027d7d-f51b-47b7-bbdd-3d6b347195d7",
+ "name": "Rock Radio Slovenia",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.nextmedia.si/proxy/rockr1_1?mp=/rock",
+ "homepage": "https://www.rockradio.si/",
+ "logoUrl": null,
+ "votes": 24,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "5d027d7d-f51b-47b7-bbdd-3d6b347195d7"
+ },
+ {
+ "id": "1c715749-71d2-43a4-9428-1fe1f7eb77d5",
+ "name": "Toti Maxi",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/Maxi",
+ "homepage": "https://radiomaxi.si/",
+ "logoUrl": "https://media.radiomaxi.si/maxi.svg?3",
+ "votes": 7,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "1c715749-71d2-43a4-9428-1fe1f7eb77d5"
+ },
+ {
+ "id": "ae10df4c-fef2-459d-9057-722fd4ae07a0",
+ "name": "Toti Radio",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://live.radio.si/Toti?t=1722581297315",
+ "homepage": "https://totiradio.si/",
+ "logoUrl": "https://media.totiradio.si/ico/toti32.png?2",
+ "votes": 17,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "ae10df4c-fef2-459d-9057-722fd4ae07a0"
+ },
+ {
+ "id": "9352fa3b-879c-41d9-8585-44c42ca18ee9",
+ "name": "Univox",
+ "country": "Slovenia",
+ "countryCode": "SI",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://solid33.streamupsolutions.com/proxy/vtmpasiq?mp=/stream",
+ "homepage": "https://univox.si/",
+ "logoUrl": "https://univox.si/wp-content/uploads/2021/01/cropped-univox-favicon-192x192.png",
+ "votes": 22,
+ "clickcount": 0,
+ "source": "radio-browser",
+ "sourceStationUuid": "9352fa3b-879c-41d9-8585-44c42ca18ee9"
+ },
{
"id": "b81c57c3-eb05-47ac-a0ea-eb01a6960cc4",
"name": "LOS 40 Principales España",
@@ -22610,10 +51376,31 @@
"homepage": "https://los40.com/",
"logoUrl": "https://los40es00.epimg.net/iconos/v1.x/v1.0/touch-apple.png",
"votes": 31545,
- "clickcount": 93,
+ "clickcount": 92,
"source": "radio-browser",
"sourceStationUuid": "b81c57c3-eb05-47ac-a0ea-eb01a6960cc4"
},
+ {
+ "id": "3fd18c3f-8157-11e9-aa30-52543be04c81",
+ "name": "Café del Mar",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": null,
+ "tags": [
+ "chillout",
+ "ibiza",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://streams.radio.co/se1a320b47/listen",
+ "homepage": "https://cafedelmar.com/radio/",
+ "logoUrl": "https://cafedelmar.com/apple-touch-icon.png",
+ "votes": 8119,
+ "clickcount": 62,
+ "source": "radio-browser",
+ "sourceStationUuid": "3fd18c3f-8157-11e9-aa30-52543be04c81"
+ },
{
"id": "38a33fc0-be05-4c98-8c6a-ba3869575bc1",
"name": "RAC1",
@@ -22633,31 +51420,10 @@
"homepage": "https://www.rac1.cat/",
"logoUrl": null,
"votes": 2626,
- "clickcount": 60,
+ "clickcount": 61,
"source": "radio-browser",
"sourceStationUuid": "38a33fc0-be05-4c98-8c6a-ba3869575bc1"
},
- {
- "id": "3fd18c3f-8157-11e9-aa30-52543be04c81",
- "name": "Café del Mar",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [
- "chillout",
- "ibiza",
- "lounge"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://streams.radio.co/se1a320b47/listen",
- "homepage": "https://cafedelmar.com/radio/",
- "logoUrl": "https://cafedelmar.com/apple-touch-icon.png",
- "votes": 8118,
- "clickcount": 57,
- "source": "radio-browser",
- "sourceStationUuid": "3fd18c3f-8157-11e9-aa30-52543be04c81"
- },
{
"id": "de39fc19-0636-4d05-acbb-2aba2c0d1f7a",
"name": "LOS40 Classic",
@@ -22673,7 +51439,7 @@
"homepage": "https://play.los40.com/emisora/los40_classic/",
"logoUrl": "https://los40es00.epimg.net/estaticos/recursosgraficos/v1/img/app/los40_192.png",
"votes": 7121,
- "clickcount": 55,
+ "clickcount": 53,
"source": "radio-browser",
"sourceStationUuid": "de39fc19-0636-4d05-acbb-2aba2c0d1f7a"
},
@@ -22721,7 +51487,7 @@
"homepage": "https://www.kissfm.es/",
"logoUrl": null,
"votes": 3952,
- "clickcount": 44,
+ "clickcount": 40,
"source": "radio-browser",
"sourceStationUuid": "743889d5-5472-4e9f-ac61-5f0f04e7efa8"
},
@@ -22755,7 +51521,7 @@
"homepage": "https://www.rtve.es/play/videos/directo/24h/",
"logoUrl": "https://img2.rtve.es/imagenes/directo-elecciones-cataluna/1504082563113.jpg",
"votes": 2937,
- "clickcount": 36,
+ "clickcount": 34,
"source": "radio-browser",
"sourceStationUuid": "e34d6ca5-d554-49e1-a673-a04d8930f303"
},
@@ -22817,7 +51583,7 @@
"homepage": "https://www.pureibizaradio.com/",
"logoUrl": null,
"votes": 12238,
- "clickcount": 24,
+ "clickcount": 23,
"source": "radio-browser",
"sourceStationUuid": "26edc6b6-d221-4814-a6a9-0dd5d5d365d2"
},
@@ -22866,32 +51632,9 @@
"homepage": "https://www.rtve.es/play/radio/radio-3/",
"logoUrl": "https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://www.rtve.es/play/radio/radio-3/&size=16",
"votes": 612,
- "clickcount": 20,
- "source": "radio-browser",
- "sourceStationUuid": "d8b6ba19-f431-471e-9598-94f42af0d3ac"
- },
- {
- "id": "ba71845c-3ceb-4278-9bb7-7b2e3cc6bc41",
- "name": "Flaix FM",
- "country": "Spain",
- "countryCode": "ES",
- "language": "catalan",
- "tags": [
- "dance",
- "house",
- "latin",
- "reggaeton",
- "urban"
- ],
- "codec": "AAC",
- "bitrate": 125,
- "streamUrl": "https://stream.flaixfm.cat/icecast",
- "homepage": "https://flaixfm.cat/",
- "logoUrl": "https://flaixfm.cat/favicon.ico",
- "votes": 1130,
"clickcount": 19,
"source": "radio-browser",
- "sourceStationUuid": "ba71845c-3ceb-4278-9bb7-7b2e3cc6bc41"
+ "sourceStationUuid": "d8b6ba19-f431-471e-9598-94f42af0d3ac"
},
{
"id": "6445c180-6a73-4e3f-834f-4ff6246d30fe",
@@ -22915,6 +51658,46 @@
"source": "radio-browser",
"sourceStationUuid": "6445c180-6a73-4e3f-834f-4ff6246d30fe"
},
+ {
+ "id": "ba71845c-3ceb-4278-9bb7-7b2e3cc6bc41",
+ "name": "Flaix FM",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "catalan",
+ "tags": [
+ "dance",
+ "house",
+ "latin",
+ "reggaeton",
+ "urban"
+ ],
+ "codec": "AAC",
+ "bitrate": 125,
+ "streamUrl": "https://stream.flaixfm.cat/icecast",
+ "homepage": "https://flaixfm.cat/",
+ "logoUrl": "https://flaixfm.cat/favicon.ico",
+ "votes": 1130,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba71845c-3ceb-4278-9bb7-7b2e3cc6bc41"
+ },
+ {
+ "id": "03c2c0cb-0f42-411c-bfd3-51d74da92609",
+ "name": "Radio Marca",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://www.marca.com/radio/geoblock/getSrcApp.php?dial=Nacional&dist=radiomarcaweb",
+ "homepage": "https://www.marca.com/radio.html?intcmp=BOTONPORTADA01&s_kw=radiomarca",
+ "logoUrl": "https://www.marca.com/apple-touch-icon-precomposed.png",
+ "votes": 1244,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "03c2c0cb-0f42-411c-bfd3-51d74da92609"
+ },
{
"id": "d9484397-31a2-45f0-baf8-3db8878e8bc0",
"name": "Hit FM",
@@ -22928,31 +51711,9 @@
"homepage": "https://hitfm.es/",
"logoUrl": "https://www.hitfm.es/wp-content/uploads/2019/06/cropped-favicon-192x192.png",
"votes": 1734,
- "clickcount": 16,
- "source": "radio-browser",
- "sourceStationUuid": "d9484397-31a2-45f0-baf8-3db8878e8bc0"
- },
- {
- "id": "69bc7084-523c-11ea-be63-52543be04c81",
- "name": "Catalunya Informació (Catinfo)",
- "country": "Spain",
- "countryCode": "ES",
- "language": "catalan",
- "tags": [
- "local news",
- "news",
- "news talk",
- "talk"
- ],
- "codec": "AAC",
- "bitrate": 56,
- "streamUrl": "https://shoutcast.ccma.cat/ccma/catalunyainformacioHD.mp3",
- "homepage": "https://www.catradio.cat/catinfo",
- "logoUrl": "https://statics.ccma.cat/img/favicons/catinfo-favicon-96x96.png",
- "votes": 2800,
"clickcount": 15,
"source": "radio-browser",
- "sourceStationUuid": "69bc7084-523c-11ea-be63-52543be04c81"
+ "sourceStationUuid": "d9484397-31a2-45f0-baf8-3db8878e8bc0"
},
{
"id": "6e36299b-6a91-4022-9db4-f72a2c8e9fef",
@@ -22978,23 +51739,6 @@
"source": "radio-browser",
"sourceStationUuid": "6e36299b-6a91-4022-9db4-f72a2c8e9fef"
},
- {
- "id": "03c2c0cb-0f42-411c-bfd3-51d74da92609",
- "name": "Radio Marca",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://www.marca.com/radio/geoblock/getSrcApp.php?dial=Nacional&dist=radiomarcaweb",
- "homepage": "https://www.marca.com/radio.html?intcmp=BOTONPORTADA01&s_kw=radiomarca",
- "logoUrl": "https://www.marca.com/apple-touch-icon-precomposed.png",
- "votes": 1244,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "03c2c0cb-0f42-411c-bfd3-51d74da92609"
- },
{
"id": "5d6b5573-d661-477a-82fc-1d0d03799679",
"name": "Radio Nacional de España - Radio 5 Todo noticias",
@@ -23030,10 +51774,32 @@
"homepage": "https://www.bluemarlinibiza.com/radio/",
"logoUrl": "https://www.bluemarlinibiza.com/wp-content/themes/bluemarlinibiza/favicon64.png",
"votes": 279,
- "clickcount": 13,
+ "clickcount": 14,
"source": "radio-browser",
"sourceStationUuid": "005d4865-d4a4-42bf-a4dd-a8127d9c59c5"
},
+ {
+ "id": "69bc7084-523c-11ea-be63-52543be04c81",
+ "name": "Catalunya Informació (Catinfo)",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "catalan",
+ "tags": [
+ "local news",
+ "news",
+ "news talk",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 56,
+ "streamUrl": "https://shoutcast.ccma.cat/ccma/catalunyainformacioHD.mp3",
+ "homepage": "https://www.catradio.cat/catinfo",
+ "logoUrl": "https://statics.ccma.cat/img/favicons/catinfo-favicon-96x96.png",
+ "votes": 2800,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "69bc7084-523c-11ea-be63-52543be04c81"
+ },
{
"id": "63dd5d75-855f-4e7e-9570-b8d3b338c016",
"name": "Perfect Deep House",
@@ -23074,26 +51840,6 @@
"source": "radio-browser",
"sourceStationUuid": "e29ee7e2-8bd6-454d-aae6-f54db3157fbd"
},
- {
- "id": "55112aa4-5fca-4201-bc53-ae2b467ee087",
- "name": "EsRadio Principal",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [
- "magazines",
- "news"
- ],
- "codec": "MP3",
- "bitrate": 56,
- "streamUrl": "https://libertaddigital-radio-live1.flumotion.com/libertaddigital/ld-live1-low.mp3",
- "homepage": "https://esradio.libertaddigital.com/directo.html",
- "logoUrl": "https://s.libertaddigital.com/2024/08/20/1200/627/esradio/esradio-redes.jpg",
- "votes": 1156,
- "clickcount": 12,
- "source": "radio-browser",
- "sourceStationUuid": "55112aa4-5fca-4201-bc53-ae2b467ee087"
- },
{
"id": "086b58ae-ce63-4019-b982-2a76138783b0",
"name": "+Buena FM",
@@ -23120,6 +51866,43 @@
"source": "radio-browser",
"sourceStationUuid": "086b58ae-ce63-4019-b982-2a76138783b0"
},
+ {
+ "id": "27d6243a-b636-4aa4-a121-065a88c730fa",
+ "name": "COPE A CORUÑA",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "espaňol",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://wecast-bl01.flumotion.com/copesedes/lacoruna.mp3",
+ "homepage": "https://www.cope.es/emisoras/galicia/a-coruna-provincia/a-coruna",
+ "logoUrl": "https://www.cope.es/favicon/cope/apple-touch-icon-192x192.png",
+ "votes": 65,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "27d6243a-b636-4aa4-a121-065a88c730fa"
+ },
+ {
+ "id": "27f60b5f-07e2-4e21-a008-840475578cdc",
+ "name": "Ibiza Sonica",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "english,spain",
+ "tags": [
+ "chill",
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ibizasonica.streaming-pro.com:8000/ibizasonica",
+ "homepage": "https://ibizasonica.com/",
+ "logoUrl": "https://ibizasonica.com/favicon.ico",
+ "votes": 187,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "27f60b5f-07e2-4e21-a008-840475578cdc"
+ },
{
"id": "01adaafa-0ad7-4813-9427-add061d78b91",
"name": "100 % SALSA",
@@ -23162,41 +51945,72 @@
"sourceStationUuid": "04e50d31-07d9-4e6a-927a-b22fb034eb3c"
},
{
- "id": "27d6243a-b636-4aa4-a121-065a88c730fa",
- "name": "COPE A CORUÑA",
+ "id": "34f16bc1-bbe6-43ba-b859-e6f88aa47f9b",
+ "name": "Cadena Ser + Madrid",
"country": "Spain",
"countryCode": "ES",
- "language": "espaňol",
- "tags": [],
- "codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://wecast-bl01.flumotion.com/copesedes/lacoruna.mp3",
- "homepage": "https://www.cope.es/emisoras/galicia/a-coruna-provincia/a-coruna",
- "logoUrl": "https://www.cope.es/favicon/cope/apple-touch-icon-192x192.png",
- "votes": 65,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "27d6243a-b636-4aa4-a121-065a88c730fa"
- },
- {
- "id": "27f60b5f-07e2-4e21-a008-840475578cdc",
- "name": "Ibiza Sonica",
- "country": "Spain",
- "countryCode": "ES",
- "language": "english,spain",
+ "language": "castellano. español",
"tags": [
- "chill",
- "electronic"
+ "debates y deportes",
+ "noticias"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://ibizasonica.streaming-pro.com:8000/ibizasonica",
- "homepage": "https://ibizasonica.com/",
- "logoUrl": "https://ibizasonica.com/favicon.ico",
- "votes": 187,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SER_MAS_MADRID.mp3",
+ "homepage": "https://cadenaser.com/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240620_210054883.jpg?alt=media&token=175e5ab8-cd0d-47e3-a6cb-6bf5bf6edec2",
+ "votes": 228,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "27f60b5f-07e2-4e21-a008-840475578cdc"
+ "sourceStationUuid": "34f16bc1-bbe6-43ba-b859-e6f88aa47f9b"
+ },
+ {
+ "id": "55112aa4-5fca-4201-bc53-ae2b467ee087",
+ "name": "EsRadio Principal",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": null,
+ "tags": [
+ "magazines",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 56,
+ "streamUrl": "https://libertaddigital-radio-live1.flumotion.com/libertaddigital/ld-live1-low.mp3",
+ "homepage": "https://esradio.libertaddigital.com/directo.html",
+ "logoUrl": "https://s.libertaddigital.com/2024/08/20/1200/627/esradio/esradio-redes.jpg",
+ "votes": 1156,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "55112aa4-5fca-4201-bc53-ae2b467ee087"
+ },
+ {
+ "id": "c211df69-480e-4d6b-b29d-b3dbec1f6594",
+ "name": "Ibiza World Club Tour Channel",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "english",
+ "tags": [
+ "dance",
+ "dj",
+ "dj mix",
+ "dj mixes",
+ "dj remix",
+ "dj sets",
+ "djs",
+ "electronic",
+ "hits",
+ "house"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://ibiza-audiomediaradio.radioca.st/ibiza",
+ "homepage": "https://www.hits1radio.com/",
+ "logoUrl": "https://www.hits1radio.com/wp-content/uploads/2020/06/IBIZA-World-Club-1-100x100.png",
+ "votes": 109,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "c211df69-480e-4d6b-b29d-b3dbec1f6594"
},
{
"id": "6ad5e93f-869d-4165-a685-25e8363c1bf4",
@@ -23250,54 +52064,6 @@
"source": "radio-browser",
"sourceStationUuid": "373e8330-81d4-4498-adca-1e2a73ae0908"
},
- {
- "id": "34f16bc1-bbe6-43ba-b859-e6f88aa47f9b",
- "name": "Cadena Ser + Madrid",
- "country": "Spain",
- "countryCode": "ES",
- "language": "castellano. español",
- "tags": [
- "debates y deportes",
- "noticias"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SER_MAS_MADRID.mp3",
- "homepage": "https://cadenaser.com/",
- "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240620_210054883.jpg?alt=media&token=175e5ab8-cd0d-47e3-a6cb-6bf5bf6edec2",
- "votes": 228,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "34f16bc1-bbe6-43ba-b859-e6f88aa47f9b"
- },
- {
- "id": "c211df69-480e-4d6b-b29d-b3dbec1f6594",
- "name": "Ibiza World Club Tour Channel",
- "country": "Spain",
- "countryCode": "ES",
- "language": "english",
- "tags": [
- "dance",
- "dj",
- "dj mix",
- "dj mixes",
- "dj remix",
- "dj sets",
- "djs",
- "electronic",
- "hits",
- "house"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://ibiza-audiomediaradio.radioca.st/ibiza",
- "homepage": "https://www.hits1radio.com/",
- "logoUrl": "https://www.hits1radio.com/wp-content/uploads/2020/06/IBIZA-World-Club-1-100x100.png",
- "votes": 109,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "c211df69-480e-4d6b-b29d-b3dbec1f6594"
- },
{
"id": "80275338-f9c4-418c-a142-28acf902ef5c",
"name": "Radio Libertad",
@@ -23316,48 +52082,25 @@
"sourceStationUuid": "80275338-f9c4-418c-a142-28acf902ef5c"
},
{
- "id": "5783c95b-67d9-4976-905a-64acd2b4f7aa",
- "name": "RNE - R5 --> Madrid",
+ "id": "6655d7e7-6e26-473d-8eaf-08f42cfe5570",
+ "name": "1000 Hits Spain",
"country": "Spain",
"countryCode": "ES",
"language": "spanish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://d121.rndfnk.com/star/crtve/rne5/mad/mp3/128/stream.mp3?cid=01GEP4QN2TSXQQDS2JQA783NYX&sid=2HgHkKUje0YQl468xMDmJHKhDmz&token=bRjUW1ZmpjTaF8EgRmo3u6OCUep9WTHKjib0rpzUUzw&tvf=FG8P7Wd9KBdkMTIxLnJuZGZuay5jb20",
- "homepage": "https://www.rtve.es/play/audios/programa/rne5_mad-live/3894730/",
- "logoUrl": null,
- "votes": 573,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "5783c95b-67d9-4976-905a-64acd2b4f7aa"
- },
- {
- "id": "f3081f41-531f-4e38-88bc-8e1a699635c4",
- "name": "#1 Splash 90s Dance",
- "country": "Spain",
- "countryCode": "ES",
- "language": "english",
"tags": [
- "1990s",
- "90's",
- "90er",
- "90s",
- "90s dance",
- "90s y más",
- "dance",
- "pop dance",
- "splash"
+ "hits",
+ "music",
+ "pop"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://c6.auracast.net/radio/8090/radio.mp3",
- "homepage": "https://www.splashradio.eu/",
- "logoUrl": null,
- "votes": 1448,
+ "streamUrl": "https://c2.auracast.net:8022/;",
+ "homepage": "https://www.facebook.com/1000hitspain",
+ "logoUrl": "https://liveonlineradio.net/wp-content/uploads/2017/09/1000-Hits-Spain-100x47.jpg",
+ "votes": 146,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "f3081f41-531f-4e38-88bc-8e1a699635c4"
+ "sourceStationUuid": "6655d7e7-6e26-473d-8eaf-08f42cfe5570"
},
{
"id": "040e5997-984b-4fd8-a758-2bb328daa4ed",
@@ -23380,25 +52123,6 @@
"source": "radio-browser",
"sourceStationUuid": "040e5997-984b-4fd8-a758-2bb328daa4ed"
},
- {
- "id": "824f1de6-b473-45ad-9149-94d1ff573c84",
- "name": "FlaixBAC",
- "country": "Spain",
- "countryCode": "ES",
- "language": "catalan,spanish",
- "tags": [
- "pop"
- ],
- "codec": "AAC",
- "bitrate": 125,
- "streamUrl": "https://stream.flaixbac.cat/icecast",
- "homepage": "https://www.flaixbac.cat/",
- "logoUrl": "https://flaixbac.cat/favicon_bac_32x32.png",
- "votes": 627,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "824f1de6-b473-45ad-9149-94d1ff573c84"
- },
{
"id": "bb9cb63d-f23a-4514-b9a0-9027f1c7d028",
"name": "Ibiza Global Classics",
@@ -23422,36 +52146,6 @@
"source": "radio-browser",
"sourceStationUuid": "bb9cb63d-f23a-4514-b9a0-9027f1c7d028"
},
- {
- "id": "153777aa-209e-4769-bde5-46abafd375e7",
- "name": "INFORMA RADIO",
- "country": "Spain",
- "countryCode": "ES",
- "language": "castellano. español,españa,español internacional,espaňol,spanish",
- "tags": [
- "albacete",
- "almería",
- "andalucía",
- "aragon",
- "bilbao",
- "cadiz",
- "castilla y león",
- "catalunya",
- "conservative",
- "conservative talk",
- "cordoba",
- "cultura"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://24x7.red:42045/informa",
- "homepage": "https://informaradio.edatv.news/",
- "logoUrl": "https://informaradio.edatv.news/fav-300x300.png",
- "votes": 881,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "153777aa-209e-4769-bde5-46abafd375e7"
- },
{
"id": "aae29e02-707e-4cac-98f6-bfd325cecd87",
"name": "Kiss-FM Madrid",
@@ -23494,23 +52188,48 @@
"sourceStationUuid": "ffc3c473-6eb2-47f8-a0be-6536a8beda00"
},
{
- "id": "07dbb40c-f3a8-4f45-925d-c16ef08c7293",
- "name": "Radio Marca Madrid",
+ "id": "5783c95b-67d9-4976-905a-64acd2b4f7aa",
+ "name": "RNE - R5 --> Madrid",
"country": "Spain",
"countryCode": "ES",
"language": "spanish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://d121.rndfnk.com/star/crtve/rne5/mad/mp3/128/stream.mp3?cid=01GEP4QN2TSXQQDS2JQA783NYX&sid=2HgHkKUje0YQl468xMDmJHKhDmz&token=bRjUW1ZmpjTaF8EgRmo3u6OCUep9WTHKjib0rpzUUzw&tvf=FG8P7Wd9KBdkMTIxLnJuZGZuay5jb20",
+ "homepage": "https://www.rtve.es/play/audios/programa/rne5_mad-live/3894730/",
+ "logoUrl": null,
+ "votes": 573,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "5783c95b-67d9-4976-905a-64acd2b4f7aa"
+ },
+ {
+ "id": "f3081f41-531f-4e38-88bc-8e1a699635c4",
+ "name": "#1 Splash 90s Dance",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "english",
"tags": [
- "sports"
+ "1990s",
+ "90's",
+ "90er",
+ "90s",
+ "90s dance",
+ "90s y más",
+ "dance",
+ "pop dance",
+ "splash"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIOMARCA_NACIONAL_SC",
- "homepage": "https://www.marca.com/radio.html",
+ "streamUrl": "https://c6.auracast.net/radio/8090/radio.mp3",
+ "homepage": "https://www.splashradio.eu/",
"logoUrl": null,
- "votes": 6112,
- "clickcount": 8,
+ "votes": 1448,
+ "clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "07dbb40c-f3a8-4f45-925d-c16ef08c7293"
+ "sourceStationUuid": "f3081f41-531f-4e38-88bc-8e1a699635c4"
},
{
"id": "9592171c-b5a5-45ad-9241-a5d354b249b1",
@@ -23537,27 +52256,6 @@
"source": "radio-browser",
"sourceStationUuid": "9592171c-b5a5-45ad-9241-a5d354b249b1"
},
- {
- "id": "6655d7e7-6e26-473d-8eaf-08f42cfe5570",
- "name": "1000 Hits Spain",
- "country": "Spain",
- "countryCode": "ES",
- "language": "spanish",
- "tags": [
- "hits",
- "music",
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://c2.auracast.net:8022/;",
- "homepage": "https://www.facebook.com/1000hitspain",
- "logoUrl": "https://liveonlineradio.net/wp-content/uploads/2017/09/1000-Hits-Spain-100x47.jpg",
- "votes": 146,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "6655d7e7-6e26-473d-8eaf-08f42cfe5570"
- },
{
"id": "328563aa-8f11-472b-a191-e684bfe3afec",
"name": "80s 90s Absolute Hits",
@@ -23644,80 +52342,72 @@
"sourceStationUuid": "dab3b3c4-7130-4df1-9a71-1c64a6944734"
},
{
- "id": "928fa2e1-6312-42b2-af33-e7329f681ff8",
- "name": "Costa Del Mar Smooth Jazz",
+ "id": "824f1de6-b473-45ad-9149-94d1ff573c84",
+ "name": "FlaixBAC",
"country": "Spain",
"countryCode": "ES",
- "language": "espanish,spanish",
+ "language": "catalan,spanish",
"tags": [
- "smooth jazz",
- "smooth lounge"
+ "pop"
],
- "codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://radio4.cdm-radio.com:18024/stream-mp3-Smooth",
- "homepage": "http://www.cdm-smoothsax.com/",
- "logoUrl": null,
- "votes": 1614,
+ "codec": "AAC",
+ "bitrate": 125,
+ "streamUrl": "https://stream.flaixbac.cat/icecast",
+ "homepage": "https://www.flaixbac.cat/",
+ "logoUrl": "https://flaixbac.cat/favicon_bac_32x32.png",
+ "votes": 627,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "928fa2e1-6312-42b2-af33-e7329f681ff8"
+ "sourceStationUuid": "824f1de6-b473-45ad-9149-94d1ff573c84"
},
{
- "id": "01dd57ed-db38-4b33-bd4e-7a5ee8bcfe50",
- "name": "Cadena SER Sevilla",
+ "id": "153777aa-209e-4769-bde5-46abafd375e7",
+ "name": "INFORMA RADIO",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "castellano. español,españa,español internacional,espaňol,spanish",
+ "tags": [
+ "albacete",
+ "almería",
+ "andalucía",
+ "aragon",
+ "bilbao",
+ "cadiz",
+ "castilla y león",
+ "catalunya",
+ "conservative",
+ "conservative talk",
+ "cordoba",
+ "cultura"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://24x7.red:42045/informa",
+ "homepage": "https://informaradio.edatv.news/",
+ "logoUrl": "https://informaradio.edatv.news/fav-300x300.png",
+ "votes": 881,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "153777aa-209e-4769-bde5-46abafd375e7"
+ },
+ {
+ "id": "07dbb40c-f3a8-4f45-925d-c16ef08c7293",
+ "name": "Radio Marca Madrid",
"country": "Spain",
"countryCode": "ES",
"language": "spanish",
"tags": [
- "local news",
- "news",
- "news talk",
- "news talk music"
+ "sports"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SER_SEVILLA.mp3",
- "homepage": "https://cadenaser.com/radio-sevilla/",
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RADIOMARCA_NACIONAL_SC",
+ "homepage": "https://www.marca.com/radio.html",
"logoUrl": null,
- "votes": 168,
- "clickcount": 6,
+ "votes": 6112,
+ "clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "01dd57ed-db38-4b33-bd4e-7a5ee8bcfe50"
- },
- {
- "id": "b26f9c38-9e2b-410e-9e8f-875a1774701d",
- "name": "Gozadera Fm",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://streaming.shoutcast.com/gozadera",
- "homepage": "https://gozadera.es/",
- "logoUrl": "https://gozadera.es/favicon.ico",
- "votes": 133,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "b26f9c38-9e2b-410e-9e8f-875a1774701d"
- },
- {
- "id": "1f92ee31-b9ba-46bb-b669-965e980b58ca",
- "name": "Swing latinos FM",
- "country": "Spain",
- "countryCode": "ES",
- "language": "spanish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://eu1.lhdserver.es:9033/stream",
- "homepage": "https://www.swinglatinosfm.com/",
- "logoUrl": "https://www.swinglatinosfm.com/images/favicon.ico",
- "votes": 378,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "1f92ee31-b9ba-46bb-b669-965e980b58ca"
+ "sourceStationUuid": "07dbb40c-f3a8-4f45-925d-c16ef08c7293"
},
{
"id": "2658d72b-9134-4a96-87b1-7488432c99d0",
@@ -23743,33 +52433,141 @@
"homepage": "https://www.splashradio.eu/",
"logoUrl": null,
"votes": 133,
- "clickcount": 5,
+ "clickcount": 6,
"source": "radio-browser",
"sourceStationUuid": "2658d72b-9134-4a96-87b1-7488432c99d0"
},
{
- "id": "cf670706-e552-4ffd-b0fc-0a3b55315cf6",
- "name": "1000 HITS Classical",
+ "id": "01dd57ed-db38-4b33-bd4e-7a5ee8bcfe50",
+ "name": "Cadena SER Sevilla",
"country": "Spain",
"countryCode": "ES",
- "language": "english",
+ "language": "spanish",
"tags": [
- "classical",
- "classical baroque",
- "classical guitar",
- "classical music",
- "classical piano",
- "contemporary classical"
+ "local news",
+ "news",
+ "news talk",
+ "news talk music"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://ais-sa2.cdnstream1.com/2208_128.mp3",
- "homepage": "https://www.splashradio.eu/",
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SER_SEVILLA.mp3",
+ "homepage": "https://cadenaser.com/radio-sevilla/",
"logoUrl": null,
- "votes": 342,
- "clickcount": 5,
+ "votes": 168,
+ "clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "cf670706-e552-4ffd-b0fc-0a3b55315cf6"
+ "sourceStationUuid": "01dd57ed-db38-4b33-bd4e-7a5ee8bcfe50"
+ },
+ {
+ "id": "928fa2e1-6312-42b2-af33-e7329f681ff8",
+ "name": "Costa Del Mar Smooth Jazz",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "espanish,spanish",
+ "tags": [
+ "smooth jazz",
+ "smooth lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://radio4.cdm-radio.com:18024/stream-mp3-Smooth",
+ "homepage": "http://www.cdm-smoothsax.com/",
+ "logoUrl": null,
+ "votes": 1614,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "928fa2e1-6312-42b2-af33-e7329f681ff8"
+ },
+ {
+ "id": "b26f9c38-9e2b-410e-9e8f-875a1774701d",
+ "name": "Gozadera Fm",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.shoutcast.com/gozadera",
+ "homepage": "https://gozadera.es/",
+ "logoUrl": "https://gozadera.es/favicon.ico",
+ "votes": 133,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b26f9c38-9e2b-410e-9e8f-875a1774701d"
+ },
+ {
+ "id": "44fefd48-3aae-4c64-bef7-261cae0da4cd",
+ "name": "Graba Radio Ibiza",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "italian",
+ "tags": [
+ "dance",
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.grabamusic.com/gmr-hd",
+ "homepage": "https://www.grabaradioibiza.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s269847/images/logod.jpg",
+ "votes": 145,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "44fefd48-3aae-4c64-bef7-261cae0da4cd"
+ },
+ {
+ "id": "e600f2f3-a077-47aa-a08d-85b365ada6b1",
+ "name": "Ibiza Sonica Club",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "english,spanish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://ibizasonica.streaming-pro.com:8011/sonicaclub",
+ "homepage": "https://ibizasonica.com/",
+ "logoUrl": null,
+ "votes": 230,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "e600f2f3-a077-47aa-a08d-85b365ada6b1"
+ },
+ {
+ "id": "6d5e38ec-02f3-44ba-a81c-301560593eef",
+ "name": "RAC105",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "catalan",
+ "tags": [
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RAC105.mp3",
+ "homepage": "https://www.rac105.cat/",
+ "logoUrl": "https://www.rac105.cat/favicon.ico",
+ "votes": 279,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "6d5e38ec-02f3-44ba-a81c-301560593eef"
+ },
+ {
+ "id": "1f92ee31-b9ba-46bb-b669-965e980b58ca",
+ "name": "Swing latinos FM",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "spanish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://eu1.lhdserver.es:9033/stream",
+ "homepage": "https://www.swinglatinosfm.com/",
+ "logoUrl": "https://www.swinglatinosfm.com/images/favicon.ico",
+ "votes": 378,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "1f92ee31-b9ba-46bb-b669-965e980b58ca"
},
{
"id": "05a799c5-4864-412e-a146-4ecea577b4b0",
@@ -23790,6 +52588,26 @@
"source": "radio-browser",
"sourceStationUuid": "05a799c5-4864-412e-a146-4ecea577b4b0"
},
+ {
+ "id": "3ca6ceb6-c394-4b44-b151-6f5add5cd100",
+ "name": "Cadena Ser +",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "espaňol",
+ "tags": [
+ "debates y deportes",
+ "noticias"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://27953.live.streamtheworld.com/CADENASER_ALT1AAC.aac",
+ "homepage": "https://cadenaser.com/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240620_101739265.jpg?alt=media&token=c3ddd8ca-8050-4aa8-9caf-3433ce5d24b7",
+ "votes": 141,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ca6ceb6-c394-4b44-b151-6f5add5cd100"
+ },
{
"id": "54fd227a-1087-4639-ba4c-21812a8cf0aa",
"name": "Cadena Ser + Alicante",
@@ -23870,6 +52688,23 @@
"source": "radio-browser",
"sourceStationUuid": "0810a990-a85a-472c-ba9c-f18af750a19f"
},
+ {
+ "id": "03fa5087-3dfd-410e-8930-6969afedb509",
+ "name": "Europa FM Guipuzcoa",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "spanish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/se76qau1hc9uv",
+ "homepage": "https://stream.zeno.fm/se76qau1hc9uv",
+ "logoUrl": null,
+ "votes": 267,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "03fa5087-3dfd-410e-8930-6969afedb509"
+ },
{
"id": "ac9b04b8-0e23-4fd7-ab49-69cb58caea49",
"name": "Ibiza Live Radio",
@@ -23891,23 +52726,6 @@
"source": "radio-browser",
"sourceStationUuid": "ac9b04b8-0e23-4fd7-ab49-69cb58caea49"
},
- {
- "id": "e600f2f3-a077-47aa-a08d-85b365ada6b1",
- "name": "Ibiza Sonica Club",
- "country": "Spain",
- "countryCode": "ES",
- "language": "english,spanish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://ibizasonica.streaming-pro.com:8011/sonicaclub",
- "homepage": "https://ibizasonica.com/",
- "logoUrl": null,
- "votes": 230,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "e600f2f3-a077-47aa-a08d-85b365ada6b1"
- },
{
"id": "a3d45eec-8fb2-4e8a-8925-057d04576925",
"name": "Ibiza X Radio",
@@ -23974,40 +52792,40 @@
"sourceStationUuid": "c1ddb53b-94e0-44ac-85c4-72054757bf20"
},
{
- "id": "3d8b1a37-3c59-4d8a-ada4-d436d7ab8e82",
- "name": "Los40 Dance",
+ "id": "42a4db83-741f-49f4-892f-79776d35f8b4",
+ "name": "Los 40 classic",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "castellano. español",
+ "tags": [
+ "classic hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://22543.live.streamtheworld.com/LOS40_CLASSIC.mp3",
+ "homepage": "https://los40.com/los40_classic/",
+ "logoUrl": "https://los40es00.epimg.net/favicon.png",
+ "votes": 30,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "42a4db83-741f-49f4-892f-79776d35f8b4"
+ },
+ {
+ "id": "47891e88-36ba-4dc0-b381-a53a0b9c19a4",
+ "name": "Radio Bluesflac",
"country": "Spain",
"countryCode": "ES",
"language": null,
"tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/LOS40_DANCE.mp3",
- "homepage": "https://play.los40.com/emisora/los40_dance/",
- "logoUrl": "https://los40es00.epimg.net/estaticos/recursosgraficos/v1/img/app/los40_192.png",
- "votes": 156,
+ "codec": "OGG",
+ "bitrate": 1500,
+ "streamUrl": "https://audio-edge-jfbmv.sin.d.radiomast.io/radioblues-flac?t=nightvision%3Fs%3D88baf5be-4b2d-416a-afc6-b0d9be7c9f1e&cachebuster=5213503296919065",
+ "homepage": "https://bluesflac.com/",
+ "logoUrl": "https://bluesflac.com/wp-content/uploads/2020/02/cropped-bluesflac1.png",
+ "votes": 275,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "3d8b1a37-3c59-4d8a-ada4-d436d7ab8e82"
- },
- {
- "id": "6d5e38ec-02f3-44ba-a81c-301560593eef",
- "name": "RAC105",
- "country": "Spain",
- "countryCode": "ES",
- "language": "catalan",
- "tags": [
- "pop music"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/RAC105.mp3",
- "homepage": "https://www.rac105.cat/",
- "logoUrl": "https://www.rac105.cat/favicon.ico",
- "votes": 279,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "6d5e38ec-02f3-44ba-a81c-301560593eef"
+ "sourceStationUuid": "47891e88-36ba-4dc0-b381-a53a0b9c19a4"
},
{
"id": "24affb27-d0da-4e7d-bc6f-4d3773eba549",
@@ -24029,6 +52847,30 @@
"source": "radio-browser",
"sourceStationUuid": "24affb27-d0da-4e7d-bc6f-4d3773eba549"
},
+ {
+ "id": "87aa35fa-37b4-47bf-bb10-bceeb024a7d3",
+ "name": "Radio Nature",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": null,
+ "tags": [
+ "ambient",
+ "chill",
+ "meditation",
+ "nature",
+ "relax",
+ "zen"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/3ac97ysh6f0uv.aac",
+ "homepage": "http://radionature.weebly.com/",
+ "logoUrl": "https://www.radio.pl/300/radionature.png",
+ "votes": 183,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "87aa35fa-37b4-47bf-bb10-bceeb024a7d3"
+ },
{
"id": "6da055c0-389c-40d8-bd16-f90167987c14",
"name": "RNE - Radio Clásica",
@@ -24068,6 +52910,30 @@
"source": "radio-browser",
"sourceStationUuid": "d502a4f0-738a-45e1-b13b-113a505609fe"
},
+ {
+ "id": "cf670706-e552-4ffd-b0fc-0a3b55315cf6",
+ "name": "1000 HITS Classical",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": "english",
+ "tags": [
+ "classical",
+ "classical baroque",
+ "classical guitar",
+ "classical music",
+ "classical piano",
+ "contemporary classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ais-sa2.cdnstream1.com/2208_128.mp3",
+ "homepage": "https://www.splashradio.eu/",
+ "logoUrl": null,
+ "votes": 342,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "cf670706-e552-4ffd-b0fc-0a3b55315cf6"
+ },
{
"id": "a790914b-5ec5-4fc4-bb6e-2f345c2dbe9e",
"name": "Cadena Ser + Bilbao",
@@ -24109,25 +52975,21 @@
"sourceStationUuid": "fe524fd4-1c4e-4d5f-a58a-9bf530eb4e61"
},
{
- "id": "92719b50-e730-4ffe-bdaf-d2104c973d02",
- "name": "Cadena SER Coruña",
+ "id": "2c7e50bc-f998-4650-9ad6-d1bb56eeeb4c",
+ "name": "Cafe del Mar Channel 2",
"country": "Spain",
"countryCode": "ES",
- "language": "galician,spanish",
- "tags": [
- "entertainment",
- "local news",
- "news"
- ],
+ "language": null,
+ "tags": [],
"codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SER_ASO_CORUNA.mp3",
- "homepage": "https://cadenaser.com/radio-coruna/",
- "logoUrl": "https://cadenaser.com/pf/resources/img/favicon.png?d=946",
- "votes": 161,
+ "bitrate": 192,
+ "streamUrl": "https://s4.radio.co/seeae9c220/listen",
+ "homepage": "https://cafedelmar.com/radio",
+ "logoUrl": "https://images.radio.co/station_logos/se1a320b47.20210412021711.png",
+ "votes": 47,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "92719b50-e730-4ffe-bdaf-d2104c973d02"
+ "sourceStationUuid": "2c7e50bc-f998-4650-9ad6-d1bb56eeeb4c"
},
{
"id": "f37830fa-76d3-4b85-addb-f3548e6d08ea",
@@ -24146,40 +53008,6 @@
"source": "radio-browser",
"sourceStationUuid": "f37830fa-76d3-4b85-addb-f3548e6d08ea"
},
- {
- "id": "a092bb58-ba46-4c42-a557-2c211beca582",
- "name": "Das Inselradio Malorca",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://addrad.io/445fxk9",
- "homepage": "https://www.inselradio.com/",
- "logoUrl": null,
- "votes": 31,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "a092bb58-ba46-4c42-a557-2c211beca582"
- },
- {
- "id": "03fa5087-3dfd-410e-8930-6969afedb509",
- "name": "Europa FM Guipuzcoa",
- "country": "Spain",
- "countryCode": "ES",
- "language": "spanish",
- "tags": [],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://stream.zeno.fm/se76qau1hc9uv",
- "homepage": "https://stream.zeno.fm/se76qau1hc9uv",
- "logoUrl": null,
- "votes": 267,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "03fa5087-3dfd-410e-8930-6969afedb509"
- },
{
"id": "6e232079-a9af-4765-a1ff-27410a798f94",
"name": "Free FM Chill",
@@ -24200,62 +53028,55 @@
"sourceStationUuid": "6e232079-a9af-4765-a1ff-27410a798f94"
},
{
- "id": "44fefd48-3aae-4c64-bef7-261cae0da4cd",
- "name": "Graba Radio Ibiza",
- "country": "Spain",
- "countryCode": "ES",
- "language": "italian",
- "tags": [
- "dance",
- "electronic"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://radio.grabamusic.com/gmr-hd",
- "homepage": "https://www.grabaradioibiza.com/",
- "logoUrl": "https://cdn-profiles.tunein.com/s269847/images/logod.jpg",
- "votes": 145,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "44fefd48-3aae-4c64-bef7-261cae0da4cd"
- },
- {
- "id": "a00d6706-790f-498f-af56-035138b831f5",
- "name": "Kiss FM España",
+ "id": "c51cb471-8c0d-46ae-938b-f021c454803b",
+ "name": "Ibiza Orgánica",
"country": "Spain",
"countryCode": "ES",
"language": null,
- "tags": [
- "decades"
- ],
+ "tags": [],
"codec": "AAC",
- "bitrate": 80,
- "streamUrl": "https://live.kissfm.ro/kissfm.aacp",
- "homepage": "https://www.kissfm.es/",
+ "bitrate": 0,
+ "streamUrl": "https://stream.aiir.com/ilduibssvzbtv",
+ "homepage": "https://ibizaorganica.com/",
"logoUrl": null,
- "votes": 280,
+ "votes": 71,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "a00d6706-790f-498f-af56-035138b831f5"
+ "sourceStationUuid": "c51cb471-8c0d-46ae-938b-f021c454803b"
},
{
- "id": "42a4db83-741f-49f4-892f-79776d35f8b4",
- "name": "Los 40 classic",
+ "id": "531f957f-afd2-4cbf-b77d-9ef04b6ee473",
+ "name": "La flamenca",
"country": "Spain",
"countryCode": "ES",
- "language": "castellano. español",
- "tags": [
- "classic hits"
- ],
+ "language": null,
+ "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://22543.live.streamtheworld.com/LOS40_CLASSIC.mp3",
- "homepage": "https://los40.com/los40_classic/",
- "logoUrl": "https://los40es00.epimg.net/favicon.png",
- "votes": 30,
+ "streamUrl": "https://stream.emisorasmusicales.net/listen/la_flamenca/laflamenca.mp3",
+ "homepage": "https://www.emisorasmusicales.net/",
+ "logoUrl": "https://media.emisorasmusicales.net/wp-content/uploads/2020/03/23102601/la-flamenca-.svg",
+ "votes": 62,
"clickcount": 4,
"source": "radio-browser",
- "sourceStationUuid": "42a4db83-741f-49f4-892f-79776d35f8b4"
+ "sourceStationUuid": "531f957f-afd2-4cbf-b77d-9ef04b6ee473"
+ },
+ {
+ "id": "3d8b1a37-3c59-4d8a-ada4-d436d7ab8e82",
+ "name": "Los40 Dance",
+ "country": "Spain",
+ "countryCode": "ES",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/LOS40_DANCE.mp3",
+ "homepage": "https://play.los40.com/emisora/los40_dance/",
+ "logoUrl": "https://los40es00.epimg.net/estaticos/recursosgraficos/v1/img/app/los40_192.png",
+ "votes": 156,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "3d8b1a37-3c59-4d8a-ada4-d436d7ab8e82"
},
{
"id": "a5bf8121-0877-405c-b4dc-ca5c4af496fe",
@@ -24276,59 +53097,6 @@
"source": "radio-browser",
"sourceStationUuid": "a5bf8121-0877-405c-b4dc-ca5c4af496fe"
},
- {
- "id": "fabb93fa-355a-476d-95ee-9be8efff844e",
- "name": "Nostalgia",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 96,
- "streamUrl": "https://azura.abcorp.es/listen/nostalgia/live",
- "homepage": "https://nostalgiafm.es/",
- "logoUrl": "https://nostalgiafm.es/favicon.ico",
- "votes": 114,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "fabb93fa-355a-476d-95ee-9be8efff844e"
- },
- {
- "id": "581591c8-61fd-4f10-973b-c400870e8e90",
- "name": "Onda Cero Sevilla",
- "country": "Spain",
- "countryCode": "ES",
- "language": "spanish",
- "tags": [
- "noticias"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://atres-live.ondacero.es/live/delegaciones/oc/sevilla/master.m3u8",
- "homepage": "https://www.ondacero.es/",
- "logoUrl": "https://static.ondacero.es/img/favicon.ico?ondacero",
- "votes": 276,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "581591c8-61fd-4f10-973b-c400870e8e90"
- },
- {
- "id": "47891e88-36ba-4dc0-b381-a53a0b9c19a4",
- "name": "Radio Bluesflac",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [],
- "codec": "OGG",
- "bitrate": 1500,
- "streamUrl": "https://audio-edge-jfbmv.sin.d.radiomast.io/radioblues-flac?t=nightvision%3Fs%3D88baf5be-4b2d-416a-afc6-b0d9be7c9f1e&cachebuster=5213503296919065",
- "homepage": "https://bluesflac.com/",
- "logoUrl": "https://bluesflac.com/wp-content/uploads/2020/02/cropped-bluesflac1.png",
- "votes": 275,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "47891e88-36ba-4dc0-b381-a53a0b9c19a4"
- },
{
"id": "67575343-1b6b-463b-89cb-557aa0313a24",
"name": "RADIO BOB",
@@ -24372,30 +53140,6 @@
"source": "radio-browser",
"sourceStationUuid": "e821a311-f427-40ee-bbc3-4fe5609554b7"
},
- {
- "id": "87aa35fa-37b4-47bf-bb10-bceeb024a7d3",
- "name": "Radio Nature",
- "country": "Spain",
- "countryCode": "ES",
- "language": null,
- "tags": [
- "ambient",
- "chill",
- "meditation",
- "nature",
- "relax",
- "zen"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.zeno.fm/3ac97ysh6f0uv.aac",
- "homepage": "http://radionature.weebly.com/",
- "logoUrl": "https://www.radio.pl/300/radionature.png",
- "votes": 183,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "87aa35fa-37b4-47bf-bb10-bceeb024a7d3"
- },
{
"id": "162203ff-03dc-46ce-8fa3-ba16019fc7cb",
"name": "RADIOLE (España)",
@@ -24428,7 +53172,7 @@
"homepage": "https://sverigesradio.se/p3",
"logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-p3.png",
"votes": 498,
- "clickcount": 35,
+ "clickcount": 32,
"source": "radio-browser",
"sourceStationUuid": "e4f6d392-f704-4cf0-8d26-9c931cebeaf6"
},
@@ -24451,6 +53195,27 @@
"source": "radio-browser",
"sourceStationUuid": "0772676d-9fe4-4945-b63f-3e88e5aeb374"
},
+ {
+ "id": "960c660b-0601-11e8-ae97-52543be04c81",
+ "name": "Sveriges Radio - P1",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [
+ "news",
+ "public radio",
+ "sveriges radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 312,
+ "streamUrl": "https://live1.sr.se/p1-aac-320",
+ "homepage": "https://sverigesradio.se/",
+ "logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-default.png",
+ "votes": 3247,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "960c660b-0601-11e8-ae97-52543be04c81"
+ },
{
"id": "0d3a2fd0-4c71-46ee-8700-2686fb699307",
"name": "RIX FM 106,7",
@@ -24470,27 +53235,6 @@
"source": "radio-browser",
"sourceStationUuid": "0d3a2fd0-4c71-46ee-8700-2686fb699307"
},
- {
- "id": "960c660b-0601-11e8-ae97-52543be04c81",
- "name": "Sveriges Radio - P1",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "news",
- "public radio",
- "sveriges radio"
- ],
- "codec": "AAC",
- "bitrate": 312,
- "streamUrl": "https://live1.sr.se/p1-aac-320",
- "homepage": "https://sverigesradio.se/",
- "logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-default.png",
- "votes": 3247,
- "clickcount": 22,
- "source": "radio-browser",
- "sourceStationUuid": "960c660b-0601-11e8-ae97-52543be04c81"
- },
{
"id": "817d37ef-474f-4072-bc48-8619eedafd97",
"name": "Dansbandskanalen",
@@ -24528,25 +53272,21 @@
"sourceStationUuid": "ac551e97-29fe-4eb2-979f-7438ad647d15"
},
{
- "id": "78563d75-79f2-4c67-a80d-291891e2fb88",
- "name": "Bandit Metal",
+ "id": "f522cf8a-9513-4975-974e-4335aac37cf3",
+ "name": "Vinyl FM",
"country": "Sweden",
"countryCode": "SE",
"language": null,
- "tags": [
- "death metal",
- "hard rock",
- "metal"
- ],
+ "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://wr03-ice.stream.khz.se/wr03_mp3",
- "homepage": "https://www.viaplayradio.se/banditmetal/",
- "logoUrl": "https://www.phonostar.de/images/auto_created/bandit_metal2184x184.png",
- "votes": 199,
- "clickcount": 12,
+ "streamUrl": "https://edge-bauerse-06-thn.sharp-stream.com/vinylfm_instream_se_mp3?",
+ "homepage": "https://radioplay.se/vinylfm/",
+ "logoUrl": "https://assets.planetradio.co.uk/img/ConfigStraplineImageUrl/458.svg?ver=1589463934",
+ "votes": 369,
+ "clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "78563d75-79f2-4c67-a80d-291891e2fb88"
+ "sourceStationUuid": "f522cf8a-9513-4975-974e-4335aac37cf3"
},
{
"id": "1e6e8797-ca3e-41d2-881b-56fa455f3ee1",
@@ -24568,23 +53308,25 @@
"sourceStationUuid": "1e6e8797-ca3e-41d2-881b-56fa455f3ee1"
},
{
- "id": "40dfa430-7988-4b02-ae1b-ce5fe8b5aad3",
- "name": "Bandit Classic Rock",
+ "id": "78563d75-79f2-4c67-a80d-291891e2fb88",
+ "name": "Bandit Metal",
"country": "Sweden",
"countryCode": "SE",
- "language": "swedish",
+ "language": null,
"tags": [
- "classic rock"
+ "death metal",
+ "hard rock",
+ "metal"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://wr11-ice.stream.khz.se/wr11_mp3",
- "homepage": "https://www.ilikeradio.se/banditclassicrock/",
- "logoUrl": null,
- "votes": 389,
+ "streamUrl": "https://wr03-ice.stream.khz.se/wr03_mp3",
+ "homepage": "https://www.viaplayradio.se/banditmetal/",
+ "logoUrl": "https://www.phonostar.de/images/auto_created/bandit_metal2184x184.png",
+ "votes": 199,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "40dfa430-7988-4b02-ae1b-ce5fe8b5aad3"
+ "sourceStationUuid": "78563d75-79f2-4c67-a80d-291891e2fb88"
},
{
"id": "287a4851-de0c-4184-8255-b435d6b62e0b",
@@ -24604,21 +53346,43 @@
"sourceStationUuid": "287a4851-de0c-4184-8255-b435d6b62e0b"
},
{
- "id": "f522cf8a-9513-4975-974e-4335aac37cf3",
- "name": "Vinyl FM",
+ "id": "003dea75-02eb-40c2-8a92-5150a709b74d",
+ "name": "Sveriges Radio P4 Göteborg",
"country": "Sweden",
"countryCode": "SE",
- "language": null,
- "tags": [],
- "codec": "MP3",
+ "language": "swedish",
+ "tags": [
+ "local radio",
+ "music"
+ ],
+ "codec": "AAC",
"bitrate": 128,
- "streamUrl": "https://edge-bauerse-06-thn.sharp-stream.com/vinylfm_instream_se_mp3?",
- "homepage": "https://radioplay.se/vinylfm/",
- "logoUrl": "https://assets.planetradio.co.uk/img/ConfigStraplineImageUrl/458.svg?ver=1589463934",
- "votes": 369,
+ "streamUrl": "https://live1.sr.se/p4gbg-aac-320",
+ "homepage": "https://www.sverigesradio/p4goteborg",
+ "logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-p4.png",
+ "votes": 105,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "f522cf8a-9513-4975-974e-4335aac37cf3"
+ "sourceStationUuid": "003dea75-02eb-40c2-8a92-5150a709b74d"
+ },
+ {
+ "id": "40dfa430-7988-4b02-ae1b-ce5fe8b5aad3",
+ "name": "Bandit Classic Rock",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [
+ "classic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://wr11-ice.stream.khz.se/wr11_mp3",
+ "homepage": "https://www.ilikeradio.se/banditclassicrock/",
+ "logoUrl": null,
+ "votes": 389,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "40dfa430-7988-4b02-ae1b-ce5fe8b5aad3"
},
{
"id": "5df76756-534f-4af9-879c-268dce9b9b80",
@@ -24659,26 +53423,6 @@
"source": "radio-browser",
"sourceStationUuid": "01a0db86-1f60-4473-9601-1de61587b255"
},
- {
- "id": "003dea75-02eb-40c2-8a92-5150a709b74d",
- "name": "Sveriges Radio P4 Göteborg",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "local radio",
- "music"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://live1.sr.se/p4gbg-aac-320",
- "homepage": "https://www.sverigesradio/p4goteborg",
- "logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-p4.png",
- "votes": 105,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "003dea75-02eb-40c2-8a92-5150a709b74d"
- },
{
"id": "8b00bcfc-4d94-11ea-b877-52543be04c81",
"name": "Retro FM Skåne",
@@ -24694,7 +53438,7 @@
"homepage": "http://www.retrofm.se/",
"logoUrl": null,
"votes": 1304,
- "clickcount": 9,
+ "clickcount": 8,
"source": "radio-browser",
"sourceStationUuid": "8b00bcfc-4d94-11ea-b877-52543be04c81"
},
@@ -24716,23 +53460,21 @@
"sourceStationUuid": "4f0772f4-926d-4d51-8571-ebea69c1839f"
},
{
- "id": "ce877b75-fbb5-4b67-a39c-707e59ab38cc",
- "name": "STAR FM 107,1",
+ "id": "c48371b8-52d2-4eff-8a72-a7ab3fa7066b",
+ "name": "HitMix90's",
"country": "Sweden",
"countryCode": "SE",
- "language": "swedish",
- "tags": [
- "pop"
- ],
- "codec": "AAC+",
- "bitrate": 96,
- "streamUrl": "https://fm05-ice.stream.khz.se/fm05_aac",
- "homepage": "https://www.ilikeradio.se/starfm",
- "logoUrl": "https://cdn.khz.se/images/90x90/283491c5df7ee85947ab916a80f50578.png",
- "votes": 29,
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://wr19-ice.stream.khz.se/wr19_mp3",
+ "homepage": "https://www.ilikeradio.se/hitmix90s/",
+ "logoUrl": "https://cdn.khz.se/images/700x700/1ea69de586d07cf14bd6fba152fe8d00.png",
+ "votes": 133,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "ce877b75-fbb5-4b67-a39c-707e59ab38cc"
+ "sourceStationUuid": "c48371b8-52d2-4eff-8a72-a7ab3fa7066b"
},
{
"id": "b30f805d-8402-4555-b182-dcf5fa0820da",
@@ -24753,23 +53495,6 @@
"source": "radio-browser",
"sourceStationUuid": "b30f805d-8402-4555-b182-dcf5fa0820da"
},
- {
- "id": "c48371b8-52d2-4eff-8a72-a7ab3fa7066b",
- "name": "HitMix90's",
- "country": "Sweden",
- "countryCode": "SE",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://wr19-ice.stream.khz.se/wr19_mp3",
- "homepage": "https://www.ilikeradio.se/hitmix90s/",
- "logoUrl": "https://cdn.khz.se/images/700x700/1ea69de586d07cf14bd6fba152fe8d00.png",
- "votes": 133,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "c48371b8-52d2-4eff-8a72-a7ab3fa7066b"
- },
{
"id": "b934e685-1878-4d33-bd0b-ba42134322a8",
"name": "RetroHits",
@@ -24794,24 +53519,23 @@
"sourceStationUuid": "b934e685-1878-4d33-bd0b-ba42134322a8"
},
{
- "id": "12824d18-3891-402f-b7a9-b8d75bfe3b99",
- "name": "Bandit Ballads",
+ "id": "ce877b75-fbb5-4b67-a39c-707e59ab38cc",
+ "name": "STAR FM 107,1",
"country": "Sweden",
"countryCode": "SE",
- "language": null,
+ "language": "swedish",
"tags": [
- "ballads",
- "rock"
+ "pop"
],
"codec": "AAC+",
"bitrate": 96,
- "streamUrl": "https://wr21-ice.stream.khz.se/wr21_aac",
- "homepage": "https://www.ilikeradio.se/banditballads/",
- "logoUrl": "https://cdn.khz.se/images/90x90/7b209b9e4cb15399730e27e4c89e5a64.png",
- "votes": 106,
- "clickcount": 5,
+ "streamUrl": "https://fm05-ice.stream.khz.se/fm05_aac",
+ "homepage": "https://www.ilikeradio.se/starfm",
+ "logoUrl": "https://cdn.khz.se/images/90x90/283491c5df7ee85947ab916a80f50578.png",
+ "votes": 29,
+ "clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "12824d18-3891-402f-b7a9-b8d75bfe3b99"
+ "sourceStationUuid": "ce877b75-fbb5-4b67-a39c-707e59ab38cc"
},
{
"id": "e79af81b-db6d-4f60-9ce1-39ff9b5874ab",
@@ -24830,26 +53554,6 @@
"source": "radio-browser",
"sourceStationUuid": "e79af81b-db6d-4f60-9ce1-39ff9b5874ab"
},
- {
- "id": "4b089827-c6e2-44d7-8689-00c47c9d8650",
- "name": "Power Club",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "club",
- "i like radio"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://wr06-ice.stream.khz.se/wr06_mp3",
- "homepage": "https://www.ilikeradio.se/powerclub/",
- "logoUrl": "https://cdn.khz.se/images/700x700/413c0945925c2a8eefe0f574c5a01a15.png",
- "votes": 57,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "4b089827-c6e2-44d7-8689-00c47c9d8650"
- },
{
"id": "06a92160-00e0-4546-ac0d-44c28f80da6c",
"name": "Radio Nostalgi",
@@ -24886,25 +53590,6 @@
"source": "radio-browser",
"sourceStationUuid": "be9cd5b3-570c-410c-ab98-7f99af678b20"
},
- {
- "id": "a72d9bd0-86b9-4450-8958-c53688e1e956",
- "name": "RIX FM 106,7",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "pop"
- ],
- "codec": "AAC+",
- "bitrate": 96,
- "streamUrl": "https://fm01-ice.stream.khz.se/fm01_aac",
- "homepage": "https://www.ilikeradio.se/rixfm",
- "logoUrl": "https://cdn.khz.se/images/161x80/c4b8642fb86f50849ac5ca144afdc365.png",
- "votes": 26,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "a72d9bd0-86b9-4450-8958-c53688e1e956"
- },
{
"id": "95019533-f24b-4eb2-ba07-2ccdf1ea683e",
"name": "Sveriges Radio P1",
@@ -24926,6 +53611,26 @@
"source": "radio-browser",
"sourceStationUuid": "95019533-f24b-4eb2-ba07-2ccdf1ea683e"
},
+ {
+ "id": "12824d18-3891-402f-b7a9-b8d75bfe3b99",
+ "name": "Bandit Ballads",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": null,
+ "tags": [
+ "ballads",
+ "rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://wr21-ice.stream.khz.se/wr21_aac",
+ "homepage": "https://www.ilikeradio.se/banditballads/",
+ "logoUrl": "https://cdn.khz.se/images/90x90/7b209b9e4cb15399730e27e4c89e5a64.png",
+ "votes": 106,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "12824d18-3891-402f-b7a9-b8d75bfe3b99"
+ },
{
"id": "22567e75-4c10-4dde-9c51-5940b128f6cb",
"name": "Bandit ÍRock",
@@ -25001,6 +53706,47 @@
"source": "radio-browser",
"sourceStationUuid": "678cb641-f43d-456b-8980-cba70cb7c414"
},
+ {
+ "id": "96148cf5-0601-11e8-ae97-52543be04c81",
+ "name": "Polushon",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": null,
+ "tags": [
+ "experimental",
+ "jazz",
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://whsh4u-clients.com:18323/proxy/ndhfnbqx?mp=/stream",
+ "homepage": "http://polushon.com/",
+ "logoUrl": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/5/d/0/1/aa1b-e4e6-48e8-9128-75506e38dd92.jpg",
+ "votes": 419,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "96148cf5-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "4b089827-c6e2-44d7-8689-00c47c9d8650",
+ "name": "Power Club",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [
+ "club",
+ "i like radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://wr06-ice.stream.khz.se/wr06_mp3",
+ "homepage": "https://www.ilikeradio.se/powerclub/",
+ "logoUrl": "https://cdn.khz.se/images/700x700/413c0945925c2a8eefe0f574c5a01a15.png",
+ "votes": 57,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b089827-c6e2-44d7-8689-00c47c9d8650"
+ },
{
"id": "1953e58a-7374-459e-8ac2-f5a8af912ad5",
"name": "Power Hit Radio",
@@ -25018,6 +53764,25 @@
"source": "radio-browser",
"sourceStationUuid": "1953e58a-7374-459e-8ac2-f5a8af912ad5"
},
+ {
+ "id": "a72d9bd0-86b9-4450-8958-c53688e1e956",
+ "name": "RIX FM 106,7",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://fm01-ice.stream.khz.se/fm01_aac",
+ "homepage": "https://www.ilikeradio.se/rixfm",
+ "logoUrl": "https://cdn.khz.se/images/161x80/c4b8642fb86f50849ac5ca144afdc365.png",
+ "votes": 26,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "a72d9bd0-86b9-4450-8958-c53688e1e956"
+ },
{
"id": "960c4e01-0601-11e8-ae97-52543be04c81",
"name": "Sveriges Radio - P3",
@@ -25056,26 +53821,6 @@
"source": "radio-browser",
"sourceStationUuid": "058e8017-4257-4565-bc22-fc6a17c32a2e"
},
- {
- "id": "376cb244-4116-4ba4-a525-c6cc8283fc9b",
- "name": "Wolf FM",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "country",
- "rockabilly"
- ],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://sstream.ueteknik.se/listen/wolffm/radio.mp3",
- "homepage": "https://wolffmradio.se/",
- "logoUrl": "https://wolffmradio.se/wp-content/uploads/2026/01/logotype.webp",
- "votes": 1,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "376cb244-4116-4ba4-a525-c6cc8283fc9b"
- },
{
"id": "b8f2ef5c-eaac-499c-b006-6a2fd276efb1",
"name": "Dagnys Jukebox",
@@ -25096,27 +53841,6 @@
"source": "radio-browser",
"sourceStationUuid": "b8f2ef5c-eaac-499c-b006-6a2fd276efb1"
},
- {
- "id": "96148cf5-0601-11e8-ae97-52543be04c81",
- "name": "Polushon",
- "country": "Sweden",
- "countryCode": "SE",
- "language": null,
- "tags": [
- "experimental",
- "jazz",
- "world music"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://whsh4u-clients.com:18323/proxy/ndhfnbqx?mp=/stream",
- "homepage": "http://polushon.com/",
- "logoUrl": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/5/d/0/1/aa1b-e4e6-48e8-9128-75506e38dd92.jpg",
- "votes": 419,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "96148cf5-0601-11e8-ae97-52543be04c81"
- },
{
"id": "f075cd6b-dc5a-4268-bc81-dc873da77bee",
"name": "Sveiges Radio - P4 Kristianstad",
@@ -25176,6 +53900,26 @@
"source": "radio-browser",
"sourceStationUuid": "1497077e-2db2-4579-a911-5f8cddff3529"
},
+ {
+ "id": "376cb244-4116-4ba4-a525-c6cc8283fc9b",
+ "name": "Wolf FM",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [
+ "country",
+ "rockabilly"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://sstream.ueteknik.se/listen/wolffm/radio.mp3",
+ "homepage": "https://wolffmradio.se/",
+ "logoUrl": "https://wolffmradio.se/wp-content/uploads/2026/01/logotype.webp",
+ "votes": 1,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "376cb244-4116-4ba4-a525-c6cc8283fc9b"
+ },
{
"id": "052b8916-ad5d-4ae4-8cb5-1c137e10e4ca",
"name": "ZERGAN RADYO (47an)",
@@ -25218,23 +53962,6 @@
"source": "radio-browser",
"sourceStationUuid": "7ace76fa-d18b-4f18-82f8-73694a86b2aa"
},
- {
- "id": "26a82946-f454-40ca-90ea-314578fea22e",
- "name": "Gold FM Växjö, Sweden",
- "country": "Sweden",
- "countryCode": "SE",
- "language": null,
- "tags": [],
- "codec": "AAC+",
- "bitrate": 56,
- "streamUrl": "https://live-bauerse-fm.sharp-stream.com/goldfm_web_se_aacp?direct=true&listenerid=undefined&aw_0_1st.bauer_listenerid=undefined&aw_0_1st.playerid=BMUK_inpage_html5&aw_0_1st.skey=1678939562&aw_0_1st.bauer_loggedin=false&aw_0_req.userConsentV2=CPot5gAPot5gAAGABCENC7CsAP_AAE_AABJ4IoNF5GdUTXFBOH59YJtwKYxXx1BwoKAhBgAFA4AAyJIELJAGVEEaJAyKACACAAYAIEIBAABAEAFAAAgAYIEBIACEAEEEJAAAIAAAEEABIEQAEAAMAAAAUAIAgEBWEhAggBQA4RJETMBACoABCUAwigkEAAAAAgAAAAAAQAAAAAAAAAAAAAAAAAAAgAQNvgEAAIAJ-AXUA7YB-wF2gNoAbeAoEgVgAIAAXABQAFQAMgAcAA8ACAAGQANIAiACKAEwAJ4AVQA3gBzAD8AISARABEgCOAEsAKUAZAA-AB-wD_AQAAigBGACOAEmAJSAT8AoIBigDaAIdATKAtgBeYDDQGSAMnAbeBEMIAKABIAD8ARQA5wCBgHVATYApsBdQDFg0AgAZABAACMAEmgLQAtIB1QEOgMnDABADZAHUATYApsRAHAGQAQAAjABJgDqgIdAZOIABAAkATYKgDgAUACYAI4AjkBaAFpAWwAvMUACAOqAmwZAFACYAI4AjgC2AF5jAAYB1QEnAJsHQMwAFwAUABUADIAHAAQAAuABkADQAH0ARABFACYAE8AKoAYgAzABvADmAH6ARABEgCWAFGAKUAZAAygBogD9AH-AQMAigBFgCMAEcAJMASkAn4BQYC0ALSAYoA2gB1AEOgJUAVYAtgBdoC8wGGgMkAZOAywBt44AsACQAH4AUAAyACKAEcAOcAdwBAACIgGBAOOAdIA6oCYoEyATKAmwBSACmwFqALqAYsQgNgALAAoABkAFwATAAqgBiADMAG8ARwApQBlAD_AIoARwAlIBQYC0ALSAYoA2gB1AEqAKsAWwAu0Bk4DgCIAEA_ZAAOAOcA6oB2wEnAJiATYApAlAbAAQAAsACgAGQAOABEACYAFUAMQAZoBEAESAI4AUYApQBlAEcgLQAtIBigDqAIdAWwAu0BeYDJwGWANvAcASADgBkAFyAO4AgAB1QE2AMWKQKAAFwAUABUADIAHAAQAAyABpAEQARQAmABPACkAFUAMQAZgA5gB-gEQARIAowBSgDIAGUANEAfoBFgCMAEcAJSAUEA2gCHQEnAKsAWwAu0BeYDDQGSAMnAZYA28qABAP2UAKAAkAB-AGQANoAjgBcgDnAHcAQAAkQBigDqgHbATEAmUBNgCkAFNgMWAakAAA.YAAAAAAAAAAA",
- "homepage": "https://radio.org.se/gold-vaxjo/",
- "logoUrl": "https://cdn.webrad.io/images/brand/icon_192x192.png",
- "votes": 42,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "26a82946-f454-40ca-90ea-314578fea22e"
- },
{
"id": "5c85225c-75b9-4452-b3e0-998a2bf80532",
"name": "Northern Metal Radio Extreme",
@@ -25271,40 +53998,6 @@
"source": "radio-browser",
"sourceStationUuid": "5352f351-b5ac-4141-b886-9c44ac446511"
},
- {
- "id": "e3c2d110-90f6-41e7-a6b8-8f92d646a007",
- "name": "P4 Värmland",
- "country": "Sweden",
- "countryCode": "SE",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 312,
- "streamUrl": "https://live1.sr.se/p4vrml-aac-320",
- "homepage": "https://www.sverigesradio.se/",
- "logoUrl": null,
- "votes": 3,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "e3c2d110-90f6-41e7-a6b8-8f92d646a007"
- },
- {
- "id": "39a437bb-aa17-420b-a748-41b35312d1de",
- "name": "P4 Västerbotten",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://live1.sr.se/p4vbtn-mp3-96",
- "homepage": "https://sverigesradio.se/vasterbotten",
- "logoUrl": "https://static-cdn.sr.se/images/109/b945bd34-5b64-4190-a82f-fd3ac87c5d64.jpg?preset=100x100",
- "votes": 13,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "39a437bb-aa17-420b-a748-41b35312d1de"
- },
{
"id": "80d51b29-02d0-48e6-a1b5-a613daa79a3c",
"name": "Radio Rivendell",
@@ -25343,23 +54036,6 @@
"source": "radio-browser",
"sourceStationUuid": "fa0f560a-e7f4-4918-b02d-d61a740b075e"
},
- {
- "id": "79930fba-66b9-42cc-8b40-cf766176a38d",
- "name": "Spinning Seal FM",
- "country": "Sweden",
- "countryCode": "SE",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.zeno.fm/9q3ez3k3fchvv",
- "homepage": "https://spinning-seal-fm-home-website.hxkprogram.repl.co/",
- "logoUrl": null,
- "votes": 71,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "79930fba-66b9-42cc-8b40-cf766176a38d"
- },
{
"id": "0826eaef-59e4-4761-b3e8-31670421a753",
"name": "SR P2",
@@ -25484,27 +54160,6 @@
"source": "radio-browser",
"sourceStationUuid": "478c1254-cd56-472d-8f12-24f110d76d8d"
},
- {
- "id": "97b6d543-896d-4361-bc34-5d1c8a19a4bc",
- "name": "Sveriges Radio P2 flac",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "classical music",
- "folk",
- "jazz"
- ],
- "codec": "OGG",
- "bitrate": 128,
- "streamUrl": "https://edge1.sr.se/p2-flac",
- "homepage": "https://www.sverigesradio/p2",
- "logoUrl": "https://sverigesradio.se/dist/images/apple-touch-icon-p2.png",
- "votes": 172,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "97b6d543-896d-4361-bc34-5d1c8a19a4bc"
- },
{
"id": "6dfb955d-609a-4c53-af79-39f9660a408d",
"name": "The ERICADE Radio Network",
@@ -25661,6 +54316,40 @@
"source": "radio-browser",
"sourceStationUuid": "139eec8c-d0b7-4ace-9443-2a6ec74c789f"
},
+ {
+ "id": "e3c2d110-90f6-41e7-a6b8-8f92d646a007",
+ "name": "P4 Värmland",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 312,
+ "streamUrl": "https://live1.sr.se/p4vrml-aac-320",
+ "homepage": "https://www.sverigesradio.se/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "e3c2d110-90f6-41e7-a6b8-8f92d646a007"
+ },
+ {
+ "id": "39a437bb-aa17-420b-a748-41b35312d1de",
+ "name": "P4 Västerbotten",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live1.sr.se/p4vbtn-mp3-96",
+ "homepage": "https://sverigesradio.se/vasterbotten",
+ "logoUrl": "https://static-cdn.sr.se/images/109/b945bd34-5b64-4190-a82f-fd3ac87c5d64.jpg?preset=100x100",
+ "votes": 13,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "39a437bb-aa17-420b-a748-41b35312d1de"
+ },
{
"id": "51b2e520-417d-4c91-8bf3-f2a664289c9b",
"name": "P4 Västernorrland",
@@ -25678,6 +54367,23 @@
"source": "radio-browser",
"sourceStationUuid": "51b2e520-417d-4c91-8bf3-f2a664289c9b"
},
+ {
+ "id": "4b226edb-15be-4563-b74b-372b103091f7",
+ "name": "P4 Västernorrland",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 296,
+ "streamUrl": "https://live1.sr.se/p4vnrl-aac-320",
+ "homepage": "https://sverigesradio.se/",
+ "logoUrl": null,
+ "votes": 3,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b226edb-15be-4563-b74b-372b103091f7"
+ },
{
"id": "73b5026f-40f2-49e8-846d-4d6f77e20d18",
"name": "P4 Västmanland",
@@ -25812,25 +54518,6 @@
"source": "radio-browser",
"sourceStationUuid": "3d5cedea-c00f-468e-88a8-6d15394a6709"
},
- {
- "id": "271de73b-4fa6-4c19-8132-33397f31bf7c",
- "name": "REPLAY NEWS - Svenska",
- "country": "Sweden",
- "countryCode": "SE",
- "language": "swedish",
- "tags": [
- "news"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://replaynewsse.ice.infomaniak.ch/replaynewsse-128.mp3",
- "homepage": "https://www.replaynews.net/",
- "logoUrl": "https://www.publicsante.com/BIENVENU/LOGO%20REPLAY%20NEWS-SE.png",
- "votes": 2,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "271de73b-4fa6-4c19-8132-33397f31bf7c"
- },
{
"id": "888b3eb1-7766-48bb-b002-ea99e3a8becf",
"name": "RetroHits",
@@ -25867,6 +54554,23 @@
"source": "radio-browser",
"sourceStationUuid": "3f589db8-fb66-4d2a-b4d9-03a8bece9b7e"
},
+ {
+ "id": "79930fba-66b9-42cc-8b40-cf766176a38d",
+ "name": "Spinning Seal FM",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/9q3ez3k3fchvv",
+ "homepage": "https://spinning-seal-fm-home-website.hxkprogram.repl.co/",
+ "logoUrl": null,
+ "votes": 71,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "79930fba-66b9-42cc-8b40-cf766176a38d"
+ },
{
"id": "25a9a10c-7de5-4f5e-8989-e128c3f4b94e",
"name": "SR P4 Jönköping",
@@ -25938,6 +54642,23 @@
"source": "radio-browser",
"sourceStationUuid": "1576f6f2-8949-4106-a870-d6a2c11c99f4"
},
+ {
+ "id": "db511060-495a-4756-95d2-5070bc529f57",
+ "name": "Sveriges Radio - P4 Väst",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 114,
+ "streamUrl": "https://live1.sr.se/p4vast-mp3-96",
+ "homepage": "https://www.sverigesradio.se/vast",
+ "logoUrl": "https://www.sverigesradio.se/default.aspx?programid=125",
+ "votes": 30,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "db511060-495a-4756-95d2-5070bc529f57"
+ },
{
"id": "10398e96-9329-4763-aada-543d35b56832",
"name": "Sveriges Radio - P4 Västmanland",
@@ -26056,6 +54777,26 @@
"source": "radio-browser",
"sourceStationUuid": "3b7a51fa-88af-4d6f-9489-6f57ae737b1a"
},
+ {
+ "id": "7517e554-81cd-411c-aa27-13844283a5ed",
+ "name": "Sveriges radio P2 flac",
+ "country": "Sweden",
+ "countryCode": "SE",
+ "language": "swedish",
+ "tags": [
+ "classical",
+ "jazz"
+ ],
+ "codec": "OGG",
+ "bitrate": 128,
+ "streamUrl": "https://edge1.sr.se/p2-flac",
+ "homepage": "https://www.sverigesradio/p2",
+ "logoUrl": null,
+ "votes": 79,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "7517e554-81cd-411c-aa27-13844283a5ed"
+ },
{
"id": "eb7aca36-7206-4367-823f-71c1dd7e104f",
"name": "Sveriges Radio P4 Skaraborg",
@@ -26131,7 +54872,7 @@
"homepage": "https://vintageradio.ch/",
"logoUrl": null,
"votes": 1672,
- "clickcount": 51,
+ "clickcount": 48,
"source": "radio-browser",
"sourceStationUuid": "962af9b5-0601-11e8-ae97-52543be04c81"
},
@@ -26170,7 +54911,7 @@
"homepage": "https://www.radiozuerisee.ch/",
"logoUrl": "https://www.radiozuerisee.ch/assets/favicons/apple-icon-120x120.png",
"votes": 132,
- "clickcount": 29,
+ "clickcount": 34,
"source": "radio-browser",
"sourceStationUuid": "495a3710-7aae-4122-83b5-a49757c0a812"
},
@@ -26191,6 +54932,23 @@
"source": "radio-browser",
"sourceStationUuid": "7fa043b5-6a69-40ce-abaa-2274634484bc"
},
+ {
+ "id": "489f3786-3ff8-46c1-ad14-2a7c5d9cea99",
+ "name": "Energy Bern",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": "swiss german",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://energybern.ice.infomaniak.ch/energybern-high.mp3",
+ "homepage": "https://energy.ch/stations/energy-bern",
+ "logoUrl": "https://cdn.energy.ch/energych-broadcast/covers/channels/logo_v2_bern_1638178870.svg",
+ "votes": 52,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "489f3786-3ff8-46c1-ad14-2a7c5d9cea99"
+ },
{
"id": "3786ca1c-bcbd-4c90-8ce2-6e363756b320",
"name": "RADIO FM1",
@@ -26206,27 +54964,10 @@
"homepage": "https://www.radiofm1.ch/",
"logoUrl": "https://i.imgur.com/zSVUQHv.png",
"votes": 218,
- "clickcount": 24,
+ "clickcount": 23,
"source": "radio-browser",
"sourceStationUuid": "3786ca1c-bcbd-4c90-8ce2-6e363756b320"
},
- {
- "id": "489f3786-3ff8-46c1-ad14-2a7c5d9cea99",
- "name": "Energy Bern",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "swiss german",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://energybern.ice.infomaniak.ch/energybern-high.mp3",
- "homepage": "https://energy.ch/stations/energy-bern",
- "logoUrl": "https://cdn.energy.ch/energych-broadcast/covers/channels/logo_v2_bern_1638178870.svg",
- "votes": 52,
- "clickcount": 22,
- "source": "radio-browser",
- "sourceStationUuid": "489f3786-3ff8-46c1-ad14-2a7c5d9cea99"
- },
{
"id": "e3e08ba3-4ee0-4062-8e82-a75f8d22f52e",
"name": "Radio Melody",
@@ -26244,7 +54985,7 @@
"homepage": "https://www.radiomelody.ch/",
"logoUrl": "https://ch.az-cdn.ch/static/3.3.2/radiomelody/device-icons/48x48.png",
"votes": 500,
- "clickcount": 22,
+ "clickcount": 23,
"source": "radio-browser",
"sourceStationUuid": "e3e08ba3-4ee0-4062-8e82-a75f8d22f52e"
},
@@ -26295,31 +55036,10 @@
"homepage": "https://www.srf.ch/radio-srf-3",
"logoUrl": "https://www.srf.ch/var/storage/assets/webpack/favicons/srf-apple-touch-icon.png",
"votes": 165,
- "clickcount": 17,
+ "clickcount": 18,
"source": "radio-browser",
"sourceStationUuid": "890b3eb9-4018-4c41-95ea-146cc5201745"
},
- {
- "id": "be0048b7-70c2-4cc1-85dc-e6d0e00bba83",
- "name": "Radio SRF 3",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "german,swiss german",
- "tags": [
- "entertainment",
- "pop",
- "rock"
- ],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://stream.srg-ssr.ch/m/drs3/aacp_32",
- "homepage": "https://www.srf.ch/radio-srf-3",
- "logoUrl": "https://www.srf.ch/var/storage/assets/webpack/favicons/srf-apple-touch-icon.png",
- "votes": 756,
- "clickcount": 17,
- "source": "radio-browser",
- "sourceStationUuid": "be0048b7-70c2-4cc1-85dc-e6d0e00bba83"
- },
{
"id": "8c9041ef-372d-46d7-87ed-d9f1d1d92e38",
"name": "Pop | Radio Swiss",
@@ -26341,6 +55061,28 @@
"source": "radio-browser",
"sourceStationUuid": "8c9041ef-372d-46d7-87ed-d9f1d1d92e38"
},
+ {
+ "id": "cb81fe62-e665-4469-bd2b-92bfad063453",
+ "name": "Kontrafunk (AAC 64)",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": "german",
+ "tags": [
+ "conservative",
+ "news",
+ "politics",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://s5.radio.co/sca4082ebb/low",
+ "homepage": "https://kontrafunk.radio/de/",
+ "logoUrl": null,
+ "votes": 289,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "cb81fe62-e665-4469-bd2b-92bfad063453"
+ },
{
"id": "c1d4b62b-cb16-43ca-ae3a-41c2eb31b6e7",
"name": "Virgin Radio Switzerland",
@@ -26354,30 +55096,30 @@
"homepage": "https://www.virginradio.ch/",
"logoUrl": null,
"votes": 270,
- "clickcount": 16,
+ "clickcount": 15,
"source": "radio-browser",
"sourceStationUuid": "c1d4b62b-cb16-43ca-ae3a-41c2eb31b6e7"
},
{
- "id": "2037c9d4-8d99-48f1-b5f1-eb60dc015773",
- "name": "Jazz | Radio Swiss",
+ "id": "be0048b7-70c2-4cc1-85dc-e6d0e00bba83",
+ "name": "Radio SRF 3",
"country": "Switzerland",
"countryCode": "CH",
- "language": "english,french,german,italian,schweizerdeutsch,swiss german",
+ "language": "german,swiss german",
"tags": [
- "jazz",
- "mp3",
- "radio swiss"
+ "entertainment",
+ "pop",
+ "rock"
],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.srg-ssr.ch/m/rsj/mp3_128",
- "homepage": "https://www.radioswissjazz.ch/",
- "logoUrl": "https://www.radioswissjazz.ch/social-media/rsj-web.png",
- "votes": 479,
- "clickcount": 15,
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://stream.srg-ssr.ch/m/drs3/aacp_32",
+ "homepage": "https://www.srf.ch/radio-srf-3",
+ "logoUrl": "https://www.srf.ch/var/storage/assets/webpack/favicons/srf-apple-touch-icon.png",
+ "votes": 756,
+ "clickcount": 14,
"source": "radio-browser",
- "sourceStationUuid": "2037c9d4-8d99-48f1-b5f1-eb60dc015773"
+ "sourceStationUuid": "be0048b7-70c2-4cc1-85dc-e6d0e00bba83"
},
{
"id": "1095cda6-6898-11ea-9d09-52543be04c81",
@@ -26396,31 +55138,47 @@
"homepage": "https://energy.ch/play/basel",
"logoUrl": null,
"votes": 404,
- "clickcount": 14,
+ "clickcount": 13,
"source": "radio-browser",
"sourceStationUuid": "1095cda6-6898-11ea-9d09-52543be04c81"
},
{
- "id": "cb81fe62-e665-4469-bd2b-92bfad063453",
- "name": "Kontrafunk (AAC 64)",
+ "id": "2037c9d4-8d99-48f1-b5f1-eb60dc015773",
+ "name": "Jazz | Radio Swiss",
"country": "Switzerland",
"countryCode": "CH",
- "language": "german",
+ "language": "english,french,german,italian,schweizerdeutsch,swiss german",
"tags": [
- "conservative",
- "news",
- "politics",
- "talk"
+ "jazz",
+ "mp3",
+ "radio swiss"
],
- "codec": "AAC",
- "bitrate": 64,
- "streamUrl": "https://s5.radio.co/sca4082ebb/low",
- "homepage": "https://kontrafunk.radio/de/",
- "logoUrl": null,
- "votes": 289,
- "clickcount": 14,
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.srg-ssr.ch/m/rsj/mp3_128",
+ "homepage": "https://www.radioswissjazz.ch/",
+ "logoUrl": "https://www.radioswissjazz.ch/social-media/rsj-web.png",
+ "votes": 479,
+ "clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "cb81fe62-e665-4469-bd2b-92bfad063453"
+ "sourceStationUuid": "2037c9d4-8d99-48f1-b5f1-eb60dc015773"
+ },
+ {
+ "id": "cf128157-674e-46e1-a1b4-9251ee8d3ab7",
+ "name": "Radio Central",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.streambase.ch/rcentral/mp3-192/chmedia-radio-web/1723615196409_33800762",
+ "homepage": "https://www.radiocentral.ch/",
+ "logoUrl": "https://login.chmedia-welcome.ch/resources/ge450/login/entertainment/img/faviconradiocentral.ico",
+ "votes": 32,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "cf128157-674e-46e1-a1b4-9251ee8d3ab7"
},
{
"id": "3e7dcb14-de8b-4c9c-85de-272148ff92a1",
@@ -26438,26 +55196,9 @@
"homepage": "https://www.toponline.ch/",
"logoUrl": "https://www.toponline.ch/fileadmin/templates/logos/apple-touch-icon.png",
"votes": 65,
- "clickcount": 13,
- "source": "radio-browser",
- "sourceStationUuid": "3e7dcb14-de8b-4c9c-85de-272148ff92a1"
- },
- {
- "id": "95142051-a845-4523-a11a-2521e9ba0971",
- "name": "RADIO BERN1",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.streambase.ch/radiobern1/mp3-192/direct/",
- "homepage": "https://radio.radiobern1.ch/",
- "logoUrl": "https://static.az-cdn.ch/__ip/l0CfiOHmV_gzjlkA8MAghSK6CUs/c8f09de14b2030ffea76cb3ac3a3ab7887770731/remote.adjust.rotate=0&remote.size.w=1080&remote.size.h=1080&local.crop.h=1080&local.crop.w=1080&local.crop.x=0&local.crop.y=0&r=2,radio-162x162",
- "votes": 168,
"clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "95142051-a845-4523-a11a-2521e9ba0971"
+ "sourceStationUuid": "3e7dcb14-de8b-4c9c-85de-272148ff92a1"
},
{
"id": "fb1add5d-4b7b-45cf-9be4-a1e8df712553",
@@ -26500,42 +55241,21 @@
"sourceStationUuid": "35e8de69-3013-44f1-aafa-4dedf08f948e"
},
{
- "id": "980d4891-994c-46d9-9096-4ed0eb556aa8",
- "name": "Radio 32",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "swiss german",
- "tags": [
- "local news",
- "news",
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.streambase.ch/radio32/mp3-192/chmedia-today-web",
- "homepage": "https://www.radio32.ch/",
- "logoUrl": "https://www.presseportal-schweiz.ch/sites/default/files/radio_32_logo_neu.jpg",
- "votes": 74,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "980d4891-994c-46d9-9096-4ed0eb556aa8"
- },
- {
- "id": "cf128157-674e-46e1-a1b4-9251ee8d3ab7",
- "name": "Radio Central",
+ "id": "95142051-a845-4523-a11a-2521e9ba0971",
+ "name": "RADIO BERN1",
"country": "Switzerland",
"countryCode": "CH",
"language": null,
"tags": [],
"codec": "MP3",
"bitrate": 0,
- "streamUrl": "https://stream.streambase.ch/rcentral/mp3-192/chmedia-radio-web/1723615196409_33800762",
- "homepage": "https://www.radiocentral.ch/",
- "logoUrl": "https://login.chmedia-welcome.ch/resources/ge450/login/entertainment/img/faviconradiocentral.ico",
- "votes": 32,
+ "streamUrl": "https://stream.streambase.ch/radiobern1/mp3-192/direct/",
+ "homepage": "https://radio.radiobern1.ch/",
+ "logoUrl": "https://static.az-cdn.ch/__ip/l0CfiOHmV_gzjlkA8MAghSK6CUs/c8f09de14b2030ffea76cb3ac3a3ab7887770731/remote.adjust.rotate=0&remote.size.w=1080&remote.size.h=1080&local.crop.h=1080&local.crop.w=1080&local.crop.x=0&local.crop.y=0&r=2,radio-162x162",
+ "votes": 168,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "cf128157-674e-46e1-a1b4-9251ee8d3ab7"
+ "sourceStationUuid": "95142051-a845-4523-a11a-2521e9ba0971"
},
{
"id": "4f6119c9-3e96-494d-8b79-696cd97f9a3d",
@@ -26576,25 +55296,25 @@
"sourceStationUuid": "3a19f974-53ee-4805-8432-4a592be49cd1"
},
{
- "id": "31e8808b-8b27-4ffd-b75a-d612aa70b56d",
- "name": "Classic | Radio Swiss",
+ "id": "980d4891-994c-46d9-9096-4ed0eb556aa8",
+ "name": "Radio 32",
"country": "Switzerland",
"countryCode": "CH",
- "language": "english,french,german,italian,schweizerdeutsch,swiss german",
+ "language": "swiss german",
"tags": [
- "classical",
- "mp3",
- "radio swiss"
+ "local news",
+ "news",
+ "pop"
],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.srg-ssr.ch/m/rsc_de/mp3_128",
- "homepage": "https://www.radioswissclassic.ch/",
- "logoUrl": null,
- "votes": 76,
- "clickcount": 9,
+ "bitrate": 0,
+ "streamUrl": "https://stream.streambase.ch/radio32/mp3-192/chmedia-today-web",
+ "homepage": "https://www.radio32.ch/",
+ "logoUrl": "https://www.presseportal-schweiz.ch/sites/default/files/radio_32_logo_neu.jpg",
+ "votes": 74,
+ "clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "31e8808b-8b27-4ffd-b75a-d612aa70b56d"
+ "sourceStationUuid": "980d4891-994c-46d9-9096-4ed0eb556aa8"
},
{
"id": "be9fa6d2-aace-46ea-bdbf-68092402066f",
@@ -26612,49 +55332,30 @@
"homepage": "https://www.radio24.ch/",
"logoUrl": "https://ch.az-cdn.ch/static/4.14.2/radio24/device-icons/48x48.png",
"votes": 199,
- "clickcount": 8,
+ "clickcount": 9,
"source": "radio-browser",
"sourceStationUuid": "be9fa6d2-aace-46ea-bdbf-68092402066f"
},
{
- "id": "6cb03e29-0706-445d-9a28-282e3c21dcd6",
- "name": "Sunshine Radio (Switzerland)",
+ "id": "31e8808b-8b27-4ffd-b75a-d612aa70b56d",
+ "name": "Classic | Radio Swiss",
"country": "Switzerland",
"countryCode": "CH",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.streambase.ch/rsunshine/mp3-192/chmedia-radio-web/1699795900047_8633080",
- "homepage": "https://www.sunshine.ch/",
- "logoUrl": "https://ch.az-cdn.ch/static/4.3.1/radiosunshine/device-icons/512x512.png",
- "votes": 283,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "6cb03e29-0706-445d-9a28-282e3c21dcd6"
- },
- {
- "id": "f0df6e39-68b5-4026-9d83-51af63ddfdc6",
- "name": "UZIC.CH :: TECHNO - MINIMAL :: best of electronic with techno minimal electro house and progressive",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": null,
+ "language": "english,french,german,italian,schweizerdeutsch,swiss german",
"tags": [
- "electro",
- "house",
- "minimal techno",
- "progressive house",
- "techno"
+ "classical",
+ "mp3",
+ "radio swiss"
],
- "codec": "AAC+",
+ "codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://uzic.ice.infomaniak.ch/uzic-128.aac",
- "homepage": "https://uzic.ch/",
- "logoUrl": "https://uzic.ch/wp-content/uploads/2025/06/logo_uzic-150x150.png",
- "votes": 33,
+ "streamUrl": "https://stream.srg-ssr.ch/m/rsc_de/mp3_128",
+ "homepage": "https://www.radioswissclassic.ch/",
+ "logoUrl": null,
+ "votes": 76,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "f0df6e39-68b5-4026-9d83-51af63ddfdc6"
+ "sourceStationUuid": "31e8808b-8b27-4ffd-b75a-d612aa70b56d"
},
{
"id": "aa5f5294-8a35-4844-9294-92e4659b13d7",
@@ -26674,7 +55375,7 @@
"homepage": "https://www.flashbackfm.ch/",
"logoUrl": null,
"votes": 307,
- "clickcount": 7,
+ "clickcount": 8,
"source": "radio-browser",
"sourceStationUuid": "aa5f5294-8a35-4844-9294-92e4659b13d7"
},
@@ -26739,24 +55440,44 @@
"sourceStationUuid": "b614ffcb-684a-4fac-8395-17420f6ee27c"
},
{
- "id": "243cef8b-f02d-4490-bb02-e094c8aa0393",
- "name": "1.FM Absolute 90's Radio",
+ "id": "6cb03e29-0706-445d-9a28-282e3c21dcd6",
+ "name": "Sunshine Radio (Switzerland)",
"country": "Switzerland",
"countryCode": "CH",
- "language": "english",
- "tags": [
- "90s",
- "pop"
- ],
+ "language": null,
+ "tags": [],
"codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://strm112.1.fm/90s_mobile_mp3",
- "homepage": "https://www.1.fm/",
- "logoUrl": "https://www.1.fm/images/favicon.ico",
- "votes": 166,
- "clickcount": 6,
+ "bitrate": 0,
+ "streamUrl": "https://stream.streambase.ch/rsunshine/mp3-192/chmedia-radio-web/1699795900047_8633080",
+ "homepage": "https://www.sunshine.ch/",
+ "logoUrl": "https://ch.az-cdn.ch/static/4.3.1/radiosunshine/device-icons/512x512.png",
+ "votes": 283,
+ "clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "243cef8b-f02d-4490-bb02-e094c8aa0393"
+ "sourceStationUuid": "6cb03e29-0706-445d-9a28-282e3c21dcd6"
+ },
+ {
+ "id": "f0df6e39-68b5-4026-9d83-51af63ddfdc6",
+ "name": "UZIC.CH :: TECHNO - MINIMAL :: best of electronic with techno minimal electro house and progressive",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [
+ "electro",
+ "house",
+ "minimal techno",
+ "progressive house",
+ "techno"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://uzic.ice.infomaniak.ch/uzic-128.aac",
+ "homepage": "https://uzic.ch/",
+ "logoUrl": "https://uzic.ch/wp-content/uploads/2025/06/logo_uzic-150x150.png",
+ "votes": 33,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0df6e39-68b5-4026-9d83-51af63ddfdc6"
},
{
"id": "c3086993-34c3-47cb-9323-540fb675fe46",
@@ -26777,6 +55498,25 @@
"source": "radio-browser",
"sourceStationUuid": "c3086993-34c3-47cb-9323-540fb675fe46"
},
+ {
+ "id": "40e0da97-9fd2-4729-8e86-4c65cdba7910",
+ "name": "A Fine Jazz Gumbo Radio",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [
+ "jazz"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://streaming.smartradio.ch:9502/stream",
+ "homepage": "https://jazzgumboradio.com/",
+ "logoUrl": "https://jazzgumboradio.com/favicon.ico",
+ "votes": 259,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "40e0da97-9fd2-4729-8e86-4c65cdba7910"
+ },
{
"id": "23882169-5798-4f1d-b225-1b56c08a445e",
"name": "Kontrafunk (Mobil)",
@@ -26799,23 +55539,21 @@
"sourceStationUuid": "23882169-5798-4f1d-b225-1b56c08a445e"
},
{
- "id": "209340db-4929-11e8-b1b0-52543be04c81",
- "name": "Radio Suisse Classique",
+ "id": "52d101dc-3a83-4e4e-8505-8b235065fb0b",
+ "name": "LFM",
"country": "Switzerland",
"countryCode": "CH",
- "language": null,
- "tags": [
- "classical"
- ],
+ "language": "french",
+ "tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://stream.srg-ssr.ch/m/rsc_fr/mp3_128",
- "homepage": "http://www.srf.ch/radio-srf-1/",
- "logoUrl": "http://www.srf.ch/var/storage/assets/webpack/favicons/srf-apple-touch-icon.png",
- "votes": 642,
+ "streamUrl": "https://lausannefm.ice.infomaniak.ch/lausannefm-high.mp3",
+ "homepage": "https://www.lfm.ch/",
+ "logoUrl": "https://www.lfm.ch/wp-content/uploads/2021/07/cropped-radio-lausanne-fm-sa-icone-du-site-180x180.png",
+ "votes": 29,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "209340db-4929-11e8-b1b0-52543be04c81"
+ "sourceStationUuid": "52d101dc-3a83-4e4e-8505-8b235065fb0b"
},
{
"id": "be62721b-d05b-4abf-9599-ca677bad6a54",
@@ -26834,6 +55572,26 @@
"source": "radio-browser",
"sourceStationUuid": "be62721b-d05b-4abf-9599-ca677bad6a54"
},
+ {
+ "id": "243cef8b-f02d-4490-bb02-e094c8aa0393",
+ "name": "1.FM Absolute 90's Radio",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": "english",
+ "tags": [
+ "90s",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://strm112.1.fm/90s_mobile_mp3",
+ "homepage": "https://www.1.fm/",
+ "logoUrl": "https://www.1.fm/images/favicon.ico",
+ "votes": 166,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "243cef8b-f02d-4490-bb02-e094c8aa0393"
+ },
{
"id": "4e4c0093-5980-47eb-8816-ef53f3870482",
"name": "1.fm top rap",
@@ -26853,25 +55611,6 @@
"source": "radio-browser",
"sourceStationUuid": "4e4c0093-5980-47eb-8816-ef53f3870482"
},
- {
- "id": "40e0da97-9fd2-4729-8e86-4c65cdba7910",
- "name": "A Fine Jazz Gumbo Radio",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": null,
- "tags": [
- "jazz"
- ],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://streaming.smartradio.ch:9502/stream",
- "homepage": "https://jazzgumboradio.com/",
- "logoUrl": "https://jazzgumboradio.com/favicon.ico",
- "votes": 259,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "40e0da97-9fd2-4729-8e86-4c65cdba7910"
- },
{
"id": "5a21309d-1b3e-4167-9481-3ea9e4132f5a",
"name": "Brazilian Birds Radio",
@@ -26889,23 +55628,6 @@
"source": "radio-browser",
"sourceStationUuid": "5a21309d-1b3e-4167-9481-3ea9e4132f5a"
},
- {
- "id": "52d101dc-3a83-4e4e-8505-8b235065fb0b",
- "name": "LFM",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "french",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://lausannefm.ice.infomaniak.ch/lausannefm-high.mp3",
- "homepage": "https://www.lfm.ch/",
- "logoUrl": "https://www.lfm.ch/wp-content/uploads/2021/07/cropped-radio-lausanne-fm-sa-icone-du-site-180x180.png",
- "votes": 29,
- "clickcount": 5,
- "source": "radio-browser",
- "sourceStationUuid": "52d101dc-3a83-4e4e-8505-8b235065fb0b"
- },
{
"id": "4cde8f3b-17fc-4802-ba40-e8feae5395a1",
"name": "Neo1",
@@ -26949,6 +55671,46 @@
"source": "radio-browser",
"sourceStationUuid": "b9660eb9-34f9-11e9-8f31-52543be04c81"
},
+ {
+ "id": "3718f163-5868-11e9-a622-52543be04c81",
+ "name": "Radio Lac",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": "french",
+ "tags": [
+ "genève",
+ "lac",
+ "yes fm"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radiolac.ice.infomaniak.ch/radiolac-high.mp3",
+ "homepage": "https://www.radiolac.ch/direct/player/",
+ "logoUrl": "https://www.radiolac.ch/favicon.ico",
+ "votes": 177,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "3718f163-5868-11e9-a622-52543be04c81"
+ },
+ {
+ "id": "209340db-4929-11e8-b1b0-52543be04c81",
+ "name": "Radio Suisse Classique",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.srg-ssr.ch/m/rsc_fr/mp3_128",
+ "homepage": "http://www.srf.ch/radio-srf-1/",
+ "logoUrl": "http://www.srf.ch/var/storage/assets/webpack/favicons/srf-apple-touch-icon.png",
+ "votes": 642,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "209340db-4929-11e8-b1b0-52543be04c81"
+ },
{
"id": "6d4127ba-cd83-45c2-90ad-57dfd90b1457",
"name": "SWISS GROOVE",
@@ -26974,6 +55736,60 @@
"source": "radio-browser",
"sourceStationUuid": "6d4127ba-cd83-45c2-90ad-57dfd90b1457"
},
+ {
+ "id": "1afd93f4-2061-48e2-ae13-df204c17c24c",
+ "name": "Radio Melody Schweiz",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.streambase.ch/rm/mp3-192/mytuner/",
+ "homepage": "https://www.radiomelody.ch/",
+ "logoUrl": "https://ch.az-cdn.ch/static/4.18.0/radiomelody/device-icons/512x512.png",
+ "votes": 47,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "1afd93f4-2061-48e2-ae13-df204c17c24c"
+ },
+ {
+ "id": "07e96454-3782-4b25-aeaf-215ccd38b471",
+ "name": "Radio SRF 4 News",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": "german",
+ "tags": [
+ "information",
+ "news"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://stream.srg-ssr.ch/m/drs4news/aacp_32",
+ "homepage": "https://www.srf.ch/radio-srf-4-news",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Radio_SRF_4_News.svg/182px-Radio_SRF_4_News.svg.png",
+ "votes": 229,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "07e96454-3782-4b25-aeaf-215ccd38b471"
+ },
+ {
+ "id": "960a893c-0601-11e8-ae97-52543be04c81",
+ "name": "RFJ",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": "french",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rfj.ice.infomaniak.ch/rfj-high.mp3",
+ "homepage": "http://www.rfj.ch/",
+ "logoUrl": null,
+ "votes": 55,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "960a893c-0601-11e8-ae97-52543be04c81"
+ },
{
"id": "1eaa7a2e-8fbe-4936-b71c-18190cfb25e8",
"name": "Bachata Nation Radio",
@@ -26987,7 +55803,7 @@
"homepage": "https://stream.zeno.fm/",
"logoUrl": null,
"votes": 37,
- "clickcount": 4,
+ "clickcount": 3,
"source": "radio-browser",
"sourceStationUuid": "1eaa7a2e-8fbe-4936-b71c-18190cfb25e8"
},
@@ -27010,82 +55826,10 @@
"homepage": "https://basspistol.com/radio",
"logoUrl": "https://basspistol.com/siteicon.png",
"votes": 136,
- "clickcount": 4,
+ "clickcount": 3,
"source": "radio-browser",
"sourceStationUuid": "876d62ba-1be4-4406-86fd-e0454839e325"
},
- {
- "id": "4d548e92-325f-4f5a-ab85-6dcf7b63ba79",
- "name": "Radio Eviva",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.streambase.ch/reviva/mp3-192/direct/",
- "homepage": "https://player.eviva.ch/",
- "logoUrl": null,
- "votes": 64,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "4d548e92-325f-4f5a-ab85-6dcf7b63ba79"
- },
- {
- "id": "3718f163-5868-11e9-a622-52543be04c81",
- "name": "Radio Lac",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "french",
- "tags": [
- "genève",
- "lac",
- "yes fm"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://radiolac.ice.infomaniak.ch/radiolac-high.mp3",
- "homepage": "https://www.radiolac.ch/direct/player/",
- "logoUrl": "https://www.radiolac.ch/favicon.ico",
- "votes": 177,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "3718f163-5868-11e9-a622-52543be04c81"
- },
- {
- "id": "1afd93f4-2061-48e2-ae13-df204c17c24c",
- "name": "Radio Melody Schweiz",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.streambase.ch/rm/mp3-192/mytuner/",
- "homepage": "https://www.radiomelody.ch/",
- "logoUrl": "https://ch.az-cdn.ch/static/4.18.0/radiomelody/device-icons/512x512.png",
- "votes": 47,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "1afd93f4-2061-48e2-ae13-df204c17c24c"
- },
- {
- "id": "960a893c-0601-11e8-ae97-52543be04c81",
- "name": "RFJ",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "french",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://rfj.ice.infomaniak.ch/rfj-high.mp3",
- "homepage": "http://www.rfj.ch/",
- "logoUrl": null,
- "votes": 55,
- "clickcount": 4,
- "source": "radio-browser",
- "sourceStationUuid": "960a893c-0601-11e8-ae97-52543be04c81"
- },
{
"id": "23184af4-6a87-4cb4-a47f-5936ffd0f673",
"name": "One FM",
@@ -27141,6 +55885,23 @@
"source": "radio-browser",
"sourceStationUuid": "a80bd23d-9bd2-43f7-8e2c-205695451589"
},
+ {
+ "id": "4d548e92-325f-4f5a-ab85-6dcf7b63ba79",
+ "name": "Radio Eviva",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.streambase.ch/reviva/mp3-192/direct/",
+ "homepage": "https://player.eviva.ch/",
+ "logoUrl": null,
+ "votes": 64,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4d548e92-325f-4f5a-ab85-6dcf7b63ba79"
+ },
{
"id": "db6893f4-cead-4749-83e6-a1b1dfb6f61b",
"name": "Radio Grischa",
@@ -27200,26 +55961,6 @@
"source": "radio-browser",
"sourceStationUuid": "89033ac1-5717-4154-85d3-aff8de50bbc4"
},
- {
- "id": "07e96454-3782-4b25-aeaf-215ccd38b471",
- "name": "Radio SRF 4 News",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "german",
- "tags": [
- "information",
- "news"
- ],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://stream.srg-ssr.ch/m/drs4news/aacp_32",
- "homepage": "https://www.srf.ch/radio-srf-4-news",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Radio_SRF_4_News.svg/182px-Radio_SRF_4_News.svg.png",
- "votes": 229,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "07e96454-3782-4b25-aeaf-215ccd38b471"
- },
{
"id": "6d86fac2-7b86-41fd-b3eb-80fc16d30a4b",
"name": "Radio X FLAC",
@@ -27256,23 +55997,6 @@
"source": "radio-browser",
"sourceStationUuid": "96094a59-0601-11e8-ae97-52543be04c81"
},
- {
- "id": "c98f1648-2d03-44a0-a264-a4c248f467df",
- "name": "Spoon Radio - Alternative Rock",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": null,
- "tags": [],
- "codec": "AAC+",
- "bitrate": 128,
- "streamUrl": "https://spoonradioalternativerock.ice.infomaniak.ch/spoon-alternativerock-hd.aac",
- "homepage": "https://www.spoonradio.com/",
- "logoUrl": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1RnmBp61JLpuFbCdDWy9jig_j6SBxZ_2vETott9_kRev4voROUJsIYHQxggUQl2r0-lqwuaslRzLCgqU8RhRZCH7WkR3-sGdcMgJTZjmawjC3tfwyNDBt11qJD6-ojoXjRE27kf1-PwJr7gQUtG-oez2TpiEfxo38_uY4eAx5lDf9YpU0ynV9WOTmGYMY/s300/Alternative%20Rock.png",
- "votes": 109,
- "clickcount": 3,
- "source": "radio-browser",
- "sourceStationUuid": "c98f1648-2d03-44a0-a264-a4c248f467df"
- },
{
"id": "a0c231ae-3be7-4e6f-9409-142c899a8e0d",
"name": "1.FM - Sunshine",
@@ -27420,6 +56144,25 @@
"source": "radio-browser",
"sourceStationUuid": "3684bcbb-8af6-4755-9db8-0e240824f0fa"
},
+ {
+ "id": "9051470d-87fa-4177-bda7-6a87be58f066",
+ "name": "lounge-radio.com",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [
+ "chillout+lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://fr1.streamhosting.ch/lounge128.mp3",
+ "homepage": "https://lounge-radio.com/",
+ "logoUrl": "https://lounge-radio.com/wp-content/uploads/fbrfg/apple-touch-icon.png",
+ "votes": 243,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9051470d-87fa-4177-bda7-6a87be58f066"
+ },
{
"id": "8d36363c-f60f-45d8-afe1-659c9fc4071c",
"name": "Radio 3FACH",
@@ -27490,28 +56233,6 @@
"source": "radio-browser",
"sourceStationUuid": "e2af125a-58df-4264-9d82-589d96a7ab39"
},
- {
- "id": "19736015-a179-4fe8-b0ba-e7b869def54a",
- "name": "Radio LoRa",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "german",
- "tags": [
- "community radio",
- "feminist",
- "freies radio",
- "queer"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://livestream.lora.ch/lora.mp3",
- "homepage": "https://www.lora.ch/",
- "logoUrl": "https://www.lora.ch/images/favicon/apple-touch-icon.png",
- "votes": 37,
- "clickcount": 2,
- "source": "radio-browser",
- "sourceStationUuid": "19736015-a179-4fe8-b0ba-e7b869def54a"
- },
{
"id": "e25f32ee-e4f7-4e50-a67f-a98948eb20d5",
"name": "Radio Neue Hoffnung",
@@ -27616,6 +56337,23 @@
"source": "radio-browser",
"sourceStationUuid": "dbcbdefe-8448-4997-ad46-1c921edd0174"
},
+ {
+ "id": "c98f1648-2d03-44a0-a264-a4c248f467df",
+ "name": "Spoon Radio - Alternative Rock",
+ "country": "Switzerland",
+ "countryCode": "CH",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://spoonradioalternativerock.ice.infomaniak.ch/spoon-alternativerock-hd.aac",
+ "homepage": "https://www.spoonradio.com/",
+ "logoUrl": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1RnmBp61JLpuFbCdDWy9jig_j6SBxZ_2vETott9_kRev4voROUJsIYHQxggUQl2r0-lqwuaslRzLCgqU8RhRZCH7WkR3-sGdcMgJTZjmawjC3tfwyNDBt11qJD6-ojoXjRE27kf1-PwJr7gQUtG-oez2TpiEfxo38_uY4eAx5lDf9YpU0ynV9WOTmGYMY/s300/Alternative%20Rock.png",
+ "votes": 109,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "c98f1648-2d03-44a0-a264-a4c248f467df"
+ },
{
"id": "a879facb-7b92-4210-a1d3-578de4662736",
"name": "Spoon Radio - Classic Rock",
@@ -27854,27 +56592,6 @@
"source": "radio-browser",
"sourceStationUuid": "5b08693f-7072-49d2-9d4e-98e319dc9e19"
},
- {
- "id": "7b74f47d-5bf2-4ddf-866c-c4738d5cc561",
- "name": "Rockstar Radio",
- "country": "Switzerland",
- "countryCode": "CH",
- "language": "french",
- "tags": [
- "classic rock",
- "rock",
- "rock music"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://dr2101.ice.infomaniak.ch/dr2102.mp3",
- "homepage": "https://rockstarradio.ch/",
- "logoUrl": "https://dr21.mediaonegroup.ch/apps/assets/logo_rockstar_2.svg",
- "votes": 24,
- "clickcount": 1,
- "source": "radio-browser",
- "sourceStationUuid": "7b74f47d-5bf2-4ddf-866c-c4738d5cc561"
- },
{
"id": "9e53b38d-70c1-4e99-9adc-3885024fff01",
"name": "RTS La Première",
@@ -27939,7 +56656,7 @@
"homepage": "https://joe.nl/",
"logoUrl": "https://static.mytuner.mobi/media/tvos_radios/pkhqkus8dmde.jpg",
"votes": 664,
- "clickcount": 267,
+ "clickcount": 259,
"source": "radio-browser",
"sourceStationUuid": "6add27d4-5573-47b4-ae27-1d05834a9a4a"
},
@@ -27956,7 +56673,7 @@
"homepage": "https://qmusic.nl/live",
"logoUrl": "https://qmusic.nl/favicon.ico",
"votes": 3796,
- "clickcount": 178,
+ "clickcount": 171,
"source": "radio-browser",
"sourceStationUuid": "003d3c6f-e183-11e9-a8ba-52543be04c81"
},
@@ -27973,7 +56690,7 @@
"homepage": "https://www.skyradio.nl/",
"logoUrl": "https://www.skyradio.nl/favicon.ico",
"votes": 961,
- "clickcount": 144,
+ "clickcount": 140,
"source": "radio-browser",
"sourceStationUuid": "b20de429-e1b3-4624-a1ac-12e2bf0cadb0"
},
@@ -27990,7 +56707,7 @@
"homepage": "https://icecast.omroep.nl/radio2-sterrennl-mp3",
"logoUrl": null,
"votes": 177,
- "clickcount": 72,
+ "clickcount": 71,
"source": "radio-browser",
"sourceStationUuid": "9e7c67dd-aa9d-41b7-bb50-43da85f05c5c"
},
@@ -28007,7 +56724,7 @@
"homepage": "https://www.538.nl/",
"logoUrl": null,
"votes": 213,
- "clickcount": 65,
+ "clickcount": 62,
"source": "radio-browser",
"sourceStationUuid": "f0ab0c5c-7125-476c-97a4-2eabc14f5f05"
},
@@ -28028,28 +56745,11 @@
"streamUrl": "https://icecast.omroep.nl/radio5-bb-mp3",
"homepage": "https://www.nporadio5.nl/",
"logoUrl": "https://www.nporadio5.nl/apple-touch-icon.png",
- "votes": 5304,
- "clickcount": 61,
+ "votes": 5305,
+ "clickcount": 59,
"source": "radio-browser",
"sourceStationUuid": "46e55863-cef7-4f50-954e-3fa7feede49f"
},
- {
- "id": "155b08b4-97da-11e9-a605-52543be04c81",
- "name": "Qmusic Het Foute Uur",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [],
- "codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://icecast-qmusicnl-cdp.triple-it.nl/Qmusic_nl_fouteuur_96.mp3",
- "homepage": "https://qmusic.nl/",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/70/Qmusic_logo.svg",
- "votes": 571,
- "clickcount": 54,
- "source": "radio-browser",
- "sourceStationUuid": "155b08b4-97da-11e9-a605-52543be04c81"
- },
{
"id": "c19d0f8c-24a5-11e9-a80b-52543be04c81",
"name": "KINK",
@@ -28063,26 +56763,26 @@
"homepage": "https://kink.nl/",
"logoUrl": "https://kink.nl/static/apple-touch-icon.png",
"votes": 1747,
- "clickcount": 47,
+ "clickcount": 52,
"source": "radio-browser",
"sourceStationUuid": "c19d0f8c-24a5-11e9-a80b-52543be04c81"
},
{
- "id": "4e9c82d5-97da-11e9-a605-52543be04c81",
- "name": "Qmusic Non-Stop",
+ "id": "155b08b4-97da-11e9-a605-52543be04c81",
+ "name": "Qmusic Het Foute Uur",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [],
"codec": "MP3",
"bitrate": 96,
- "streamUrl": "https://icecast-qmusicnl-cdp.triple-it.nl/Qmusic_nl_nonstop_96.mp3",
+ "streamUrl": "https://icecast-qmusicnl-cdp.triple-it.nl/Qmusic_nl_fouteuur_96.mp3",
"homepage": "https://qmusic.nl/",
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/70/Qmusic_logo.svg",
- "votes": 485,
- "clickcount": 41,
+ "votes": 571,
+ "clickcount": 52,
"source": "radio-browser",
- "sourceStationUuid": "4e9c82d5-97da-11e9-a605-52543be04c81"
+ "sourceStationUuid": "155b08b4-97da-11e9-a605-52543be04c81"
},
{
"id": "d58a82c3-b7f1-4c1c-83b1-9e45d42e1e19",
@@ -28101,10 +56801,27 @@
"homepage": "https://www.arrow.nl/",
"logoUrl": "https://player.arrow.nl/tmp/images/default.jpg",
"votes": 5964,
- "clickcount": 40,
+ "clickcount": 42,
"source": "radio-browser",
"sourceStationUuid": "d58a82c3-b7f1-4c1c-83b1-9e45d42e1e19"
},
+ {
+ "id": "4e9c82d5-97da-11e9-a605-52543be04c81",
+ "name": "Qmusic Non-Stop",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://icecast-qmusicnl-cdp.triple-it.nl/Qmusic_nl_nonstop_96.mp3",
+ "homepage": "https://qmusic.nl/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/70/Qmusic_logo.svg",
+ "votes": 485,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "4e9c82d5-97da-11e9-a605-52543be04c81"
+ },
{
"id": "005636e9-2142-497b-8f51-606d536fb18a",
"name": "NPO Radio 2",
@@ -28118,28 +56835,9 @@
"homepage": "http://www.nporadio2.nl/",
"logoUrl": "http://www.nporadio2.nl/apple-touch-icon.png",
"votes": 317,
- "clickcount": 38,
- "source": "radio-browser",
- "sourceStationUuid": "005636e9-2142-497b-8f51-606d536fb18a"
- },
- {
- "id": "5e45745b-7337-4299-bb93-6b99fafbc2b2",
- "name": "Q music Nederland",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [
- "pop"
- ],
- "codec": "AAC+",
- "bitrate": 95,
- "streamUrl": "https://stream.qmusic.nl/qmusic/aachigh",
- "homepage": "https://qmusic.nl/",
- "logoUrl": "https://qmusic.nl/favicon.ico",
- "votes": 461,
"clickcount": 37,
"source": "radio-browser",
- "sourceStationUuid": "5e45745b-7337-4299-bb93-6b99fafbc2b2"
+ "sourceStationUuid": "005636e9-2142-497b-8f51-606d536fb18a"
},
{
"id": "428fecbf-d5e2-4c30-bcde-6dd98b125434",
@@ -28161,6 +56859,25 @@
"source": "radio-browser",
"sourceStationUuid": "428fecbf-d5e2-4c30-bcde-6dd98b125434"
},
+ {
+ "id": "5e45745b-7337-4299-bb93-6b99fafbc2b2",
+ "name": "Q music Nederland",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://stream.qmusic.nl/qmusic/aachigh",
+ "homepage": "https://qmusic.nl/",
+ "logoUrl": "https://qmusic.nl/favicon.ico",
+ "votes": 461,
+ "clickcount": 35,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e45745b-7337-4299-bb93-6b99fafbc2b2"
+ },
{
"id": "f4aea998-df4a-437b-ad2d-d160c821f91b",
"name": "Radio 10",
@@ -28210,10 +56927,30 @@
"homepage": "https://qmusic.nl/",
"logoUrl": "https://qmusic.nl/favicon.ico",
"votes": 112,
- "clickcount": 28,
+ "clickcount": 29,
"source": "radio-browser",
"sourceStationUuid": "aaa01e21-7df4-4735-b1b3-ebcce5d22c2b"
},
+ {
+ "id": "01a9ba90-6601-490f-bc74-64b611b032d4",
+ "name": "Radio Veronica",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "greatest hits",
+ "pop rock"
+ ],
+ "codec": "FLV",
+ "bitrate": 0,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/VERONICA",
+ "homepage": "https://www.radioveronica.nl/",
+ "logoUrl": "https://cmde4gpbhib.b-cdn.net/w_320,h_320,q_85/4k3hucsw1kfn-radio-veronica-programma-thumbnail.jpg",
+ "votes": 426,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "01a9ba90-6601-490f-bc74-64b611b032d4"
+ },
{
"id": "466c6af1-bb23-4d42-8509-3fb73d872a14",
"name": "Groot Nieuws Radio Non-Stop",
@@ -28234,26 +56971,6 @@
"source": "radio-browser",
"sourceStationUuid": "466c6af1-bb23-4d42-8509-3fb73d872a14"
},
- {
- "id": "01a9ba90-6601-490f-bc74-64b611b032d4",
- "name": "Radio Veronica",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "greatest hits",
- "pop rock"
- ],
- "codec": "FLV",
- "bitrate": 0,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/VERONICA",
- "homepage": "https://www.radioveronica.nl/",
- "logoUrl": "https://cmde4gpbhib.b-cdn.net/w_320,h_320,q_85/4k3hucsw1kfn-radio-veronica-programma-thumbnail.jpg",
- "votes": 426,
- "clickcount": 24,
- "source": "radio-browser",
- "sourceStationUuid": "01a9ba90-6601-490f-bc74-64b611b032d4"
- },
{
"id": "cfd71b17-5765-4365-8425-09a2073bf222",
"name": "Sublime Live",
@@ -28267,10 +56984,29 @@
"homepage": "https://sublime.nl/",
"logoUrl": "https://6nl7xj2ntppk.b-cdn.net/73cf20f2-a361-480b-bc2f-bec43b6a2bd5",
"votes": 401,
- "clickcount": 24,
+ "clickcount": 25,
"source": "radio-browser",
"sourceStationUuid": "cfd71b17-5765-4365-8425-09a2073bf222"
},
+ {
+ "id": "c1c834eb-e84e-43fc-8841-6749e19b4edc",
+ "name": "Radio 10 non-stop",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "top hits"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/TLPSTR15.mp3",
+ "homepage": "https://www.radio10.nl/non-stop",
+ "logoUrl": "https://www.radio10.nl/favicon.ico",
+ "votes": 319,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1c834eb-e84e-43fc-8841-6749e19b4edc"
+ },
{
"id": "0adb24fb-a2fe-4a9b-97a4-bc82dfb1820c",
"name": "jungletrain.net - 24/7 drum and bass",
@@ -28289,23 +57025,44 @@
"sourceStationUuid": "0adb24fb-a2fe-4a9b-97a4-bc82dfb1820c"
},
{
- "id": "c1c834eb-e84e-43fc-8841-6749e19b4edc",
- "name": "Radio 10 non-stop",
+ "id": "0c62b9d7-8de0-4693-9842-6bf9b50229d3",
+ "name": "NPO 3FM",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.omroep.nl/3fm-bb-mp3",
+ "homepage": "https://www.npo3fm.nl/",
+ "logoUrl": "https://www.npo3fm.nl/apple-touch-icon.png",
+ "votes": 704,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "0c62b9d7-8de0-4693-9842-6bf9b50229d3"
+ },
+ {
+ "id": "da5d71d1-d8cc-4301-9f86-b6abaa1201bd",
+ "name": "BNR Nieuwsradio",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [
- "top hits"
+ "business",
+ "news",
+ "talk"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/TLPSTR15.mp3",
- "homepage": "https://www.radio10.nl/non-stop",
- "logoUrl": "https://www.radio10.nl/favicon.ico",
- "votes": 319,
- "clickcount": 23,
+ "streamUrl": "https://stream.bnr.nl/bnr_mp3_128_20",
+ "homepage": "https://www.bnr.nl/",
+ "logoUrl": "https://static.bnr.nl/assets/bnr-next/logo.png",
+ "votes": 731,
+ "clickcount": 19,
"source": "radio-browser",
- "sourceStationUuid": "c1c834eb-e84e-43fc-8841-6749e19b4edc"
+ "sourceStationUuid": "da5d71d1-d8cc-4301-9f86-b6abaa1201bd"
},
{
"id": "b075db07-a741-4756-86d4-4035292a02f2",
@@ -28325,52 +57082,10 @@
"homepage": "https://joe.nl/",
"logoUrl": "https://static.mytuner.mobi/media/tvos_radios/pkhqkus8dmde.jpg",
"votes": 470,
- "clickcount": 21,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "b075db07-a741-4756-86d4-4035292a02f2"
},
- {
- "id": "da5d71d1-d8cc-4301-9f86-b6abaa1201bd",
- "name": "BNR Nieuwsradio",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "business",
- "news",
- "talk"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.bnr.nl/bnr_mp3_128_20",
- "homepage": "https://www.bnr.nl/",
- "logoUrl": "https://static.bnr.nl/assets/bnr-next/logo.png",
- "votes": 731,
- "clickcount": 20,
- "source": "radio-browser",
- "sourceStationUuid": "da5d71d1-d8cc-4301-9f86-b6abaa1201bd"
- },
- {
- "id": "cd1e77ac-e034-4236-a295-eafc43d1159d",
- "name": "Qmusic 90's & 00's (64k aac)",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "english",
- "tags": [
- "00s",
- "90s",
- "hits"
- ],
- "codec": "AAC+",
- "bitrate": 96,
- "streamUrl": "https://stream.qmusic.nl/90s-00s/aaclow",
- "homepage": "https://qmusic.nl/",
- "logoUrl": "https://cdn-radio.dpgmedia.net/2/72/3d/09/109/Site-logo-_220x220_2.png",
- "votes": 85,
- "clickcount": 20,
- "source": "radio-browser",
- "sourceStationUuid": "cd1e77ac-e034-4236-a295-eafc43d1159d"
- },
{
"id": "c0357737-c4b3-4237-b8e9-1b14db02c157",
"name": "Qmusic",
@@ -28393,6 +57108,27 @@
"source": "radio-browser",
"sourceStationUuid": "c0357737-c4b3-4237-b8e9-1b14db02c157"
},
+ {
+ "id": "cd1e77ac-e034-4236-a295-eafc43d1159d",
+ "name": "Qmusic 90's & 00's (64k aac)",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "english",
+ "tags": [
+ "00s",
+ "90s",
+ "hits"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.qmusic.nl/90s-00s/aaclow",
+ "homepage": "https://qmusic.nl/",
+ "logoUrl": "https://cdn-radio.dpgmedia.net/2/72/3d/09/109/Site-logo-_220x220_2.png",
+ "votes": 85,
+ "clickcount": 19,
+ "source": "radio-browser",
+ "sourceStationUuid": "cd1e77ac-e034-4236-a295-eafc43d1159d"
+ },
{
"id": "1f6cc2e1-fe65-4356-a5e2-cdd6cc083ee7",
"name": "Tukker FM",
@@ -28414,25 +57150,6 @@
"source": "radio-browser",
"sourceStationUuid": "1f6cc2e1-fe65-4356-a5e2-cdd6cc083ee7"
},
- {
- "id": "0c62b9d7-8de0-4693-9842-6bf9b50229d3",
- "name": "NPO 3FM",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://icecast.omroep.nl/3fm-bb-mp3",
- "homepage": "https://www.npo3fm.nl/",
- "logoUrl": "https://www.npo3fm.nl/apple-touch-icon.png",
- "votes": 704,
- "clickcount": 18,
- "source": "radio-browser",
- "sourceStationUuid": "0c62b9d7-8de0-4693-9842-6bf9b50229d3"
- },
{
"id": "e44074fa-f007-11e8-a471-52543be04c81",
"name": "Omrop Fryslân Radio",
@@ -28493,26 +57210,6 @@
"source": "radio-browser",
"sourceStationUuid": "a1189085-eed0-414c-b8d8-6652189767dd"
},
- {
- "id": "69e80c6d-8a40-4138-8946-20a7b0a0460c",
- "name": "Alternative Rock Radio",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "alternative rock",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://25243.live.streamtheworld.com/KINK_SC",
- "homepage": "https://kink.nl/",
- "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/yTMB8WVAUb.png",
- "votes": 103,
- "clickcount": 16,
- "source": "radio-browser",
- "sourceStationUuid": "69e80c6d-8a40-4138-8946-20a7b0a0460c"
- },
{
"id": "ab16f423-6d03-47c2-bc7a-0e4751c51df4",
"name": "Classic NL",
@@ -28554,24 +57251,30 @@
"sourceStationUuid": "ce1e9521-8ad2-4e1a-a092-b3e08e6268c5"
},
{
- "id": "bcaca236-9f95-4cae-9cdc-6ae7917c9bce",
- "name": "RADIONL",
+ "id": "3c5d6806-10bc-4c95-82a6-c04ad8870807",
+ "name": "Pure Lounge Radio FLAC",
"country": "The Netherlands",
"countryCode": "NL",
- "language": "dutch",
+ "language": null,
"tags": [
- "24/7",
- "dutch music"
+ "1970s",
+ "1980s",
+ "70s",
+ "80s",
+ "disco",
+ "funk",
+ "luxury jazz",
+ "soul"
],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.radionl.fm/radionl",
- "homepage": "https://radionl.fm/",
- "logoUrl": "https://radionl.fm/wp-content/uploads/2024/10/logo-RADIONL-1.png",
- "votes": 40,
+ "codec": "OGG",
+ "bitrate": 1411,
+ "streamUrl": "https://mscp4.live-streams.nl:8142/lounge.ogg",
+ "homepage": "https://www.pureloungeradio.com/",
+ "logoUrl": "https://www.pureloungeradio.com/images/Pureloungeradio-achtergrond.jpg",
+ "votes": 730,
"clickcount": 16,
"source": "radio-browser",
- "sourceStationUuid": "bcaca236-9f95-4cae-9cdc-6ae7917c9bce"
+ "sourceStationUuid": "3c5d6806-10bc-4c95-82a6-c04ad8870807"
},
{
"id": "af809e4a-7ff4-4630-8b7e-9c09ec249679",
@@ -28612,47 +57315,41 @@
"sourceStationUuid": "c4085d5b-e2e4-4cc8-9d18-42b860d89fc2"
},
{
- "id": "3c5d6806-10bc-4c95-82a6-c04ad8870807",
- "name": "Pure Lounge Radio FLAC",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [
- "1970s",
- "1980s",
- "70s",
- "80s",
- "disco",
- "funk",
- "luxury jazz",
- "soul"
- ],
- "codec": "OGG",
- "bitrate": 1411,
- "streamUrl": "https://mscp4.live-streams.nl:8142/lounge.ogg",
- "homepage": "https://www.pureloungeradio.com/",
- "logoUrl": "https://www.pureloungeradio.com/images/Pureloungeradio-achtergrond.jpg",
- "votes": 730,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "3c5d6806-10bc-4c95-82a6-c04ad8870807"
- },
- {
- "id": "e4a9bfda-1e1c-498e-9e2d-7a68539ae152",
- "name": "Radion JND",
+ "id": "9103990d-f203-410e-8764-0cd81b415e6d",
+ "name": "QMUSIC NEDERLAND",
"country": "The Netherlands",
"countryCode": "NL",
"language": null,
"tags": [],
"codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.radiojnd.nl/radiojnd.mp3",
- "homepage": "https://radiojnd.nl/",
- "logoUrl": "https://radiojnd.nl/wp-content/uploads/2020/11/logo-radio-jnd.png",
- "votes": 16,
+ "bitrate": 128,
+ "streamUrl": "https://stream.qmusic.nl/qmusic/mp3",
+ "homepage": "https://qmusic.nl/",
+ "logoUrl": "https://qmusic.nl/favicon.ico",
+ "votes": 510,
"clickcount": 15,
"source": "radio-browser",
- "sourceStationUuid": "e4a9bfda-1e1c-498e-9e2d-7a68539ae152"
+ "sourceStationUuid": "9103990d-f203-410e-8764-0cd81b415e6d"
+ },
+ {
+ "id": "69e80c6d-8a40-4138-8946-20a7b0a0460c",
+ "name": "Alternative Rock Radio",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "alternative rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://25243.live.streamtheworld.com/KINK_SC",
+ "homepage": "https://kink.nl/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/yTMB8WVAUb.png",
+ "votes": 103,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "69e80c6d-8a40-4138-8946-20a7b0a0460c"
},
{
"id": "ead62101-c57c-4841-9677-8500f9097091",
@@ -28674,6 +57371,26 @@
"source": "radio-browser",
"sourceStationUuid": "ead62101-c57c-4841-9677-8500f9097091"
},
+ {
+ "id": "bcaca236-9f95-4cae-9cdc-6ae7917c9bce",
+ "name": "RADIONL",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "24/7",
+ "dutch music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.radionl.fm/radionl",
+ "homepage": "https://radionl.fm/",
+ "logoUrl": "https://radionl.fm/wp-content/uploads/2024/10/logo-RADIONL-1.png",
+ "votes": 40,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "bcaca236-9f95-4cae-9cdc-6ae7917c9bce"
+ },
{
"id": "5c9ed574-3b9d-4431-826d-72cf10df46dc",
"name": "NPO Radio 1",
@@ -28687,43 +57404,9 @@
"homepage": "https://www.nporadio1.nl/",
"logoUrl": "https://www.nporadio1.nl/apple-touch-icon.png",
"votes": 208,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "5c9ed574-3b9d-4431-826d-72cf10df46dc"
- },
- {
- "id": "c8e1fc4c-442e-4410-9ed6-2b1f75908c24",
- "name": "Radio Noordzee",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://22553.live.streamtheworld.com/TLPSTR17.mp3",
- "homepage": "https://www.radionoordzee.nl/",
- "logoUrl": "https://i.ibb.co/fYsYN5nv/486279844-1309381596939444-8468122003951244453-n.jpg",
- "votes": 68,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "c8e1fc4c-442e-4410-9ed6-2b1f75908c24"
- },
- {
- "id": "2342a6e2-c0d8-4312-8e6c-a8844ac5a63a",
- "name": "Classics Radio (1536Kbps Hi-Res FLAC Stream)",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [],
- "codec": "OGG",
- "bitrate": 1536,
- "streamUrl": "https://vriezenet.nl:11050/flac",
- "homepage": "https://www.classicsradio.org/",
- "logoUrl": "https://www.classicsradio.org/images/ClassicsRadio-Logo.png",
- "votes": 373,
"clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "2342a6e2-c0d8-4312-8e6c-a8844ac5a63a"
+ "sourceStationUuid": "5c9ed574-3b9d-4431-826d-72cf10df46dc"
},
{
"id": "675c24a5-ffb2-48f3-b855-157ae7dddd54",
@@ -28747,21 +57430,55 @@
"sourceStationUuid": "675c24a5-ffb2-48f3-b855-157ae7dddd54"
},
{
- "id": "9103990d-f203-410e-8764-0cd81b415e6d",
- "name": "QMUSIC NEDERLAND",
+ "id": "c8e1fc4c-442e-4410-9ed6-2b1f75908c24",
+ "name": "Radio Noordzee",
"country": "The Netherlands",
"countryCode": "NL",
"language": null,
"tags": [],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://stream.qmusic.nl/qmusic/mp3",
- "homepage": "https://qmusic.nl/",
- "logoUrl": "https://qmusic.nl/favicon.ico",
- "votes": 510,
+ "streamUrl": "https://22553.live.streamtheworld.com/TLPSTR17.mp3",
+ "homepage": "https://www.radionoordzee.nl/",
+ "logoUrl": "https://i.ibb.co/fYsYN5nv/486279844-1309381596939444-8468122003951244453-n.jpg",
+ "votes": 68,
"clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "9103990d-f203-410e-8764-0cd81b415e6d"
+ "sourceStationUuid": "c8e1fc4c-442e-4410-9ed6-2b1f75908c24"
+ },
+ {
+ "id": "e4a9bfda-1e1c-498e-9e2d-7a68539ae152",
+ "name": "Radion JND",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.radiojnd.nl/radiojnd.mp3",
+ "homepage": "https://radiojnd.nl/",
+ "logoUrl": "https://radiojnd.nl/wp-content/uploads/2020/11/logo-radio-jnd.png",
+ "votes": 16,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "e4a9bfda-1e1c-498e-9e2d-7a68539ae152"
+ },
+ {
+ "id": "1f9a7a02-6f20-415b-8fd5-030d65e614df",
+ "name": "Sublime",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SUBLIME.mp3?dist=sublime_website",
+ "homepage": "https://sublime.nl/",
+ "logoUrl": null,
+ "votes": 82,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "1f9a7a02-6f20-415b-8fd5-030d65e614df"
},
{
"id": "f11f6002-2c6f-493f-a61d-b6ac899569c2",
@@ -28786,28 +57503,21 @@
"sourceStationUuid": "f11f6002-2c6f-493f-a61d-b6ac899569c2"
},
{
- "id": "a438e66d-2ba7-46b4-89c9-01bc4204e161",
- "name": "Grolloo Radio",
+ "id": "2342a6e2-c0d8-4312-8e6c-a8844ac5a63a",
+ "name": "Classics Radio (1536Kbps Hi-Res FLAC Stream)",
"country": "The Netherlands",
"countryCode": "NL",
"language": null,
- "tags": [
- "americana",
- "blues",
- "cajun",
- "country",
- "nederpop",
- "soul"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://uk1.streamingpulse.com/ssl/grollooradio",
- "homepage": "https://grollooradio.nl/",
- "logoUrl": null,
- "votes": 2366,
+ "tags": [],
+ "codec": "OGG",
+ "bitrate": 1536,
+ "streamUrl": "https://vriezenet.nl:11050/flac",
+ "homepage": "https://www.classicsradio.org/",
+ "logoUrl": "https://www.classicsradio.org/images/ClassicsRadio-Logo.png",
+ "votes": 373,
"clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "a438e66d-2ba7-46b4-89c9-01bc4204e161"
+ "sourceStationUuid": "2342a6e2-c0d8-4312-8e6c-a8844ac5a63a"
},
{
"id": "41537cc5-896b-4e5c-abf6-82449b6be5bd",
@@ -28847,7 +57557,7 @@
"homepage": "https://www.rtvutrecht.nl/",
"logoUrl": "https://s.regiogroei.cloud/img/favicons/utrecht/apple-touch-icon.png?v=1698097333309",
"votes": 360,
- "clickcount": 12,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "459cda29-2f7e-4218-a581-34e8debb27ae"
},
@@ -28872,27 +57582,10 @@
"homepage": "https://realhardstyle.nl/",
"logoUrl": null,
"votes": 1169,
- "clickcount": 12,
+ "clickcount": 11,
"source": "radio-browser",
"sourceStationUuid": "b9201e54-c66a-489b-9db5-f487c0c4bcdf"
},
- {
- "id": "1f9a7a02-6f20-415b-8fd5-030d65e614df",
- "name": "Sublime",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SUBLIME.mp3?dist=sublime_website",
- "homepage": "https://sublime.nl/",
- "logoUrl": null,
- "votes": 82,
- "clickcount": 12,
- "source": "radio-browser",
- "sourceStationUuid": "1f9a7a02-6f20-415b-8fd5-030d65e614df"
- },
{
"id": "fd255a97-f17b-402c-a7fc-d28d586b3623",
"name": "538 Classics",
@@ -28917,45 +57610,28 @@
"sourceStationUuid": "fd255a97-f17b-402c-a7fc-d28d586b3623"
},
{
- "id": "a96e06f8-4d64-11ea-b877-52543be04c81",
- "name": "Celtcast",
+ "id": "a438e66d-2ba7-46b4-89c9-01bc4204e161",
+ "name": "Grolloo Radio",
"country": "The Netherlands",
"countryCode": "NL",
- "language": "english",
+ "language": null,
"tags": [
- "celtic",
- "folk",
- "only music",
- "viking"
+ "americana",
+ "blues",
+ "cajun",
+ "country",
+ "nederpop",
+ "soul"
],
"codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://caster04.streampakket.com/proxy/8982/CeltCast",
- "homepage": "http://celtcast.com/",
- "logoUrl": "https://celtcast.com/wp-content/uploads/2017/04/cropped-CeltCast-Community-Radio-Square-Black-with-White-512-270x270.jpg",
- "votes": 508,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "a96e06f8-4d64-11ea-b877-52543be04c81"
- },
- {
- "id": "6e06bb6b-c281-40e7-a459-2d7be467af6f",
- "name": "Hardcore Power Radio",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "gabber"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://hardcorepower.beheerstream.nl/8012/stream",
- "homepage": "https://www.hardcorepower.nl/",
+ "bitrate": 320,
+ "streamUrl": "https://uk1.streamingpulse.com/ssl/grollooradio",
+ "homepage": "https://grollooradio.nl/",
"logoUrl": null,
- "votes": 151,
+ "votes": 2366,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "6e06bb6b-c281-40e7-a459-2d7be467af6f"
+ "sourceStationUuid": "a438e66d-2ba7-46b4-89c9-01bc4204e161"
},
{
"id": "44baf21a-f1ba-43fe-a4b6-e497dda83e2a",
@@ -28980,6 +57656,27 @@
"source": "radio-browser",
"sourceStationUuid": "44baf21a-f1ba-43fe-a4b6-e497dda83e2a"
},
+ {
+ "id": "3ac246bf-557d-4c62-ae77-e8f1f928897b",
+ "name": "Radio Gelderland",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "103.5",
+ "news",
+ "public radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://d2od87akyl46nm.cloudfront.net/icecast/omroepgelderland/radiogelderland",
+ "homepage": "https://www.gld.nl/radio/overzicht",
+ "logoUrl": "https://s.regiogroei.cloud/Logo-los_1024.png",
+ "votes": 149,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ac246bf-557d-4c62-ae77-e8f1f928897b"
+ },
{
"id": "949419a7-b875-45d3-869c-6f4fb2d107a4",
"name": "Synthwave City FM - New",
@@ -28998,26 +57695,26 @@
"sourceStationUuid": "949419a7-b875-45d3-869c-6f4fb2d107a4"
},
{
- "id": "f31ae7e2-d5e6-4c88-9445-edf00f6cba40",
- "name": "BNR Nieuwsradio",
+ "id": "a96e06f8-4d64-11ea-b877-52543be04c81",
+ "name": "Celtcast",
"country": "The Netherlands",
"countryCode": "NL",
- "language": "dutch",
+ "language": "english",
"tags": [
- "business",
- "business news",
- "netherlands",
- "news"
+ "celtic",
+ "folk",
+ "only music",
+ "viking"
],
- "codec": "AAC+",
- "bitrate": 96,
- "streamUrl": "https://stream.bnr.nl/bnr_aac_96_20",
- "homepage": "https://www.bnr.nl/",
- "logoUrl": "https://www.bnr.nl/favicon.ico",
- "votes": 2047,
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://caster04.streampakket.com/proxy/8982/CeltCast",
+ "homepage": "http://celtcast.com/",
+ "logoUrl": "https://celtcast.com/wp-content/uploads/2017/04/cropped-CeltCast-Community-Radio-Square-Black-with-White-512-270x270.jpg",
+ "votes": 508,
"clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "f31ae7e2-d5e6-4c88-9445-edf00f6cba40"
+ "sourceStationUuid": "a96e06f8-4d64-11ea-b877-52543be04c81"
},
{
"id": "c81f7ce5-a1fd-42d3-b843-8ec7ec867d48",
@@ -29039,6 +57736,25 @@
"source": "radio-browser",
"sourceStationUuid": "c81f7ce5-a1fd-42d3-b843-8ec7ec867d48"
},
+ {
+ "id": "6e06bb6b-c281-40e7-a459-2d7be467af6f",
+ "name": "Hardcore Power Radio",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "gabber"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://hardcorepower.beheerstream.nl/8012/stream",
+ "homepage": "https://www.hardcorepower.nl/",
+ "logoUrl": null,
+ "votes": 151,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "6e06bb6b-c281-40e7-a459-2d7be467af6f"
+ },
{
"id": "fa805567-16de-4276-aec5-4171ed7a01ed",
"name": "Joe 70s & 80s",
@@ -29082,27 +57798,6 @@
"source": "radio-browser",
"sourceStationUuid": "29d481b8-bc37-4b73-a72f-c3b8ca025430"
},
- {
- "id": "3ac246bf-557d-4c62-ae77-e8f1f928897b",
- "name": "Radio Gelderland",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "103.5",
- "news",
- "public radio"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://d2od87akyl46nm.cloudfront.net/icecast/omroepgelderland/radiogelderland",
- "homepage": "https://www.gld.nl/radio/overzicht",
- "logoUrl": "https://s.regiogroei.cloud/Logo-los_1024.png",
- "votes": 149,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "3ac246bf-557d-4c62-ae77-e8f1f928897b"
- },
{
"id": "dfbad1f3-3534-44fd-90dd-2da4837344a2",
"name": "Radio Veronica Live",
@@ -29120,6 +57815,25 @@
"source": "radio-browser",
"sourceStationUuid": "dfbad1f3-3534-44fd-90dd-2da4837344a2"
},
+ {
+ "id": "f345ae46-3878-4a5d-b907-4df9c9666511",
+ "name": "Slow Radio Gold",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [
+ "slow"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream11.slowradio.com/",
+ "homepage": "https://en.slowradio.com/",
+ "logoUrl": "https://en.slowradio.com/img/favicons/apple-touch-icon.png",
+ "votes": 947,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "f345ae46-3878-4a5d-b907-4df9c9666511"
+ },
{
"id": "7b3d83dd-9292-47e6-915d-f77cc55ce64c",
"name": "100% NL Liefde",
@@ -29198,6 +57912,45 @@
"source": "radio-browser",
"sourceStationUuid": "9a3911a6-14ea-449e-b760-77fe6b76fe7c"
},
+ {
+ "id": "6c1493a5-cc7a-485f-a24e-7d66b4062e3b",
+ "name": "BNR Nieuwsradio",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.bnr.nl/bnr_mp3_128_01",
+ "homepage": "https://www.bnr.nl/",
+ "logoUrl": "https://static.bnr.nl/assets/bnr-next/logo.png",
+ "votes": 41,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "6c1493a5-cc7a-485f-a24e-7d66b4062e3b"
+ },
+ {
+ "id": "f31ae7e2-d5e6-4c88-9445-edf00f6cba40",
+ "name": "BNR Nieuwsradio",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "business",
+ "business news",
+ "netherlands",
+ "news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://stream.bnr.nl/bnr_aac_96_20",
+ "homepage": "https://www.bnr.nl/",
+ "logoUrl": "https://www.bnr.nl/favicon.ico",
+ "votes": 2047,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "f31ae7e2-d5e6-4c88-9445-edf00f6cba40"
+ },
{
"id": "f81daade-849e-4498-a796-1148e62f175f",
"name": "Candlelight Radio",
@@ -29216,23 +57969,21 @@
"sourceStationUuid": "f81daade-849e-4498-a796-1148e62f175f"
},
{
- "id": "f345ae46-3878-4a5d-b907-4df9c9666511",
- "name": "Slow Radio Gold",
+ "id": "e2569ee0-1f70-4829-b9f7-dc4e268397f0",
+ "name": "Decibel Eurodance",
"country": "The Netherlands",
"countryCode": "NL",
"language": null,
- "tags": [
- "slow"
- ],
+ "tags": [],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://stream11.slowradio.com/",
- "homepage": "https://en.slowradio.com/",
- "logoUrl": "https://en.slowradio.com/img/favicons/apple-touch-icon.png",
- "votes": 947,
+ "streamUrl": "https://stream.decibel.nl/02.mp3",
+ "homepage": "https://www.decibel.nl/decibeleurodance/",
+ "logoUrl": "https://i0.wp.com/www.decibel.nl/wp-content/uploads/2022/04/Eurodance.png?w=1060&ssl=1",
+ "votes": 53,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "f345ae46-3878-4a5d-b907-4df9c9666511"
+ "sourceStationUuid": "e2569ee0-1f70-4829-b9f7-dc4e268397f0"
},
{
"id": "abdea19d-6090-4ee3-a50a-1a519decd3bd",
@@ -29272,23 +58023,6 @@
"source": "radio-browser",
"sourceStationUuid": "555d7f9a-81a8-46e4-9c06-6001f87abdc2"
},
- {
- "id": "6c1493a5-cc7a-485f-a24e-7d66b4062e3b",
- "name": "BNR Nieuwsradio",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.bnr.nl/bnr_mp3_128_01",
- "homepage": "https://www.bnr.nl/",
- "logoUrl": "https://static.bnr.nl/assets/bnr-next/logo.png",
- "votes": 41,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "6c1493a5-cc7a-485f-a24e-7d66b4062e3b"
- },
{
"id": "7440fcf1-71da-47bf-bf13-f80c10eab97b",
"name": "Classicnl Mind Radio",
@@ -29312,30 +58046,6 @@
"source": "radio-browser",
"sourceStationUuid": "7440fcf1-71da-47bf-bf13-f80c10eab97b"
},
- {
- "id": "73f343c5-2b04-11e9-a35e-52543be04c81",
- "name": "Echtepiraten.nl",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "echtepiraten",
- "etherpiraten",
- "holland",
- "nederlandstalig",
- "piraten",
- "piratenhits"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://azuraserv3.live-streams.nl:8040/stream.mp3",
- "homepage": "http://echtepiraten.nl/",
- "logoUrl": null,
- "votes": 245,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "73f343c5-2b04-11e9-a35e-52543be04c81"
- },
{
"id": "6d69d3eb-1714-43a4-885a-dd3fd18b7081",
"name": "HITZZZ!!",
@@ -29378,66 +58088,28 @@
"sourceStationUuid": "c55d8846-85e5-496a-a2b7-80228a9ef6c8"
},
{
- "id": "3b232427-05ab-4193-af6e-b19bf8e78963",
- "name": "NPO Radio 4",
+ "id": "5cb448f8-1f80-4d78-bc23-ef2394378708",
+ "name": "NPO Radio 5",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [
- "classic",
- "dutch",
- "public radio"
+ "32 kbps",
+ "60's",
+ "70's",
+ "80's",
+ "evergreens",
+ "news"
],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://icecast.omroep.nl:80/radio4-bb-mp3",
- "homepage": "https://www.nporadio4.nl/",
- "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/NPO_Radio_4_logo_2014.svg/1200px-NPO_Radio_4_logo_2014.svg.png",
- "votes": 360,
+ "codec": "AAC",
+ "bitrate": 32,
+ "streamUrl": "https://icecast.omroep.nl/radio5-sb-aac",
+ "homepage": "https://www.nporadio5.nl/",
+ "logoUrl": "https://www.nporadio5.nl/apple-touch-icon.png",
+ "votes": 281,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "3b232427-05ab-4193-af6e-b19bf8e78963"
- },
- {
- "id": "4b463b2d-5636-43db-b2a8-6470eb60c6f3",
- "name": "Piraten.FM - 1",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch,german",
- "tags": [
- "etherpiraten",
- "geheimezender",
- "piraten",
- "piratenhits"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://piraten.fm/top/1",
- "homepage": "https://piraten.fm/",
- "logoUrl": "https://piraten.fm/_nuxt/icons/icon_64x64.123069.png",
- "votes": 51,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "4b463b2d-5636-43db-b2a8-6470eb60c6f3"
- },
- {
- "id": "26e08782-9027-441c-ab9e-4cd03eb420a5",
- "name": "PiratenRadio.nl - 24/7 de Beste PiratenHits vanuit Twente",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [
- "oldies"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://stream.piratenradio.nl/listen/piratenradio/prradio",
- "homepage": "https://piratenradio.nl/",
- "logoUrl": null,
- "votes": 20,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "26e08782-9027-441c-ab9e-4cd03eb420a5"
+ "sourceStationUuid": "5cb448f8-1f80-4d78-bc23-ef2394378708"
},
{
"id": "7edef5d0-588f-4f3a-b67a-f2958d7f188b",
@@ -29457,23 +58129,23 @@
"sourceStationUuid": "7edef5d0-588f-4f3a-b67a-f2958d7f188b"
},
{
- "id": "e7b856e2-911c-41c4-86e6-1bb15741be21",
- "name": "SoulRadio",
+ "id": "de2caf02-3091-4109-ab1f-6ca9494c3717",
+ "name": "Veronica Rock Radio",
"country": "The Netherlands",
"countryCode": "NL",
- "language": "dutch",
+ "language": "dutch,english",
"tags": [
- "soul"
+ "rock"
],
"codec": "AAC+",
"bitrate": 64,
- "streamUrl": "https://22323.live.streamtheworld.com/SOULRADIOAAC_SC",
- "homepage": "http://www.soulradio.nl/",
- "logoUrl": "http://www.allradio.nl/uploaded/logo/soul-radio-groot.jpg",
- "votes": 750,
+ "streamUrl": "https://21223.live.streamtheworld.com/VERONICAAAC.aac",
+ "homepage": "https://www.radioveronica.nl/",
+ "logoUrl": "https://api.radioveronica.nl/media/utpdvkit/radio-veronica-rock-radio-1_1.png",
+ "votes": 27,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "e7b856e2-911c-41c4-86e6-1bb15741be21"
+ "sourceStationUuid": "de2caf02-3091-4109-ab1f-6ca9494c3717"
},
{
"id": "e72eff55-46ff-4c2d-a93a-478bc51b246b",
@@ -29498,40 +58170,28 @@
"sourceStationUuid": "e72eff55-46ff-4c2d-a93a-478bc51b246b"
},
{
- "id": "af736d4a-f384-4e0a-b59f-2c3b23a45cf2",
- "name": "BredaNu (576kbit AAC)",
+ "id": "73f343c5-2b04-11e9-a35e-52543be04c81",
+ "name": "Echtepiraten.nl",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [
- "music"
+ "echtepiraten",
+ "etherpiraten",
+ "holland",
+ "nederlandstalig",
+ "piraten",
+ "piratenhits"
],
- "codec": "AAC",
- "bitrate": 576,
- "streamUrl": "https://icecast.bredanu.nl/bredanu.stl",
- "homepage": "https://bredanu.nl/",
- "logoUrl": "https://bredanu.nl/wp-content/uploads/2023/08/BredaNu-logo-nw-op-donker-1-.png",
- "votes": 7,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "af736d4a-f384-4e0a-b59f-2c3b23a45cf2"
- },
- {
- "id": "e2569ee0-1f70-4829-b9f7-dc4e268397f0",
- "name": "Decibel Eurodance",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://stream.decibel.nl/02.mp3",
- "homepage": "https://www.decibel.nl/decibeleurodance/",
- "logoUrl": "https://i0.wp.com/www.decibel.nl/wp-content/uploads/2022/04/Eurodance.png?w=1060&ssl=1",
- "votes": 53,
+ "streamUrl": "https://azuraserv3.live-streams.nl:8040/stream.mp3",
+ "homepage": "http://echtepiraten.nl/",
+ "logoUrl": null,
+ "votes": 245,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "e2569ee0-1f70-4829-b9f7-dc4e268397f0"
+ "sourceStationUuid": "73f343c5-2b04-11e9-a35e-52543be04c81"
},
{
"id": "790ef988-70ac-4823-9732-c80f57a129f0",
@@ -29593,86 +58253,66 @@
"sourceStationUuid": "6c391a02-366f-46c1-885b-4a1c7ac1fa69"
},
{
- "id": "8754a1df-772e-4a63-a878-fae915d0f132",
- "name": "Kink 90's",
+ "id": "3b232427-05ab-4193-af6e-b19bf8e78963",
+ "name": "NPO Radio 4",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [
- "90s",
- "alternative rock"
+ "classic",
+ "dutch",
+ "public radio"
],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://22533.live.streamtheworld.com/KINK_90S_SC",
- "homepage": "https://kink.nl/kink90s",
- "logoUrl": "https://kink.nl/_next/image?url=https%3A%2F%2Fapi.kink.nl%2Fcache%2Fi%2F4000%2Fimages%2F4414.w1600.b80bbb6.c013fc6.q90.jpg&w=1920&q=75",
- "votes": 233,
+ "streamUrl": "https://icecast.omroep.nl:80/radio4-bb-mp3",
+ "homepage": "https://www.nporadio4.nl/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/NPO_Radio_4_logo_2014.svg/1200px-NPO_Radio_4_logo_2014.svg.png",
+ "votes": 360,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "8754a1df-772e-4a63-a878-fae915d0f132"
+ "sourceStationUuid": "3b232427-05ab-4193-af6e-b19bf8e78963"
},
{
- "id": "5cb448f8-1f80-4d78-bc23-ef2394378708",
- "name": "NPO Radio 5",
+ "id": "4b463b2d-5636-43db-b2a8-6470eb60c6f3",
+ "name": "Piraten.FM - 1",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch,german",
+ "tags": [
+ "etherpiraten",
+ "geheimezender",
+ "piraten",
+ "piratenhits"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://piraten.fm/top/1",
+ "homepage": "https://piraten.fm/",
+ "logoUrl": "https://piraten.fm/_nuxt/icons/icon_64x64.123069.png",
+ "votes": 51,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4b463b2d-5636-43db-b2a8-6470eb60c6f3"
+ },
+ {
+ "id": "26e08782-9027-441c-ab9e-4cd03eb420a5",
+ "name": "PiratenRadio.nl - 24/7 de Beste PiratenHits vanuit Twente",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [
- "32 kbps",
- "60's",
- "70's",
- "80's",
- "evergreens",
- "news"
- ],
- "codec": "AAC",
- "bitrate": 32,
- "streamUrl": "https://icecast.omroep.nl/radio5-sb-aac",
- "homepage": "https://www.nporadio5.nl/",
- "logoUrl": "https://www.nporadio5.nl/apple-touch-icon.png",
- "votes": 281,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "5cb448f8-1f80-4d78-bc23-ef2394378708"
- },
- {
- "id": "074f6537-b3c4-11e9-acb2-52543be04c81",
- "name": "Pinguin Blues",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": null,
- "tags": [
- "blues",
- "blues rock",
- "pinguin radio"
+ "oldies"
],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://samcloud.spacial.com/api/listen?sid=93462&m=sc&rid=168006",
- "homepage": "https://pinguinradio.com/",
+ "streamUrl": "https://stream.piratenradio.nl/listen/piratenradio/prradio",
+ "homepage": "https://piratenradio.nl/",
"logoUrl": null,
- "votes": 1075,
+ "votes": 20,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "074f6537-b3c4-11e9-acb2-52543be04c81"
- },
- {
- "id": "5832bacf-33a8-4bf2-8d89-e8c6cda223e2",
- "name": "Qmusic Summer",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://stream.qmusic.nl/thema/mp3",
- "homepage": "https://qmusic.nl/",
- "logoUrl": "https://qmusic.nl/favicon.ico",
- "votes": 46,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "5832bacf-33a8-4bf2-8d89-e8c6cda223e2"
+ "sourceStationUuid": "26e08782-9027-441c-ab9e-4cd03eb420a5"
},
{
"id": "cc559c9c-3551-437a-845d-a9d8731c9c7d",
@@ -29699,67 +58339,79 @@
"sourceStationUuid": "cc559c9c-3551-437a-845d-a9d8731c9c7d"
},
{
- "id": "0a1e6519-b730-45c5-a829-9ca20ab6e4ec",
- "name": "Relax FM Online",
- "country": "The Netherlands",
- "countryCode": "NL",
- "language": "dutch,english",
- "tags": [
- "80's",
- "disco",
- "funk",
- "italo disco",
- "r&b"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://caster04.streampakket.com/proxy/8009/stream",
- "homepage": "https://www.relaxfmonline.nl/",
- "logoUrl": "https://www.relaxfmonline.nl/favicon.ico",
- "votes": 31,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "0a1e6519-b730-45c5-a829-9ca20ab6e4ec"
- },
- {
- "id": "a20f8e42-3ae1-454d-8219-1933ee3353f7",
- "name": "Veronica Non-stop",
+ "id": "e7b856e2-911c-41c4-86e6-1bb15741be21",
+ "name": "SoulRadio",
"country": "The Netherlands",
"countryCode": "NL",
"language": "dutch",
"tags": [
- "alternative",
- "classic hits",
- "dance",
- "pop",
- "rock"
+ "soul"
],
"codec": "AAC+",
- "bitrate": 96,
- "streamUrl": "https://21633.live.streamtheworld.com/DAB02_AAC.aac",
- "homepage": "http://www.radioveronica.nl/",
- "logoUrl": "null",
- "votes": 22,
+ "bitrate": 64,
+ "streamUrl": "https://22323.live.streamtheworld.com/SOULRADIOAAC_SC",
+ "homepage": "http://www.soulradio.nl/",
+ "logoUrl": "http://www.allradio.nl/uploaded/logo/soul-radio-groot.jpg",
+ "votes": 750,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "a20f8e42-3ae1-454d-8219-1933ee3353f7"
+ "sourceStationUuid": "e7b856e2-911c-41c4-86e6-1bb15741be21"
},
{
- "id": "346146e0-4908-43cc-b9f9-5abf9cdda8ac",
- "name": "Hallo Kids Radio",
+ "id": "af736d4a-f384-4e0a-b59f-2c3b23a45cf2",
+ "name": "BredaNu (576kbit AAC)",
"country": "The Netherlands",
"countryCode": "NL",
- "language": null,
+ "language": "dutch",
+ "tags": [
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 576,
+ "streamUrl": "https://icecast.bredanu.nl/bredanu.stl",
+ "homepage": "https://bredanu.nl/",
+ "logoUrl": "https://bredanu.nl/wp-content/uploads/2023/08/BredaNu-logo-nw-op-donker-1-.png",
+ "votes": 7,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "af736d4a-f384-4e0a-b59f-2c3b23a45cf2"
+ },
+ {
+ "id": "b3df8c46-a515-4a1a-ad61-6f1333af72e2",
+ "name": "De Hollandse Piraten Gigant",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "nethe",
"tags": [],
"codec": "MP3",
"bitrate": 192,
- "streamUrl": "https://stream.hallokidsradio.nl/hallokids",
- "homepage": "https://www.hallokidsradio.nl/",
- "logoUrl": "https://www.hallokidsradio.nl/favicon.png",
- "votes": 12,
+ "streamUrl": "https://dhpgstreaming.nl/proxy/dhpg/stream",
+ "homepage": "https://dehollandsepiratengigant.nl/",
+ "logoUrl": null,
+ "votes": 42,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "346146e0-4908-43cc-b9f9-5abf9cdda8ac"
+ "sourceStationUuid": "b3df8c46-a515-4a1a-ad61-6f1333af72e2"
+ },
+ {
+ "id": "8754a1df-772e-4a63-a878-fae915d0f132",
+ "name": "Kink 90's",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "90s",
+ "alternative rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://22533.live.streamtheworld.com/KINK_90S_SC",
+ "homepage": "https://kink.nl/kink90s",
+ "logoUrl": "https://kink.nl/_next/image?url=https%3A%2F%2Fapi.kink.nl%2Fcache%2Fi%2F4000%2Fimages%2F4414.w1600.b80bbb6.c013fc6.q90.jpg&w=1920&q=75",
+ "votes": 233,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "8754a1df-772e-4a63-a878-fae915d0f132"
},
{
"id": "a76886de-703d-4c64-91ba-75673bfc7235",
@@ -29786,6 +58438,27 @@
"source": "radio-browser",
"sourceStationUuid": "a76886de-703d-4c64-91ba-75673bfc7235"
},
+ {
+ "id": "074f6537-b3c4-11e9-acb2-52543be04c81",
+ "name": "Pinguin Blues",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": null,
+ "tags": [
+ "blues",
+ "blues rock",
+ "pinguin radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://samcloud.spacial.com/api/listen?sid=93462&m=sc&rid=168006",
+ "homepage": "https://pinguinradio.com/",
+ "logoUrl": null,
+ "votes": 1075,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "074f6537-b3c4-11e9-acb2-52543be04c81"
+ },
{
"id": "77e82dec-2719-4672-9567-c41291db76d2",
"name": "Q-Music Limburg",
@@ -29803,6 +58476,52 @@
"source": "radio-browser",
"sourceStationUuid": "77e82dec-2719-4672-9567-c41291db76d2"
},
+ {
+ "id": "8f59aafc-d3b6-4f5c-99a2-2b389b5a918c",
+ "name": "Radio Omroep Venlo",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch",
+ "tags": [
+ "local music",
+ "local news",
+ "local radio",
+ "music",
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://nlpo.stream.vip/venlo/mp3-192/nlpo",
+ "homepage": "https://omroepvenlo.nl/",
+ "logoUrl": "https://omroepvenlo.nl/logos/OMROEP_VENLO-light.svg",
+ "votes": 3,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "8f59aafc-d3b6-4f5c-99a2-2b389b5a918c"
+ },
+ {
+ "id": "0a1e6519-b730-45c5-a829-9ca20ab6e4ec",
+ "name": "Relax FM Online",
+ "country": "The Netherlands",
+ "countryCode": "NL",
+ "language": "dutch,english",
+ "tags": [
+ "80's",
+ "disco",
+ "funk",
+ "italo disco",
+ "r&b"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://caster04.streampakket.com/proxy/8009/stream",
+ "homepage": "https://www.relaxfmonline.nl/",
+ "logoUrl": "https://www.relaxfmonline.nl/favicon.ico",
+ "votes": 31,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0a1e6519-b730-45c5-a829-9ca20ab6e4ec"
+ },
{
"id": "02fab93b-c8a8-4536-bba2-3d1349318f33",
"name": "Sky Radio Non-Stop",
@@ -29821,23 +58540,1933 @@
"sourceStationUuid": "02fab93b-c8a8-4536-bba2-3d1349318f33"
},
{
- "id": "de2caf02-3091-4109-ab1f-6ca9494c3717",
- "name": "Veronica Rock Radio",
+ "id": "a20f8e42-3ae1-454d-8219-1933ee3353f7",
+ "name": "Veronica Non-stop",
"country": "The Netherlands",
"countryCode": "NL",
- "language": "dutch,english",
+ "language": "dutch",
"tags": [
+ "alternative",
+ "classic hits",
+ "dance",
+ "pop",
"rock"
],
"codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://21223.live.streamtheworld.com/VERONICAAAC.aac",
- "homepage": "https://www.radioveronica.nl/",
- "logoUrl": "https://api.radioveronica.nl/media/utpdvkit/radio-veronica-rock-radio-1_1.png",
- "votes": 27,
+ "bitrate": 96,
+ "streamUrl": "https://21633.live.streamtheworld.com/DAB02_AAC.aac",
+ "homepage": "http://www.radioveronica.nl/",
+ "logoUrl": "null",
+ "votes": 22,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "de2caf02-3091-4109-ab1f-6ca9494c3717"
+ "sourceStationUuid": "a20f8e42-3ae1-454d-8219-1933ee3353f7"
+ },
+ {
+ "id": "95eff2f9-cb7a-4fe4-bb07-8c700719f8b6",
+ "name": "Relax FM Chillout",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "chill",
+ "chillout",
+ "chillout+lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://pub0201.101.ru/stream/trust/mp3/128/24?",
+ "homepage": "https://relax-fm.ru/",
+ "logoUrl": "https://www.radiobells.com/stations/relaxfmchillout.webp",
+ "votes": 2692,
+ "clickcount": 156,
+ "source": "radio-browser",
+ "sourceStationUuid": "95eff2f9-cb7a-4fe4-bb07-8c700719f8b6"
+ },
+ {
+ "id": "63688c44-e90b-11e8-a471-52543be04c81",
+ "name": "РАДИО ВАНЯ",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://icecast-radiovanya.cdnvideo.ru/radiovanya",
+ "homepage": "http://www.radiovanya.ru/",
+ "logoUrl": null,
+ "votes": 55119,
+ "clickcount": 110,
+ "source": "radio-browser",
+ "sourceStationUuid": "63688c44-e90b-11e8-a471-52543be04c81"
+ },
+ {
+ "id": "563f5559-105c-11e9-a80b-52543be04c81",
+ "name": "DFM RUSSIAN DANCE",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "dance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://dfm-dfmrusdance.hostingradio.ru/dfmrusdance96.aacp?0.9987259013359274",
+ "homepage": "https://dfm.ru/",
+ "logoUrl": "https://dfm.ru/uploads/favicon.ico",
+ "votes": 52942,
+ "clickcount": 67,
+ "source": "radio-browser",
+ "sourceStationUuid": "563f5559-105c-11e9-a80b-52543be04c81"
+ },
+ {
+ "id": "165eab56-4a14-11e9-a4d7-52543be04c81",
+ "name": "DFM Дискач 90-х",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "90-е",
+ "eurodance",
+ "nostalgia"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://dfm-disc90.hostingradio.ru/disc9096.aacp",
+ "homepage": "https://dfm.ru/",
+ "logoUrl": null,
+ "votes": 53068,
+ "clickcount": 58,
+ "source": "radio-browser",
+ "sourceStationUuid": "165eab56-4a14-11e9-a4d7-52543be04c81"
+ },
+ {
+ "id": "18570040-960a-4f41-96dc-fe47d5878dd1",
+ "name": "Соловьёв LIVE",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "politics",
+ "world news"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://solovievfm.hostingradio.ru/solovievfm128.aacp",
+ "homepage": "http://soloviev.live/",
+ "logoUrl": null,
+ "votes": 5293,
+ "clickcount": 53,
+ "source": "radio-browser",
+ "sourceStationUuid": "18570040-960a-4f41-96dc-fe47d5878dd1"
+ },
+ {
+ "id": "2f1d6057-52bb-4a33-9b4c-be44a800d832",
+ "name": "Соловьёв FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "news",
+ "politics",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://solovievfm.hostingradio.ru/solovievfm32.aacp",
+ "homepage": "http://soloviev.live/",
+ "logoUrl": "http://telegram.org/img/apple-touch-icon.png",
+ "votes": 10820,
+ "clickcount": 44,
+ "source": "radio-browser",
+ "sourceStationUuid": "2f1d6057-52bb-4a33-9b4c-be44a800d832"
+ },
+ {
+ "id": "4e285d46-4491-4df0-a6d8-974b8b9a49f8",
+ "name": "Radio Record - Russian Gold",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "pop",
+ "russian"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/russiangold96.aacp",
+ "homepage": "https://www.radiorecord.ru/",
+ "logoUrl": "https://www.radiorecord.ru/icons/apple-touch-icon.png",
+ "votes": 991,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "4e285d46-4491-4df0-a6d8-974b8b9a49f8"
+ },
+ {
+ "id": "033fe547-b71c-4ea0-8274-e6522444629c",
+ "name": "Русское Радио",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://rusradio.hostingradio.ru/rusradio96.aacp",
+ "homepage": null,
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/8/248.v10.png",
+ "votes": 29817,
+ "clickcount": 38,
+ "source": "radio-browser",
+ "sourceStationUuid": "033fe547-b71c-4ea0-8274-e6522444629c"
+ },
+ {
+ "id": "2678a502-9a27-4774-a549-e00091878051",
+ "name": "Спутник",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-rian.cdnvideo.ru/voicerus",
+ "homepage": "https://sputnikimages.com/",
+ "logoUrl": null,
+ "votes": 7345,
+ "clickcount": 38,
+ "source": "radio-browser",
+ "sourceStationUuid": "2678a502-9a27-4774-a549-e00091878051"
+ },
+ {
+ "id": "676dafe0-13d8-4caf-aced-bfd5fbf78a1c",
+ "name": "101.ru - Deep House",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "deep house",
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://pub0202.101.ru:8000/stream/trust/mp3/128/173",
+ "homepage": "https://deephouse.101.ru/",
+ "logoUrl": null,
+ "votes": 3081,
+ "clickcount": 37,
+ "source": "radio-browser",
+ "sourceStationUuid": "676dafe0-13d8-4caf-aced-bfd5fbf78a1c"
+ },
+ {
+ "id": "04a69a7f-a245-4022-81f4-72e793d2fcf5",
+ "name": "BEST DEEP FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://myradio24.org/5129",
+ "homepage": "https://bestdeepfm.ru/",
+ "logoUrl": "https://bestdeepfm.ru/favicon.ico",
+ "votes": 1128,
+ "clickcount": 36,
+ "source": "radio-browser",
+ "sourceStationUuid": "04a69a7f-a245-4022-81f4-72e793d2fcf5"
+ },
+ {
+ "id": "3a386176-7b44-46eb-9461-75fc96121c99",
+ "name": "Комсомольская правда",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://kpradio.hostingradio.ru:8000/64",
+ "homepage": "https://radiokp.ru/",
+ "logoUrl": "https://radiokp.ru/modules/custom/dna_kpradio/modules/kp_favicon/img/favicon-194x194.png?v=1.1",
+ "votes": 9230,
+ "clickcount": 36,
+ "source": "radio-browser",
+ "sourceStationUuid": "3a386176-7b44-46eb-9461-75fc96121c99"
+ },
+ {
+ "id": "ac374cbd-6ea3-417e-b8d1-967c77bec430",
+ "name": "ДИСКОТЕКА 90-Х",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/sd9096.aacp?0968d4a7",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 1720,
+ "clickcount": 35,
+ "source": "radio-browser",
+ "sourceStationUuid": "ac374cbd-6ea3-417e-b8d1-967c77bec430"
+ },
+ {
+ "id": "518d02e0-9301-4358-bf25-4ed57372fd2d",
+ "name": "Instrumental Jazz",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "instrumental",
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://jfm1.hostingradio.ru:14536/ijstream.mp3",
+ "homepage": "https://radiojazzfm.ru/",
+ "logoUrl": "https://radiojazzfm.ru/favicons/apple-touch-icon.png",
+ "votes": 5905,
+ "clickcount": 29,
+ "source": "radio-browser",
+ "sourceStationUuid": "518d02e0-9301-4358-bf25-4ed57372fd2d"
+ },
+ {
+ "id": "b3c3ac25-ea2c-4865-8444-7ba9a71960f8",
+ "name": "Radio Record - Russian Mix",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/rus96.aacp",
+ "homepage": "https://www.radiorecord.ru/station/rus",
+ "logoUrl": null,
+ "votes": 45193,
+ "clickcount": 29,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3c3ac25-ea2c-4865-8444-7ba9a71960f8"
+ },
+ {
+ "id": "961799c0-0601-11e8-ae97-52543be04c81",
+ "name": "Спокойное радио",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "ambient",
+ "chillout",
+ "easy listening",
+ "jazz",
+ "lounge",
+ "moscow",
+ "relax",
+ "sounds of nature"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen9.myradio24.com/6262",
+ "homepage": "http://spokoinoeradio.ru/",
+ "logoUrl": "https://i.1.creatium.io/5f/9c/2c/4e16165627237138cbc3273f76782d56f9/196x196/favicon.png",
+ "votes": 29158,
+ "clickcount": 29,
+ "source": "radio-browser",
+ "sourceStationUuid": "961799c0-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "d847db37-5f89-48a5-be32-b10e5406f0e6",
+ "name": "Mixadance FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "dance",
+ "electro",
+ "electronic",
+ "house",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://stream.mixadance.fm/mixadance",
+ "homepage": "http://www.mixadance.fm/",
+ "logoUrl": "http://www.mixadance.fm/apple-touch-icon.png",
+ "votes": 15414,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "d847db37-5f89-48a5-be32-b10e5406f0e6"
+ },
+ {
+ "id": "c4175f89-69da-11ea-b1cf-52543be04c81",
+ "name": "Бизнес FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "business",
+ "business news",
+ "business programs"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://bfm.hostingradio.ru:9075/fm",
+ "homepage": "https://www.bfm.ru/",
+ "logoUrl": "https://www.bfm.ru/apple-touch-icon.png",
+ "votes": 4450,
+ "clickcount": 26,
+ "source": "radio-browser",
+ "sourceStationUuid": "c4175f89-69da-11ea-b1cf-52543be04c81"
+ },
+ {
+ "id": "39094c88-fc5d-4628-b5e7-5884b58ba8a5",
+ "name": "Звезда",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian,язык: русский",
+ "tags": [
+ "news",
+ "russian",
+ "talk",
+ "новости",
+ "разговор",
+ "разговорное",
+ "россия",
+ "русский"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-zvezda.mediacdn.ru/radio/zvezda/zvezda_128",
+ "homepage": "https://radiozvezda.ru/",
+ "logoUrl": null,
+ "votes": 5596,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "39094c88-fc5d-4628-b5e7-5884b58ba8a5"
+ },
+ {
+ "id": "1d13fc30-266e-4724-b288-ca82f63da688",
+ "name": "Известия ТВ (звук)",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "news",
+ "talk",
+ "новости",
+ "разговорное"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://hls-igi.cdnvideo.ru/igi/radio1/tracks-a1/mono.m3u8",
+ "homepage": "https://iz.ru/live",
+ "logoUrl": "https://cdn.iz.ru/profiles/portal/themes/purple/images/favicons/apple-icon.png",
+ "votes": 2024,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d13fc30-266e-4724-b288-ca82f63da688"
+ },
+ {
+ "id": "7bc931dc-3fac-43d6-ba2d-1b5c6db73e56",
+ "name": "Радио Книга Вслух",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio-soyuz.ru:1045/stream",
+ "homepage": "https://www.soyuz.ru/radio",
+ "logoUrl": "https://www.soyuz.ru/public/images/front/favicon-touch.png",
+ "votes": 970,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "7bc931dc-3fac-43d6-ba2d-1b5c6db73e56"
+ },
+ {
+ "id": "92ec65ea-0324-4d45-bc55-d66955af4a1f",
+ "name": "Радио Шоколад",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,russian",
+ "tags": [
+ "covers",
+ "hits",
+ "remake"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://choco.hostingradio.ru:10010/fm",
+ "homepage": "https://chocoradio.ru/",
+ "logoUrl": "https://chocoradio.ru/favicon.ico",
+ "votes": 1249,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "92ec65ea-0324-4d45-bc55-d66955af4a1f"
+ },
+ {
+ "id": "62220177-9f8b-48d0-a9bc-df4c9a3927c9",
+ "name": "Советская эстрада",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://evcast.mediacp.eu:2075/stream",
+ "homepage": "https://avatars.mds.yandex.net/i?id=022b2b00ee1704c27d3fd32929a9de3d_l-5518476-images-thumbs&n=13",
+ "logoUrl": "https://avatars.mds.yandex.net/i?id=022b2b00ee1704c27d3fd32929a9de3d_l-5518476-images-thumbs&n=13",
+ "votes": 1078,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "62220177-9f8b-48d0-a9bc-df4c9a3927c9"
+ },
+ {
+ "id": "2f02a25d-9b5d-4c3e-abb7-c43be64ca8d7",
+ "name": "DEEP IN SPACE",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english",
+ "tags": [
+ "ambi",
+ "ambient",
+ "chillout",
+ "deep space",
+ "space music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.drugradio.ru:8020/stream128",
+ "homepage": "https://deepinspace.ru/",
+ "logoUrl": "https://deepinspace.ru/wp-content/uploads/2024/12/logo500.jpg",
+ "votes": 216,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "2f02a25d-9b5d-4c3e-abb7-c43be64ca8d7"
+ },
+ {
+ "id": "e502de74-7275-4211-8bdd-38f39c4b76e9",
+ "name": "Echo ЭХО Online",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://i1.echofm.online:8443/stream",
+ "homepage": "https://echo02.online/",
+ "logoUrl": null,
+ "votes": 476,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "e502de74-7275-4211-8bdd-38f39c4b76e9"
+ },
+ {
+ "id": "84bb80d4-2a06-4048-9a9d-7642ba40ce28",
+ "name": "Маруся ФМ",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "поп-музыка",
+ "танцевальная"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio-holding.ru:9433/marusya_default",
+ "homepage": "https://top-radio.ru/web/marusya-fm",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/180/marusyafm.png",
+ "votes": 681,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "84bb80d4-2a06-4048-9a9d-7642ba40ce28"
+ },
+ {
+ "id": "7f3e194e-9ff6-4530-8b71-216b892aad39",
+ "name": "101,ru Russian Dance",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "#101",
+ "#music",
+ "#russiandance",
+ "101.ru"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://pub0302.101.ru:8443/stream/trust/mp3/128/17?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpcCI6IjQ5LjM3LjE1MS42IiwidXNlcmFnZW50IjoiTW96aWxsYVwvNS4wIChYMTE7IExpbnV4IHg4Nl82NDsgcnY6ODguMCkgR2Vja29cLzIwMTAwMTAxIEZpcmVmb3hcLzg4LjAiLCJ1aWRfY2hhbm5lbCI6IjE3IiwidHlwZV9jaGFubmVsIjoiY2hhbm5lbCIsImV4cCI6MTYxODUwMTYyM30.vsWQ1s12RL1P3yuD4Eb6E2Og6YaLbXceO-cfhhhwl5s",
+ "homepage": "http://russiandance.101.ru/",
+ "logoUrl": null,
+ "votes": 18721,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f3e194e-9ff6-4530-8b71-216b892aad39"
+ },
+ {
+ "id": "52b80cd2-f52a-47b6-b293-9d666489c36e",
+ "name": "ABBA Radio",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,russian",
+ "tags": [
+ "1970s",
+ "1980s",
+ "70 80 hits",
+ "70s",
+ "70s disco",
+ "80s",
+ "classic hits 60s 70a 80s",
+ "dance pop",
+ "disco",
+ "pop dance",
+ "pop music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://pub0102.101.ru:8443/stream/personal/aacp/64/1785788",
+ "homepage": "https://101.ru/radio/user/1785788",
+ "logoUrl": "https://cdn2.101.ru/proxy/vardata/modules/channel/dynamics/personal/178/1785788.jpg?w=300&h=300&pos=center&t=1681310271",
+ "votes": 421,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "52b80cd2-f52a-47b6-b293-9d666489c36e"
+ },
+ {
+ "id": "9e4f0920-a3bd-4884-9e98-fbd0051215ed",
+ "name": "Radio record - Main Channel",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "music",
+ "news"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/rr_main96.aacp",
+ "homepage": "https://www.radiorecord.ru/",
+ "logoUrl": "https://www.radiorecord.ru/icons/apple-touch-icon.png",
+ "votes": 19158,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "9e4f0920-a3bd-4884-9e98-fbd0051215ed"
+ },
+ {
+ "id": "b5fe06a0-04a1-40d3-9aad-26b113c7a4e9",
+ "name": "Radio Record - Rap Classics",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english",
+ "tags": [
+ "rap classics"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/rapclassics96.aacp",
+ "homepage": "https://www.radiorecord.ru/",
+ "logoUrl": "https://www.radiorecord.ru/icons/apple-touch-icon.png",
+ "votes": 112,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "b5fe06a0-04a1-40d3-9aad-26b113c7a4e9"
+ },
+ {
+ "id": "88b3a415-2b06-4d21-8c80-dfdba0dd5029",
+ "name": "Радио Ностальжи Россия",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "nostalgie"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://listen8.myradio24.com/alexx333",
+ "homepage": "https://myradio24.com/alexx333",
+ "logoUrl": "https://sun9-27.userapi.com/impf/c841322/v841322516/5f256/VE9h-yZqVmE.jpg?size=478x477&quality=96&sign=7e93962ff9959abc16c587e11ff34a34&type=album",
+ "votes": 1503,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "88b3a415-2b06-4d21-8c80-dfdba0dd5029"
+ },
+ {
+ "id": "f851b5a1-e0e8-4b56-938d-cbdf161376c5",
+ "name": "101.ru - Drum & Bass",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "drum & bass",
+ "drum and bass",
+ "russian"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://pub0302.101.ru:8000/stream/pro/aac/64/6?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpcCI6IjIxMi41MS4xNDIuMTY2IiwidXNlcmFnZW50IjoiTW96aWxsYVwvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo4OC4wKSBHZWNrb1wvMjAxMDAxMDEgRmlyZWZveFwvODguMCIsInVpZF9jaGFubmVsIjoiNiIsInR5cGVfY2hhbm5lbCI6ImNoYW5uZWwiLCJleHAiOjE2MTU0NjYxNDh9.ReVmj9UP8k1j83oPOXewKDc37Me9RpR3wA3nm5bMWmE",
+ "homepage": "https://101.ru/radio/channel/6",
+ "logoUrl": null,
+ "votes": 1816,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "f851b5a1-e0e8-4b56-938d-cbdf161376c5"
+ },
+ {
+ "id": "2d2f0f10-5ea9-400b-a61b-f2c6c8ed7963",
+ "name": "Радио Монте Карло",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://montecarlo.hostingradio.ru/montecarlo128.mp3",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 3259,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "2d2f0f10-5ea9-400b-a61b-f2c6c8ed7963"
+ },
+ {
+ "id": "73f1944c-06d3-4acc-b378-28608056a82f",
+ "name": "Русский Рок",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "рок"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://rr-russkijrok.hostingradio.ru/russkijrok96.aacp",
+ "homepage": "https://m.the-radio.ru/radio/russian-rock-r2300",
+ "logoUrl": "https://topradio.mobi/screen/1630414047_russkii_rok_moskva_rossiya.jpg",
+ "votes": 1587,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "73f1944c-06d3-4acc-b378-28608056a82f"
+ },
+ {
+ "id": "51b7f8ff-bbe9-4c74-8f53-0cda9f16eaec",
+ "name": "DFM - Vocal Trance",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "trance"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://dfm-trance.hostingradio.ru/trance96.aacp",
+ "homepage": "https://dfm.ru/",
+ "logoUrl": null,
+ "votes": 1288,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "51b7f8ff-bbe9-4c74-8f53-0cda9f16eaec"
+ },
+ {
+ "id": "6b229191-627b-481a-8b3b-a2bd33d0085f",
+ "name": "Высоцкий",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "шансон"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://rr-vysockij.hostingradio.ru/vysockij96.aacp",
+ "homepage": "https://rusradio.ru/",
+ "logoUrl": "https://radio-onliner.ru/assets/images/radio/radio-vysockij.png",
+ "votes": 571,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "6b229191-627b-481a-8b3b-a2bd33d0085f"
+ },
+ {
+ "id": "4e9c5932-cf40-4dc8-af48-290f5b33c263",
+ "name": "1000 HITS RADIO",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,russian",
+ "tags": [
+ "classic rock",
+ "eurodance",
+ "pop",
+ "pop dance",
+ "pop music",
+ "pop rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.1000hit.ru:8000/stream128",
+ "homepage": "https://1000hit.ru/",
+ "logoUrl": "https://1000hit.ru/wp-content/uploads/elementor/thumbs/1000logo-qpueqzy2e63fp60e4sr3sfn0ao6habtfhem41brnr4.png",
+ "votes": 124,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "4e9c5932-cf40-4dc8-af48-290f5b33c263"
+ },
+ {
+ "id": "4c6b99d6-4a4f-452d-af3a-3a8bb4b0a155",
+ "name": "ХИТ FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://hitfm.hostingradio.ru/hitfm128.mp3?48c22b78",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 1182,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c6b99d6-4a4f-452d-af3a-3a8bb4b0a155"
+ },
+ {
+ "id": "801de088-97db-4080-ba62-8f6b4bf56ad1",
+ "name": "101.ru Techno",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "techno"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://pub0302.101.ru:8000/stream/trust/mp3/128/18",
+ "homepage": "https://101.ru/radio/channel/18",
+ "logoUrl": null,
+ "votes": 861,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "801de088-97db-4080-ba62-8f6b4bf56ad1"
+ },
+ {
+ "id": "e7312e4b-444e-45d8-afc9-c11c24aeef13",
+ "name": "Discoteca 80",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "rossia",
+ "tags": [
+ "soft"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://pub0302.101.ru:8443/stream/pro/aac/64/1?",
+ "homepage": "http://101.ru/radio/channel/1",
+ "logoUrl": null,
+ "votes": 831,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "e7312e4b-444e-45d8-afc9-c11c24aeef13"
+ },
+ {
+ "id": "32fc6c88-c5cb-4e5c-aecf-833bfe89eaf1",
+ "name": "Zaycev.FM Pop",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "hits",
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://abs.zaycev.fm/pop128k",
+ "homepage": "https://www.zaycev.fm/pop",
+ "logoUrl": "https://pcradio.ru/images/stations/61b09c69159cc.jpg",
+ "votes": 36,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "32fc6c88-c5cb-4e5c-aecf-833bfe89eaf1"
+ },
+ {
+ "id": "756183e3-cc68-4195-b2c7-531a6cbc2f5a",
+ "name": "Коммерсантъ FM 93.6",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "economics",
+ "finance",
+ "information",
+ "news",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kommersant77.hostingradio.ru:8085/kommersant128.mp3",
+ "homepage": "https://www.kommersant.ru/fm",
+ "logoUrl": "https://im.kommersant.ru/contentflex/images/favicons2020/apple-touch-icon-120.png",
+ "votes": 1218,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "756183e3-cc68-4195-b2c7-531a6cbc2f5a"
+ },
+ {
+ "id": "64457ff3-73b7-473f-a79a-1985219fa221",
+ "name": "Armin van Buuren (Record)",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "club dance electronic house trance",
+ "club house trance dance",
+ "deejay remix",
+ "remixed",
+ "remixes",
+ "trance"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/armin96.aacp",
+ "homepage": "https://www.radiorecord.ru/station/armin",
+ "logoUrl": "https://www.radiobells.com/stations/recordarmin.webp",
+ "votes": 46,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "64457ff3-73b7-473f-a79a-1985219fa221"
+ },
+ {
+ "id": "470106de-7105-11e9-af37-52543be04c81",
+ "name": "MAXIMUM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://maximum.hostingradio.ru/maximum96.aacp",
+ "homepage": "http://maximum.ru/",
+ "logoUrl": "https://yt3.ggpht.com/a-/AAuE7mA0wNG5B5G3eou2NCb0rRIOebNk9HNbJRuArw=s900-mo-c-c0xffffffff-rj-k-no",
+ "votes": 616,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "470106de-7105-11e9-af37-52543be04c81"
+ },
+ {
+ "id": "91269676-7c60-4d7f-b37d-5601389cd798",
+ "name": "Monte Carlo",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,french,italian,russian",
+ "tags": [
+ "classical",
+ "hits",
+ "instrumental",
+ "jazz",
+ "pop",
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://montecarlo.hostingradio.ru/montecarlo96.aacp",
+ "homepage": "https://montecarlo.ru/",
+ "logoUrl": "https://montecarlo.ru/_nuxt/img/26f497b.svg",
+ "votes": 191,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "91269676-7c60-4d7f-b37d-5601389cd798"
+ },
+ {
+ "id": "edefa7e1-4ec7-444a-973f-4aab360d5bda",
+ "name": "Радио \"Маяк\"",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "язык: русский",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://icecast-vgtrk.cdnvideo.ru/mayakfm",
+ "homepage": "https://smotrim.ru/radiomayak",
+ "logoUrl": null,
+ "votes": 2925,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "edefa7e1-4ec7-444a-973f-4aab360d5bda"
+ },
+ {
+ "id": "75a95f91-d121-4ec7-b746-43ce5f131800",
+ "name": "Радио для двоих",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://icecast-radiofortwo.cdnvideo.ru/radiofortwo",
+ "homepage": "https://icecast-radiofortwo.cdnvideo.ru/radiofortwo",
+ "logoUrl": null,
+ "votes": 551,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "75a95f91-d121-4ec7-b746-43ce5f131800"
+ },
+ {
+ "id": "2d5faf9e-7609-4bdd-a1e5-129e422fceb6",
+ "name": "Радио ЗВЕЗДА - Центральная Россия",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://zvezda-radio128.mediacdn.ru/radio/zvezda/zvezda_128",
+ "homepage": "https://radiozvezda.ru/",
+ "logoUrl": null,
+ "votes": 1605,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "2d5faf9e-7609-4bdd-a1e5-129e422fceb6"
+ },
+ {
+ "id": "bd9f56b0-1bb3-4f93-b681-a93ba7035f66",
+ "name": "Радио МИР",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "rus,russian,ру,язык: ру,язык: русский",
+ "tags": [
+ "music",
+ "wapmahka",
+ "музыка",
+ "новости",
+ "разговорное",
+ "разговорный"
+ ],
+ "codec": "AAC+",
+ "bitrate": 328,
+ "streamUrl": "https://icecast-mirtv.cdnvideo.ru/radio_mir_256",
+ "homepage": "https://radiomir.fm/",
+ "logoUrl": "https://i.ibb.co/ygdPW3d/image.png",
+ "votes": 990,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "bd9f56b0-1bb3-4f93-b681-a93ba7035f66"
+ },
+ {
+ "id": "33bbb927-88c4-45d5-8386-2eb0d82b9807",
+ "name": "Спутник 91.2 fm",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "news",
+ "talk"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream03.pcradio.ru/sputnik_ria_ru-med",
+ "homepage": "http://pcradio.ru/radio/sputnik",
+ "logoUrl": "http://pcradio.ru/images/stations/62ea3ebe43be0.jpg",
+ "votes": 2303,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "33bbb927-88c4-45d5-8386-2eb0d82b9807"
+ },
+ {
+ "id": "fe1138b9-6e55-4996-b3ff-6a10940ab7d5",
+ "name": "Старый Маяк",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "ретро"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://yacht-radio.lv:1175/stream",
+ "homepage": "https://www.radiobells.com/retro/yachtradiostariymayak/?ysclid=mbgv60r71y680453382",
+ "logoUrl": "https://i.etsystatic.com/34399975/r/il/46739a/5733038281/il_fullxfull.5733038281_i9e4.jpg",
+ "votes": 66,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "fe1138b9-6e55-4996-b3ff-6a10940ab7d5"
+ },
+ {
+ "id": "303e3d9b-0cf6-4d4d-a569-8e708b5fe732",
+ "name": "Старый портфель",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://lk.castnow.ru:8100/oldbrief-320.mp3",
+ "homepage": "https://radiopotok.ru/oldbrief",
+ "logoUrl": "https://radiopotok.ru/apple-touch-icon.png",
+ "votes": 231,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "303e3d9b-0cf6-4d4d-a569-8e708b5fe732"
+ },
+ {
+ "id": "2784dd11-fa5a-450e-93a6-6d246504c8ee",
+ "name": "Breaking Bass Air",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "atmospheric",
+ "darkstep",
+ "dnb",
+ "dram&bass",
+ "drumandbass",
+ "hardstep",
+ "intelligent",
+ "jazzstep",
+ "jumpup",
+ "jungle",
+ "liquid",
+ "neurofunk"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://aircast.breaking-bass.ru:8443/air",
+ "homepage": "https://breaking-bass.ru/",
+ "logoUrl": "https://breaking-bass.ru/wp-content/uploads/2024/05/bb-air-logo-1.png",
+ "votes": 121,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "2784dd11-fa5a-450e-93a6-6d246504c8ee"
+ },
+ {
+ "id": "b17143be-04c3-4326-9609-e25923d6a0e3",
+ "name": "L-radio",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://air.unmixed.ru/lradio256",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 190,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "b17143be-04c3-4326-9609-e25923d6a0e3"
+ },
+ {
+ "id": "3c7e77d9-3e4f-4305-8db2-901e40cfcf0c",
+ "name": "URALSOUND FM | DEEP HOUSE",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "deep house"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://5.restream.one/1392_1",
+ "homepage": "https://radiopotok.mobi/ural-sound",
+ "logoUrl": "https://radiopotok.mobi/apple-touch-icon.png",
+ "votes": 1132,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "3c7e77d9-3e4f-4305-8db2-901e40cfcf0c"
+ },
+ {
+ "id": "c11aaf84-7463-4df4-a192-2a6a9f909bf4",
+ "name": "Дядя Ваня на даче (18+)",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "música pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://ic1.radiosignal.one/vanya-mp3",
+ "homepage": "https://radio-sound.ru/na-dache",
+ "logoUrl": null,
+ "votes": 917,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "c11aaf84-7463-4df4-a192-2a6a9f909bf4"
+ },
+ {
+ "id": "8ec43579-6025-45e1-84ab-a2dd3c3abf44",
+ "name": "Маруся ФМ",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "танцевальная музыка"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen.vdfm.ru:8000/marusya",
+ "homepage": "https://m.the-radio.ru/radio/marusya-fm-r2543",
+ "logoUrl": null,
+ "votes": 3057,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "8ec43579-6025-45e1-84ab-a2dd3c3abf44"
+ },
+ {
+ "id": "4d381732-d8f9-4649-9e54-7ae35fc8c568",
+ "name": "Михаил Круг Радио",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "discography"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream02.pcradio.biz/Michail_Krug-hi",
+ "homepage": "https://pcradio.ru/",
+ "logoUrl": "null",
+ "votes": 32,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "4d381732-d8f9-4649-9e54-7ae35fc8c568"
+ },
+ {
+ "id": "c1d4ec99-96bc-482b-929e-652ddd03ef78",
+ "name": "Ретро FM — Вечеринка",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,russian",
+ "tags": [
+ "disco",
+ "pop",
+ "retro"
+ ],
+ "codec": "AAC",
+ "bitrate": 116,
+ "streamUrl": "https://hls-01-retro-vecherinka.emgsound.ru/20/playlist.m3u8",
+ "homepage": "https://retrofm.ru/online/player.php?type=Vecherinka",
+ "logoUrl": null,
+ "votes": 968,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "c1d4ec99-96bc-482b-929e-652ddd03ef78"
+ },
+ {
+ "id": "6ac5f45f-c6d8-46a5-a2e5-2646f7cffc9a",
+ "name": "101.ru - Relax FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://ic4.101.ru:8000/stream/air/aac/64/200",
+ "homepage": "https://relax-fm.ru/",
+ "logoUrl": "https://relax-fm.ru/design/images/img_for_design/icons/touch-icon-ipad.png",
+ "votes": 2847,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "6ac5f45f-c6d8-46a5-a2e5-2646f7cffc9a"
+ },
+ {
+ "id": "2b60b40c-2d1d-4dcb-abb4-f4d513409218",
+ "name": "101.ru Агата Кристи",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "64kbps",
+ "aac",
+ "discography",
+ "rock",
+ "russian rock"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://srv01.gpmradio.ru:8443/stream/pro/aac/64/139",
+ "homepage": "https://101.ru/radio/channel/139",
+ "logoUrl": "https://cdn0.101.ru/proxy/vardata/modules/channel/image/f8f551fa21937abee762f45e9e3d37f8.png",
+ "votes": 71,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "2b60b40c-2d1d-4dcb-abb4-f4d513409218"
+ },
+ {
+ "id": "4967f748-d0a5-4b03-ac11-23831895445a",
+ "name": "90's Pop - 101.ru",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "90s",
+ "ретро"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://pub0302.101.ru:8000/stream/pro/aac/64/130",
+ "homepage": "https://top-radio.ru/web/90s-pop-101ru",
+ "logoUrl": "https://topradio.me/assets/image/radio/100/90s-pop-101-ru.jpg",
+ "votes": 149,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "4967f748-d0a5-4b03-ac11-23831895445a"
+ },
+ {
+ "id": "31f6ee46-88a6-4f6b-a694-2b145cc132f3",
+ "name": "A State of Trance - Record",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/asot96.aacp",
+ "homepage": "https://www.radiorecord.ru/station/a-state-of-trance",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/180/a-state-of-trance-radio",
+ "votes": 61,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "31f6ee46-88a6-4f6b-a694-2b145cc132f3"
+ },
+ {
+ "id": "c9773ed8-e9bd-4487-92a2-e8b1dbbaf891",
+ "name": "Cassiopeia Station (Наука)",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "научно-познавательное",
+ "разговорное"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.cassiopeia-station.ru:1095/stream",
+ "homepage": "https://cassiopeia-station.ru/science/",
+ "logoUrl": null,
+ "votes": 361,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "c9773ed8-e9bd-4487-92a2-e8b1dbbaf891"
+ },
+ {
+ "id": "d56f4802-58fe-4940-8ef8-218ba600f858",
+ "name": "DNB FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,russian",
+ "tags": [
+ "breaks",
+ "dnb",
+ "drum & bass",
+ "drum and bass",
+ "liquid"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://air.dnbfm.ru/listen/player/play",
+ "homepage": "https://dnbfm.ru/",
+ "logoUrl": null,
+ "votes": 649,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "d56f4802-58fe-4940-8ef8-218ba600f858"
+ },
+ {
+ "id": "fdfeef91-2029-428d-a9cf-14b51be67b1c",
+ "name": "Made In Russia Dance Radio",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "club dance",
+ "club house",
+ "dance",
+ "dj remix",
+ "house"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen8.myradio24.com/9083",
+ "homepage": "https://maderussia.ru/",
+ "logoUrl": null,
+ "votes": 320,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "fdfeef91-2029-428d-a9cf-14b51be67b1c"
+ },
+ {
+ "id": "387753d6-20d0-4aaf-839c-2342b5ba9616",
+ "name": "Radio Gameplay",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english,russian",
+ "tags": [
+ "16bit",
+ "8 bit",
+ "8bit",
+ "gamemusic",
+ "retro games",
+ "video game",
+ "videogame music",
+ "videogames"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://c22.radioboss.fm:8144/GamePlay",
+ "homepage": "https://vk.com/radiogameplay",
+ "logoUrl": "https://c22.radioboss.fm/w/artwork/144.jpg",
+ "votes": 125,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "387753d6-20d0-4aaf-839c-2342b5ba9616"
+ },
+ {
+ "id": "a1c3d110-9136-4564-bd41-5ec1b97c41ac",
+ "name": "Radio Record Megamix",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/mix96.aacp",
+ "homepage": "https://radiorecord.ru/",
+ "logoUrl": null,
+ "votes": 2731,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "a1c3d110-9136-4564-bd41-5ec1b97c41ac"
+ },
+ {
+ "id": "519c63f4-b1dd-4c47-ac85-4202e1ee2eb8",
+ "name": "Радио 7 на семи холмах - Настроение счастья",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "поп-музыка"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64000,
+ "streamUrl": "https://radio7.hostingradio.ru:8040/radio7_happiness64.aacp",
+ "homepage": "https://top-radio.ru/web/7-na-semi-xolmax-nastroenie-schastya",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/100/radio7-na7holmah.png",
+ "votes": 585,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "519c63f4-b1dd-4c47-ac85-4202e1ee2eb8"
+ },
+ {
+ "id": "0854bfd2-2c68-11e9-a35e-52543be04c81",
+ "name": "Радио Maximum",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://maximum.hostingradio.ru/maximum128.mp3",
+ "homepage": "http://maximum.ru/",
+ "logoUrl": "http://maximum.ru/favicon.ico",
+ "votes": 16816,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "0854bfd2-2c68-11e9-a35e-52543be04c81"
+ },
+ {
+ "id": "1cc2f669-e64b-4ac5-ac6e-944ccf4be460",
+ "name": "Радио Забытая Кассета",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "ретро",
+ "хиты 80-х",
+ "хиты 90-х"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://casseta-disco.ru:6275/stream?x=1711899723831",
+ "homepage": "https://radio-casseta.ru/",
+ "logoUrl": "https://onlineradiobox.me/media180/radio-zabitaya-kasseta.webp",
+ "votes": 224,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "1cc2f669-e64b-4ac5-ac6e-944ccf4be460"
+ },
+ {
+ "id": "35038f5f-4cdf-464f-83ec-40874c0c3349",
+ "name": "Радио Фантастики",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "язык: русский",
+ "tags": [
+ "audiobook"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen9.myradio24.com/55699",
+ "homepage": "https://fantasyradio.ru/",
+ "logoUrl": "https://fantasyradio.ru/favicon.ico",
+ "votes": 205,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "35038f5f-4cdf-464f-83ec-40874c0c3349"
+ },
+ {
+ "id": "e0cdd6a5-8772-408a-894b-d66a2f65a20a",
+ "name": "NRJ Russia",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://srv02.gpmradio.ru:8443/stream/air/aac/64/99",
+ "homepage": "http://energyfm.ru/",
+ "logoUrl": "https://api.radioplayer.ru/images/energy_colored.svg",
+ "votes": 204,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "e0cdd6a5-8772-408a-894b-d66a2f65a20a"
+ },
+ {
+ "id": "c724c6db-91b1-408f-9479-581fdd3e5785",
+ "name": "Radio Record HQ",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://air.unmixed.ru/record320",
+ "homepage": "https://radiorecord.ru/",
+ "logoUrl": "https://radiorecord.ru/local/templates/record/assets/build/favicon-set/apple-touch-icon.png",
+ "votes": 492,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "c724c6db-91b1-408f-9479-581fdd3e5785"
+ },
+ {
+ "id": "bd84b392-7ca7-486e-9a84-585a7f2c16af",
+ "name": "Sputnik Arabic",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "arabic",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://icecast-rian.cdnvideo.ru/voicearb",
+ "homepage": "https://sarabic.ae/",
+ "logoUrl": null,
+ "votes": 195,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "bd84b392-7ca7-486e-9a84-585a7f2c16af"
+ },
+ {
+ "id": "7f645759-b133-40b8-bace-9c9458407099",
+ "name": "Гарик Сукачёв",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "discography"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream02.pcradio.biz/Garik_Sukachov-hi",
+ "homepage": "https://pcradio.ru/",
+ "logoUrl": "null",
+ "votes": 7,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "7f645759-b133-40b8-bace-9c9458407099"
+ },
+ {
+ "id": "a9fd7b2e-d5a2-4b74-8d2c-7e036b1cb4d7",
+ "name": "Дискотека 80-х & 90-х",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "ретро"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen8.myradio24.com/dance80",
+ "homepage": "https://myradio24.com/dance80",
+ "logoUrl": "https://myradio24.com/users/dance80/nocover.jpg",
+ "votes": 191,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "a9fd7b2e-d5a2-4b74-8d2c-7e036b1cb4d7"
+ },
+ {
+ "id": "3e1e6384-ba86-4dd7-82f0-6ad163c6fc48",
+ "name": "Радио Ваня - Не лихие 90-е",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "90's"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream02.pcradio.biz/vanya_90-med",
+ "homepage": "https://pcradio.ru/radio/radio-vanya-ne-lihie-90-e",
+ "logoUrl": "https://pcradio.ru/images/stations/61b09c637461d.jpg",
+ "votes": 579,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e1e6384-ba86-4dd7-82f0-6ad163c6fc48"
+ },
+ {
+ "id": "af23facc-2a9e-487e-9ff6-42ba600ce38d",
+ "name": "Русское Радио",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://rusradio.hostingradio.ru/rusradio128.mp3",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 2921,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "af23facc-2a9e-487e-9ff6-42ba600ce38d"
+ },
+ {
+ "id": "1d1a55c8-1821-413b-987d-3f448223990a",
+ "name": "Умное Радио",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "разговорное"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://umnoe.amgradio.ru/Umnoe",
+ "homepage": "https://top-radio.ru/web/umnoe-radio",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/180/umnoe.png",
+ "votes": 49,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d1a55c8-1821-413b-987d-3f448223990a"
+ },
+ {
+ "id": "74f57921-47be-49c3-a541-748503794413",
+ "name": "101.ru Sandra",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english",
+ "tags": [
+ "64kbps",
+ "aac",
+ "discography"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://srv11.gpmradio.ru:8443/stream/pro/aac/64/179",
+ "homepage": "https://101.ru/radio/channel/179",
+ "logoUrl": "https://cdn1.101.ru/proxy/vardata/modules/channel/image/7c1ba516f86d0595c452495ab6c59367.png",
+ "votes": 103,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "74f57921-47be-49c3-a541-748503794413"
+ },
+ {
+ "id": "4cd636d5-3068-43d6-8d90-c471ef02c461",
+ "name": "Cassiopeia Station (Наука)",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://stream.cassiopeia-station.ru:5125/stream",
+ "homepage": "https://glavnoeradio.ru/",
+ "logoUrl": "https://glavnoeradio.ru/2610/logo/cassiopeia-nauka.webp",
+ "votes": 121,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4cd636d5-3068-43d6-8d90-c471ef02c461"
+ },
+ {
+ "id": "191bc3a9-845b-4e9f-aca9-e3c7344b6a87",
+ "name": "Deep One",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "deep house"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.deep1.ru/deep1mp3",
+ "homepage": "https://deep1.ru/",
+ "logoUrl": null,
+ "votes": 1290,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "191bc3a9-845b-4e9f-aca9-e3c7344b6a87"
+ },
+ {
+ "id": "37cc389e-ec77-4ea7-af90-0058e49ae5d4",
+ "name": "Delish Deep Radio",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://relay4.radiotoolkit.com/delishdeephd",
+ "homepage": "https://vk.com/delishdeep",
+ "logoUrl": "https://vk.com/favicon.ico",
+ "votes": 504,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "37cc389e-ec77-4ea7-af90-0058e49ae5d4"
+ },
+ {
+ "id": "87008f72-3741-11ea-8dd7-52543be04c81",
+ "name": "DFM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "dfm"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://dfm.hostingradio.ru/dfm96.aacp?0.28225617725168517",
+ "homepage": "https://dfm.ru/",
+ "logoUrl": null,
+ "votes": 2611,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "87008f72-3741-11ea-8dd7-52543be04c81"
+ },
+ {
+ "id": "66823c28-6386-40ec-8a26-ac472b98c8f0",
+ "name": "Radio Record Live DJ-sets",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/livedjsets96.aacp",
+ "homepage": "https://radiorecord.ru/",
+ "logoUrl": "https://radiorecord.ru/local/templates/record/assets/build/favicon-set/apple-touch-icon.png",
+ "votes": 170,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "66823c28-6386-40ec-8a26-ac472b98c8f0"
+ },
+ {
+ "id": "9aa4137a-02ee-4752-ba6b-04cea24547d7",
+ "name": "Record Trancemission",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "progressive trance",
+ "uplifting trance"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radiorecord.hostingradio.ru/tm96.aacp",
+ "homepage": "https://radiorecord.ru/",
+ "logoUrl": "https://radiorecord.ru/icons/apple-touch-icon.png",
+ "votes": 776,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "9aa4137a-02ee-4752-ba6b-04cea24547d7"
+ },
+ {
+ "id": "aee6a837-3481-41be-9ef1-221375f6e263",
+ "name": "Relax FM Nature",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://pub0101.101.ru/stream/trust/mp3/128/263",
+ "homepage": "https://top-radio.ru/web/relax-nature",
+ "logoUrl": null,
+ "votes": 987,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "aee6a837-3481-41be-9ef1-221375f6e263"
+ },
+ {
+ "id": "01497202-2f70-474d-b167-2ec919848af3",
+ "name": "Relax Instrumental",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "лëгкая музыка"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://pub0101.101.ru/stream/pro/aac/64/28",
+ "homepage": "https://top-radio.ru/web/relax-fm-instrumental",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/180/relax-fm-instrumental.jpg",
+ "votes": 147,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "01497202-2f70-474d-b167-2ec919848af3"
+ },
+ {
+ "id": "720feb78-4dec-4c6a-879f-f7cfa7e50c2c",
+ "name": "rock.irk.ru :: main-mix",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "english/russian",
+ "tags": [
+ "acoustic",
+ "bard",
+ "black metal",
+ "death metal",
+ "folk",
+ "garage rock",
+ "jazz",
+ "metalcore",
+ "punk rock",
+ "rock",
+ "world music"
+ ],
+ "codec": "AAC",
+ "bitrate": 35,
+ "streamUrl": "https://live.rock.irk.ru/hls/main-mix/live.m3u8",
+ "homepage": "https://rock.irk.ru/radio",
+ "logoUrl": null,
+ "votes": 7,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "720feb78-4dec-4c6a-879f-f7cfa7e50c2c"
+ },
+ {
+ "id": "524384ba-d874-4872-a098-6d65f40b99bd",
+ "name": "Super-Radio Remix",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "dance",
+ "dj remix",
+ "eurodance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen2.myradio24.com/serz",
+ "homepage": "https://serz.ru/",
+ "logoUrl": null,
+ "votes": 222,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "524384ba-d874-4872-a098-6d65f40b99bd"
+ },
+ {
+ "id": "4c0506d6-a2de-44f7-9dc0-37bee8f04d2e",
+ "name": "Радио СИ - 103.7 FM",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "rus,russian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radioc.ru/radioc",
+ "homepage": "https://www.radioc.ru/",
+ "logoUrl": "https://www.radioc.ru/online/logo.png",
+ "votes": 193,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "4c0506d6-a2de-44f7-9dc0-37bee8f04d2e"
+ },
+ {
+ "id": "8243be7e-db9a-4404-846a-5531ce1549db",
+ "name": "Радио Юность",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "ретро"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://icecast-vgtrk.cdnvideo.ru/unost_mp3_192kbps",
+ "homepage": "https://top-radio.ru/web/yunost",
+ "logoUrl": "https://top-radio.ru/assets/image/radio/180/radiounost.png",
+ "votes": 91,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "8243be7e-db9a-4404-846a-5531ce1549db"
+ },
+ {
+ "id": "af8b7f22-d44f-411b-8966-a1eed269a8bf",
+ "name": "Русская Волна",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ru2.volna.top/RuWave48",
+ "homepage": null,
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/8/73538.v14.png",
+ "votes": 892,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "af8b7f22-d44f-411b-8966-a1eed269a8bf"
+ },
+ {
+ "id": "912b3e11-d18c-4adf-832c-d9006df71264",
+ "name": "Чайф",
+ "country": "The Russian Federation",
+ "countryCode": "RU",
+ "language": "russian",
+ "tags": [
+ "discography"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream02.pcradio.biz/Chaif-hi",
+ "homepage": "https://pcradio.ru/",
+ "logoUrl": "null",
+ "votes": 6,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "912b3e11-d18c-4adf-832c-d9006df71264"
},
{
"id": "c4077677-dc2f-11e9-a8ba-52543be04c81",
@@ -29858,7 +60487,7 @@
"homepage": "https://www.heart.co.uk/80s",
"logoUrl": "https://www.heart.co.uk/assets_v4r/heart/img/favicon-196x196.png",
"votes": 32663,
- "clickcount": 117,
+ "clickcount": 116,
"source": "radio-browser",
"sourceStationUuid": "c4077677-dc2f-11e9-a8ba-52543be04c81"
},
@@ -29877,7 +60506,7 @@
"homepage": null,
"logoUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRAcdmwRcs4FcWk_OQqxq4EyZH5YA7ixM2dvQ&usqp=CAU",
"votes": 398,
- "clickcount": 70,
+ "clickcount": 64,
"source": "radio-browser",
"sourceStationUuid": "9f5d0645-ae1e-4e9f-9b2f-91fa63d5b1fa"
},
@@ -29897,7 +60526,7 @@
"homepage": "http://www.chilloutibizafm.com/",
"logoUrl": "http://www.chilloutibizafm.com/favicon.ico",
"votes": 2942,
- "clickcount": 62,
+ "clickcount": 61,
"source": "radio-browser",
"sourceStationUuid": "d69fbc2c-530a-4d40-ac9f-56532356b248"
},
@@ -29940,7 +60569,7 @@
"homepage": "https://www.thetimes.co.uk/radio",
"logoUrl": "https://play-lh.googleusercontent.com/SSmTtYYV5SkMMJ6_ojBDxHkprncSfh_jrhfn8f7rj3tnDOUIaNA9Vf28FqVS1zrTvE9_",
"votes": 240,
- "clickcount": 55,
+ "clickcount": 54,
"source": "radio-browser",
"sourceStationUuid": "9a8f2d50-fca3-4d7c-99ee-c5e0e97f4d1b"
},
@@ -29963,7 +60592,7 @@
"homepage": "https://www.mygoldmusic.co.uk/",
"logoUrl": "https://www.mygoldmusic.co.uk/assets_v4r/gold/img/favicon-196x196.png",
"votes": 17065,
- "clickcount": 54,
+ "clickcount": 52,
"source": "radio-browser",
"sourceStationUuid": "0a1e0bb0-dc37-11e9-a8ba-52543be04c81"
},
@@ -29987,7 +60616,7 @@
"homepage": "https://bbc.co.uk/news",
"logoUrl": "https://upload.wikimedia.org/wikipedia/en/thumb/2/24/BBC_News_HD_Logo.svg/2560px-BBC_News_HD_Logo.svg.png",
"votes": 3306,
- "clickcount": 51,
+ "clickcount": 48,
"source": "radio-browser",
"sourceStationUuid": "ea391ded-00f0-47e0-841c-d92663e11854"
},
@@ -30010,7 +60639,7 @@
"homepage": "https://www.heart.co.uk/dance",
"logoUrl": "https://www.heart.co.uk/assets_v4r/heart/img/favicon-196x196.png",
"votes": 11555,
- "clickcount": 42,
+ "clickcount": 41,
"source": "radio-browser",
"sourceStationUuid": "fa76f16f-dc31-11e9-a8ba-52543be04c81"
},
@@ -30033,7 +60662,7 @@
"homepage": "https://www.smoothradio.com/chill/",
"logoUrl": "https://www.smoothradio.com/assets_v4r/smooth/img/favicon-196x196.png",
"votes": 12417,
- "clickcount": 38,
+ "clickcount": 37,
"source": "radio-browser",
"sourceStationUuid": "478fd7f4-dc36-11e9-a8ba-52543be04c81"
},
@@ -30057,25 +60686,6 @@
"source": "radio-browser",
"sourceStationUuid": "2babf29a-811c-4a51-93c3-9f3531ef2e97"
},
- {
- "id": "a347209e-6ce6-4c94-81ed-003c1275188f",
- "name": "BBC World Service",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [
- "news"
- ],
- "codec": "MP3",
- "bitrate": 56,
- "streamUrl": "https://stream.live.vc.bbcmedia.co.uk/bbc_world_service_east_asia",
- "homepage": "https://www.bbc.co.uk/sounds/play/live:bbc_world_service",
- "logoUrl": "https://cdn.vox-cdn.com/thumbor/FOKCcOpam5-0m4VfrxvfzMdDK6I=/10x0:610x400/1400x1400/filters:focal(10x0:610x400):format(jpeg)/cdn.vox-cdn.com/assets/958975/bbc_world_service.jpeg",
- "votes": 2298,
- "clickcount": 31,
- "source": "radio-browser",
- "sourceStationUuid": "a347209e-6ce6-4c94-81ed-003c1275188f"
- },
{
"id": "7d196930-5f3d-45e2-b11a-d261c4515161",
"name": "Virgin Radio UK",
@@ -30096,7 +60706,7 @@
"streamUrl": "https://radio.virginradio.co.uk/stream",
"homepage": "https://virginradio.co.uk/",
"logoUrl": "https://www.celsoazevedo.com/files/2022/virgin-radio-uk.jpg",
- "votes": 1848,
+ "votes": 1849,
"clickcount": 31,
"source": "radio-browser",
"sourceStationUuid": "7d196930-5f3d-45e2-b11a-d261c4515161"
@@ -30125,29 +60735,28 @@
"homepage": "https://hellorayo.co.uk/magic/play/",
"logoUrl": "https://www.celsoazevedo.com/files/2025/magic.png",
"votes": 721,
- "clickcount": 29,
+ "clickcount": 30,
"source": "radio-browser",
"sourceStationUuid": "172d8c95-fecd-40b7-af6f-9cdf4e8829e4"
},
{
- "id": "15a7162c-45a3-4bde-b864-aa7731c6dd87",
- "name": "Smooth Relax",
+ "id": "a347209e-6ce6-4c94-81ed-003c1275188f",
+ "name": "BBC World Service",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": "english",
+ "language": null,
"tags": [
- "easy listening",
- "relaxing"
+ "news"
],
"codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.thisisdax.com/SmoothRelaxMP3",
- "homepage": "https://www.smoothradio.com/relax/",
- "logoUrl": null,
- "votes": 567,
- "clickcount": 27,
+ "bitrate": 56,
+ "streamUrl": "https://stream.live.vc.bbcmedia.co.uk/bbc_world_service_east_asia",
+ "homepage": "https://www.bbc.co.uk/sounds/play/live:bbc_world_service",
+ "logoUrl": "https://cdn.vox-cdn.com/thumbor/FOKCcOpam5-0m4VfrxvfzMdDK6I=/10x0:610x400/1400x1400/filters:focal(10x0:610x400):format(jpeg)/cdn.vox-cdn.com/assets/958975/bbc_world_service.jpeg",
+ "votes": 2298,
+ "clickcount": 29,
"source": "radio-browser",
- "sourceStationUuid": "15a7162c-45a3-4bde-b864-aa7731c6dd87"
+ "sourceStationUuid": "a347209e-6ce6-4c94-81ed-003c1275188f"
},
{
"id": "dec031e0-4419-45d2-9f3e-76e91d876c40",
@@ -30175,27 +60784,10 @@
"homepage": "https://www.hellorayo.co.uk/planet-rock",
"logoUrl": "https://cdn-profiles.tunein.com/s2377/images/logod.png",
"votes": 49,
- "clickcount": 26,
+ "clickcount": 27,
"source": "radio-browser",
"sourceStationUuid": "dec031e0-4419-45d2-9f3e-76e91d876c40"
},
- {
- "id": "df3607fb-311d-43b1-bd0c-98d91a4f2df4",
- "name": "Capital Dance",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://icecast.thisisdax.com/CapitalDanceMP3",
- "homepage": "https://www.capitaldance.com/",
- "logoUrl": "https://www.capitaldance.com/assets_v4r/capitaldance/img/favicon-196x196.png",
- "votes": 2484,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "df3607fb-311d-43b1-bd0c-98d91a4f2df4"
- },
{
"id": "bd1c441c-132a-4d48-a3f3-bdb386f4b09a",
"name": "Classic FM HD",
@@ -30211,7 +60803,7 @@
"homepage": "https://www.classicfm.com/",
"logoUrl": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/bd/a7/bf/bda7bf4f-16e9-6b60-0d87-a39d432b505e/AppIcon-1x_U007emarketing-0-7-0-85-220.png/492x0w.webp",
"votes": 491,
- "clickcount": 24,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "bd1c441c-132a-4d48-a3f3-bdb386f4b09a"
},
@@ -30228,81 +60820,29 @@
"homepage": "https://news.sky.com/",
"logoUrl": "https://news.sky.com/resources/apple-touch-icon.png?v=2",
"votes": 1147,
- "clickcount": 23,
+ "clickcount": 25,
"source": "radio-browser",
"sourceStationUuid": "512e876e-806b-4a61-8a57-f15e39b64907"
},
{
- "id": "e7205cd4-dc30-11e9-a8ba-52543be04c81",
- "name": "Heart 70s",
+ "id": "15a7162c-45a3-4bde-b864-aa7731c6dd87",
+ "name": "Smooth Relax",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "70s",
- "national",
- "pop",
- "public radio",
- "variety"
+ "easy listening",
+ "relaxing"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://media-ssl.musicradio.com/Heart70sMP3",
- "homepage": "https://www.heart.co.uk/70s",
+ "streamUrl": "https://icecast.thisisdax.com/SmoothRelaxMP3",
+ "homepage": "https://www.smoothradio.com/relax/",
"logoUrl": null,
- "votes": 17880,
- "clickcount": 21,
+ "votes": 567,
+ "clickcount": 24,
"source": "radio-browser",
- "sourceStationUuid": "e7205cd4-dc30-11e9-a8ba-52543be04c81"
- },
- {
- "id": "8c78482a-17db-4057-a7c7-8fa14b3c3ce9",
- "name": "House Nation UK",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "house"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://streaming.radio.co/s06bd9d805/listen",
- "homepage": "https://housenationuk.com/",
- "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/aWa7xGKfBh.jpg",
- "votes": 945,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "8c78482a-17db-4057-a7c7-8fa14b3c3ce9"
- },
- {
- "id": "53733e08-7728-40ee-b968-59e71f0281b6",
- "name": "KISSTORY: Non-Stop Old Skool & Anthems",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "anthems",
- "bauer radio",
- "classics",
- "dance anthems",
- "dance classics",
- "england",
- "europa",
- "inglaterra",
- "kiss",
- "kiss fm",
- "london",
- "londres"
- ],
- "codec": "AAC+",
- "bitrate": 48,
- "streamUrl": "https://live-bauerkiss.sharp-stream.com/kisstory.aac?direct=true&aw_0_1st.playerid=BMUK_Airable&aw_0_1st.skey=6778249992",
- "homepage": "https://www.hellorayo.co.uk/kisstory",
- "logoUrl": "https://cdn-profiles.tunein.com/s77960/images/logod.png",
- "votes": 16,
- "clickcount": 21,
- "source": "radio-browser",
- "sourceStationUuid": "53733e08-7728-40ee-b968-59e71f0281b6"
+ "sourceStationUuid": "15a7162c-45a3-4bde-b864-aa7731c6dd87"
},
{
"id": "973c30a5-a178-4daf-89c7-272ec6c47456",
@@ -30330,10 +60870,57 @@
"homepage": "https://rinse.fm/channels/kool/",
"logoUrl": "https://pbs.twimg.com/profile_images/1638236080674578434/Hbww_nFm_400x400.jpg",
"votes": 544,
- "clickcount": 21,
+ "clickcount": 23,
"source": "radio-browser",
"sourceStationUuid": "973c30a5-a178-4daf-89c7-272ec6c47456"
},
+ {
+ "id": "df3607fb-311d-43b1-bd0c-98d91a4f2df4",
+ "name": "Capital Dance",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast.thisisdax.com/CapitalDanceMP3",
+ "homepage": "https://www.capitaldance.com/",
+ "logoUrl": "https://www.capitaldance.com/assets_v4r/capitaldance/img/favicon-196x196.png",
+ "votes": 2484,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "df3607fb-311d-43b1-bd0c-98d91a4f2df4"
+ },
+ {
+ "id": "53733e08-7728-40ee-b968-59e71f0281b6",
+ "name": "KISSTORY: Non-Stop Old Skool & Anthems",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "anthems",
+ "bauer radio",
+ "classics",
+ "dance anthems",
+ "dance classics",
+ "england",
+ "europa",
+ "inglaterra",
+ "kiss",
+ "kiss fm",
+ "london",
+ "londres"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://live-bauerkiss.sharp-stream.com/kisstory.aac?direct=true&aw_0_1st.playerid=BMUK_Airable&aw_0_1st.skey=6778249992",
+ "homepage": "https://www.hellorayo.co.uk/kisstory",
+ "logoUrl": "https://cdn-profiles.tunein.com/s77960/images/logod.png",
+ "votes": 16,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "53733e08-7728-40ee-b968-59e71f0281b6"
+ },
{
"id": "7cc0c486-92cb-4509-9b93-775e41950ed3",
"name": "Classic FM Movies",
@@ -30351,10 +60938,52 @@
"homepage": "https://www.classicfm.com/movies/",
"logoUrl": null,
"votes": 373,
- "clickcount": 20,
+ "clickcount": 21,
"source": "radio-browser",
"sourceStationUuid": "7cc0c486-92cb-4509-9b93-775e41950ed3"
},
+ {
+ "id": "e7205cd4-dc30-11e9-a8ba-52543be04c81",
+ "name": "Heart 70s",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "70s",
+ "national",
+ "pop",
+ "public radio",
+ "variety"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://media-ssl.musicradio.com/Heart70sMP3",
+ "homepage": "https://www.heart.co.uk/70s",
+ "logoUrl": null,
+ "votes": 17880,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "e7205cd4-dc30-11e9-a8ba-52543be04c81"
+ },
+ {
+ "id": "8c78482a-17db-4057-a7c7-8fa14b3c3ce9",
+ "name": "House Nation UK",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "house"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://streaming.radio.co/s06bd9d805/listen",
+ "homepage": "https://housenationuk.com/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/aWa7xGKfBh.jpg",
+ "votes": 945,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "8c78482a-17db-4057-a7c7-8fa14b3c3ce9"
+ },
{
"id": "e392aeac-2fb8-4f34-9543-6f4c8209d3a7",
"name": "JFSR - Jazz Funk Soul Radio",
@@ -30376,6 +61005,56 @@
"source": "radio-browser",
"sourceStationUuid": "e392aeac-2fb8-4f34-9543-6f4c8209d3a7"
},
+ {
+ "id": "83bb028f-9cd6-489d-a9e0-6dc0821a071b",
+ "name": "Radio X Classic Rock",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "british english,english",
+ "tags": [
+ "classic rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://media-ice.musicradio.com/RadioXClassicRockMP3",
+ "homepage": "https://www.radiox.co.uk/",
+ "logoUrl": "https://i.imgur.com/eBIsjQw.jpg",
+ "votes": 920,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "83bb028f-9cd6-489d-a9e0-6dc0821a071b"
+ },
+ {
+ "id": "0f1a8621-d35a-4073-83d3-7ee14207a9a9",
+ "name": "KISS - The Best Vibes & Energy",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "dab",
+ "dance",
+ "dance music",
+ "digital radio",
+ "edm",
+ "england",
+ "entertainment",
+ "europe",
+ "london",
+ "moi merino",
+ "music",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 47,
+ "streamUrl": "https://live-bauerkiss.sharp-stream.com/kissnational.aac?direct=true&aw_0_1st.skey=1602676850&rp_source=1&=&&___cb=60456375243858",
+ "homepage": "https://www.hellorayo.co.uk/kiss",
+ "logoUrl": "https://cdn-profiles.tunein.com/s6004/images/logod.png",
+ "votes": 11,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "0f1a8621-d35a-4073-83d3-7ee14207a9a9"
+ },
{
"id": "983cc845-97f9-409b-b6e7-3c977b07271b",
"name": "Techno - FM - Channel",
@@ -30391,7 +61070,7 @@
"homepage": "https://techno.fm/",
"logoUrl": "https://techno.fm/favicon.ico",
"votes": 143,
- "clickcount": 18,
+ "clickcount": 17,
"source": "radio-browser",
"sourceStationUuid": "983cc845-97f9-409b-b6e7-3c977b07271b"
},
@@ -30432,54 +61111,34 @@
"sourceStationUuid": "598c4d0e-6b06-43fb-bff4-717c591213a9"
},
{
- "id": "0f1a8621-d35a-4073-83d3-7ee14207a9a9",
- "name": "KISS - The Best Vibes & Energy",
+ "id": "723e042f-3c2f-4562-b8fa-3f9a8d31cf3e",
+ "name": "VIRGIN RADIO UK: Rock‘n’Roll Radio From The Top Of The Tower",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
"dab",
- "dance",
- "dance music",
"digital radio",
- "edm",
"england",
- "entertainment",
+ "english",
"europe",
"london",
"moi merino",
"music",
- "pop"
+ "radio",
+ "rock",
+ "rock music",
+ "rock'n'roll"
],
- "codec": "AAC+",
- "bitrate": 47,
- "streamUrl": "https://live-bauerkiss.sharp-stream.com/kissnational.aac?direct=true&aw_0_1st.skey=1602676850&rp_source=1&=&&___cb=60456375243858",
- "homepage": "https://www.hellorayo.co.uk/kiss",
- "logoUrl": "https://cdn-profiles.tunein.com/s6004/images/logod.png",
- "votes": 11,
- "clickcount": 16,
- "source": "radio-browser",
- "sourceStationUuid": "0f1a8621-d35a-4073-83d3-7ee14207a9a9"
- },
- {
- "id": "83bb028f-9cd6-489d-a9e0-6dc0821a071b",
- "name": "Radio X Classic Rock",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "british english,english",
- "tags": [
- "classic rock",
- "rock"
- ],
- "codec": "MP3",
+ "codec": "AAC",
"bitrate": 128,
- "streamUrl": "https://media-ice.musicradio.com/RadioXClassicRockMP3",
- "homepage": "https://www.radiox.co.uk/",
- "logoUrl": "https://i.imgur.com/eBIsjQw.jpg",
- "votes": 920,
+ "streamUrl": "https://virgin.live.stream.broadcasting.news/stream",
+ "homepage": "https://virginradio.co.uk/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s266113/images/logod.png",
+ "votes": 16,
"clickcount": 16,
"source": "radio-browser",
- "sourceStationUuid": "83bb028f-9cd6-489d-a9e0-6dc0821a071b"
+ "sourceStationUuid": "723e042f-3c2f-4562-b8fa-3f9a8d31cf3e"
},
{
"id": "8cf13f16-df99-4fd8-b152-ab8218563a36",
@@ -30498,6 +61157,36 @@
"source": "radio-browser",
"sourceStationUuid": "8cf13f16-df99-4fd8-b152-ab8218563a36"
},
+ {
+ "id": "4ad5bdc7-01e5-47c9-a1f9-751671b4707e",
+ "name": "CAPITAL - The UK's No.1 Hit Music Station",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "capital",
+ "capital fm",
+ "contemporary hits radio",
+ "dab+",
+ "england",
+ "entertainment",
+ "europe",
+ "global radio",
+ "london",
+ "moi merino",
+ "music",
+ "pop music"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://media-ssl.musicradio.com/CapitalUK",
+ "homepage": "https://www.capitalfm.com/",
+ "logoUrl": "https://cdn-profiles.tunein.com/s241396/images/logod.jpg",
+ "votes": 2,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "4ad5bdc7-01e5-47c9-a1f9-751671b4707e"
+ },
{
"id": "37bf8039-77ed-4805-9030-c40d5cb2820a",
"name": "BritCom 3 - British Comedy Radio (Pumpkin FM OTRN)",
@@ -30511,53 +61200,9 @@
"homepage": "https://britishcomedyradio.org/",
"logoUrl": "https://pumpkinfm.com/wp-content/uploads/2023/02/BritComThreeNew300x300-3.jpg",
"votes": 726,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "37bf8039-77ed-4805-9030-c40d5cb2820a"
- },
- {
- "id": "30820d12-0409-44b7-b5e8-edc594910d92",
- "name": "Радио Сева (Radio Seva Novgorodsev)",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "russian",
- "tags": [
- "music",
- "rock",
- "talk",
- "музыка",
- "разговорное",
- "рок"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://seva.ru/radio/stream",
- "homepage": "https://seva.ru/",
- "logoUrl": "https://seva.ru/radio/radio.png",
- "votes": 2163,
- "clickcount": 15,
- "source": "radio-browser",
- "sourceStationUuid": "30820d12-0409-44b7-b5e8-edc594910d92"
- },
- {
- "id": "c58c0009-ad0d-4ed5-a208-a8e797885a75",
- "name": "House Music Radio",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [
- "deep house",
- "house"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://uk4-vn.mixstream.net/8128/listen.mp3",
- "homepage": "https://www.housemusicradio.co.uk/",
- "logoUrl": null,
- "votes": 587,
"clickcount": 14,
"source": "radio-browser",
- "sourceStationUuid": "c58c0009-ad0d-4ed5-a208-a8e797885a75"
+ "sourceStationUuid": "37bf8039-77ed-4805-9030-c40d5cb2820a"
},
{
"id": "8e32c763-b926-4e57-9b8f-d60f1c5b48e3",
@@ -30641,94 +61286,60 @@
"sourceStationUuid": "5ba5ce07-cb82-46ef-874a-7c9613bf2abf"
},
{
- "id": "4ad5bdc7-01e5-47c9-a1f9-751671b4707e",
- "name": "CAPITAL - The UK's No.1 Hit Music Station",
+ "id": "c58c0009-ad0d-4ed5-a208-a8e797885a75",
+ "name": "House Music Radio",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": "english",
+ "language": null,
"tags": [
- "capital",
- "capital fm",
- "contemporary hits radio",
- "dab+",
- "england",
- "entertainment",
- "europe",
- "global radio",
- "london",
- "moi merino",
- "music",
- "pop music"
+ "deep house",
+ "house"
],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://media-ssl.musicradio.com/CapitalUK",
- "homepage": "https://www.capitalfm.com/",
- "logoUrl": "https://cdn-profiles.tunein.com/s241396/images/logod.jpg",
- "votes": 2,
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://uk4-vn.mixstream.net/8128/listen.mp3",
+ "homepage": "https://www.housemusicradio.co.uk/",
+ "logoUrl": null,
+ "votes": 587,
"clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "4ad5bdc7-01e5-47c9-a1f9-751671b4707e"
+ "sourceStationUuid": "c58c0009-ad0d-4ed5-a208-a8e797885a75"
},
{
- "id": "9c8f6141-f8e8-4779-bfed-5a79e14ed4dd",
- "name": "KISS DANCE: The Biggest Dance Anthems 24/7",
+ "id": "afd853b3-e6d1-11e9-a96c-52543be04c81",
+ "name": "100% Hip Hop | NTS",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "anthems",
- "bauer radio",
- "club dance",
- "dab",
- "dab+",
- "dance",
- "dance anthems",
- "dance music",
- "edm",
- "electronic dance music",
- "england",
- "entertainment"
+ "hip-hop"
],
- "codec": "AAC",
- "bitrate": 127,
- "streamUrl": "https://stream-kiss.hellorayo.co.uk/kissdance.aac?direct=true&aw_0_1st.skey=1602676850&rp_source=1&=&&___cb=60456375243858",
- "homepage": "https://www.hellorayo.co.uk/kiss-dance",
- "logoUrl": "https://cdn-profiles.tunein.com/s321341/images/logod.png",
- "votes": 10,
- "clickcount": 13,
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-mixtape-geo.ntslive.net/mixtape2",
+ "homepage": "https://www.nts.live/infinite-mixtapes/100-percent-hip-hop",
+ "logoUrl": null,
+ "votes": 555,
+ "clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "9c8f6141-f8e8-4779-bfed-5a79e14ed4dd"
+ "sourceStationUuid": "afd853b3-e6d1-11e9-a96c-52543be04c81"
},
{
- "id": "723e042f-3c2f-4562-b8fa-3f9a8d31cf3e",
- "name": "VIRGIN RADIO UK: Rock‘n’Roll Radio From The Top Of The Tower",
+ "id": "c669835f-64ca-45b0-ae19-498febb83cb1",
+ "name": "BritCom 2 - British Comedy Radio (Pumpkin FM OTRN)",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": "english",
- "tags": [
- "dab",
- "digital radio",
- "england",
- "english",
- "europe",
- "london",
- "moi merino",
- "music",
- "radio",
- "rock",
- "rock music",
- "rock'n'roll"
- ],
- "codec": "AAC",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://virgin.live.stream.broadcasting.news/stream",
- "homepage": "https://virginradio.co.uk/",
- "logoUrl": "https://cdn-profiles.tunein.com/s266113/images/logod.png",
- "votes": 16,
- "clickcount": 13,
+ "streamUrl": "https://cast2.asurahosting.com/proxy/britcom2/stream",
+ "homepage": "https://britishcomedyradio.org/",
+ "logoUrl": "https://pumpkinfm.com/wp-content/uploads/2019/02/BritComTwo300x300.jpg",
+ "votes": 389,
+ "clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "723e042f-3c2f-4562-b8fa-3f9a8d31cf3e"
+ "sourceStationUuid": "c669835f-64ca-45b0-ae19-498febb83cb1"
},
{
"id": "1bfae443-4fa5-45ed-92a5-8aecd6a70756",
@@ -30776,40 +61387,23 @@
"sourceStationUuid": "9c100db7-ba97-4e6f-821f-dba1ed08ad52"
},
{
- "id": "afd853b3-e6d1-11e9-a96c-52543be04c81",
- "name": "100% Hip Hop | NTS",
+ "id": "e847f0b7-4694-4d96-a56a-3bc9543c5705",
+ "name": "Classic FM Essential Classical",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "hip-hop"
+ "classical"
],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream-mixtape-geo.ntslive.net/mixtape2",
- "homepage": "https://www.nts.live/infinite-mixtapes/100-percent-hip-hop",
- "logoUrl": null,
- "votes": 555,
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://icecast.thisisdax.com/ClassicFM-M-Essential",
+ "homepage": "https://www.classicfm.com/",
+ "logoUrl": "https://www.radio.de/images/broadcasts/a1/f8/126083/1/c300.png",
+ "votes": 342,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "afd853b3-e6d1-11e9-a96c-52543be04c81"
- },
- {
- "id": "c669835f-64ca-45b0-ae19-498febb83cb1",
- "name": "BritCom 2 - British Comedy Radio (Pumpkin FM OTRN)",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://cast2.asurahosting.com/proxy/britcom2/stream",
- "homepage": "https://britishcomedyradio.org/",
- "logoUrl": "https://pumpkinfm.com/wp-content/uploads/2019/02/BritComTwo300x300.jpg",
- "votes": 389,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "c669835f-64ca-45b0-ae19-498febb83cb1"
+ "sourceStationUuid": "e847f0b7-4694-4d96-a56a-3bc9543c5705"
},
{
"id": "1cedf594-9460-47c9-ad66-1c3bda41901b",
@@ -30830,26 +61424,6 @@
"source": "radio-browser",
"sourceStationUuid": "1cedf594-9460-47c9-ad66-1c3bda41901b"
},
- {
- "id": "9b3a5084-91ba-4d90-ac06-3e0ba8c50d67",
- "name": "Gold Radio UK",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [
- "golden oldies",
- "pop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://media-ice.musicradio.com/GoldMP3",
- "homepage": "https://www.goldradio.com/?page=2",
- "logoUrl": null,
- "votes": 124,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "9b3a5084-91ba-4d90-ac06-3e0ba8c50d67"
- },
{
"id": "da52663e-bf3e-40aa-b863-28c1d12d6464",
"name": "ROKit Radio : British Comedy 1",
@@ -30874,92 +61448,48 @@
"sourceStationUuid": "da52663e-bf3e-40aa-b863-28c1d12d6464"
},
{
- "id": "ceab5124-608a-4eb1-8149-d65829f9a9d7",
- "name": "Birdsong Radio",
+ "id": "30820d12-0409-44b7-b5e8-edc594910d92",
+ "name": "Радио Сева (Radio Seva Novgorodsev)",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://a1.radio.co/s5c5da6a36/listen",
- "homepage": "https://www.birdsong.fm/",
- "logoUrl": "https://images.radio.co/station_logos/s5c5da6a36.20240717025356.png",
- "votes": 292,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "ceab5124-608a-4eb1-8149-d65829f9a9d7"
- },
- {
- "id": "e847f0b7-4694-4d96-a56a-3bc9543c5705",
- "name": "Classic FM Essential Classical",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
+ "language": "russian",
"tags": [
- "classical"
- ],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://icecast.thisisdax.com/ClassicFM-M-Essential",
- "homepage": "https://www.classicfm.com/",
- "logoUrl": "https://www.radio.de/images/broadcasts/a1/f8/126083/1/c300.png",
- "votes": 342,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "e847f0b7-4694-4d96-a56a-3bc9543c5705"
- },
- {
- "id": "8c45fcc8-a9fe-4e07-9a53-67b6a2a1fc76",
- "name": "Intamixx 80s 90s Radio UK",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [
- "80s",
- "90s",
- "dance",
- "drum and bass",
- "electronic",
- "funk",
- "garage",
- "jungle",
- "mashup",
- "old skool",
- "reggae",
- "vintage"
+ "music",
+ "rock",
+ "talk",
+ "музыка",
+ "разговорное",
+ "рок"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://radio.intamixx.uk:8443/radio2",
- "homepage": "https://80s.intamixx.uk/",
- "logoUrl": "https://80s.intamixx.uk/images/imc8090.jpg",
- "votes": 374,
- "clickcount": 10,
+ "streamUrl": "https://seva.ru/radio/stream",
+ "homepage": "https://seva.ru/",
+ "logoUrl": "https://seva.ru/radio/radio.png",
+ "votes": 2163,
+ "clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "8c45fcc8-a9fe-4e07-9a53-67b6a2a1fc76"
+ "sourceStationUuid": "30820d12-0409-44b7-b5e8-edc594910d92"
},
{
- "id": "5984167a-b25e-4eec-a878-ff9253ee0c4a",
- "name": "KISS UK",
+ "id": "9b3a5084-91ba-4d90-ac06-3e0ba8c50d67",
+ "name": "Gold Radio UK",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": "english",
+ "language": null,
"tags": [
- "bauer radio",
- "kiss",
- "kiss fm",
+ "golden oldies",
"pop"
],
"codec": "MP3",
- "bitrate": 112,
- "streamUrl": "https://live-kiss.sharp-stream.com/kiss100.mp3",
- "homepage": "https://kissfmuk.com/",
- "logoUrl": "https://media.bauerradio.com/image/upload/c_crop,g_custom/v1678797505/brand_manager/stations/mahvph4fqjmnp4y8d6wt.png",
- "votes": 417,
+ "bitrate": 128,
+ "streamUrl": "https://media-ice.musicradio.com/GoldMP3",
+ "homepage": "https://www.goldradio.com/?page=2",
+ "logoUrl": null,
+ "votes": 124,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "5984167a-b25e-4eec-a878-ff9253ee0c4a"
+ "sourceStationUuid": "9b3a5084-91ba-4d90-ac06-3e0ba8c50d67"
},
{
"id": "b8148b29-09d0-4aa1-8bfe-43d236260170",
@@ -31001,23 +61531,63 @@
"sourceStationUuid": "96568036-4928-44ba-a54e-c4db0b5463f2"
},
{
- "id": "1d62a120-704a-4285-a574-c17f48b155f8",
- "name": "Led Zeppelin",
+ "id": "15dfa7b3-70f5-4dda-9eb3-daf62daae922",
+ "name": "Aah Classical Radio - Bach",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": "engilsh",
+ "language": null,
"tags": [
- "discography"
+ "classical"
],
- "codec": "AAC",
+ "codec": "MP3",
"bitrate": 0,
- "streamUrl": "https://stream.pcradio.ru/Led_Zeppelin-hi",
- "homepage": "https://pcradio.ru/",
- "logoUrl": "null",
- "votes": 130,
+ "streamUrl": "https://radio.hearme.fm:9040/stream",
+ "homepage": "http://classical.aahradio.com/channel/bach/",
+ "logoUrl": "http://img.sedoparking.com/templates/logos/sedo_logo.png",
+ "votes": 241,
"clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "1d62a120-704a-4285-a574-c17f48b155f8"
+ "sourceStationUuid": "15dfa7b3-70f5-4dda-9eb3-daf62daae922"
+ },
+ {
+ "id": "ceab5124-608a-4eb1-8149-d65829f9a9d7",
+ "name": "Birdsong Radio",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://a1.radio.co/s5c5da6a36/listen",
+ "homepage": "https://www.birdsong.fm/",
+ "logoUrl": "https://images.radio.co/station_logos/s5c5da6a36.20240717025356.png",
+ "votes": 292,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "ceab5124-608a-4eb1-8149-d65829f9a9d7"
+ },
+ {
+ "id": "80d74009-e473-4454-9602-139b88485ba5",
+ "name": "Capital FM London",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "chr",
+ "dance",
+ "hits",
+ "pop",
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://media-ssl.musicradio.com/CapitalMP3",
+ "homepage": "https://capitalfm.com/",
+ "logoUrl": "https://imgs.capitalfm.com/images/573609?format=png&signature=fxgDCsRPRQMvt-WaQM8YWFAMFa8=",
+ "votes": 80,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "80d74009-e473-4454-9602-139b88485ba5"
},
{
"id": "05324cb6-8a7c-47a2-accb-5423f3d1e686",
@@ -31041,6 +61611,44 @@
"source": "radio-browser",
"sourceStationUuid": "05324cb6-8a7c-47a2-accb-5423f3d1e686"
},
+ {
+ "id": "39c07f86-2d14-469a-994b-968de965e75a",
+ "name": "Pink Floyd",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "engilsh",
+ "tags": [
+ "discography"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.pcradio.ru/Pink_Floyd-hi",
+ "homepage": "https://pcradio.ru/",
+ "logoUrl": "null",
+ "votes": 220,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "39c07f86-2d14-469a-994b-968de965e75a"
+ },
+ {
+ "id": "ded0682b-5b6b-4be7-a351-a03b765e91de",
+ "name": "Psychedelicized Radio",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": null,
+ "tags": [
+ "psychedelic rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast1.asurahosting.com/proxy/psychedelicized/stream",
+ "homepage": "https://psychedelicized.com/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s155704q.png",
+ "votes": 334,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "ded0682b-5b6b-4be7-a351-a03b765e91de"
+ },
{
"id": "45daead0-5c3f-44f4-8bb3-177596bcf8ab",
"name": "Britcom 4",
@@ -31061,46 +61669,93 @@
"sourceStationUuid": "45daead0-5c3f-44f4-8bb3-177596bcf8ab"
},
{
- "id": "80d74009-e473-4454-9602-139b88485ba5",
- "name": "Capital FM London",
+ "id": "70ce5567-4d1e-4a07-baa5-f5f08ca4b2f6",
+ "name": "Exclusively Dire Straits",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "chr",
- "dance",
- "hits",
- "pop",
- "top 40"
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://streaming.exclusive.radio/er/direstraits/icecast.audio",
+ "homepage": "https://exclusive.radio/",
+ "logoUrl": null,
+ "votes": 2677,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "70ce5567-4d1e-4a07-baa5-f5f08ca4b2f6"
+ },
+ {
+ "id": "1a421361-eb9f-40e9-9ab1-1a4ca39b90dd",
+ "name": "House FM",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "deep house",
+ "house",
+ "soulful house"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://media-ssl.musicradio.com/CapitalMP3",
- "homepage": "https://capitalfm.com/",
- "logoUrl": "https://imgs.capitalfm.com/images/573609?format=png&signature=fxgDCsRPRQMvt-WaQM8YWFAMFa8=",
- "votes": 80,
+ "streamUrl": "https://uksoutha.streaming.broadcast.radio:19920/housefm",
+ "homepage": "https://hse.fm/",
+ "logoUrl": "https://hse.fm/cdn/shop/files/logo_on_content_c7615023-6bff-4bf9-8841-9a9916b5a3b0_2500x.png?v=1615321261",
+ "votes": 52,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "80d74009-e473-4454-9602-139b88485ba5"
+ "sourceStationUuid": "1a421361-eb9f-40e9-9ab1-1a4ca39b90dd"
},
{
- "id": "ded0682b-5b6b-4be7-a351-a03b765e91de",
- "name": "Psychedelicized Radio",
+ "id": "8c45fcc8-a9fe-4e07-9a53-67b6a2a1fc76",
+ "name": "Intamixx 80s 90s Radio UK",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": null,
"tags": [
- "psychedelic rock"
+ "80s",
+ "90s",
+ "dance",
+ "drum and bass",
+ "electronic",
+ "funk",
+ "garage",
+ "jungle",
+ "mashup",
+ "old skool",
+ "reggae",
+ "vintage"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://cast1.asurahosting.com/proxy/psychedelicized/stream",
- "homepage": "https://psychedelicized.com/",
- "logoUrl": "https://cdn-radiotime-logos.tunein.com/s155704q.png",
- "votes": 334,
+ "streamUrl": "https://radio.intamixx.uk:8443/radio2",
+ "homepage": "https://80s.intamixx.uk/",
+ "logoUrl": "https://80s.intamixx.uk/images/imc8090.jpg",
+ "votes": 374,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "ded0682b-5b6b-4be7-a351-a03b765e91de"
+ "sourceStationUuid": "8c45fcc8-a9fe-4e07-9a53-67b6a2a1fc76"
+ },
+ {
+ "id": "1d62a120-704a-4285-a574-c17f48b155f8",
+ "name": "Led Zeppelin",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "engilsh",
+ "tags": [
+ "discography"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.pcradio.ru/Led_Zeppelin-hi",
+ "homepage": "https://pcradio.ru/",
+ "logoUrl": "null",
+ "votes": 130,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "1d62a120-704a-4285-a574-c17f48b155f8"
},
{
"id": "caef79fd-980c-41ab-a2e5-a7899e0dbef8",
@@ -31120,42 +61775,21 @@
"sourceStationUuid": "caef79fd-980c-41ab-a2e5-a7899e0dbef8"
},
{
- "id": "15dfa7b3-70f5-4dda-9eb3-daf62daae922",
- "name": "Aah Classical Radio - Bach",
+ "id": "5ed77642-9f68-484a-8bbc-af00a4acc629",
+ "name": "Boom Radio UK",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": null,
- "tags": [
- "classical"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://radio.hearme.fm:9040/stream",
- "homepage": "http://classical.aahradio.com/channel/bach/",
- "logoUrl": "http://img.sedoparking.com/templates/logos/sedo_logo.png",
- "votes": 241,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://listen-boomradio.sharp-stream.com/65_boom_radio_live_192",
+ "homepage": "https://www.boomradiouk.com/",
+ "logoUrl": "https://mmo.aiircdn.com/460/5fb3bb6151ee4.png",
+ "votes": 479,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "15dfa7b3-70f5-4dda-9eb3-daf62daae922"
- },
- {
- "id": "fd7898b9-e442-4824-a313-77f25cb59de1",
- "name": "BBC Arabic",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "arabic",
- "tags": [
- "news"
- ],
- "codec": "MP3",
- "bitrate": 56,
- "streamUrl": "https://stream.live.vc.bbcmedia.co.uk/bbc_arabic_radio",
- "homepage": "https://stream.live.vc.bbcmedia.co.uk/",
- "logoUrl": "null",
- "votes": 293,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "fd7898b9-e442-4824-a313-77f25cb59de1"
+ "sourceStationUuid": "5ed77642-9f68-484a-8bbc-af00a4acc629"
},
{
"id": "96e1958d-3890-4540-8dd1-09334eb38639",
@@ -31175,105 +61809,24 @@
"sourceStationUuid": "96e1958d-3890-4540-8dd1-09334eb38639"
},
{
- "id": "b0fcc9da-9958-4729-9e23-4f7cc15e98b9",
- "name": "CNN UK",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "engilsh",
- "tags": [
- "business",
- "business news",
- "education",
- "local news",
- "news",
- "ridwan",
- "talk"
- ],
- "codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://tunein.cdnstream1.com/2868_96.mp3",
- "homepage": "https://edition.cnn.com/",
- "logoUrl": "https://edition.cnn.com/favicon.ico",
- "votes": 526,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "b0fcc9da-9958-4729-9e23-4f7cc15e98b9"
- },
- {
- "id": "70ce5567-4d1e-4a07-baa5-f5f08ca4b2f6",
- "name": "Exclusively Dire Straits",
+ "id": "2bf8ecb6-51ee-4c2d-a9ee-b8753ded0624",
+ "name": "Forth1",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "rock"
+ "pop music",
+ "popular"
],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://streaming.exclusive.radio/er/direstraits/icecast.audio",
- "homepage": "https://exclusive.radio/",
+ "codec": "AAC+",
+ "bitrate": 47,
+ "streamUrl": "https://stream-al.hellorayo.co.uk/forth1.aac?direct=true&aw_0_1st.skey=1602676850&rp_source=1&aw_0_1st.bauer_listenerid=undefined",
+ "homepage": "https://www.hellorayo.co.uk/forth",
"logoUrl": null,
- "votes": 2677,
+ "votes": 7,
"clickcount": 7,
"source": "radio-browser",
- "sourceStationUuid": "70ce5567-4d1e-4a07-baa5-f5f08ca4b2f6"
- },
- {
- "id": "42679ed6-49cb-428e-9b74-94af62ad8a0a",
- "name": "Heart FM",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://media-ssl.musicradio.com/HeartUK",
- "homepage": "https://www.heart.co.uk/london/radio/",
- "logoUrl": "https://cdn-profiles.tunein.com/s320841/images/logod.jpg?t=638651487420000000",
- "votes": 90,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "42679ed6-49cb-428e-9b74-94af62ad8a0a"
- },
- {
- "id": "1a421361-eb9f-40e9-9ab1-1a4ca39b90dd",
- "name": "House FM",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "deep house",
- "house",
- "soulful house"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://uksoutha.streaming.broadcast.radio:19920/housefm",
- "homepage": "https://hse.fm/",
- "logoUrl": "https://hse.fm/cdn/shop/files/logo_on_content_c7615023-6bff-4bf9-8841-9a9916b5a3b0_2500x.png?v=1615321261",
- "votes": 52,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "1a421361-eb9f-40e9-9ab1-1a4ca39b90dd"
- },
- {
- "id": "39c07f86-2d14-469a-994b-968de965e75a",
- "name": "Pink Floyd",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "engilsh",
- "tags": [
- "discography"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://stream.pcradio.ru/Pink_Floyd-hi",
- "homepage": "https://pcradio.ru/",
- "logoUrl": "null",
- "votes": 220,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "39c07f86-2d14-469a-994b-968de965e75a"
+ "sourceStationUuid": "2bf8ecb6-51ee-4c2d-a9ee-b8753ded0624"
},
{
"id": "99f4e5bf-e2a0-4386-b116-3ecd4e4de6b5",
@@ -31298,56 +61851,6 @@
"source": "radio-browser",
"sourceStationUuid": "99f4e5bf-e2a0-4386-b116-3ecd4e4de6b5"
},
- {
- "id": "68f52212-e3b0-479b-9da6-962a6c5e713d",
- "name": "ROKit Radio Science Fiction",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "action",
- "drama",
- "old time radio",
- "otr",
- "radio shows",
- "science fiction",
- "scifi"
- ],
- "codec": "MP3",
- "bitrate": 48,
- "streamUrl": "https://streaming05.liveboxstream.uk/proxy/roksta12/stream",
- "homepage": "https://rokitradio.com/",
- "logoUrl": "https://rokitradio.com/images/channels/scifi.jpg",
- "votes": 773,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "68f52212-e3b0-479b-9da6-962a6c5e713d"
- },
- {
- "id": "72fe5798-bf1e-4df9-b4d9-aa4712a189f4",
- "name": "The Mix Radio 80s",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "1980s",
- "80s",
- "classic rock",
- "pop",
- "pop music",
- "pop rock",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 256,
- "streamUrl": "https://tmr80s.radioca.st/stream",
- "homepage": "https://www.themixradio.co.uk/",
- "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/390/the-mix-radio-80s.dd4413ea.png",
- "votes": 56,
- "clickcount": 7,
- "source": "radio-browser",
- "sourceStationUuid": "72fe5798-bf1e-4df9-b4d9-aa4712a189f4"
- },
{
"id": "9619e7d7-0601-11e8-ae97-52543be04c81",
"name": "TMM 1",
@@ -31409,6 +61912,25 @@
"source": "radio-browser",
"sourceStationUuid": "ab5c6632-d8cc-4704-95ba-0cef512cc212"
},
+ {
+ "id": "fd7898b9-e442-4824-a313-77f25cb59de1",
+ "name": "BBC Arabic",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "arabic",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 56,
+ "streamUrl": "https://stream.live.vc.bbcmedia.co.uk/bbc_arabic_radio",
+ "homepage": "https://stream.live.vc.bbcmedia.co.uk/",
+ "logoUrl": "null",
+ "votes": 293,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "fd7898b9-e442-4824-a313-77f25cb59de1"
+ },
{
"id": "3e0d94fa-114f-4135-88ac-28b084996929",
"name": "BBC Radio Nottingham",
@@ -31462,45 +61984,6 @@
"source": "radio-browser",
"sourceStationUuid": "695da448-1840-4e4f-adda-57d699900b58"
},
- {
- "id": "5ed77642-9f68-484a-8bbc-af00a4acc629",
- "name": "Boom Radio UK",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [],
- "codec": "AAC",
- "bitrate": 256,
- "streamUrl": "https://listen-boomradio.sharp-stream.com/65_boom_radio_live_192",
- "homepage": "https://www.boomradiouk.com/",
- "logoUrl": "https://mmo.aiircdn.com/460/5fb3bb6151ee4.png",
- "votes": 479,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "5ed77642-9f68-484a-8bbc-af00a4acc629"
- },
- {
- "id": "9bc64606-6eb1-40bd-901e-aed7c510baa0",
- "name": "Boot Boy Radio",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "punk",
- "reggae",
- "ska",
- "soul"
- ],
- "codec": "AAC+",
- "bitrate": 192,
- "streamUrl": "https://streaming04.liveboxstream.uk/proxy/dwain?mp=/stream",
- "homepage": "https://bootboyradio.net/",
- "logoUrl": "https://bootboyradio.net/wp-content/uploads/2021/02/cropped-900logosquare-192x192.jpg",
- "votes": 128,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "9bc64606-6eb1-40bd-901e-aed7c510baa0"
- },
{
"id": "5d50b9af-852d-43eb-89dd-b9b934e3f551",
"name": "CAPITAL DANCE: The UK's Official Dance Station",
@@ -31531,6 +62014,31 @@
"source": "radio-browser",
"sourceStationUuid": "5d50b9af-852d-43eb-89dd-b9b934e3f551"
},
+ {
+ "id": "b0fcc9da-9958-4729-9e23-4f7cc15e98b9",
+ "name": "CNN UK",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "engilsh",
+ "tags": [
+ "business",
+ "business news",
+ "education",
+ "local news",
+ "news",
+ "ridwan",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://tunein.cdnstream1.com/2868_96.mp3",
+ "homepage": "https://edition.cnn.com/",
+ "logoUrl": "https://edition.cnn.com/favicon.ico",
+ "votes": 526,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "b0fcc9da-9958-4729-9e23-4f7cc15e98b9"
+ },
{
"id": "ba60b138-3d74-4579-9f3f-e2c4eda58a80",
"name": "Coffee Morning",
@@ -31591,43 +62099,6 @@
"source": "radio-browser",
"sourceStationUuid": "86cbd3d9-dfce-4c62-830a-c92fe552d476"
},
- {
- "id": "78c2d08d-591c-482d-ad50-6939432fedc6",
- "name": "DCLM Radio",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://airtime.dclm.org/radio/8000/live",
- "homepage": "https://radio.dclm.org/",
- "logoUrl": "https://radio.dclm.org/assets/img/favicon.png",
- "votes": 105,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "78c2d08d-591c-482d-ad50-6939432fedc6"
- },
- {
- "id": "2bf8ecb6-51ee-4c2d-a9ee-b8753ded0624",
- "name": "Forth1",
- "country": "The United Kingdom Of Great Britain And Northern Ireland",
- "countryCode": "GB",
- "language": "english",
- "tags": [
- "pop music",
- "popular"
- ],
- "codec": "AAC+",
- "bitrate": 47,
- "streamUrl": "https://stream-al.hellorayo.co.uk/forth1.aac?direct=true&aw_0_1st.skey=1602676850&rp_source=1&aw_0_1st.bauer_listenerid=undefined",
- "homepage": "https://www.hellorayo.co.uk/forth",
- "logoUrl": null,
- "votes": 7,
- "clickcount": 6,
- "source": "radio-browser",
- "sourceStationUuid": "2bf8ecb6-51ee-4c2d-a9ee-b8753ded0624"
- },
{
"id": "086b2f96-7453-45d8-b672-467cb54d8edf",
"name": "Rafa Bible Radio English",
@@ -31646,49 +62117,54 @@
"sourceStationUuid": "086b2f96-7453-45d8-b672-467cb54d8edf"
},
{
- "id": "68e826da-67e5-4df8-a179-9f105aa46f87",
- "name": "ROKit Radio : Classic Old Time Radio Shows",
+ "id": "68f52212-e3b0-479b-9da6-962a6c5e713d",
+ "name": "ROKit Radio Science Fiction",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "comedy",
+ "action",
"drama",
"old time radio",
"otr",
"radio shows",
- "sitcom"
+ "science fiction",
+ "scifi"
],
"codec": "MP3",
"bitrate": 48,
- "streamUrl": "https://streaming04.liveboxstream.uk/proxy/roksta18/stream",
+ "streamUrl": "https://streaming05.liveboxstream.uk/proxy/roksta12/stream",
"homepage": "https://rokitradio.com/",
- "logoUrl": "https://rokitradio.com/images/channels/old_time_gold.jpg",
- "votes": 260,
+ "logoUrl": "https://rokitradio.com/images/channels/scifi.jpg",
+ "votes": 773,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "68e826da-67e5-4df8-a179-9f105aa46f87"
+ "sourceStationUuid": "68f52212-e3b0-479b-9da6-962a6c5e713d"
},
{
- "id": "d5468df4-e6d0-11e9-a96c-52543be04c81",
- "name": "Slow Focus | NTS",
+ "id": "72fe5798-bf1e-4df9-b4d9-aa4712a189f4",
+ "name": "The Mix Radio 80s",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
- "ambient",
- "drone",
- "relaxing"
+ "1980s",
+ "80s",
+ "classic rock",
+ "pop",
+ "pop music",
+ "pop rock",
+ "rock"
],
"codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream-mixtape-geo.ntslive.net/mixtape",
- "homepage": "https://www.nts.live/infinite-mixtapes/slow-focus",
- "logoUrl": "https://www.nts.live/apple-touch-icon.png?v=47re43rrzb",
- "votes": 822,
+ "bitrate": 256,
+ "streamUrl": "https://tmr80s.radioca.st/stream",
+ "homepage": "https://www.themixradio.co.uk/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/390/the-mix-radio-80s.dd4413ea.png",
+ "votes": 56,
"clickcount": 6,
"source": "radio-browser",
- "sourceStationUuid": "d5468df4-e6d0-11e9-a96c-52543be04c81"
+ "sourceStationUuid": "72fe5798-bf1e-4df9-b4d9-aa4712a189f4"
},
{
"id": "f2010630-1fc4-45db-b85e-257b425051a0",
@@ -31743,6 +62219,45 @@
"source": "radio-browser",
"sourceStationUuid": "c0ba5cba-d388-4ecc-824e-734e767174e2"
},
+ {
+ "id": "9bc64606-6eb1-40bd-901e-aed7c510baa0",
+ "name": "Boot Boy Radio",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "punk",
+ "reggae",
+ "ska",
+ "soul"
+ ],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://streaming04.liveboxstream.uk/proxy/dwain?mp=/stream",
+ "homepage": "https://bootboyradio.net/",
+ "logoUrl": "https://bootboyradio.net/wp-content/uploads/2021/02/cropped-900logosquare-192x192.jpg",
+ "votes": 128,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "9bc64606-6eb1-40bd-901e-aed7c510baa0"
+ },
+ {
+ "id": "57d9c792-5ead-4b1b-ae00-7ad1aa3b09e7",
+ "name": "BSJ.FM Best Smooth Jazz",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://bsj.lucasmultimedia.com:8002/stream.ogg",
+ "homepage": "https://bsj.fm/",
+ "logoUrl": "https://bsj.fm/assets/img/bsj-favicon.ico",
+ "votes": 1336,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "57d9c792-5ead-4b1b-ae00-7ad1aa3b09e7"
+ },
{
"id": "b57cef96-d760-4d33-b743-46f0f1a4591b",
"name": "Dance Classics UK",
@@ -31782,6 +62297,42 @@
"source": "radio-browser",
"sourceStationUuid": "dcd3b0e9-a7bf-402e-8d0a-14f25af2d68c"
},
+ {
+ "id": "78c2d08d-591c-482d-ad50-6939432fedc6",
+ "name": "DCLM Radio",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://airtime.dclm.org/radio/8000/live",
+ "homepage": "https://radio.dclm.org/",
+ "logoUrl": "https://radio.dclm.org/assets/img/favicon.png",
+ "votes": 105,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "78c2d08d-591c-482d-ad50-6939432fedc6"
+ },
+ {
+ "id": "f14fbd38-e6c0-4d9a-8d4d-b8f8f0c9fce6",
+ "name": "HearMe - Love songs",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": "english",
+ "tags": [
+ "love songs"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio.hearme.fm:8140/stream",
+ "homepage": "https://hearme.fm/",
+ "logoUrl": null,
+ "votes": 35,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f14fbd38-e6c0-4d9a-8d4d-b8f8f0c9fce6"
+ },
{
"id": "5f3fa761-76be-4672-98fd-c5e71771834d",
"name": "One World Radio - Tomorrowland Anthems",
@@ -31826,45 +62377,47 @@
"sourceStationUuid": "138e0496-c5f1-48a0-8cad-764fb23dfec9"
},
{
- "id": "366dde91-14e4-4634-8d5b-ff70ccd97f3c",
- "name": "ROKit Radio : American Classic Radio Shows",
+ "id": "4b6aebf2-0ced-4058-8e71-52c701359b93",
+ "name": "ROKit Radio : Comedy Gold",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
"language": "english",
"tags": [
+ "comedy",
"old time radio",
"otr",
- "radio show"
+ "radio shows"
],
"codec": "MP3",
"bitrate": 48,
- "streamUrl": "https://streaming05.liveboxstream.uk/proxy/jondre01/stream",
+ "streamUrl": "https://streaming06.liveboxstream.uk/proxy/rokstar8/stream",
"homepage": "https://rokitradio.com/",
- "logoUrl": "https://rokitradio.com/images/channels/american_classics.jpg",
- "votes": 90,
+ "logoUrl": "https://rokitradio.com/images/channels/comedy_gold.jpg",
+ "votes": 277,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "366dde91-14e4-4634-8d5b-ff70ccd97f3c"
+ "sourceStationUuid": "4b6aebf2-0ced-4058-8e71-52c701359b93"
},
{
- "id": "46f13c3e-823f-4f1e-ab82-5a7b145c337f",
- "name": "Smooth Country",
+ "id": "d5468df4-e6d0-11e9-a96c-52543be04c81",
+ "name": "Slow Focus | NTS",
"country": "The United Kingdom Of Great Britain And Northern Ireland",
"countryCode": "GB",
- "language": null,
+ "language": "english",
"tags": [
- "country",
- "country music"
+ "ambient",
+ "drone",
+ "relaxing"
],
- "codec": "AAC",
- "bitrate": 48,
- "streamUrl": "https://media-ssl.musicradio.com/SmoothCountry",
- "homepage": "https://www.smoothradio.com/country/",
- "logoUrl": "https://www.smoothradio.com/assets_v4r/smooth/img/favicon-196x196.png",
- "votes": 436,
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-mixtape-geo.ntslive.net/mixtape",
+ "homepage": "https://www.nts.live/infinite-mixtapes/slow-focus",
+ "logoUrl": "https://www.nts.live/apple-touch-icon.png?v=47re43rrzb",
+ "votes": 822,
"clickcount": 5,
"source": "radio-browser",
- "sourceStationUuid": "46f13c3e-823f-4f1e-ab82-5a7b145c337f"
+ "sourceStationUuid": "d5468df4-e6d0-11e9-a96c-52543be04c81"
},
{
"id": "fb156190-ade3-4f47-873a-2136cdc793d6",
@@ -31912,6 +62465,29 @@
"source": "radio-browser",
"sourceStationUuid": "9619e894-0601-11e8-ae97-52543be04c81"
},
+ {
+ "id": "1651c32f-55d8-4429-995d-872ea0dcf520",
+ "name": "Worldwide FM",
+ "country": "The United Kingdom Of Great Britain And Northern Ireland",
+ "countryCode": "GB",
+ "language": null,
+ "tags": [
+ "electronica",
+ "jazz",
+ "progressive",
+ "underground music",
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://worldwide-fm.radiocult.fm/stream",
+ "homepage": "https://www.worldwidefm.net/",
+ "logoUrl": "https://scontent-fra5-2.xx.fbcdn.net/v/t39.30808-1/450237294_942043604601681_3306132891557988504_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=109&ccb=1-7&_nc_sid=2d3e12&_nc_ohc=Ur-AWGYdJIEQ7kNvwHfsWWi&_nc_oc=Adn31I1juFGVfOprAsE1UsSz-7_H0ISFLok1gNrhmWqzfmlI6AbPJgNZB15dkduTEq4&_nc_zt=24&_nc_ht=scontent-fra5-2.xx&_nc_gid=60spXN55S49um4k8ceAfcA&oh=00_AfrO3IOBFCxwn4Bqxc2mOFTcigubLSqRjTY1N2cfbWsvxg&oe=696ED4DC",
+ "votes": 41,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "1651c32f-55d8-4429-995d-872ea0dcf520"
+ },
{
"id": "d1a54d2e-623e-4970-ab11-35f7b56c5ec3",
"name": "Classic Vinyl HD",
@@ -31937,8 +62513,8 @@
"streamUrl": "https://icecast.walmradio.com:8443/classic",
"homepage": "https://walmradio.com/classic",
"logoUrl": "https://icecast.walmradio.com:8443/classic.jpg",
- "votes": 269318,
- "clickcount": 574,
+ "votes": 269320,
+ "clickcount": 562,
"source": "radio-browser",
"sourceStationUuid": "d1a54d2e-623e-4970-ab11-35f7b56c5ec3"
},
@@ -31969,6 +62545,25 @@
"source": "radio-browser",
"sourceStationUuid": "c93f9c76-2ad4-464d-bff4-7f46e95f2601"
},
+ {
+ "id": "510aeeac-e7a0-41c2-aea2-e572e811ffe7",
+ "name": "Fox News Radio",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "american english",
+ "tags": [
+ "news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://live.amperwave.net/direct/foxnewsradio-foxnewsradioaac-imc?source=fnr.web",
+ "homepage": "https://radio.foxnews.com/",
+ "logoUrl": "https://static.foxnews.com/radio.foxnews.com/content/uploads/2017/10/default_logo-150x150.png",
+ "votes": 7373,
+ "clickcount": 108,
+ "source": "radio-browser",
+ "sourceStationUuid": "510aeeac-e7a0-41c2-aea2-e572e811ffe7"
+ },
{
"id": "ea8059be-d119-4de3-b27b-0d9bd6aedb17",
"name": "Adroit Jazz Underground",
@@ -31995,29 +62590,10 @@
"homepage": "https://walmradio.com/jazz",
"logoUrl": "https://icecast.walmradio.com:8443/jazz.jpg",
"votes": 167068,
- "clickcount": 109,
+ "clickcount": 104,
"source": "radio-browser",
"sourceStationUuid": "ea8059be-d119-4de3-b27b-0d9bd6aedb17"
},
- {
- "id": "510aeeac-e7a0-41c2-aea2-e572e811ffe7",
- "name": "Fox News Radio",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "american english",
- "tags": [
- "news"
- ],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://live.amperwave.net/direct/foxnewsradio-foxnewsradioaac-imc?source=fnr.web",
- "homepage": "https://radio.foxnews.com/",
- "logoUrl": "https://static.foxnews.com/radio.foxnews.com/content/uploads/2017/10/default_logo-150x150.png",
- "votes": 7373,
- "clickcount": 106,
- "source": "radio-browser",
- "sourceStationUuid": "510aeeac-e7a0-41c2-aea2-e572e811ffe7"
- },
{
"id": "960cf833-0601-11e8-ae97-52543be04c81",
"name": "SomaFM Groove Salad (128k MP3)",
@@ -32037,8 +62613,8 @@
"streamUrl": "https://ice5.somafm.com/groovesalad-128-mp3",
"homepage": "https://somafm.com/groovesalad/",
"logoUrl": "https://somafm.com/img3/groovesalad-400.jpg",
- "votes": 46765,
- "clickcount": 82,
+ "votes": 46766,
+ "clickcount": 83,
"source": "radio-browser",
"sourceStationUuid": "960cf833-0601-11e8-ae97-52543be04c81"
},
@@ -32068,7 +62644,7 @@
"homepage": "https://walmradio.com/otr",
"logoUrl": "https://icecast.walmradio.com:8443/otr.jpg",
"votes": 139886,
- "clickcount": 61,
+ "clickcount": 60,
"source": "radio-browser",
"sourceStationUuid": "313046e3-b203-4b9d-bc3e-393da7d97126"
},
@@ -32094,7 +62670,7 @@
"homepage": "https://americascountry.us/",
"logoUrl": "https://marinifamily.files.wordpress.com/2015/08/favicon.png",
"votes": 2305,
- "clickcount": 57,
+ "clickcount": 53,
"source": "radio-browser",
"sourceStationUuid": "3b92f8c7-deac-4a81-8a9c-3b0f995d73e4"
},
@@ -32115,6 +62691,25 @@
"source": "radio-browser",
"sourceStationUuid": "bbd2fa5a-0b6c-4833-81b4-ca69acb8f264"
},
+ {
+ "id": "0b2c57db-885d-46d8-bbee-0651449759f1",
+ "name": "MSNBC",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://tunein.cdnstream1.com/3511_96.mp3",
+ "homepage": "https://www.msnbc.com/",
+ "logoUrl": "https://nodeassets.nbcnews.com/cdnassets/projects/ramen/favicon/msnbc/all-other-sizes-PNG.ico/favicon-96x96.png",
+ "votes": 4988,
+ "clickcount": 43,
+ "source": "radio-browser",
+ "sourceStationUuid": "0b2c57db-885d-46d8-bbee-0651449759f1"
+ },
{
"id": "dba1b7bc-6b92-409c-a543-8b42eec25636",
"name": "100 Hip Hop and RNB FM (Official)",
@@ -32133,29 +62728,10 @@
"homepage": "https://uk.radio.net/s/100hiphopandrnb",
"logoUrl": "https://static.mytuner.mobi/media/tvos_radios/887/rnb-and-hip-hop-radio.51c457d0.png",
"votes": 213,
- "clickcount": 39,
+ "clickcount": 41,
"source": "radio-browser",
"sourceStationUuid": "dba1b7bc-6b92-409c-a543-8b42eec25636"
},
- {
- "id": "0b2c57db-885d-46d8-bbee-0651449759f1",
- "name": "MSNBC",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "news"
- ],
- "codec": "MP3",
- "bitrate": 96,
- "streamUrl": "https://tunein.cdnstream1.com/3511_96.mp3",
- "homepage": "https://www.msnbc.com/",
- "logoUrl": "https://nodeassets.nbcnews.com/cdnassets/projects/ramen/favicon/msnbc/all-other-sizes-PNG.ico/favicon-96x96.png",
- "votes": 4988,
- "clickcount": 39,
- "source": "radio-browser",
- "sourceStationUuid": "0b2c57db-885d-46d8-bbee-0651449759f1"
- },
{
"id": "960d3f6f-0601-11e8-ae97-52543be04c81",
"name": "SomaFM Space Station Soma (128k AAC)",
@@ -32173,59 +62749,10 @@
"homepage": "https://somafm.com/spacestation/",
"logoUrl": "https://somafm.com/img3/spacestation-400.png",
"votes": 23934,
- "clickcount": 39,
+ "clickcount": 40,
"source": "radio-browser",
"sourceStationUuid": "960d3f6f-0601-11e8-ae97-52543be04c81"
},
- {
- "id": "6eff3484-4ab4-4d36-bf27-9172c5aac15c",
- "name": "Christmas Vinyl HD",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "christian",
- "christmas",
- "easy listening",
- "hd",
- "holiday",
- "otr",
- "seasonal",
- "vintage",
- "vinyl",
- "walm"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://icecast.walmradio.com:8443/christmas",
- "homepage": "https://walmradio.com/christmas",
- "logoUrl": "https://icecast.walmradio.com:8443/christmas.png",
- "votes": 154460,
- "clickcount": 37,
- "source": "radio-browser",
- "sourceStationUuid": "6eff3484-4ab4-4d36-bf27-9172c5aac15c"
- },
- {
- "id": "96394224-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM Indie Pop Rocks! (128k AAC)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "indie",
- "indie pop",
- "indie rock"
- ],
- "codec": "AAC",
- "bitrate": 128,
- "streamUrl": "https://ice6.somafm.com/indiepop-128-aac",
- "homepage": "https://somafm.com/indiepop/",
- "logoUrl": "https://somafm.com/img3/indiepop-400.jpg",
- "votes": 20721,
- "clickcount": 37,
- "source": "radio-browser",
- "sourceStationUuid": "96394224-0601-11e8-ae97-52543be04c81"
- },
{
"id": "961e37ee-0601-11e8-ae97-52543be04c81",
"name": "SomaFM Left Coast 70s (320k MP3)",
@@ -32244,10 +62771,31 @@
"homepage": "https://somafm.com/seventies/",
"logoUrl": "https://somafm.com/img3/seventies400.jpg",
"votes": 19496,
- "clickcount": 37,
+ "clickcount": 39,
"source": "radio-browser",
"sourceStationUuid": "961e37ee-0601-11e8-ae97-52543be04c81"
},
+ {
+ "id": "96394224-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Indie Pop Rocks! (128k AAC)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "indie",
+ "indie pop",
+ "indie rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://ice6.somafm.com/indiepop-128-aac",
+ "homepage": "https://somafm.com/indiepop/",
+ "logoUrl": "https://somafm.com/img3/indiepop-400.jpg",
+ "votes": 20722,
+ "clickcount": 37,
+ "source": "radio-browser",
+ "sourceStationUuid": "96394224-0601-11e8-ae97-52543be04c81"
+ },
{
"id": "34135e58-c4b4-4aaa-89b3-c42254ba7307",
"name": "Classic Hits 109",
@@ -32273,6 +62821,55 @@
"source": "radio-browser",
"sourceStationUuid": "34135e58-c4b4-4aaa-89b3-c42254ba7307"
},
+ {
+ "id": "6eff3484-4ab4-4d36-bf27-9172c5aac15c",
+ "name": "Christmas Vinyl HD",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "christian",
+ "christmas",
+ "easy listening",
+ "hd",
+ "holiday",
+ "otr",
+ "seasonal",
+ "vintage",
+ "vinyl",
+ "walm"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://icecast.walmradio.com:8443/christmas",
+ "homepage": "https://walmradio.com/christmas",
+ "logoUrl": "https://icecast.walmradio.com:8443/christmas.png",
+ "votes": 154460,
+ "clickcount": 35,
+ "source": "radio-browser",
+ "sourceStationUuid": "6eff3484-4ab4-4d36-bf27-9172c5aac15c"
+ },
+ {
+ "id": "608bc971-3ec5-4c05-8143-de96c3bdb030",
+ "name": "Soma FM Groove Salad 320K AAC HLS",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": null,
+ "tags": [
+ "groove",
+ "hls",
+ "somafm"
+ ],
+ "codec": "MP4",
+ "bitrate": 320000,
+ "streamUrl": "https://hls.somafm.com/hls/groovesalad/320k/program.m3u8",
+ "homepage": "https://www.somafm.com/",
+ "logoUrl": "https://somafm.com/img3/groovesalad-400.png",
+ "votes": 1181,
+ "clickcount": 35,
+ "source": "radio-browser",
+ "sourceStationUuid": "608bc971-3ec5-4c05-8143-de96c3bdb030"
+ },
{
"id": "6ce8da92-859f-4f96-a5e4-503c1ddfbfbf",
"name": "Classic Vinyl HD Opus",
@@ -32298,53 +62895,11 @@
"streamUrl": "https://icecast.walmradio.com:8443/classic_opus",
"homepage": "https://walmradio.com/classic",
"logoUrl": "https://icecast.walmradio.com:8443/classic.jpg",
- "votes": 43280,
- "clickcount": 35,
+ "votes": 43281,
+ "clickcount": 34,
"source": "radio-browser",
"sourceStationUuid": "6ce8da92-859f-4f96-a5e4-503c1ddfbfbf"
},
- {
- "id": "9614b5e5-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM Underground 80s (128k MP3)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "80s",
- "new wave",
- "uk synthpop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice6.somafm.com/u80s-128-mp3",
- "homepage": "https://somafm.com/u80s/",
- "logoUrl": "https://somafm.com/img3/u80s-400.png",
- "votes": 28151,
- "clickcount": 35,
- "source": "radio-browser",
- "sourceStationUuid": "9614b5e5-0601-11e8-ae97-52543be04c81"
- },
- {
- "id": "dc7e3511-79b2-41f5-8b1f-a6e8098fcda4",
- "name": "ROCK FM Classic Rock",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "hard rock",
- "metal",
- "rock"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://audiotainment-sw.streamabc.net/atsw-classicrock-mp3-128-2538548?",
- "homepage": "http://www.my-radios.com/es/radio/escuchar/30420/ROCK-FM-CLASSIC-ROCK",
- "logoUrl": "http://www.my-radios.com/favicon.ico",
- "votes": 658,
- "clickcount": 33,
- "source": "radio-browser",
- "sourceStationUuid": "dc7e3511-79b2-41f5-8b1f-a6e8098fcda4"
- },
{
"id": "2ce23ee2-95c5-407d-9df8-54c3cdde2825",
"name": "Adroit Jazz Underground HD Opus",
@@ -32371,55 +62926,51 @@
"homepage": "https://walmradio.com/jazz",
"logoUrl": "https://icecast.walmradio.com:8443/jazz.jpg",
"votes": 62209,
- "clickcount": 32,
+ "clickcount": 33,
"source": "radio-browser",
"sourceStationUuid": "2ce23ee2-95c5-407d-9df8-54c3cdde2825"
},
{
- "id": "701106b9-59e3-11ea-be63-52543be04c81",
- "name": "SomaFM Heavyweight Reggae (256k MP3)",
+ "id": "9614b5e5-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Underground 80s (128k MP3)",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "reggae",
- "rocksteady",
- "roots reggae",
- "ska"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://ice6.somafm.com/reggae-256-mp3",
- "homepage": "https://somafm.com/reggae/",
- "logoUrl": "https://somafm.com/img3/reggae400.jpg",
- "votes": 5042,
- "clickcount": 30,
- "source": "radio-browser",
- "sourceStationUuid": "701106b9-59e3-11ea-be63-52543be04c81"
- },
- {
- "id": "960c7c81-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM Secret Agent (128k MP3)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "ambient",
- "downtempo",
- "jazz",
- "lounge",
- "samba",
- "sixties"
+ "80s",
+ "new wave",
+ "uk synthpop"
],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://ice6.somafm.com/secretagent-128-mp3",
- "homepage": "https://somafm.com/secretagent/",
- "logoUrl": "https://somafm.com/img3/secretagent-400.jpg",
- "votes": 35452,
- "clickcount": 30,
+ "streamUrl": "https://ice6.somafm.com/u80s-128-mp3",
+ "homepage": "https://somafm.com/u80s/",
+ "logoUrl": "https://somafm.com/img3/u80s-400.png",
+ "votes": 28151,
+ "clickcount": 33,
"source": "radio-browser",
- "sourceStationUuid": "960c7c81-0601-11e8-ae97-52543be04c81"
+ "sourceStationUuid": "9614b5e5-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "dc7e3511-79b2-41f5-8b1f-a6e8098fcda4",
+ "name": "ROCK FM Classic Rock",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "hard rock",
+ "metal",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://audiotainment-sw.streamabc.net/atsw-classicrock-mp3-128-2538548?",
+ "homepage": "http://www.my-radios.com/es/radio/escuchar/30420/ROCK-FM-CLASSIC-ROCK",
+ "logoUrl": "http://www.my-radios.com/favicon.ico",
+ "votes": 658,
+ "clickcount": 32,
+ "source": "radio-browser",
+ "sourceStationUuid": "dc7e3511-79b2-41f5-8b1f-a6e8098fcda4"
},
{
"id": "348dfc58-ce8c-413b-b264-0384f816344b",
@@ -32465,25 +63016,28 @@
"sourceStationUuid": "ceb6b3af-3bfb-4135-bace-9fa6fac9e8ac"
},
{
- "id": "608bc971-3ec5-4c05-8143-de96c3bdb030",
- "name": "Soma FM Groove Salad 320K AAC HLS",
+ "id": "960c7c81-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Secret Agent (128k MP3)",
"country": "The United States Of America",
"countryCode": "US",
- "language": null,
+ "language": "english",
"tags": [
- "groove",
- "hls",
- "somafm"
+ "ambient",
+ "downtempo",
+ "jazz",
+ "lounge",
+ "samba",
+ "sixties"
],
- "codec": "MP4",
- "bitrate": 320000,
- "streamUrl": "https://hls.somafm.com/hls/groovesalad/320k/program.m3u8",
- "homepage": "https://www.somafm.com/",
- "logoUrl": "https://somafm.com/img3/groovesalad-400.png",
- "votes": 1181,
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice6.somafm.com/secretagent-128-mp3",
+ "homepage": "https://somafm.com/secretagent/",
+ "logoUrl": "https://somafm.com/img3/secretagent-400.jpg",
+ "votes": 35453,
"clickcount": 29,
"source": "radio-browser",
- "sourceStationUuid": "608bc971-3ec5-4c05-8143-de96c3bdb030"
+ "sourceStationUuid": "960c7c81-0601-11e8-ae97-52543be04c81"
},
{
"id": "49ad5236-61ab-4c07-b4b6-a8da11bffe83",
@@ -32515,6 +63069,52 @@
"source": "radio-browser",
"sourceStationUuid": "49ad5236-61ab-4c07-b4b6-a8da11bffe83"
},
+ {
+ "id": "701106b9-59e3-11ea-be63-52543be04c81",
+ "name": "SomaFM Heavyweight Reggae (256k MP3)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "reggae",
+ "rocksteady",
+ "roots reggae",
+ "ska"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://ice6.somafm.com/reggae-256-mp3",
+ "homepage": "https://somafm.com/reggae/",
+ "logoUrl": "https://somafm.com/img3/reggae400.jpg",
+ "votes": 5042,
+ "clickcount": 28,
+ "source": "radio-browser",
+ "sourceStationUuid": "701106b9-59e3-11ea-be63-52543be04c81"
+ },
+ {
+ "id": "0653bfab-cb60-44e9-9511-d89b993c48f9",
+ "name": "Non-Stop Oldies",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "70's",
+ "decades",
+ "motown",
+ "oldies",
+ "oldies 50's/60's",
+ "soul & great rock n' roll"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ais-sa2.cdnstream1.com/2383_128.mp3",
+ "homepage": "http://www.nonstopoldies.com/",
+ "logoUrl": "https://static.wixstatic.com/media/00a61a_a29da417d9ce44d18dc83e35a30c2f43.png/v1/crop/x_24,y_30,w_555,h_544/fill/w_136,h_133,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/00a61a_a29da417d9ce44d18dc83e35a30c2f43.png",
+ "votes": 853,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "0653bfab-cb60-44e9-9511-d89b993c48f9"
+ },
{
"id": "64bb1467-2585-4454-a96f-34cfbc864d41",
"name": "WALM 2 HD",
@@ -32538,7 +63138,7 @@
"homepage": "https://walmradio.com/walm2",
"logoUrl": "https://icecast.walmradio.com:8443/walm.jpg",
"votes": 89636,
- "clickcount": 28,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "64bb1467-2585-4454-a96f-34cfbc864d41"
},
@@ -32568,7 +63168,7 @@
"homepage": "https://werave.com.br/en",
"logoUrl": "https://werave.com.br/wp-content/uploads/cropped-weravemusic-180x180.png",
"votes": 1059,
- "clickcount": 27,
+ "clickcount": 26,
"source": "radio-browser",
"sourceStationUuid": "1f73fdc3-e4df-48db-bcec-83a9460f1c93"
},
@@ -32585,93 +63185,10 @@
"homepage": "http://www.classicrock109.com/site/index.html",
"logoUrl": null,
"votes": 2851,
- "clickcount": 26,
+ "clickcount": 25,
"source": "radio-browser",
"sourceStationUuid": "073c45b3-3f5a-451b-a93b-867fc250b6c2"
},
- {
- "id": "0653bfab-cb60-44e9-9511-d89b993c48f9",
- "name": "Non-Stop Oldies",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "70's",
- "decades",
- "motown",
- "oldies",
- "oldies 50's/60's",
- "soul & great rock n' roll"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ais-sa2.cdnstream1.com/2383_128.mp3",
- "homepage": "http://www.nonstopoldies.com/",
- "logoUrl": "https://static.wixstatic.com/media/00a61a_a29da417d9ce44d18dc83e35a30c2f43.png/v1/crop/x_24,y_30,w_555,h_544/fill/w_136,h_133,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/00a61a_a29da417d9ce44d18dc83e35a30c2f43.png",
- "votes": 853,
- "clickcount": 26,
- "source": "radio-browser",
- "sourceStationUuid": "0653bfab-cb60-44e9-9511-d89b993c48f9"
- },
- {
- "id": "bafbd6cc-65e0-4af7-907b-dd1c425e8917",
- "name": "70s 80s Disco Funk ModernSoul Boogie",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "1970s",
- "1980s",
- "70's",
- "70er",
- "70s",
- "70s disco",
- "80",
- "80's",
- "80er",
- "80s",
- "boogie",
- "funk"
- ],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://discofunk.streamingmedia.it/usa",
- "homepage": "https://funky.radio/discofunk_modernsoul_boogie",
- "logoUrl": null,
- "votes": 8078,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "bafbd6cc-65e0-4af7-907b-dd1c425e8917"
- },
- {
- "id": "24e3676a-8de5-474c-8ed2-288fbb66d447",
- "name": "Christmas Vinyl HD Opus",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": null,
- "tags": [
- "christian",
- "christmas",
- "easy listening",
- "hd",
- "holiday",
- "opus",
- "otr",
- "seasonal",
- "vintage",
- "vinyl",
- "walm"
- ],
- "codec": "OGG",
- "bitrate": 192,
- "streamUrl": "https://icecast.walmradio.com:8443/christmas_opus",
- "homepage": "https://walmradio.com/christmas",
- "logoUrl": "https://icecast.walmradio.com:8443/christmas.jpg",
- "votes": 56119,
- "clickcount": 25,
- "source": "radio-browser",
- "sourceStationUuid": "24e3676a-8de5-474c-8ed2-288fbb66d447"
- },
{
"id": "967684c3-2120-48a3-b0d2-c0bba1664865",
"name": "#1 HITS 80s",
@@ -32699,23 +63216,63 @@
"sourceStationUuid": "967684c3-2120-48a3-b0d2-c0bba1664865"
},
{
- "id": "7ac57607-cacc-441d-89fe-bcfc1a8faf36",
- "name": "Chillsynth",
+ "id": "bafbd6cc-65e0-4af7-907b-dd1c425e8917",
+ "name": "70s 80s Disco Funk ModernSoul Boogie",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "1970s",
+ "1980s",
+ "70's",
+ "70er",
+ "70s",
+ "70s disco",
+ "80",
+ "80's",
+ "80er",
+ "80s",
+ "boogie",
+ "funk"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://discofunk.streamingmedia.it/usa",
+ "homepage": "https://funky.radio/discofunk_modernsoul_boogie",
+ "logoUrl": null,
+ "votes": 8078,
+ "clickcount": 24,
+ "source": "radio-browser",
+ "sourceStationUuid": "bafbd6cc-65e0-4af7-907b-dd1c425e8917"
+ },
+ {
+ "id": "24e3676a-8de5-474c-8ed2-288fbb66d447",
+ "name": "Christmas Vinyl HD Opus",
"country": "The United States Of America",
"countryCode": "US",
"language": null,
"tags": [
- "electronic"
+ "christian",
+ "christmas",
+ "easy listening",
+ "hd",
+ "holiday",
+ "opus",
+ "otr",
+ "seasonal",
+ "vintage",
+ "vinyl",
+ "walm"
],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://stream.nightride.fm/chillsynth.mp3",
- "homepage": "https://nightride.fm/stations?station=chillsynth",
- "logoUrl": "https://nightride.fm/apple-touch-icon.png",
- "votes": 403,
- "clickcount": 23,
+ "codec": "OGG",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.walmradio.com:8443/christmas_opus",
+ "homepage": "https://walmradio.com/christmas",
+ "logoUrl": "https://icecast.walmradio.com:8443/christmas.jpg",
+ "votes": 56119,
+ "clickcount": 24,
"source": "radio-browser",
- "sourceStationUuid": "7ac57607-cacc-441d-89fe-bcfc1a8faf36"
+ "sourceStationUuid": "24e3676a-8de5-474c-8ed2-288fbb66d447"
},
{
"id": "f4896119-5e73-42be-8c07-bc1e7e79e815",
@@ -32761,6 +63318,66 @@
"source": "radio-browser",
"sourceStationUuid": "786d2939-00eb-479d-b3f0-f0f7673ea7e0"
},
+ {
+ "id": "da3527f7-b71e-49e0-a9d5-57102350ffc5",
+ "name": "Bloomberg Radio Boston",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "talk"
+ ],
+ "codec": "AAC+",
+ "bitrate": 112,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/WRCAAMAAC.aac",
+ "homepage": "https://www.bloombergradio.com/",
+ "logoUrl": "https://www.bloombergradio.com/content/plugins/bloomberg-favicon/dist/img/amber-120x120.png",
+ "votes": 983,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "da3527f7-b71e-49e0-a9d5-57102350ffc5"
+ },
+ {
+ "id": "7ac57607-cacc-441d-89fe-bcfc1a8faf36",
+ "name": "Chillsynth",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.nightride.fm/chillsynth.mp3",
+ "homepage": "https://nightride.fm/stations?station=chillsynth",
+ "logoUrl": "https://nightride.fm/apple-touch-icon.png",
+ "votes": 403,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ac57607-cacc-441d-89fe-bcfc1a8faf36"
+ },
+ {
+ "id": "960eb2e9-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Drone Zone (128k MP3)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "ambient",
+ "atmospheric",
+ "chillout",
+ "drone"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice4.somafm.com/dronezone-128-mp3",
+ "homepage": "https://somafm.com/dronezone/",
+ "logoUrl": "https://somafm.com/img3/dronezone-400.jpg",
+ "votes": 3694,
+ "clickcount": 22,
+ "source": "radio-browser",
+ "sourceStationUuid": "960eb2e9-0601-11e8-ae97-52543be04c81"
+ },
{
"id": "7094b698-b1ac-4f08-a6cd-ac35f906765d",
"name": "CNN International Audio",
@@ -32779,28 +63396,26 @@
"homepage": "https://www.cnn.com/",
"logoUrl": "https://raw.githubusercontent.com/AusIPTV/IPTVLogos/master/CNN_International_Logo.png",
"votes": 1492,
- "clickcount": 22,
+ "clickcount": 21,
"source": "radio-browser",
"sourceStationUuid": "7094b698-b1ac-4f08-a6cd-ac35f906765d"
},
{
- "id": "da3527f7-b71e-49e0-a9d5-57102350ffc5",
- "name": "Bloomberg Radio Boston",
+ "id": "87e3c4fa-7037-48a8-b083-3d81e1cea592",
+ "name": "KLVZ Legends 810AM/95.3 FM - Denver, CO",
"country": "The United States Of America",
"countryCode": "US",
- "language": "english",
- "tags": [
- "talk"
- ],
- "codec": "AAC+",
- "bitrate": 112,
- "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/WRCAAMAAC.aac",
- "homepage": "https://www.bloombergradio.com/",
- "logoUrl": "https://www.bloombergradio.com/content/plugins/bloomberg-favicon/dist/img/amber-120x120.png",
- "votes": 983,
- "clickcount": 21,
+ "language": "american english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://ais-sa8.cdnstream1.com/p1w7r97sb0k/c2g93fu0iqz",
+ "homepage": "https://www.legends953.com/",
+ "logoUrl": "https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/2174/2023/09/26121503/launch_icon.png",
+ "votes": 7,
+ "clickcount": 20,
"source": "radio-browser",
- "sourceStationUuid": "da3527f7-b71e-49e0-a9d5-57102350ffc5"
+ "sourceStationUuid": "87e3c4fa-7037-48a8-b083-3d81e1cea592"
},
{
"id": "744d4afd-05c2-4c84-b8e9-a64f66bf08fc",
@@ -32821,27 +63436,10 @@
"homepage": "https://superradio.cc/",
"logoUrl": null,
"votes": 1192,
- "clickcount": 21,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "744d4afd-05c2-4c84-b8e9-a64f66bf08fc"
},
- {
- "id": "87e3c4fa-7037-48a8-b083-3d81e1cea592",
- "name": "KLVZ Legends 810AM/95.3 FM - Denver, CO",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "american english",
- "tags": [],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://ais-sa8.cdnstream1.com/p1w7r97sb0k/c2g93fu0iqz",
- "homepage": "https://www.legends953.com/",
- "logoUrl": "https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/2174/2023/09/26121503/launch_icon.png",
- "votes": 7,
- "clickcount": 20,
- "source": "radio-browser",
- "sourceStationUuid": "87e3c4fa-7037-48a8-b083-3d81e1cea592"
- },
{
"id": "cd477c35-d625-11e8-a54a-52543be04c81",
"name": "Miami Beach Radio",
@@ -32859,31 +63457,37 @@
"homepage": "https://www.miamibeachradio.com/",
"logoUrl": "https://cdn-elements.radiostreamlive.com/v1/images/favicon.ico",
"votes": 13959,
- "clickcount": 20,
+ "clickcount": 19,
"source": "radio-browser",
"sourceStationUuid": "cd477c35-d625-11e8-a54a-52543be04c81"
},
{
- "id": "960eb2e9-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM Drone Zone (128k MP3)",
+ "id": "b96225b2-8536-4b9b-8add-03582fd2e6a2",
+ "name": "WALM 2 HD Opus",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "ambient",
- "atmospheric",
- "chillout",
- "drone"
+ "choral",
+ "christian",
+ "christian music",
+ "classical music",
+ "hymns",
+ "opus",
+ "orchestral",
+ "talk",
+ "talk radio",
+ "traditional christian"
],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice4.somafm.com/dronezone-128-mp3",
- "homepage": "https://somafm.com/dronezone/",
- "logoUrl": "https://somafm.com/img3/dronezone-400.jpg",
- "votes": 3694,
- "clickcount": 20,
+ "codec": "OGG",
+ "bitrate": 192,
+ "streamUrl": "https://icecast.walmradio.com:8443/walm2_opus",
+ "homepage": "https://walmradio.com/walm2",
+ "logoUrl": "https://icecast.walmradio.com:8443/walm.jpg",
+ "votes": 59214,
+ "clickcount": 19,
"source": "radio-browser",
- "sourceStationUuid": "960eb2e9-0601-11e8-ae97-52543be04c81"
+ "sourceStationUuid": "b96225b2-8536-4b9b-8add-03582fd2e6a2"
},
{
"id": "962aa032-0601-11e8-ae97-52543be04c81",
@@ -32933,26 +63537,6 @@
"source": "radio-browser",
"sourceStationUuid": "000f6a5e-fdbb-489c-90c5-89fd4c9e1113"
},
- {
- "id": "393224fb-a0a8-4685-ab4e-a5ced5c80d93",
- "name": "SmoothJazz.com 64k aac+",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": null,
- "tags": [
- "monterey",
- "smooth jazz"
- ],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://smoothjazz.cdnstream1.com/2585_64.aac",
- "homepage": "https://www.smoothjazz.com/",
- "logoUrl": "https://www.smoothjazz.com/sites/default/files/theme/sj-circle-logo.png",
- "votes": 337,
- "clickcount": 17,
- "source": "radio-browser",
- "sourceStationUuid": "393224fb-a0a8-4685-ab4e-a5ced5c80d93"
- },
{
"id": "a4192629-2918-4416-b614-9e4d49a1f9be",
"name": "Frisky",
@@ -32976,6 +63560,27 @@
"source": "radio-browser",
"sourceStationUuid": "a4192629-2918-4416-b614-9e4d49a1f9be"
},
+ {
+ "id": "a807ecc5-8410-4704-bac4-aed64ba76742",
+ "name": "SomaFM Deep Space One (128k MP3)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "ambient",
+ "electronic",
+ "space"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice6.somafm.com/deepspaceone-128-mp3",
+ "homepage": "https://somafm.com/deepspaceone/",
+ "logoUrl": "http://somafm.com/img3/deepspaceone-400.jpg",
+ "votes": 237,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "a807ecc5-8410-4704-bac4-aed64ba76742"
+ },
{
"id": "c16337ec-14be-423d-a9fe-3ec7ed9aa373",
"name": "自由亚洲",
@@ -32997,74 +63602,24 @@
"sourceStationUuid": "c16337ec-14be-423d-a9fe-3ec7ed9aa373"
},
{
- "id": "b96225b2-8536-4b9b-8add-03582fd2e6a2",
- "name": "WALM 2 HD Opus",
+ "id": "393224fb-a0a8-4685-ab4e-a5ced5c80d93",
+ "name": "SmoothJazz.com 64k aac+",
"country": "The United States Of America",
"countryCode": "US",
- "language": "english",
+ "language": null,
"tags": [
- "choral",
- "christian",
- "christian music",
- "classical music",
- "hymns",
- "opus",
- "orchestral",
- "talk",
- "talk radio",
- "traditional christian"
+ "monterey",
+ "smooth jazz"
],
- "codec": "OGG",
- "bitrate": 192,
- "streamUrl": "https://icecast.walmradio.com:8443/walm2_opus",
- "homepage": "https://walmradio.com/walm2",
- "logoUrl": "https://icecast.walmradio.com:8443/walm.jpg",
- "votes": 59214,
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://smoothjazz.cdnstream1.com/2585_64.aac",
+ "homepage": "https://www.smoothjazz.com/",
+ "logoUrl": "https://www.smoothjazz.com/sites/default/files/theme/sj-circle-logo.png",
+ "votes": 337,
"clickcount": 15,
"source": "radio-browser",
- "sourceStationUuid": "b96225b2-8536-4b9b-8add-03582fd2e6a2"
- },
- {
- "id": "7b49c831-83e8-407a-a655-0ff50b2869f6",
- "name": "Free FM 80s San Francisco",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "#english",
- "tags": [
- "#80",
- "#80s",
- "80s"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://freefm80.radioca.st/",
- "homepage": "http://www.freefmworld.com/",
- "logoUrl": "https://lh5.googleusercontent.com/h_uHjSxZZ4iir8iw8zBcv84t38DX33BPd0x1cG0RKw1wbWAwGwImnUhtfFepUDc_T_SLbuAdiLOSaageDeGoOnKyAEQxzPY9cH2neNhvxjIFAvnbzjs3E_zrw0xasWgj=w1280",
- "votes": 726,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "7b49c831-83e8-407a-a655-0ff50b2869f6"
- },
- {
- "id": "a807ecc5-8410-4704-bac4-aed64ba76742",
- "name": "SomaFM Deep Space One (128k MP3)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "ambient",
- "electronic",
- "space"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice6.somafm.com/deepspaceone-128-mp3",
- "homepage": "https://somafm.com/deepspaceone/",
- "logoUrl": "http://somafm.com/img3/deepspaceone-400.jpg",
- "votes": 237,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "a807ecc5-8410-4704-bac4-aed64ba76742"
+ "sourceStationUuid": "393224fb-a0a8-4685-ab4e-a5ced5c80d93"
},
{
"id": "d420bcf1-bb4c-11e9-acb2-52543be04c81",
@@ -33087,27 +63642,6 @@
"source": "radio-browser",
"sourceStationUuid": "d420bcf1-bb4c-11e9-acb2-52543be04c81"
},
- {
- "id": "960e0117-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM PopTron (128k MP3)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "electropop",
- "indie",
- "synthpop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice2.somafm.com/poptron-128-mp3",
- "homepage": "https://somafm.com/poptron/",
- "logoUrl": "https://somafm.com/img3/poptron-400.png",
- "votes": 22251,
- "clickcount": 14,
- "source": "radio-browser",
- "sourceStationUuid": "960e0117-0601-11e8-ae97-52543be04c81"
- },
{
"id": "83accca7-b878-419d-a506-3d21ef2f250f",
"name": "SomaFM Synphaera Radio",
@@ -33130,29 +63664,86 @@
"sourceStationUuid": "83accca7-b878-419d-a506-3d21ef2f250f"
},
{
- "id": "9fe19f6a-6e9c-4c58-bdf1-4d8431934d09",
- "name": "Radio Paradise Main Mix FLAC",
+ "id": "cb136507-425b-4934-8991-d7fc8873c849",
+ "name": "Sunset Chillout Lounge",
"country": "The United States Of America",
"countryCode": "US",
- "language": "american english",
+ "language": null,
"tags": [
- "california",
- "eclectic",
- "free",
- "internet",
- "non-commercial",
- "paradise",
- "radio"
+ "chillout",
+ "lounge",
+ "sunset"
],
- "codec": "OGG",
- "bitrate": 1441,
- "streamUrl": "https://stream.radioparadise.com/flac",
- "homepage": "https://radioparadise.com/",
- "logoUrl": "https://radioparadise.com/apple-touch-icon.png",
- "votes": 1578,
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://listen.radioking.com/radio/571682/stream/631712",
+ "homepage": "https://sunsetchilloutlounge.com/",
+ "logoUrl": "https://sunsetchilloutlounge.com/wp-content/uploads/2023/04/sunrise_sunset_captions_puns_quotes_instagram-7-300x225.jpg",
+ "votes": 292,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "cb136507-425b-4934-8991-d7fc8873c849"
+ },
+ {
+ "id": "ba3ad919-0516-485c-bce6-b27c4492ab14",
+ "name": "Z100 - New York's #1 Hit Music Station WHTZ",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "iheart",
+ "liberal",
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.revma.ihrhls.com/zc1469",
+ "homepage": "https://z100.iheart.com/",
+ "logoUrl": "https://external-content.duckduckgo.com/ip3/z100.iheart.com.ico",
+ "votes": 2553,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "ba3ad919-0516-485c-bce6-b27c4492ab14"
+ },
+ {
+ "id": "96147f07-0601-11e8-ae97-52543be04c81",
+ "name": "Christian Power Praise Dot Net",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "christian",
+ "praise",
+ "worship",
+ "christianpowerpraise.net",
+ "cppdn"
+ ],
+ "codec": "AAC",
+ "bitrate": 120,
+ "streamUrl": "https://listen.christianrock.net/stream/13/",
+ "homepage": "https://www.christianpowerpraise.net/",
+ "logoUrl": "https://www.christianpowerpraise.net/apple-touch-icon.png",
+ "votes": 2141,
"clickcount": 13,
"source": "radio-browser",
- "sourceStationUuid": "9fe19f6a-6e9c-4c58-bdf1-4d8431934d09"
+ "sourceStationUuid": "96147f07-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "0af543e7-f8a6-4f0e-afde-bd5fe4420520",
+ "name": "Outlaw Country Radio",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://usa17.fastcast4u.com/proxy/kievradio?mp=/1",
+ "homepage": "https://www.outlaw.fm/",
+ "logoUrl": "https://fastcast4u.com/player/kievradio/_user/cover/k/kievradio/ch0_permanent.png",
+ "votes": 719,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "0af543e7-f8a6-4f0e-afde-bd5fe4420520"
},
{
"id": "5b59ea80-6ce9-11e8-b15b-52543be04c81",
@@ -33200,83 +63791,24 @@
"sourceStationUuid": "e6fa9a8a-02a8-11e9-a1be-52543be04c81"
},
{
- "id": "cb136507-425b-4934-8991-d7fc8873c849",
- "name": "Sunset Chillout Lounge",
+ "id": "a2bdf19f-b5b8-4ab6-b12b-591d415897d6",
+ "name": "Classical King FM - Evergreen Channel",
"country": "The United States Of America",
"countryCode": "US",
- "language": null,
+ "language": "american english,english",
"tags": [
- "chillout",
- "lounge",
- "sunset"
+ "classical",
+ "classical music"
],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://listen.radioking.com/radio/571682/stream/631712",
- "homepage": "https://sunsetchilloutlounge.com/",
- "logoUrl": "https://sunsetchilloutlounge.com/wp-content/uploads/2023/04/sunrise_sunset_captions_puns_quotes_instagram-7-300x225.jpg",
- "votes": 292,
- "clickcount": 13,
- "source": "radio-browser",
- "sourceStationUuid": "cb136507-425b-4934-8991-d7fc8873c849"
- },
- {
- "id": "8fbe9ffe-2ab4-4faa-85cc-251cc68d0f4f",
- "name": "Vocaloid Radio (320kbps)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "japanese",
- "tags": [
- "anime",
- "vocaloid"
- ],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://vocaloid.radioca.st/stream",
- "homepage": "https://vocaloidradio.com/",
- "logoUrl": "https://vocaloidradio.com/favicon.ico",
- "votes": 315,
- "clickcount": 13,
- "source": "radio-browser",
- "sourceStationUuid": "8fbe9ffe-2ab4-4faa-85cc-251cc68d0f4f"
- },
- {
- "id": "ba3ad919-0516-485c-bce6-b27c4492ab14",
- "name": "Z100 - New York's #1 Hit Music Station WHTZ",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "iheart",
- "liberal",
- "pop"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://stream.revma.ihrhls.com/zc1469",
- "homepage": "https://z100.iheart.com/",
- "logoUrl": "https://external-content.duckduckgo.com/ip3/z100.iheart.com.ico",
- "votes": 2553,
- "clickcount": 13,
- "source": "radio-browser",
- "sourceStationUuid": "ba3ad919-0516-485c-bce6-b27c4492ab14"
- },
- {
- "id": "405a606d-5bb8-45c1-bfc1-4c2ad879e53d",
- "name": "Conyers Old Time Radio 2nd Stream",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://s6.yesstreaming.net:17082/stream",
- "homepage": "https://conyersradio.net/",
- "logoUrl": null,
- "votes": 195,
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://classicalking.streamguys1.com/evergreen-aac-128k",
+ "homepage": "https://www.king.org/",
+ "logoUrl": "https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/1108/2019/05/15152826/cropped-favico-192x192.png",
+ "votes": 567,
"clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "405a606d-5bb8-45c1-bfc1-4c2ad879e53d"
+ "sourceStationUuid": "a2bdf19f-b5b8-4ab6-b12b-591d415897d6"
},
{
"id": "8a18c2ff-bdb9-4bfc-9707-091c12086fea",
@@ -33321,23 +63853,6 @@
"source": "radio-browser",
"sourceStationUuid": "1d730b8a-49e2-403d-870c-07b1e27be7fd"
},
- {
- "id": "0af543e7-f8a6-4f0e-afde-bd5fe4420520",
- "name": "Outlaw Country Radio",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 320,
- "streamUrl": "https://usa17.fastcast4u.com/proxy/kievradio?mp=/1",
- "homepage": "https://www.outlaw.fm/",
- "logoUrl": "https://fastcast4u.com/player/kievradio/_user/cover/k/kievradio/ch0_permanent.png",
- "votes": 719,
- "clickcount": 12,
- "source": "radio-browser",
- "sourceStationUuid": "0af543e7-f8a6-4f0e-afde-bd5fe4420520"
- },
{
"id": "02f3876d-ee77-449b-bae4-6cbb335d414b",
"name": "Radio Paradise Mellow Mix FLAC",
@@ -33364,118 +63879,68 @@
"sourceStationUuid": "02f3876d-ee77-449b-bae4-6cbb335d414b"
},
{
- "id": "96147f07-0601-11e8-ae97-52543be04c81",
- "name": "Christian Power Praise Dot Net",
+ "id": "960e0117-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM PopTron (128k MP3)",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "christian",
- "praise",
- "worship",
- "christianpowerpraise.net",
- "cppdn"
+ "electropop",
+ "indie",
+ "synthpop"
],
- "codec": "AAC",
- "bitrate": 120,
- "streamUrl": "https://listen.christianrock.net/stream/13/",
- "homepage": "https://www.christianpowerpraise.net/",
- "logoUrl": "https://www.christianpowerpraise.net/apple-touch-icon.png",
- "votes": 2141,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "96147f07-0601-11e8-ae97-52543be04c81"
- },
- {
- "id": "a2bdf19f-b5b8-4ab6-b12b-591d415897d6",
- "name": "Classical King FM - Evergreen Channel",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "american english,english",
- "tags": [
- "classical",
- "classical music"
- ],
- "codec": "AAC+",
+ "codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://classicalking.streamguys1.com/evergreen-aac-128k",
- "homepage": "https://www.king.org/",
- "logoUrl": "https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/1108/2019/05/15152826/cropped-favico-192x192.png",
- "votes": 567,
- "clickcount": 11,
+ "streamUrl": "https://ice2.somafm.com/poptron-128-mp3",
+ "homepage": "https://somafm.com/poptron/",
+ "logoUrl": "https://somafm.com/img3/poptron-400.png",
+ "votes": 22251,
+ "clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "a2bdf19f-b5b8-4ab6-b12b-591d415897d6"
+ "sourceStationUuid": "960e0117-0601-11e8-ae97-52543be04c81"
},
{
- "id": "c7e5b008-2c9f-4a10-b431-41b7d0b06af2",
- "name": "Free FM New York",
+ "id": "8fbe9ffe-2ab4-4faa-85cc-251cc68d0f4f",
+ "name": "Vocaloid Radio (320kbps)",
"country": "The United States Of America",
"countryCode": "US",
- "language": "english,german,spanish",
+ "language": "japanese",
"tags": [
- "#90s",
- "#free",
- "#freefm",
- "#pop",
- "80s",
- "90s",
- "pop music",
- "rock"
+ "anime",
+ "vocaloid"
],
"codec": "MP3",
"bitrate": 320,
- "streamUrl": "https://rocafmadrid.radioca.st/",
- "homepage": "http://freefmradio.net/",
- "logoUrl": "https://3.bp.blogspot.com/-BTWauI1ML7o/XZOklz5WuRI/AAAAAAAAAeA/R8qBxhme8UEELRogqYOhtWG4p0BVhiwVgCK4BGAYYCw/s752/free%2Bancho.jpg",
- "votes": 825,
- "clickcount": 11,
+ "streamUrl": "https://vocaloid.radioca.st/stream",
+ "homepage": "https://vocaloidradio.com/",
+ "logoUrl": "https://vocaloidradio.com/favicon.ico",
+ "votes": 315,
+ "clickcount": 12,
"source": "radio-browser",
- "sourceStationUuid": "c7e5b008-2c9f-4a10-b431-41b7d0b06af2"
+ "sourceStationUuid": "8fbe9ffe-2ab4-4faa-85cc-251cc68d0f4f"
},
{
- "id": "69363afd-b084-41e6-a0d4-79bebb629204",
- "name": "Groovy Radio - 60's and 70's Oldies",
+ "id": "e381cf75-d1b3-4aab-9be0-2d0bb58ce53f",
+ "name": "ABC News Live",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "60's",
- "70's",
- "oldies"
+ "abc",
+ "news",
+ "国家台",
+ "新闻",
+ "综合"
],
- "codec": "MP3",
- "bitrate": 160,
- "streamUrl": "https://r1.comcities.com/proxy/emogddug/stream",
- "homepage": "https://groovyradio.us/",
- "logoUrl": "https://kvkvi.com/wp-content/uploads/2024/02/luxa.org-bordered-Groovy-White-600x600-jpg.jpg",
- "votes": 314,
+ "codec": "AAC+,H.264",
+ "bitrate": 1840,
+ "streamUrl": "https://content.uplynk.com/channel/3324f2467c414329b3b0cc5cd987b6be.m3u8",
+ "homepage": "https://superradio.cc/",
+ "logoUrl": null,
+ "votes": 858,
"clickcount": 11,
"source": "radio-browser",
- "sourceStationUuid": "69363afd-b084-41e6-a0d4-79bebb629204"
- },
- {
- "id": "2e53ff8e-1d21-4e04-b0e9-f68257c4e7e9",
- "name": "OnlyHit K-Pop",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english,korean",
- "tags": [
- "hits",
- "k-pop",
- "korean",
- "korean music",
- "korean pop",
- "kpop"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://kpop.onlyhit.us/play",
- "homepage": "https://onlyhit.us/",
- "logoUrl": "https://kpop.onlyhit.us/logo.png",
- "votes": 128,
- "clickcount": 11,
- "source": "radio-browser",
- "sourceStationUuid": "2e53ff8e-1d21-4e04-b0e9-f68257c4e7e9"
+ "sourceStationUuid": "e381cf75-d1b3-4aab-9be0-2d0bb58ce53f"
},
{
"id": "7b5b6832-98c3-4d3f-ba4f-87cf46e2d6e2",
@@ -33592,27 +64057,21 @@
"sourceStationUuid": "dbeea354-e9ed-43dc-b7e6-e83c1955e5a7"
},
{
- "id": "e381cf75-d1b3-4aab-9be0-2d0bb58ce53f",
- "name": "ABC News Live",
+ "id": "a64d61e0-48b9-4bfc-a57c-0117f58b9ea4",
+ "name": "90's Country Music Radio",
"country": "The United States Of America",
"countryCode": "US",
- "language": "english",
- "tags": [
- "abc",
- "news",
- "国家台",
- "新闻",
- "综合"
- ],
- "codec": "AAC+,H.264",
- "bitrate": 1840,
- "streamUrl": "https://content.uplynk.com/channel/3324f2467c414329b3b0cc5cd987b6be.m3u8",
- "homepage": "https://superradio.cc/",
- "logoUrl": null,
- "votes": 858,
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://2.mystreaming.net/uber/cmr90scountry/icecast.audio",
+ "homepage": "https://mytuner-radio.com/radio/country-music-radio-90s-country-487905/",
+ "logoUrl": "https://static2.mytuner.mobi/media/tvos_radios/905/country-music-radio-90s-country.5f83bb9f.png",
+ "votes": 576,
"clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "e381cf75-d1b3-4aab-9be0-2d0bb58ce53f"
+ "sourceStationUuid": "a64d61e0-48b9-4bfc-a57c-0117f58b9ea4"
},
{
"id": "655def6d-734f-4ef7-972a-6abc56763162",
@@ -33635,60 +64094,144 @@
"sourceStationUuid": "655def6d-734f-4ef7-972a-6abc56763162"
},
{
- "id": "70012ddb-d075-441a-996c-c9ed1341b146",
- "name": "美国之音",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "chinese",
- "tags": [
- "information"
- ],
- "codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://stream.zeno.fm/u87dfeeyk2zuv",
- "homepage": "http://www.xsbnrtv.cn/",
- "logoUrl": null,
- "votes": 440,
- "clickcount": 10,
- "source": "radio-browser",
- "sourceStationUuid": "70012ddb-d075-441a-996c-c9ed1341b146"
- },
- {
- "id": "c76686ca-a8b9-4db9-9839-1470c9599623",
- "name": "102.7 KIIS FM",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "pop",
- "top 40"
- ],
- "codec": "AAC",
- "bitrate": 0,
- "streamUrl": "https://stream.revma.ihrhls.com/zc185",
- "homepage": "https://kiisfm.iheart.com/",
- "logoUrl": "https://i.iheart.com/v3/re/assets.brands/2ebe753539305728784b0f3b178eae45?ops=new(),flood(%22white%22),swap(),merge(%22over%22),gravity(%22center%22),contain(167,167),quality(80),format(%22png%22)",
- "votes": 1690,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "c76686ca-a8b9-4db9-9839-1470c9599623"
- },
- {
- "id": "a64d61e0-48b9-4bfc-a57c-0117f58b9ea4",
- "name": "90's Country Music Radio",
+ "id": "405a606d-5bb8-45c1-bfc1-4c2ad879e53d",
+ "name": "Conyers Old Time Radio 2nd Stream",
"country": "The United States Of America",
"countryCode": "US",
"language": null,
"tags": [],
"codec": "MP3",
- "bitrate": 0,
- "streamUrl": "https://2.mystreaming.net/uber/cmr90scountry/icecast.audio",
- "homepage": "https://mytuner-radio.com/radio/country-music-radio-90s-country-487905/",
- "logoUrl": "https://static2.mytuner.mobi/media/tvos_radios/905/country-music-radio-90s-country.5f83bb9f.png",
- "votes": 576,
- "clickcount": 9,
+ "bitrate": 64,
+ "streamUrl": "https://s6.yesstreaming.net:17082/stream",
+ "homepage": "https://conyersradio.net/",
+ "logoUrl": null,
+ "votes": 195,
+ "clickcount": 10,
"source": "radio-browser",
- "sourceStationUuid": "a64d61e0-48b9-4bfc-a57c-0117f58b9ea4"
+ "sourceStationUuid": "405a606d-5bb8-45c1-bfc1-4c2ad879e53d"
+ },
+ {
+ "id": "74eac2e4-dd81-48d3-b47f-87f2f2a8b45a",
+ "name": "EROTICA LOUNGE",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "ambient",
+ "chillout",
+ "chillout+lounge",
+ "jazz fusion",
+ "nu jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/89asra0sfa0uv",
+ "homepage": "https://tunein.com/radio/EROTICA-LOUNGE-s260655/",
+ "logoUrl": null,
+ "votes": 857,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "74eac2e4-dd81-48d3-b47f-87f2f2a8b45a"
+ },
+ {
+ "id": "69363afd-b084-41e6-a0d4-79bebb629204",
+ "name": "Groovy Radio - 60's and 70's Oldies",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "60's",
+ "70's",
+ "oldies"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://r1.comcities.com/proxy/emogddug/stream",
+ "homepage": "https://groovyradio.us/",
+ "logoUrl": "https://kvkvi.com/wp-content/uploads/2024/02/luxa.org-bordered-Groovy-White-600x600-jpg.jpg",
+ "votes": 314,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "69363afd-b084-41e6-a0d4-79bebb629204"
+ },
+ {
+ "id": "7fad4733-280c-4ed7-b92a-5558fee04f42",
+ "name": "HD Radio - The Blues",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://haradioblues-rfritschka.radioca.st/",
+ "homepage": "http://www.hd-radio.net/",
+ "logoUrl": null,
+ "votes": 661,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "7fad4733-280c-4ed7-b92a-5558fee04f42"
+ },
+ {
+ "id": "491fbb30-9a91-44e3-a7d6-0d4d821090b1",
+ "name": "Magic 80s Florida (128 kbit/s)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "american english",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://streaming.live365.com/a79417",
+ "homepage": "https://magicoldiesflorida.com/",
+ "logoUrl": "null",
+ "votes": 484,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "491fbb30-9a91-44e3-a7d6-0d4d821090b1"
+ },
+ {
+ "id": "9fe19f6a-6e9c-4c58-bdf1-4d8431934d09",
+ "name": "Radio Paradise Main Mix FLAC",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "american english",
+ "tags": [
+ "california",
+ "eclectic",
+ "free",
+ "internet",
+ "non-commercial",
+ "paradise",
+ "radio"
+ ],
+ "codec": "OGG",
+ "bitrate": 1441,
+ "streamUrl": "https://stream.radioparadise.com/flac",
+ "homepage": "https://radioparadise.com/",
+ "logoUrl": "https://radioparadise.com/apple-touch-icon.png",
+ "votes": 1578,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "9fe19f6a-6e9c-4c58-bdf1-4d8431934d09"
+ },
+ {
+ "id": "9614f116-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Suburbs of Goa (128k AAC)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "desi-influenced asian",
+ "world beats"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://ice4.somafm.com/suburbsofgoa-128-aac",
+ "homepage": "https://somafm.com/suburbsofgoa/",
+ "logoUrl": "https://somafm.com/img3/suburbsofgoa-400.png",
+ "votes": 2243,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "9614f116-0601-11e8-ae97-52543be04c81"
},
{
"id": "e03033f5-0259-451c-909a-70cd8fee8494",
@@ -33708,57 +64251,86 @@
"sourceStationUuid": "e03033f5-0259-451c-909a-70cd8fee8494"
},
{
- "id": "0da886fb-afb7-497f-a5c7-d0a7dddfccad",
- "name": "Classic Rock Florida",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": null,
- "tags": [],
- "codec": "MP3",
- "bitrate": 192,
- "streamUrl": "https://streaming.live365.com/a06375",
- "homepage": "https://classicrockflorida.com/",
- "logoUrl": null,
- "votes": 589,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "0da886fb-afb7-497f-a5c7-d0a7dddfccad"
- },
- {
- "id": "8db50028-caf7-4a39-a70b-2b71500560f6",
- "name": "Hawaii Reggae Network",
+ "id": "8bd983bb-80a0-48cf-a1d4-4bc7484719d7",
+ "name": "Chill Lounge Florida (USA) 128k mp3",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "reggae"
+ "ambient",
+ "chill",
+ "chillout",
+ "lounge"
],
- "codec": "AAC+",
- "bitrate": 64,
- "streamUrl": "https://ice8.securenetsystems.net/HRNO",
- "homepage": "https://hawaiireggaenetwork.com/",
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://vip2.fastcast4u.com/proxy/chillfla?mp=/1",
+ "homepage": "https://vip2.fastcast4u.com/proxy/chillfla?mp=/1",
"logoUrl": null,
- "votes": 111,
+ "votes": 1166,
"clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "8db50028-caf7-4a39-a70b-2b71500560f6"
+ "sourceStationUuid": "8bd983bb-80a0-48cf-a1d4-4bc7484719d7"
},
{
- "id": "7fad4733-280c-4ed7-b92a-5558fee04f42",
- "name": "HD Radio - The Blues",
+ "id": "90ae9607-5033-4ce3-9540-f995b73ff19a",
+ "name": "HPR4 Bluegrass Gospel",
"country": "The United States Of America",
"countryCode": "US",
"language": null,
- "tags": [],
+ "tags": [
+ "country"
+ ],
"codec": "MP3",
"bitrate": 128,
- "streamUrl": "https://haradioblues-rfritschka.radioca.st/",
- "homepage": "http://www.hd-radio.net/",
- "logoUrl": null,
- "votes": 661,
+ "streamUrl": "https://us2.maindigitalstream.com/ssl/7739",
+ "homepage": "https://hpr.org/",
+ "logoUrl": "http://www.hpr.org/icon-normal.png",
+ "votes": 290,
"clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "7fad4733-280c-4ed7-b92a-5558fee04f42"
+ "sourceStationUuid": "90ae9607-5033-4ce3-9540-f995b73ff19a"
+ },
+ {
+ "id": "e93ba8c4-6387-4bcc-9e78-31b9df42977c",
+ "name": "Kannaka Radio",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "ai",
+ "ambient",
+ "consciousness",
+ "electronic",
+ "experimental",
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio.ninja-portal.com/preview",
+ "homepage": "https://radio.ninja-portal.com/",
+ "logoUrl": "https://radio.ninja-portal.com/favicon.svg",
+ "votes": 0,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "e93ba8c4-6387-4bcc-9e78-31b9df42977c"
+ },
+ {
+ "id": "445cbb3a-1c4e-49aa-a268-f5b6acfa8f2e",
+ "name": "KEXP 90.3 Seattle, WA (AAC 160K)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 162,
+ "streamUrl": "https://kexp.streamguys1.com/kexp160.aac",
+ "homepage": "https://www.kexp.org/",
+ "logoUrl": "http://www.kexp.org/static/assets/img/favicon-32x32.png",
+ "votes": 467,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "445cbb3a-1c4e-49aa-a268-f5b6acfa8f2e"
},
{
"id": "c624a501-939a-11e9-a605-52543be04c81",
@@ -33782,41 +64354,48 @@
"sourceStationUuid": "c624a501-939a-11e9-a605-52543be04c81"
},
{
- "id": "491fbb30-9a91-44e3-a7d6-0d4d821090b1",
- "name": "Magic 80s Florida (128 kbit/s)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "american english",
- "tags": [],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://streaming.live365.com/a79417",
- "homepage": "https://magicoldiesflorida.com/",
- "logoUrl": "null",
- "votes": 484,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "491fbb30-9a91-44e3-a7d6-0d4d821090b1"
- },
- {
- "id": "9614f116-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM Suburbs of Goa (128k AAC)",
+ "id": "7f925432-152f-11ea-a87e-52543be04c81",
+ "name": "SomaFM Lush (128k AAC)",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "desi-influenced asian",
- "world beats"
+ "electronic",
+ "femalevocals",
+ "lounge",
+ "mellow",
+ "vocal"
],
"codec": "AAC",
"bitrate": 128,
- "streamUrl": "https://ice4.somafm.com/suburbsofgoa-128-aac",
- "homepage": "https://somafm.com/suburbsofgoa/",
- "logoUrl": "https://somafm.com/img3/suburbsofgoa-400.png",
- "votes": 2243,
+ "streamUrl": "https://ice5.somafm.com/lush-128-aac",
+ "homepage": "https://somafm.com/lush/",
+ "logoUrl": "https://somafm.com/img3/lush-400.jpg",
+ "votes": 564,
"clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "9614f116-0601-11e8-ae97-52543be04c81"
+ "sourceStationUuid": "7f925432-152f-11ea-a87e-52543be04c81"
+ },
+ {
+ "id": "961249b2-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Sonic Universe (128k MP3)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "avant-garde",
+ "eclectic",
+ "jazz"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice5.somafm.com/sonicuniverse-128-mp3",
+ "homepage": "https://somafm.com/sonicuniverse/",
+ "logoUrl": "https://somafm.com/img3/sonicuniverse-400.jpg",
+ "votes": 2496,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "961249b2-0601-11e8-ae97-52543be04c81"
},
{
"id": "1e73bd72-0693-442a-b6f6-4983bd4d2cd7",
@@ -33901,133 +64480,86 @@
"sourceStationUuid": "960dd7a5-0601-11e8-ae97-52543be04c81"
},
{
- "id": "b05b65e3-0936-4e7b-9f07-364cba23d7b2",
+ "id": "70012ddb-d075-441a-996c-c9ed1341b146",
"name": "美国之音",
"country": "The United States Of America",
"countryCode": "US",
- "language": "国语",
+ "language": "chinese",
"tags": [
- "新闻"
- ],
- "codec": "AAC",
- "bitrate": 140,
- "streamUrl": "https://voa-ingest.akamaized.net/hls/live/2035206/151_124L/playlist.m3u8",
- "homepage": "https://voa-ingest.akamaized.net/",
- "logoUrl": "null",
- "votes": 2988,
- "clickcount": 9,
- "source": "radio-browser",
- "sourceStationUuid": "b05b65e3-0936-4e7b-9f07-364cba23d7b2"
- },
- {
- "id": "38055669-97a7-11e9-a605-52543be04c81",
- "name": "Conyers Old Time Radio",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "christmas",
- "d-day",
- "halloween",
- "old time radio",
- "radio drama"
+ "information"
],
"codec": "MP3",
- "bitrate": 64,
- "streamUrl": "https://s8.yesstreaming.net:17011/stream",
- "homepage": "http://www.conyersradio.net/",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/u87dfeeyk2zuv",
+ "homepage": "http://www.xsbnrtv.cn/",
"logoUrl": null,
- "votes": 973,
- "clickcount": 8,
+ "votes": 440,
+ "clickcount": 9,
"source": "radio-browser",
- "sourceStationUuid": "38055669-97a7-11e9-a605-52543be04c81"
+ "sourceStationUuid": "70012ddb-d075-441a-996c-c9ed1341b146"
},
{
- "id": "77d0a14d-96d7-44ec-92f2-0a2db9260b8d",
- "name": "HOT 93.5 Old School",
+ "id": "c76686ca-a8b9-4db9-9839-1470c9599623",
+ "name": "102.7 KIIS FM",
"country": "The United States Of America",
"countryCode": "US",
"language": "english",
"tags": [
- "hip hop"
+ "pop",
+ "top 40"
],
"codec": "AAC",
"bitrate": 0,
- "streamUrl": "https://stream.revma.ihrhls.com/zc6841",
- "homepage": "https://hotelpaso.iheart.com/",
- "logoUrl": "https://i.iheart.com/v3/re/assets.brands/1f67e399b15c874f81d7a053b849ae5e?ops=gravity(%22center%22),contain(32,32),quality(65)",
- "votes": 717,
+ "streamUrl": "https://stream.revma.ihrhls.com/zc185",
+ "homepage": "https://kiisfm.iheart.com/",
+ "logoUrl": "https://i.iheart.com/v3/re/assets.brands/2ebe753539305728784b0f3b178eae45?ops=new(),flood(%22white%22),swap(),merge(%22over%22),gravity(%22center%22),contain(167,167),quality(80),format(%22png%22)",
+ "votes": 1690,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "77d0a14d-96d7-44ec-92f2-0a2db9260b8d"
+ "sourceStationUuid": "c76686ca-a8b9-4db9-9839-1470c9599623"
},
{
- "id": "445cbb3a-1c4e-49aa-a268-f5b6acfa8f2e",
- "name": "KEXP 90.3 Seattle, WA (AAC 160K)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [],
- "codec": "AAC",
- "bitrate": 162,
- "streamUrl": "https://kexp.streamguys1.com/kexp160.aac",
- "homepage": "https://www.kexp.org/",
- "logoUrl": "http://www.kexp.org/static/assets/img/favicon-32x32.png",
- "votes": 467,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "445cbb3a-1c4e-49aa-a268-f5b6acfa8f2e"
- },
- {
- "id": "961249b2-0601-11e8-ae97-52543be04c81",
- "name": "SomaFM Sonic Universe (128k MP3)",
- "country": "The United States Of America",
- "countryCode": "US",
- "language": "english",
- "tags": [
- "avant-garde",
- "eclectic",
- "jazz"
- ],
- "codec": "MP3",
- "bitrate": 128,
- "streamUrl": "https://ice5.somafm.com/sonicuniverse-128-mp3",
- "homepage": "https://somafm.com/sonicuniverse/",
- "logoUrl": "https://somafm.com/img3/sonicuniverse-400.jpg",
- "votes": 2496,
- "clickcount": 8,
- "source": "radio-browser",
- "sourceStationUuid": "961249b2-0601-11e8-ae97-52543be04c81"
- },
- {
- "id": "64b357e7-d9e9-4cb6-99b5-4cb6cef785cc",
- "name": "WALM - Old Time Radio Opus",
+ "id": "a4e252d8-befe-4e4d-9b61-3899d419cd42",
+ "name": "America OLD time Radio",
"country": "The United States Of America",
"countryCode": "US",
"language": null,
"tags": [
- "78",
- "78-rpm",
- "78rpm",
- "classic",
- "comedy",
- "drama",
- "easy listening",
- "musical",
- "mystery",
"old time radio",
- "opus",
"otr"
],
- "codec": "OGG",
- "bitrate": 32,
- "streamUrl": "https://icecast.walmradio.com:8443/otr_opus",
- "homepage": "https://walmradio.com/otr",
- "logoUrl": "https://icecast.walmradio.com:8443/otr.jpg",
- "votes": 7865,
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kea.cdnstream.com/1893_128",
+ "homepage": "https://kea.cdnstream.com/1893_128",
+ "logoUrl": null,
+ "votes": 53,
"clickcount": 8,
"source": "radio-browser",
- "sourceStationUuid": "64b357e7-d9e9-4cb6-99b5-4cb6cef785cc"
+ "sourceStationUuid": "a4e252d8-befe-4e4d-9b61-3899d419cd42"
+ },
+ {
+ "id": "961173b5-0601-11e8-ae97-52543be04c81",
+ "name": "SomaFM Lush (128k MP3)",
+ "country": "The United States Of America",
+ "countryCode": "US",
+ "language": "english",
+ "tags": [
+ "electronic",
+ "femalevocals",
+ "lounge",
+ "mellow",
+ "vocal"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://ice2.somafm.com/lush-128-mp3",
+ "homepage": "https://somafm.com/lush/",
+ "logoUrl": "https://somafm.com/img3/lush-400.jpg",
+ "votes": 12175,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "961173b5-0601-11e8-ae97-52543be04c81"
},
{
"id": "11c28f97-0177-47d3-bf88-eb24b492c34f",
@@ -34049,5 +64581,3523 @@
"clickcount": 8,
"source": "radio-browser",
"sourceStationUuid": "11c28f97-0177-47d3-bf88-eb24b492c34f"
+ },
+ {
+ "id": "948408f4-0060-44fa-a26c-bf313f6c774d",
+ "name": "KRAL FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://dygedge2.radyotvonline.net/kralfm/playlist.m3u8?listenerid=29d0a6a85b59cea2ca801b70d2a3ebaf&awparams=companionAds%3Atrue",
+ "homepage": "https://www.kralmuzik.com.tr/radyo/kral-fm#",
+ "logoUrl": "https://cdn1.kralmuzik.com.tr/media/content/19-05/17/kralfm.png",
+ "votes": 2181,
+ "clickcount": 155,
+ "source": "radio-browser",
+ "sourceStationUuid": "948408f4-0060-44fa-a26c-bf313f6c774d"
+ },
+ {
+ "id": "97f3bb39-24a0-461d-b282-b0ccae5a12c4",
+ "name": "Slow Turk",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://radyo.duhnet.tv/ak_dtvh_slowturk",
+ "homepage": "https://www.slowturk.com.tr/",
+ "logoUrl": "https://www.slowturk.com.tr/_next/image?url=https%3A%2F%2Fassets.blupoint.io%2Fimg%2F85%2F330x175%2F6410d8c4310c17000763c62b&w=256&q=75",
+ "votes": 2616,
+ "clickcount": 149,
+ "source": "radio-browser",
+ "sourceStationUuid": "97f3bb39-24a0-461d-b282-b0ccae5a12c4"
+ },
+ {
+ "id": "585600d9-bdc4-4a2e-93c5-2421041cc55c",
+ "name": "Radyo 45lik yeni",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "70s",
+ "80s",
+ "90s",
+ "nostalgic",
+ "retro"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radyo45lik.com:4545/",
+ "homepage": "https://www.radyo45lik.com/",
+ "logoUrl": null,
+ "votes": 1772,
+ "clickcount": 118,
+ "source": "radio-browser",
+ "sourceStationUuid": "585600d9-bdc4-4a2e-93c5-2421041cc55c"
+ },
+ {
+ "id": "fb1fd397-78fd-11ea-8a3b-52543be04c81",
+ "name": "Power POP",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "00s",
+ "70s",
+ "80s",
+ "90s",
+ "pop",
+ "rock"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://listen.powerapp.com.tr/powerpop/128/chunks.m3u8",
+ "homepage": "https://www.powerapp.com.tr/powerpop/",
+ "logoUrl": "https://www.powerapp.com.tr/i/favicov2/apple-icon-120x120.png?v=817",
+ "votes": 10345,
+ "clickcount": 112,
+ "source": "radio-browser",
+ "sourceStationUuid": "fb1fd397-78fd-11ea-8a3b-52543be04c81"
+ },
+ {
+ "id": "43061315-2893-46fa-ae1e-96e767d5bce3",
+ "name": "POWER TÜRK FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 149,
+ "streamUrl": "https://live.powerapp.com.tr/powerturk/abr/powerturk/128/playlist.m3u8",
+ "homepage": "https://live.powerapp.com.tr/powerturk/abr/powerturk/128/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 1138,
+ "clickcount": 94,
+ "source": "radio-browser",
+ "sourceStationUuid": "43061315-2893-46fa-ae1e-96e767d5bce3"
+ },
+ {
+ "id": "f3dfbec0-8ddb-457c-94cd-368631337c0f",
+ "name": "DAMAR TURK FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "french,german,turkish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://live.radyositesihazir.com:10997/",
+ "homepage": "https://www.damarturkfm.com/",
+ "logoUrl": "https://www.damarturkfm.com/favicon.ico",
+ "votes": 15841,
+ "clickcount": 89,
+ "source": "radio-browser",
+ "sourceStationUuid": "f3dfbec0-8ddb-457c-94cd-368631337c0f"
+ },
+ {
+ "id": "1e090517-d381-49f4-bb54-9b18ea649b41",
+ "name": "KRAL POP ALTERNATİF 2",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 128,
+ "streamUrl": "https://ssldyg.radyotvonline.com/smil/smil:kralpop.smil/playlist.m3u8",
+ "homepage": "https://ssldyg.radyotvonline.com/smil/smil:kralpop.smil/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 638,
+ "clickcount": 84,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e090517-d381-49f4-bb54-9b18ea649b41"
+ },
+ {
+ "id": "706def0c-7017-4601-8305-db1cdb2e9420",
+ "name": "Super Fm",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SUPER_FM_SC",
+ "homepage": "https://superfm.com.tr/",
+ "logoUrl": "https://superfm.com.tr/favicon.ico",
+ "votes": 3962,
+ "clickcount": 76,
+ "source": "radio-browser",
+ "sourceStationUuid": "706def0c-7017-4601-8305-db1cdb2e9420"
+ },
+ {
+ "id": "4dc09559-aa5c-4ecd-a8cf-4fc450471ae4",
+ "name": "Kafa Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 63,
+ "streamUrl": "https://moondigitalmaster.radyotvonline.net/kafaradyo/playlist.m3u8",
+ "homepage": "https://moondigitalmaster.radyotvonline.net/kafaradyo/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 760,
+ "clickcount": 73,
+ "source": "radio-browser",
+ "sourceStationUuid": "4dc09559-aa5c-4ecd-a8cf-4fc450471ae4"
+ },
+ {
+ "id": "09f8922f-56bb-41bd-ad35-a7e54c5520e3",
+ "name": "KRAL TÜRK FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radyositesihazir.com/8032/stream",
+ "homepage": "https://live.radyositesihazir.com/8032/stream",
+ "logoUrl": null,
+ "votes": 9641,
+ "clickcount": 72,
+ "source": "radio-browser",
+ "sourceStationUuid": "09f8922f-56bb-41bd-ad35-a7e54c5520e3"
+ },
+ {
+ "id": "de28a78a-6cee-453d-b9df-13557334dfdb",
+ "name": "Radyo Seymen",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://yayin.radyoseymen.com.tr:1070/stream",
+ "homepage": "https://www.radyoseymen.com.tr/",
+ "logoUrl": null,
+ "votes": 5039,
+ "clickcount": 62,
+ "source": "radio-browser",
+ "sourceStationUuid": "de28a78a-6cee-453d-b9df-13557334dfdb"
+ },
+ {
+ "id": "e7336c56-10dc-4d43-8244-eee899cda358",
+ "name": "Damar Turk FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://live.radyositesihazir.com:10997/;",
+ "homepage": "https://www.damarturkfm.com/",
+ "logoUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSAlkZWbK47GUO6iQFP2yohP0z_5X3WpdjdMQ&s",
+ "votes": 416,
+ "clickcount": 60,
+ "source": "radio-browser",
+ "sourceStationUuid": "e7336c56-10dc-4d43-8244-eee899cda358"
+ },
+ {
+ "id": "3dfe8d72-9ba4-47f2-9f57-a16cd5b273df",
+ "name": "Radyo Alaturka",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://yayin.jumboserver.net:9100/stream",
+ "homepage": "https://radyoalaturka.com.tr/index?0",
+ "logoUrl": "https://radyoalaturka.com.tr/site/assets/img/alaturkaLogo.png",
+ "votes": 298,
+ "clickcount": 58,
+ "source": "radio-browser",
+ "sourceStationUuid": "3dfe8d72-9ba4-47f2-9f57-a16cd5b273df"
+ },
+ {
+ "id": "2a372113-4b74-41aa-a1e8-3dcb5d66de61",
+ "name": "JOY TÜRK TURKEY",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/JOY_TURK_SC?/",
+ "homepage": "https://playerservices.streamtheworld.com/api/livestream-redirect/JOY_TURK_SC?/",
+ "logoUrl": null,
+ "votes": 2674,
+ "clickcount": 56,
+ "source": "radio-browser",
+ "sourceStationUuid": "2a372113-4b74-41aa-a1e8-3dcb5d66de61"
+ },
+ {
+ "id": "520bfe3e-2556-49f9-9846-e2c610978b60",
+ "name": "PAL Nostalji",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 95,
+ "streamUrl": "https://moondigitaledge.radyotvonline.net/palnostalji/playlist.m3u8",
+ "homepage": "https://www.palnostalji.com.tr/",
+ "logoUrl": null,
+ "votes": 765,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "520bfe3e-2556-49f9-9846-e2c610978b60"
+ },
+ {
+ "id": "4a59d1f8-8496-4197-b4b4-37febe87cf9b",
+ "name": "TRT Türkü",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://rd-trtturku.medya.trt.com.tr/master_128.m3u8",
+ "homepage": "https://www.trtdinle.com/channel/trt-turku-turk-halk-muzigi",
+ "logoUrl": null,
+ "votes": 1408,
+ "clickcount": 39,
+ "source": "radio-browser",
+ "sourceStationUuid": "4a59d1f8-8496-4197-b4b4-37febe87cf9b"
+ },
+ {
+ "id": "7046d480-674a-415f-8736-395600b5c7fd",
+ "name": "Radyo Turkuvaz",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://trkvz-radyolar.ercdn.net/radyoturkuvaz/playlist.m3u8",
+ "homepage": "https://trkvz-radyolar.ercdn.net/radyoturkuvaz/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 1271,
+ "clickcount": 36,
+ "source": "radio-browser",
+ "sourceStationUuid": "7046d480-674a-415f-8736-395600b5c7fd"
+ },
+ {
+ "id": "fc04c24b-1a01-4ec6-b7d3-64eba89e075f",
+ "name": "Kalp FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "nostalgic",
+ "slow",
+ "turkish music"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://yayin.kalpfm.com:8080/",
+ "homepage": "https://kalpfm.com/",
+ "logoUrl": "https://kalpfm.com/favicon.ico",
+ "votes": 16,
+ "clickcount": 33,
+ "source": "radio-browser",
+ "sourceStationUuid": "fc04c24b-1a01-4ec6-b7d3-64eba89e075f"
+ },
+ {
+ "id": "b3e6320b-0ffc-4d4e-a999-2467897b17e6",
+ "name": "Radyo Fenomen",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "turkey"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://live.radyofenomen.com/fenomen/128/icecast.audio",
+ "homepage": "https://www.radyofenomen.com/",
+ "logoUrl": null,
+ "votes": 6202,
+ "clickcount": 31,
+ "source": "radio-browser",
+ "sourceStationUuid": "b3e6320b-0ffc-4d4e-a999-2467897b17e6"
+ },
+ {
+ "id": "0352d949-cfe9-4c89-8540-00069791b5d6",
+ "name": "Karadeniz FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://moondigitaledge.radyotvonline.net/karadenizfm/playlist.m3u8",
+ "homepage": "https://www.karadenizfm.com.tr/",
+ "logoUrl": "https://static.wixstatic.com/media/9477e9_88c8630d8926464eac285c1df9d8ce54~mv2.png/v1/fill/w_350,h_350,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/karadeniz-fm-logopng.png",
+ "votes": 451,
+ "clickcount": 30,
+ "source": "radio-browser",
+ "sourceStationUuid": "0352d949-cfe9-4c89-8540-00069791b5d6"
+ },
+ {
+ "id": "837f9f9d-dcae-44a9-acc8-9bd6be8de720",
+ "name": "Best FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://ssldyg.radyotvonline.com/best/bestfm.stream/playlist.m3u8",
+ "homepage": "https://www.bestfm.com.tr/",
+ "logoUrl": "https://www.bestfm.com.tr/wp-content/uploads/2024/12/LOGOWHITE-2-1.png",
+ "votes": 8,
+ "clickcount": 27,
+ "source": "radio-browser",
+ "sourceStationUuid": "837f9f9d-dcae-44a9-acc8-9bd6be8de720"
+ },
+ {
+ "id": "0a2c3506-a136-40f2-b008-38daf2b12fd6",
+ "name": "TRT FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 132,
+ "streamUrl": "https://trt.radyotvonline.net/trtfm",
+ "homepage": "https://radyo.trt.net.tr/",
+ "logoUrl": "https://trt-public-static.trt.com.tr/eradyo/public/dm_upload/modul2/dd24ba9f-7f22-4b79-a226-9704169bd953.png",
+ "votes": 643,
+ "clickcount": 25,
+ "source": "radio-browser",
+ "sourceStationUuid": "0a2c3506-a136-40f2-b008-38daf2b12fd6"
+ },
+ {
+ "id": "dd307ed2-052d-4373-85c6-24f15f96d89c",
+ "name": "Power FM Türkiye",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://listen.powerapp.com.tr/powerfm/256/chunks.m3u8",
+ "homepage": "https://www.powerapp.com.tr/",
+ "logoUrl": "https://cdn.powergroup.com.tr/image/100x100/powerapp/channels/v3/inverse/logo_37.png?v=716",
+ "votes": 527,
+ "clickcount": 21,
+ "source": "radio-browser",
+ "sourceStationUuid": "dd307ed2-052d-4373-85c6-24f15f96d89c"
+ },
+ {
+ "id": "fcbf07d8-d3b3-4d9f-839a-3cfea3391b35",
+ "name": "Radyo 35",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "tr,turkish",
+ "tags": [
+ "pop",
+ "türkçe"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://yayin.turkhosted.com/6012/stream",
+ "homepage": "https://www.radyo35.com/",
+ "logoUrl": "https://www.radyo35.com/img/logo.png",
+ "votes": 73,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "fcbf07d8-d3b3-4d9f-839a-3cfea3391b35"
+ },
+ {
+ "id": "6f3d3422-9998-4079-8e1a-7d23cef150ea",
+ "name": "Radyo Fenomen Clubbin",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "english,turkish",
+ "tags": [
+ "club",
+ "clubbing",
+ "dance",
+ "edm",
+ "house",
+ "party",
+ "party hits",
+ "turkey"
+ ],
+ "codec": "AAC+",
+ "bitrate": 56,
+ "streamUrl": "https://live.radyofenomen.com/fenomenclubbin/128/icecast.audio",
+ "homepage": "https://radyofenomen.com/",
+ "logoUrl": "https://cdn.radyofenomen.com/artwork/logo20.png",
+ "votes": 764,
+ "clickcount": 20,
+ "source": "radio-browser",
+ "sourceStationUuid": "6f3d3422-9998-4079-8e1a-7d23cef150ea"
+ },
+ {
+ "id": "0e545fd4-cbd9-4836-81d2-e183bb02da79",
+ "name": "Radyo Sputnik",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "news",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://icecast-rian.cdnvideo.ru/voicestm",
+ "homepage": "https://anlatilaninotesi.com.tr/",
+ "logoUrl": "https://cdn.img.anlatilaninotesi.com.tr/i/favicon/favicon-192x192.png",
+ "votes": 546,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e545fd4-cbd9-4836-81d2-e183bb02da79"
+ },
+ {
+ "id": "5e4306b6-eed8-441a-b0fd-7bf61534144b",
+ "name": "TRT Radyo 1",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 129,
+ "streamUrl": "https://trt.radyotvonline.net/trt1",
+ "homepage": "https://radyo.trt.net.tr/kanallar/radyo-1",
+ "logoUrl": "https://static.wikia.nocookie.net/logopedia/images/2/27/TRT_Radyo_1_logo.svg/revision/latest/scale-to-width-down/300?cb=20211026160210",
+ "votes": 201,
+ "clickcount": 18,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e4306b6-eed8-441a-b0fd-7bf61534144b"
+ },
+ {
+ "id": "f17523b9-2e77-46f3-8851-cdd842ca5b8f",
+ "name": "Metro fm turkey",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/METRO_FM_SC?",
+ "homepage": "https://playerservices.streamtheworld.com/api/livestream-redirect/METRO_FM_SC?",
+ "logoUrl": null,
+ "votes": 1499,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "f17523b9-2e77-46f3-8851-cdd842ca5b8f"
+ },
+ {
+ "id": "f9fe2c7e-6f2f-4780-a682-8317604fe0ce",
+ "name": "KRAL POP",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://dygedge2.radyotvonline.net/kralfm/playlist.m3u8",
+ "homepage": "https://www.kralmuzik.com.tr/",
+ "logoUrl": "https://cdn1.kralmuzik.com.tr/media/content/19-05/20/kralpop.png",
+ "votes": 336,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "f9fe2c7e-6f2f-4780-a682-8317604fe0ce"
+ },
+ {
+ "id": "dff6fd72-58fe-4eb5-8bf7-c3f76f5375ca",
+ "name": "TRT NAĞME",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://tv-trtmuzik.medya.trt.com.tr/master_720.m3u8",
+ "homepage": "https://tv-trtmuzik.medya.trt.com.tr/master_720.m3u8",
+ "logoUrl": "https://cdn-i.pr.trt.com.tr/trtdinle//w768/q70/12467465.jpeg",
+ "votes": 1369,
+ "clickcount": 16,
+ "source": "radio-browser",
+ "sourceStationUuid": "dff6fd72-58fe-4eb5-8bf7-c3f76f5375ca"
+ },
+ {
+ "id": "1ca0c477-cdb5-4e7e-a6b2-db854e6b311d",
+ "name": "DamarTurk FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 192,
+ "streamUrl": "https://live.radyositesihazir.com:10997/stream?type=http&nocache=99881",
+ "homepage": "https://www.damarturkfm.com/",
+ "logoUrl": "https://www.damarturkfm.com/favicon.ico",
+ "votes": 4791,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "1ca0c477-cdb5-4e7e-a6b2-db854e6b311d"
+ },
+ {
+ "id": "57d6c252-a148-4e96-9602-39f3d6f22eb1",
+ "name": "Radio 44",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "hits",
+ "pop",
+ "top40",
+ "turkish music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radyo44.80.yayin.com.tr/stream",
+ "homepage": "https://radyo44.com.tr/",
+ "logoUrl": "https://radyo44.com.tr/favicons/favicon-32x32.png",
+ "votes": 741,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "57d6c252-a148-4e96-9602-39f3d6f22eb1"
+ },
+ {
+ "id": "5e5b4c7f-716d-42bb-9231-0209c81037e9",
+ "name": "Süper 2 FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "hits",
+ "pop",
+ "turkish music"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SUPER2_SC.mp3",
+ "homepage": "https://karnaval.com/radyolar/super2",
+ "logoUrl": null,
+ "votes": 79,
+ "clickcount": 14,
+ "source": "radio-browser",
+ "sourceStationUuid": "5e5b4c7f-716d-42bb-9231-0209c81037e9"
+ },
+ {
+ "id": "1263b2bf-8c95-11e9-ad01-52543be04c81",
+ "name": "Akra FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "islamic"
+ ],
+ "codec": "AAC",
+ "bitrate": 48,
+ "streamUrl": "https://d3r5bwwuab2v60.cloudfront.net/akracanli2/_definst_/livestream_aac/playlist.m3u8",
+ "homepage": "https://www.akradyo.net/",
+ "logoUrl": null,
+ "votes": 909,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "1263b2bf-8c95-11e9-ad01-52543be04c81"
+ },
+ {
+ "id": "10f4ee63-82fa-413f-a862-14556d5f95b8",
+ "name": "ALEM FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://edge1.radyotvonline.net/shoutcast/play/alemfm",
+ "homepage": "https://www.alemfm.com/",
+ "logoUrl": "https://www.alemfm.com/assets/img/alemfm-apple-touch-icon.png",
+ "votes": 142,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "10f4ee63-82fa-413f-a862-14556d5f95b8"
+ },
+ {
+ "id": "bf106bfa-4b34-4b50-9955-f7a36d76c0da",
+ "name": "Power Dance",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "clubbing",
+ "dance",
+ "dj remix",
+ "house"
+ ],
+ "codec": "MP3",
+ "bitrate": 250,
+ "streamUrl": "https://listen.powerapp.com.tr/powerdance/mpeg/icecast.audio",
+ "homepage": "http://www.powerfm.com.tr/",
+ "logoUrl": null,
+ "votes": 107,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "bf106bfa-4b34-4b50-9955-f7a36d76c0da"
+ },
+ {
+ "id": "5af02e0b-d62e-4349-b315-107f51d6f1c8",
+ "name": "Baba Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://babaradyo.turkhosted.com/best/babaradyo.stream/playlist.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 1036,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "5af02e0b-d62e-4349-b315-107f51d6f1c8"
+ },
+ {
+ "id": "e053f98a-e195-48f0-b07b-b2143c6e0964",
+ "name": "Cnn Türk Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://moondigitaledge2.radyotvonline.net/cnnturk/playlist.m3u8?listeningSessionID=669e367246737fe5_6249184_Zq120UIn__0000001w2Bs&downloadSessionID=0",
+ "homepage": "http://cnnturk.com/",
+ "logoUrl": "null",
+ "votes": 357,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "e053f98a-e195-48f0-b07b-b2143c6e0964"
+ },
+ {
+ "id": "14db05f4-b028-40dc-a13f-c53d068d929e",
+ "name": "Habertürk Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://haberturkradyo.radyotvonline.net/haberturkradyo",
+ "homepage": "https://www.haberturkradyo.com.tr/",
+ "logoUrl": "https://www.haberturkradyo.com.tr/wp-content/uploads/2017/07/cropped-RADYO_LOGO_Son-180x180.png",
+ "votes": 1307,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "14db05f4-b028-40dc-a13f-c53d068d929e"
+ },
+ {
+ "id": "354ffe25-8a45-4534-888b-c900054c1ba7",
+ "name": "JOY TÜRK ROCK TURKEY",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/JOYTURK_ROCK_SC?/",
+ "homepage": "https://playerservices.streamtheworld.com/api/livestream-redirect/JOYTURK_ROCK_SC?/",
+ "logoUrl": null,
+ "votes": 668,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "354ffe25-8a45-4534-888b-c900054c1ba7"
+ },
+ {
+ "id": "ead1ae8e-10ae-4f90-9b83-d6ab9b40830f",
+ "name": "Türkü Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "türkisch",
+ "tags": [
+ "türkü radyo"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://eu8.fastcast4u.com/proxy/ugur4129?mp=/1",
+ "homepage": "https://www.turkuradyo.info/",
+ "logoUrl": "https://www.turkuradyo.info/public/default/images/upload/1190220421012000.png",
+ "votes": 75,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "ead1ae8e-10ae-4f90-9b83-d6ab9b40830f"
+ },
+ {
+ "id": "c7219824-110c-4d30-b6dd-c60a39ea7907",
+ "name": "Turkuaz Anadolu",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://trkvz-radyolar.ercdn.net/turkuvazanadolu/playlist.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 687,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "c7219824-110c-4d30-b6dd-c60a39ea7907"
+ },
+ {
+ "id": "f4121c74-9b1a-4051-8864-9db00eab2848",
+ "name": "Pal Fm",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://ssl4.radyotvonline.com/radyohome/palfmhome.stream/playlist.m3u8",
+ "homepage": "http://www.palfm.com.tr/",
+ "logoUrl": "http://www.palfm.com.tr/img/logo/pal-fm.ico",
+ "votes": 827,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "f4121c74-9b1a-4051-8864-9db00eab2848"
+ },
+ {
+ "id": "0a9a8a20-2b30-46a8-ac10-6ef06be16889",
+ "name": "Radyo Duygusal",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://radyoduygusal.kesintisizyayin.com:9596/;*.nsv",
+ "homepage": "https://radyoduygusal.com/",
+ "logoUrl": "https://radyoduygusal.com/uploads/favicon/oooooooo.jpg",
+ "votes": 36,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "0a9a8a20-2b30-46a8-ac10-6ef06be16889"
+ },
+ {
+ "id": "28b60579-045a-4e06-89b6-e85bee30c228",
+ "name": "TürküRadyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://yayin.turkhosted.com/4591/stream",
+ "homepage": "https://turkuradyo.net/",
+ "logoUrl": "https://turkuradyo.net/wp-content/themes/TurkuRadyo/images/logo.png",
+ "votes": 189,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "28b60579-045a-4e06-89b6-e85bee30c228"
+ },
+ {
+ "id": "a96f83d1-d225-4eda-91cd-1a99dc230032",
+ "name": "Alem Fm",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://turkmedya.radyotvonline.net/alemfmaac",
+ "homepage": "https://www.alemfm.com/",
+ "logoUrl": "https://www.alemfm.com/assets/img/alemfm-apple-touch-icon.png",
+ "votes": 1826,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "a96f83d1-d225-4eda-91cd-1a99dc230032"
+ },
+ {
+ "id": "1210df35-9d44-4f35-b70e-f3c81428cd27",
+ "name": "Avrasya Türk Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://sslyayin.netyayin.net:10909/",
+ "homepage": "https://sslyayin.netyayin.net:10909/",
+ "logoUrl": null,
+ "votes": 801,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "1210df35-9d44-4f35-b70e-f3c81428cd27"
+ },
+ {
+ "id": "acab9839-3b93-4a7c-a259-298a25e19979",
+ "name": "FENOMEN TÜRK",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://live.radyofenomen.com/fenomenturk/abr/fenomenturk/256/chunks.m3u8",
+ "homepage": "https://live.radyofenomen.com/fenomenturk/abr/fenomenturk/256/chunks.m3u8",
+ "logoUrl": null,
+ "votes": 677,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "acab9839-3b93-4a7c-a259-298a25e19979"
+ },
+ {
+ "id": "c143d7ad-2cc0-4a9d-8a1c-d16a3c7f5a86",
+ "name": "powerturk",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC",
+ "bitrate": 277,
+ "streamUrl": "https://live.powerapp.com.tr/powerturk/abr/playlist.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 385,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "c143d7ad-2cc0-4a9d-8a1c-d16a3c7f5a86"
+ },
+ {
+ "id": "97519d7f-a93d-49ef-aa6f-47f8cb2e772c",
+ "name": "Powerturk R&B Hip Hop",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 278,
+ "streamUrl": "https://listen.powerapp.com.tr/powerrbhiphop/abr/playlist.m3u8",
+ "homepage": "https://www.powerapp.com.tr/radios/powerrnb/",
+ "logoUrl": "https://www.powerapp.com.tr/i/favicov2/apple-icon-120x120.png?v=843",
+ "votes": 292,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "97519d7f-a93d-49ef-aa6f-47f8cb2e772c"
+ },
+ {
+ "id": "f1466973-55d2-440f-9c08-e7e8a218962c",
+ "name": "TURKUVAZ NOSTALJİ",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://trkvz-radyolar.ercdn.net/turkuvaznostalji/playlist.m3u8",
+ "homepage": "https://trkvz-radyolar.ercdn.net/turkuvaznostalji/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 2,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "f1466973-55d2-440f-9c08-e7e8a218962c"
+ },
+ {
+ "id": "8a38c064-f112-460d-8d61-c8f2974e33c8",
+ "name": "POWER TÜRK DANS TÜRKİYE",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 150,
+ "streamUrl": "https://listen.powerapp.com.tr/powerturkdans/abr/powerturkdans/128/playlist.m3u8",
+ "homepage": "https://listen.powerapp.com.tr/powerturkdans/abr/powerturkdans/128/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 939,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "8a38c064-f112-460d-8d61-c8f2974e33c8"
+ },
+ {
+ "id": "9cf8015c-8b88-476c-a2b8-093e52d75012",
+ "name": "Radyo 9",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "9",
+ "99.9",
+ "99.9 fm",
+ "ankara",
+ "aydin",
+ "aydın",
+ "bölgesel",
+ "dokuz",
+ "fm",
+ "haber",
+ "istanbul",
+ "izmir"
+ ],
+ "codec": "MP3",
+ "bitrate": 160,
+ "streamUrl": "https://radyo.yayin.com.tr:4010/",
+ "homepage": "https://www.radyo9.com/",
+ "logoUrl": "https://www.radyo9.com/logo.png",
+ "votes": 24,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "9cf8015c-8b88-476c-a2b8-093e52d75012"
+ },
+ {
+ "id": "f4b4718c-aca0-45dd-bdce-b104dbc0b657",
+ "name": "Radyo Ekin",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://yayin.turkhosted.com/6006/stream",
+ "homepage": "https://www.radyoekin.net/",
+ "logoUrl": "https://www.radyoekin.net/favicon.ico",
+ "votes": 172,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "f4b4718c-aca0-45dd-bdce-b104dbc0b657"
+ },
+ {
+ "id": "989cc154-83bc-4f61-9b42-2ecb3b3739ed",
+ "name": "Radyo Viva",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://edge1.radyotvonline.net/shoutcast/play/radyoviva",
+ "homepage": "https://www.radyoviva.com.tr/",
+ "logoUrl": "https://demo.radyoviva.com.tr/wp-content/uploads/2020/06/radyo-viva.png",
+ "votes": 50,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "989cc154-83bc-4f61-9b42-2ecb3b3739ed"
+ },
+ {
+ "id": "f297888e-220b-4345-bf03-8cb094e78ce0",
+ "name": "90 lar Pop",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 127,
+ "streamUrl": "https://moondigitaledge.radyotvonline.net/radyolanddoksanlar/playlist.m3u8",
+ "homepage": "https://moondigitaledge.radyotvonline.net/",
+ "logoUrl": null,
+ "votes": 188,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f297888e-220b-4345-bf03-8cb094e78ce0"
+ },
+ {
+ "id": "0546535d-5440-4b86-9e19-e829fe5fa420",
+ "name": "GENÇ KRAL FM",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://anadolu.liderhost.com.tr:10853/;",
+ "homepage": "https://anadolu.liderhost.com.tr:10853/;",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "0546535d-5440-4b86-9e19-e829fe5fa420"
+ },
+ {
+ "id": "f090cb1e-5291-4642-a93b-f41b4b3a691d",
+ "name": "Govend radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "kurdish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream-56.zeno.fm/xzzu8kynq2zuv?zs=nZP7ZCRXQPOpDFenayr0bQ",
+ "homepage": "https://stream-56.zeno.fm/",
+ "logoUrl": null,
+ "votes": 125,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "f090cb1e-5291-4642-a93b-f41b4b3a691d"
+ },
+ {
+ "id": "81510d4f-cd42-433e-b1ef-77d2b309fa5a",
+ "name": "Hemdem Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "arabesk fantazi",
+ "turkish pop",
+ "türk halk müziği",
+ "türk pop",
+ "türk sanat",
+ "türkçe",
+ "türkü"
+ ],
+ "codec": "AAC+",
+ "bitrate": 104,
+ "streamUrl": "https://radyoserver3.okeylisans.com:8040/stream",
+ "homepage": "https://hemdemradyo.com/",
+ "logoUrl": "https://hemdemradyo.com/favicon.ico",
+ "votes": 220,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "81510d4f-cd42-433e-b1ef-77d2b309fa5a"
+ },
+ {
+ "id": "9ea7ed4e-d777-4e94-bd45-23abfaeaf2d6",
+ "name": "Kiss Türk",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://kiss.radyotvonline.net/kissturk",
+ "homepage": "https://kissfm.kissapp.com.tr/",
+ "logoUrl": "https://kissapp.com.tr/content/files/IIMG_BE9E7FDE-27B7-466A-BE72-C344A3DCCD4C.jpg",
+ "votes": 236,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "9ea7ed4e-d777-4e94-bd45-23abfaeaf2d6"
+ },
+ {
+ "id": "23fb9ea6-caa7-4fc0-9cf5-85531d1e0391",
+ "name": "RADYO 42 FM MEDYA KONYA PR MUSIC TURKIYE",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish,turkçe,türkisch",
+ "tags": [
+ "anthems",
+ "epic",
+ "orchestral",
+ "pop music",
+ "pop rock",
+ "turkish rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 52,
+ "streamUrl": "https://a8.asurahosting.com/hls/radyo_42_fm_medya_konya_pr_music/live.m3u8",
+ "homepage": "https://www.radio.net/s/radio-42-fm-medya-konya-pr-music",
+ "logoUrl": "https://www.radio.net/300/radio-42-fm-medya-konya-pr-music.png",
+ "votes": 194,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "23fb9ea6-caa7-4fc0-9cf5-85531d1e0391"
+ },
+ {
+ "id": "bcf1eca1-d197-451b-bdd0-dde1e4bcaae1",
+ "name": "Radyo D",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 130,
+ "streamUrl": "https://moondigitaledge2.radyotvonline.net/radyod/playlist.m3u8",
+ "homepage": "https://www.radyod.com/",
+ "logoUrl": "https://cdn-radiotime-logos.tunein.com/s14264d.png",
+ "votes": 140,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "bcf1eca1-d197-451b-bdd0-dde1e4bcaae1"
+ },
+ {
+ "id": "c16f41f7-668c-409f-aeda-d1d1bb3f1761",
+ "name": "Radyo EN",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "ilahi",
+ "islam",
+ "islamic",
+ "konya"
+ ],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://yayin2.canliyayin.org:7222/;",
+ "homepage": "https://www.radyoen.com.tr/",
+ "logoUrl": "https://www.radyoen.com.tr/images/radyo-en-logo.png",
+ "votes": 19,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "c16f41f7-668c-409f-aeda-d1d1bb3f1761"
+ },
+ {
+ "id": "1e0dcee9-bfb6-41a4-8356-e8c4540dfcf0",
+ "name": "Radyo Şiran",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "folk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://live.radyositesihazir.com/8078/stream",
+ "homepage": "https://live.radyositesihazir.com/8078/stream",
+ "logoUrl": null,
+ "votes": 13825,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "1e0dcee9-bfb6-41a4-8356-e8c4540dfcf0"
+ },
+ {
+ "id": "0e1f221a-2ff0-458e-b3eb-d124052b96f2",
+ "name": "Radyo Voyage",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "misc"
+ ],
+ "codec": "UNKNOWN",
+ "bitrate": 128,
+ "streamUrl": "https://ssldyg.radyotvonline.com/pozitif/smil:voyage.smil/playlist.m3u8",
+ "homepage": "https://radyovoyage.com/",
+ "logoUrl": null,
+ "votes": 126,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "0e1f221a-2ff0-458e-b3eb-d124052b96f2"
+ },
+ {
+ "id": "862444ed-dcfb-4c23-b2ad-b85d5c8f91ba",
+ "name": "a HABER",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://trkvz-radyolar.ercdn.net/ahaberradyo/playlist.m3u8",
+ "homepage": "https://www.ahaber.com.tr/",
+ "logoUrl": null,
+ "votes": 6678,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "862444ed-dcfb-4c23-b2ad-b85d5c8f91ba"
+ },
+ {
+ "id": "dad93bd8-632a-4a5f-b174-2ffcef7b4b65",
+ "name": "Axa Rojava",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "kurdi,kurdish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/h6mn2c8ha8zuv",
+ "homepage": "http://zeno.fm/",
+ "logoUrl": "http://zeno.fm/favicon.ico",
+ "votes": 262,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "dad93bd8-632a-4a5f-b174-2ffcef7b4b65"
+ },
+ {
+ "id": "088c2b87-4c3d-4fb0-ba51-f80690de89b0",
+ "name": "Azadi Fm",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "kurdish,turkish",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://amed.ozelip.com/8040/;",
+ "homepage": "http://canlikurtceradyodinle.com/havin-fm-canli-yayin/",
+ "logoUrl": "http://canlikurtceradyodinle.com/favicon.ico",
+ "votes": 573,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "088c2b87-4c3d-4fb0-ba51-f80690de89b0"
+ },
+ {
+ "id": "cf7df722-f854-4fb8-99ba-c8d397d27027",
+ "name": "BATI RADYO",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://sslyayin.netyayin.net:10902/",
+ "homepage": "https://batiradyo.com/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "cf7df722-f854-4fb8-99ba-c8d397d27027"
+ },
+ {
+ "id": "f0be7682-2aab-45b6-b66a-d4380897a6bc",
+ "name": "FG 93.8 (Future Generation) mp3 128k",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "english",
+ "tags": [
+ "chill-out",
+ "edm",
+ "no ads",
+ "progressive",
+ "trance"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://edge1.radyotvonline.net/shoutcast/play/fg",
+ "homepage": "https://www.futuregeneration.net/",
+ "logoUrl": "https://i1.sndcdn.com/avatars-6lAdUGxB5DjlvwWt-6IBY7g-t200x200.jpg",
+ "votes": 153,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "f0be7682-2aab-45b6-b66a-d4380897a6bc"
+ },
+ {
+ "id": "0cdba7d5-d9e5-4de7-818a-17572270cbaf",
+ "name": "MEGASITE",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 32,
+ "streamUrl": "https://stream.netradyom.com/listen/megasite/radio.mp3",
+ "homepage": "https://www.megasite.com.tr/",
+ "logoUrl": "https://www.megasite.com.tr/wp-content/uploads/2022/10/logo.png",
+ "votes": 50,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "0cdba7d5-d9e5-4de7-818a-17572270cbaf"
+ },
+ {
+ "id": "5509836d-9ca5-4584-bd61-86298fa725b4",
+ "name": "Number one",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 47,
+ "streamUrl": "https://n10101m.mediatriple.net/numberone",
+ "homepage": "https://numberone.com.tr/",
+ "logoUrl": null,
+ "votes": 2308,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "5509836d-9ca5-4584-bd61-86298fa725b4"
+ },
+ {
+ "id": "461458d7-6472-4bf1-adca-d33705dad718",
+ "name": "Radyo Alevi Canlar",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://alevifm.80.yayin.com.tr/",
+ "homepage": "https://alevifm.com.tr/",
+ "logoUrl": "null",
+ "votes": 38,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "461458d7-6472-4bf1-adca-d33705dad718"
+ },
+ {
+ "id": "e1480c4f-467f-44ec-8b57-653abdfc7c7e",
+ "name": "Radyo Gökçeada",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "english,turkish",
+ "tags": [
+ "90s",
+ "aor / slow rock / soft rock (adult-orientated rock e.g. the eagles.)",
+ "easy listening",
+ "jazz",
+ "turkish pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radyo.yayin.com.tr:6179/;",
+ "homepage": "https://www.radyogokceada.net/",
+ "logoUrl": "https://www.radyogokceada.net/favicon.ico",
+ "votes": 26,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "e1480c4f-467f-44ec-8b57-653abdfc7c7e"
+ },
+ {
+ "id": "1020f3df-3507-476a-85ca-152e03cb75ff",
+ "name": "Radyo Nida",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish,turkçe",
+ "tags": [
+ "ilahi",
+ "islam",
+ "muslim",
+ "turk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://anadolu.liderhost.com.tr/8106/stream",
+ "homepage": "https://radyonida.com.tr/",
+ "logoUrl": "https://radyonida.com.tr/dist/img/radyo-nida.jpg?2",
+ "votes": 50,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "1020f3df-3507-476a-85ca-152e03cb75ff"
+ },
+ {
+ "id": "9ed85a92-9fb4-4ae8-baca-59347adc782c",
+ "name": "TRT Radyo Haber",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "news"
+ ],
+ "codec": "AAC+",
+ "bitrate": 135,
+ "streamUrl": "https://trt.radyotvonline.net/trthaber",
+ "homepage": "https://radyo.trt.net.tr/kanallar/trt-radyo-haber",
+ "logoUrl": "https://trt-public-static.trt.com.tr/eradyo/public/dm_upload/modul2/20d0b80f-bb7a-4fcb-9a61-88662ebcb2dc.png",
+ "votes": 153,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "9ed85a92-9fb4-4ae8-baca-59347adc782c"
+ },
+ {
+ "id": "62402197-6bcd-4bba-8577-ef025800b453",
+ "name": "Vav Radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 64,
+ "streamUrl": "https://trkvz-radyolar.ercdn.net/radyovav/playlist.m3u8",
+ "homepage": "http://www.vavradyo.com.tr/vavradyo",
+ "logoUrl": "https://i.tmgrup.com.tr/vavradyo/site/v2/c/i/apple-touch-icon-new-120x120.png",
+ "votes": 995,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "62402197-6bcd-4bba-8577-ef025800b453"
+ },
+ {
+ "id": "f5b65b4d-66ba-438c-aba0-b91b69806c2a",
+ "name": "Halk Tv",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://halktv.daioncdn.net/halktv/halktv_1080p.m3u8?sid=6vahxsup0jxl&app=c86957d3-74a7-44da-9ad2-dc358c769609&ce=3",
+ "homepage": "http://halktv.com.tr/",
+ "logoUrl": "null",
+ "votes": 621,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "f5b65b4d-66ba-438c-aba0-b91b69806c2a"
+ },
+ {
+ "id": "30377852-8d25-4773-be20-5dc65ba6b4f2",
+ "name": "Max Fm 95.8 ‘Maximum Music'",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "country",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 112,
+ "streamUrl": "https://maxfm.radyotvonline.net/stream/164/;",
+ "homepage": "https://www.maxfm.com.tr/",
+ "logoUrl": null,
+ "votes": 35,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "30377852-8d25-4773-be20-5dc65ba6b4f2"
+ },
+ {
+ "id": "4bead555-fefa-401b-b9e1-e5f525c714b8",
+ "name": "Numberone Turk",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 128,
+ "streamUrl": "https://n10101m.mediatriple.net/numberoneturk",
+ "homepage": "https://www.numberone.com.tr/2015/12/17/nr1-turk-fm-dinle-canli-radyo-dinle/",
+ "logoUrl": null,
+ "votes": 1637,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "4bead555-fefa-401b-b9e1-e5f525c714b8"
+ },
+ {
+ "id": "2c0a7b55-c481-49e5-8b1a-9339bb132fd1",
+ "name": "Power dance",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 150,
+ "streamUrl": "https://listen.powerapp.com.tr/powerdance/abr/powerdance/128/playlist.m3u8",
+ "homepage": "https://powerapp.com.tr/",
+ "logoUrl": null,
+ "votes": 698,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "2c0a7b55-c481-49e5-8b1a-9339bb132fd1"
+ },
+ {
+ "id": "1a4a7f3f-fbed-4dcc-ab7b-d6a53468076d",
+ "name": "POWER XL TURKEY",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 108,
+ "streamUrl": "https://listen.powerapp.com.tr/powerextralounge/abr/powerextralounge/96/playlist.m3u8",
+ "homepage": "https://listen.powerapp.com.tr/powerextralounge/abr/powerextralounge/96/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 651,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "1a4a7f3f-fbed-4dcc-ab7b-d6a53468076d"
+ },
+ {
+ "id": "123cba9a-ec7c-41d9-bd13-a678451dd1ac",
+ "name": "Radyo Eksen",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://dygedge.radyotvonline.net/radyoeksen/playlist.m3u8",
+ "homepage": "https://radioeksen.com/",
+ "logoUrl": null,
+ "votes": 61,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "123cba9a-ec7c-41d9-bd13-a678451dd1ac"
+ },
+ {
+ "id": "50136607-1a46-46ce-bef6-b8abae1dd4cd",
+ "name": "Romantik Ses ISPARTA",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "turkish",
+ "tags": [
+ "pop",
+ "romantic",
+ "romantic music",
+ "slow"
+ ],
+ "codec": "AAC+",
+ "bitrate": 96,
+ "streamUrl": "https://radyo.romantikses.com/romantiksesispart/stream",
+ "homepage": "https://www.romantikses.com/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "50136607-1a46-46ce-bef6-b8abae1dd4cd"
+ },
+ {
+ "id": "6f54c6a5-7032-4a86-b00e-21f1169f678a",
+ "name": "SUPER FM 2 TURKEY",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://playerservices.streamtheworld.com/api/livestream-redirect/SUPER2_SC?/",
+ "homepage": "https://playerservices.streamtheworld.com/api/livestream-redirect/SUPER2_SC?/",
+ "logoUrl": null,
+ "votes": 1767,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "6f54c6a5-7032-4a86-b00e-21f1169f678a"
+ },
+ {
+ "id": "a2a5e434-cb89-428c-9abc-d741f600a06f",
+ "name": "TRT Nağme",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 140,
+ "streamUrl": "https://rd-trtnagme.medya.trt.com.tr/master.m3u8",
+ "homepage": "https://radyo.trt.net.tr/kanallar/trt-nagme",
+ "logoUrl": null,
+ "votes": 6,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "a2a5e434-cb89-428c-9abc-d741f600a06f"
+ },
+ {
+ "id": "87d4f034-07d0-4d80-b185-1e29fc0ce445",
+ "name": "Danceland",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "AAC+",
+ "bitrate": 127,
+ "streamUrl": "https://moondigitaledge.radyotvonline.net/danceland/playlist.m3u8",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 73,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "87d4f034-07d0-4d80-b185-1e29fc0ce445"
+ },
+ {
+ "id": "255fb3fd-103a-475a-80e1-c55c6ada09ef",
+ "name": "DEDEMİN RADYOSU",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://anadolu.liderhost.com.tr/9002/stream",
+ "homepage": "https://anadolu.liderhost.com.tr/9002/stream",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "255fb3fd-103a-475a-80e1-c55c6ada09ef"
+ },
+ {
+ "id": "127006d6-f378-42d0-97b6-1c253a2f3d3e",
+ "name": "dinamo.fm live from minimuzikhol",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://channels.dinamo.fm/mmradyo-mp3",
+ "homepage": "http://www.dinamo.fm/",
+ "logoUrl": "https://www.dinamo.fm/favicons/dinamo-mmradyo-favicon.jpg",
+ "votes": 1,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "127006d6-f378-42d0-97b6-1c253a2f3d3e"
+ },
+ {
+ "id": "04bf2806-4ce5-4114-925a-03fe55aaf8ad",
+ "name": "Esas radyo",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": "tr",
+ "tags": [
+ "music",
+ "pop"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://yayin.turkhosted.com:6034/stream/;stream.mp3",
+ "homepage": "https://www.lokomotifradyolari.com/",
+ "logoUrl": null,
+ "votes": 0,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "04bf2806-4ce5-4114-925a-03fe55aaf8ad"
+ },
+ {
+ "id": "5a6e8de5-c9fc-4182-b651-32ad40c2e1dc",
+ "name": "Fenomen Türk 256",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "UNKNOWN",
+ "bitrate": 0,
+ "streamUrl": "https://live.radyofenomen.com/fenomenturk/256/chunks.m3u8",
+ "homepage": "https://www.radyofenomen.com/",
+ "logoUrl": null,
+ "votes": 162,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "5a6e8de5-c9fc-4182-b651-32ad40c2e1dc"
+ },
+ {
+ "id": "fbe7634c-4e4d-4533-9a5d-6602f6a6cf41",
+ "name": "HOUSELAND TURKEY",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 127,
+ "streamUrl": "https://moondigitaledge.radyotvonline.net/houseland/playlist.m3u8",
+ "homepage": "https://moondigitaledge.radyotvonline.net/houseland/playlist.m3u8",
+ "logoUrl": null,
+ "votes": 1512,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "fbe7634c-4e4d-4533-9a5d-6602f6a6cf41"
+ },
+ {
+ "id": "da05f0a8-bb9f-4780-b389-53a40deb54bb",
+ "name": "ULUSAL ARABESK",
+ "country": "Türkiye",
+ "countryCode": "TR",
+ "language": null,
+ "tags": [],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://radio.guventechnology.com/9334/stream",
+ "homepage": "https://radio.guventechnology.com/9334/stream",
+ "logoUrl": null,
+ "votes": 1,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "da05f0a8-bb9f-4780-b389-53a40deb54bb"
+ },
+ {
+ "id": "0a010e69-30ae-4b26-a3a8-b57b105d16ca",
+ "name": "106.5 Kiss FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,ukrainian",
+ "tags": [
+ "dance",
+ "electronic"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.kissfm.ua/KissFM_HD",
+ "homepage": "https://www.kissfm.ua/",
+ "logoUrl": null,
+ "votes": 603,
+ "clickcount": 23,
+ "source": "radio-browser",
+ "sourceStationUuid": "0a010e69-30ae-4b26-a3a8-b57b105d16ca"
+ },
+ {
+ "id": "7ed52195-993a-4ecd-963f-c7f9ed665174",
+ "name": "Kiss FM Digital HD",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.kissfm.ua/KissFM_Digital_HD",
+ "homepage": "https://play.tavr.media/kissfm/digital/",
+ "logoUrl": null,
+ "votes": 4958,
+ "clickcount": 17,
+ "source": "radio-browser",
+ "sourceStationUuid": "7ed52195-993a-4ecd-963f-c7f9ed665174"
+ },
+ {
+ "id": "960a0bed-9524-4ea1-b6e8-b6d2431d5c26",
+ "name": "NRJ Ukraine",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "dance",
+ "electronic",
+ "pop",
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/nrj320",
+ "homepage": "https://nrj.ua/",
+ "logoUrl": "https://nrj.ua/images/NRJ.png",
+ "votes": 1076,
+ "clickcount": 15,
+ "source": "radio-browser",
+ "sourceStationUuid": "960a0bed-9524-4ea1-b6e8-b6d2431d5c26"
+ },
+ {
+ "id": "8a6e95dc-2fc0-40f3-8df4-d31d64096c92",
+ "name": "Гуляй Радіо",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "128 kbit/s",
+ "disco",
+ "https",
+ "internet radio",
+ "mp3"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radioplayer.ua/GuliayRadio",
+ "homepage": "https://www.guliayradio.ua/",
+ "logoUrl": "https://www.guliayradio.ua/favicon.ico",
+ "votes": 183,
+ "clickcount": 13,
+ "source": "radio-browser",
+ "sourceStationUuid": "8a6e95dc-2fc0-40f3-8df4-d31d64096c92"
+ },
+ {
+ "id": "8fae0da6-d485-4e98-8860-d71720a49dcc",
+ "name": "Kiss FM Ukrainian",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "dance"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.kissfm.ua/KissFM_Ukr",
+ "homepage": "https://www.kissfm.ua/",
+ "logoUrl": null,
+ "votes": 8739,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "8fae0da6-d485-4e98-8860-d71720a49dcc"
+ },
+ {
+ "id": "db8a3218-6d66-42c2-a97b-ab0550a318ee",
+ "name": "MFM STATION",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "dance",
+ "dance pop",
+ "electronic",
+ "pop",
+ "top 20",
+ "top 40",
+ "world music"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.mfm.ua/online128",
+ "homepage": "https://mfm.ua/",
+ "logoUrl": "https://mfm.ua/apple-touch-icon.png",
+ "votes": 177,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "db8a3218-6d66-42c2-a97b-ab0550a318ee"
+ },
+ {
+ "id": "4748a2a9-2f27-4e4d-a15f-a91448a75830",
+ "name": "Radio ROCKS Kyiv 103.6FM HD",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,ukrainian",
+ "tags": [
+ "classic rock",
+ "heavy metal",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.radioroks.ua/RadioROKS_HD",
+ "homepage": "https://play.tavr.media/radioroks/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/uk/b/be/Logo_radio_roks.png",
+ "votes": 800,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "4748a2a9-2f27-4e4d-a15f-a91448a75830"
+ },
+ {
+ "id": "1380f2d6-2312-49c0-a618-f44ff83c3f75",
+ "name": "Radio ROKS Classic Rock",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "classic rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.radioroks.ua/RadioROKS_ClassicRock_HD",
+ "homepage": "https://www.radioroks.ua/",
+ "logoUrl": null,
+ "votes": 779,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "1380f2d6-2312-49c0-a618-f44ff83c3f75"
+ },
+ {
+ "id": "e75c8795-d8e6-456e-a0b2-6f5992966969",
+ "name": "Хіт FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "320kbps",
+ "pop music"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.hitfm.ua/HitFM_HD",
+ "homepage": "https://www.hitfm.ua/",
+ "logoUrl": "https://www.hitfm.ua/static/img/fav-icon/apple-icon-120x120.png",
+ "votes": 1264,
+ "clickcount": 12,
+ "source": "radio-browser",
+ "sourceStationUuid": "e75c8795-d8e6-456e-a0b2-6f5992966969"
+ },
+ {
+ "id": "d4faa904-e82f-41f1-a4a6-a95e7d333fab",
+ "name": "PowerFM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "news",
+ "other",
+ "pop",
+ "top 40"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://cast.brg.ua/powerfm_main_public_mp3_hq",
+ "homepage": "https://powerfm.ua/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20240301_202312521.jpg?alt=media&token=d82961af-32fe-4520-a0db-2b9984f55a57",
+ "votes": 91,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "d4faa904-e82f-41f1-a4a6-a95e7d333fab"
+ },
+ {
+ "id": "47651599-e323-4375-a9bf-aaae945e243e",
+ "name": "TRANCE IS STAR RADIO",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,russian,ukrainian",
+ "tags": [
+ "best music for you"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://myradio24.org/tisradio",
+ "homepage": "https://twitter.com/tranceisstar",
+ "logoUrl": "https://abs.twimg.com/favicons/twitter.2.ico",
+ "votes": 7011,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "47651599-e323-4375-a9bf-aaae945e243e"
+ },
+ {
+ "id": "82860630-87f2-4e10-8621-afac65754aa1",
+ "name": "Люкс FM Львів",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "music"
+ ],
+ "codec": "AAC",
+ "bitrate": 211,
+ "streamUrl": "https://streamvideo.luxnet.ua/luxlviv/luxlviv.stream/playlist.m3u8",
+ "homepage": "https://lviv.lux.fm/",
+ "logoUrl": "https://static.mytuner.mobi/media/tvos_radios/nghwdngbqgeg.png",
+ "votes": 310,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "82860630-87f2-4e10-8621-afac65754aa1"
+ },
+ {
+ "id": "673104f3-2e52-40f1-91df-d17306d63023",
+ "name": "Мелодія FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.melodiafm.ua/MelodiaFM",
+ "homepage": null,
+ "logoUrl": "https://cdn.onlineradiobox.com/img/l/6/26.v35.png",
+ "votes": 3472,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "673104f3-2e52-40f1-91df-d17306d63023"
+ },
+ {
+ "id": "f2f1f40c-ded5-46ba-b3f2-9e362d10ea5b",
+ "name": "Радіо П'ятниця",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "news",
+ "other",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/radiopyatnica320",
+ "homepage": "https://radiopyatnica.com.ua/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20250111_143012889.jpg?alt=media&token=4e6cfe59-e82f-49d9-b79e-57180ef35970",
+ "votes": 91,
+ "clickcount": 11,
+ "source": "radio-browser",
+ "sourceStationUuid": "f2f1f40c-ded5-46ba-b3f2-9e362d10ea5b"
+ },
+ {
+ "id": "d0050edc-29b5-4b7e-83fb-c4584c54b811",
+ "name": "Europa Plus",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "dance",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 112,
+ "streamUrl": "https://s5.radioforge.com:7908/live?n=77357",
+ "homepage": "https://europaplus.kiev.ua/",
+ "logoUrl": "https://europaplus.kiev.ua/europa-box/2020/10/cropped-EP_Logo_final-180x180.png",
+ "votes": 384,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "d0050edc-29b5-4b7e-83fb-c4584c54b811"
+ },
+ {
+ "id": "17c57a5f-8d12-4b38-a70c-03b58bcac784",
+ "name": "Перець FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "128 kbit/s",
+ "https",
+ "mp3",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://radio.perec.fm/radio-stilnoe",
+ "homepage": "https://perec.fm/",
+ "logoUrl": "https://perec.fm/wp-content/themes/perecfm/img/logo.png",
+ "votes": 721,
+ "clickcount": 10,
+ "source": "radio-browser",
+ "sourceStationUuid": "17c57a5f-8d12-4b38-a70c-03b58bcac784"
+ },
+ {
+ "id": "8492e24d-7908-4cc4-9ee7-c3d5475c42d7",
+ "name": "7 Rays Radio",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "ambient",
+ "chillout",
+ "deep space",
+ "healing",
+ "meditation",
+ "new age",
+ "relax"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://7rays.stream.laut.fm/7rays",
+ "homepage": "https://7promeniv.com.ua/radio",
+ "logoUrl": "https://7promeniv.com.ua/images/Seven_Rays_Mix/7RaysRadioLogoNew.jpg",
+ "votes": 48,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "8492e24d-7908-4cc4-9ee7-c3d5475c42d7"
+ },
+ {
+ "id": "e9048554-83f6-4ef0-91b9-66efc1ab2f25",
+ "name": "Lounge FM Terrace",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "lounge",
+ "relax"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/terrace320",
+ "homepage": "https://loungefm.com.ua/",
+ "logoUrl": null,
+ "votes": 157,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "e9048554-83f6-4ef0-91b9-66efc1ab2f25"
+ },
+ {
+ "id": "08c4467d-e6d4-4945-a426-2511f7d5dc90",
+ "name": "Lux FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "classical"
+ ],
+ "codec": "AAC",
+ "bitrate": 128,
+ "streamUrl": "https://streamvideo.luxnet.ua/lux/smil:lux.stream.smil/playlist.m3u8",
+ "homepage": "https://lux.fm/",
+ "logoUrl": "https://lux.fm/images/logo-lux.svg",
+ "votes": 211,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "08c4467d-e6d4-4945-a426-2511f7d5dc90"
+ },
+ {
+ "id": "9c418a38-41fa-4079-91c8-5b01d4c3a505",
+ "name": "Radio ROCKS Новий Рок 103.6FM HD",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,ukrainian",
+ "tags": [
+ "alternative rock",
+ "modern rock",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.radioroks.ua/RadioROKS_NewRock_HD",
+ "homepage": "https://play.tavr.media/radioroks/newrock/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/uk/b/be/Logo_radio_roks.png",
+ "votes": 768,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "9c418a38-41fa-4079-91c8-5b01d4c3a505"
+ },
+ {
+ "id": "1f8772ff-bb21-4e7e-a0c6-1c9606e7e8f4",
+ "name": "Radio Svoboda (Радіо Свобода)",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://n04.radiojar.com/hcrb063nn3quv?rj-ttl=5&rj-tok=AAABijO2KqMAvyNNc6ijVnKFQA",
+ "homepage": "https://www.svoboda.org/",
+ "logoUrl": "https://images.app.goo.gl/os5abDD5JYqyk9n46",
+ "votes": 501,
+ "clickcount": 9,
+ "source": "radio-browser",
+ "sourceStationUuid": "1f8772ff-bb21-4e7e-a0c6-1c9606e7e8f4"
+ },
+ {
+ "id": "44a503e9-9663-4cbd-b4d2-6c1cd6bdf4b7",
+ "name": "DJFM DANCE",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "dance",
+ "music",
+ "other",
+ "pop",
+ "varied"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://cast.brg.ua/djfmdance_main_public_mp3_hq",
+ "homepage": "https://djfm.ua/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20241110_104536688.jpg?alt=media&token=283f1a5c-c8df-4193-9771-9c85a3e09078",
+ "votes": 65,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "44a503e9-9663-4cbd-b4d2-6c1cd6bdf4b7"
+ },
+ {
+ "id": "79cebe09-a7f1-4685-a056-24ed66d439c1",
+ "name": "Lounge FM Acoustic",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "acoustic",
+ "lounge",
+ "relax"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/acoustic320",
+ "homepage": "https://loungefm.com.ua/",
+ "logoUrl": null,
+ "votes": 173,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "79cebe09-a7f1-4685-a056-24ed66d439c1"
+ },
+ {
+ "id": "72e8ae22-3366-4123-b8ba-05ec6d4f6c5d",
+ "name": "Wolf Music Deep House Radio",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "128 kbit/s",
+ "https",
+ "internet radio",
+ "mp3",
+ "music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.wolfmusicradio.com:8000/Wolf_Music/radio.mp3",
+ "homepage": "https://wolfmusicradio.com/",
+ "logoUrl": "https://wolfmusicradio.com/img/favicon.png",
+ "votes": 268,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "72e8ae22-3366-4123-b8ba-05ec6d4f6c5d"
+ },
+ {
+ "id": "52be99a0-c223-4ddf-8e71-1eb0b43552f3",
+ "name": "Єдині новини",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 64,
+ "streamUrl": "https://online-news.radioplayer.ua/RadioNews",
+ "homepage": "https://radioplayer.ua/",
+ "logoUrl": null,
+ "votes": 6831,
+ "clickcount": 8,
+ "source": "radio-browser",
+ "sourceStationUuid": "52be99a0-c223-4ddf-8e71-1eb0b43552f3"
+ },
+ {
+ "id": "9a4c6adc-d939-4086-9913-88739513caf2",
+ "name": "1] Авторадіо",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://cast.mediaonline.net.ua/avtoradio",
+ "homepage": "https://avtoradio.ua/",
+ "logoUrl": "https://avtoradio.ua/images/logo.png",
+ "votes": 220,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "9a4c6adc-d939-4086-9913-88739513caf2"
+ },
+ {
+ "id": "d813e74b-48dd-4ef5-b842-b6bf11c759cf",
+ "name": "Kiss FM Deep",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "deep"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.kissfm.ua/KissFM_Deep",
+ "homepage": "https://www.kissfm.ua/",
+ "logoUrl": "https://play.tavr.media/static/image/header_menu/kiss_deep_210x210.png",
+ "votes": 494,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "d813e74b-48dd-4ef5-b842-b6bf11c759cf"
+ },
+ {
+ "id": "026cebc6-9629-4b21-b29d-1596945182b7",
+ "name": "Lounge FM Chill Out",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "chillout",
+ "lounge",
+ "relax"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/chillout320",
+ "homepage": "https://loungefm.com.ua/",
+ "logoUrl": "https://loungefm.com.ua/img/logo.png",
+ "votes": 462,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "026cebc6-9629-4b21-b29d-1596945182b7"
+ },
+ {
+ "id": "5fd5b0bf-dd9f-48ef-9948-641ab45d9446",
+ "name": "RadioRelax_Instrumental_HD",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.radiorelax.ua/RadioRelax_Instrumental_HD",
+ "homepage": "https://online.radiorelax.ua/",
+ "logoUrl": null,
+ "votes": 1992,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "5fd5b0bf-dd9f-48ef-9948-641ab45d9446"
+ },
+ {
+ "id": "75049d79-955c-4014-a7b5-700422eaa447",
+ "name": "РАДІО КИЇВ – 98 FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://cdn.vsnw.net:8943/kyiv_fm_128k",
+ "homepage": "https://radio.kyiv.media/",
+ "logoUrl": null,
+ "votes": 3004,
+ "clickcount": 7,
+ "source": "radio-browser",
+ "sourceStationUuid": "75049d79-955c-4014-a7b5-700422eaa447"
+ },
+ {
+ "id": "efad14d3-369e-496c-953d-e2f7cb1202d2",
+ "name": "ABN Radio",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "320 kbit/s",
+ "dance",
+ "electronic",
+ "house",
+ "https",
+ "internet radio",
+ "lviv",
+ "mp3",
+ "regional radio",
+ "techno",
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://radio.andrew-lviv.net/abn128",
+ "homepage": "https://radio.andrew-lviv.net/",
+ "logoUrl": "https://radio.andrew-lviv.net/favicon.ico",
+ "votes": 39,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "efad14d3-369e-496c-953d-e2f7cb1202d2"
+ },
+ {
+ "id": "96309e77-0601-11e8-ae97-52543be04c81",
+ "name": "Brokenbeats",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,russian,ukrainian",
+ "tags": [
+ "atmospheric",
+ "downtempo",
+ "drum and bass"
+ ],
+ "codec": "AAC",
+ "bitrate": 320,
+ "streamUrl": "https://stream.brokenbeats.net/tune",
+ "homepage": "http://brokenbeats.net/",
+ "logoUrl": "http://brokenbeats.net/favicon.ico",
+ "votes": 5350,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "96309e77-0601-11e8-ae97-52543be04c81"
+ },
+ {
+ "id": "1ac5a368-79bb-4382-a855-269989009598",
+ "name": "Kiss FM Ukraine HD",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.kissfm.ua/KissFM_Ukr_HD",
+ "homepage": "https://www.kissfm.ua/",
+ "logoUrl": null,
+ "votes": 3410,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "1ac5a368-79bb-4382-a855-269989009598"
+ },
+ {
+ "id": "04ab24cb-b826-4573-9ced-f9433d62540f",
+ "name": "Radio Bayraktar",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiobayraktar.ua/RadioBayraktar",
+ "homepage": "https://www.radiobayraktar.ua/",
+ "logoUrl": "https://play.tavr.media/static/image/header_menu/RadioBayraktar_220x220.jpg?v=1",
+ "votes": 28,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "04ab24cb-b826-4573-9ced-f9433d62540f"
+ },
+ {
+ "id": "39ed0087-f917-48f9-9cd1-df161ea14b6b",
+ "name": "RECORD DANCE RADIO",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "украина",
+ "tags": [
+ "dance/chr/edm"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.radiorecord.com.ua/rr_320",
+ "homepage": "https://www.radiorecord.com.ua/",
+ "logoUrl": "https://www.radiorecord.com.ua/wp-content/uploads/2022/03/logo.jpg",
+ "votes": 124,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "39ed0087-f917-48f9-9cd1-df161ea14b6b"
+ },
+ {
+ "id": "2bdeebd6-39d2-4c11-86c6-1713a1bcc281",
+ "name": "Радіо FM Галичина",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "320 kbit/s",
+ "https",
+ "lviv",
+ "mp3",
+ "music",
+ "podcasts",
+ "regional radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream320.galychyna.fm/WebSite",
+ "homepage": "https://galychyna.fm/",
+ "logoUrl": "https://galychyna.fm/favicon.ico",
+ "votes": 36,
+ "clickcount": 6,
+ "source": "radio-browser",
+ "sourceStationUuid": "2bdeebd6-39d2-4c11-86c6-1713a1bcc281"
+ },
+ {
+ "id": "95a8fd5a-11a7-4237-90d2-4c10d0c5c175",
+ "name": "109FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "house",
+ "progressive",
+ "techno",
+ "trance"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://solid48.streamupsolutions.com/proxy/cfujtbgw/109fm",
+ "homepage": "https://www.109fm.net/",
+ "logoUrl": "null",
+ "votes": 87,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "95a8fd5a-11a7-4237-90d2-4c10d0c5c175"
+ },
+ {
+ "id": "57d876d3-1ccd-4236-a54e-ad3b2869aabd",
+ "name": "coma.fm",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "blues",
+ "jazz",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.radio.co/s4360dbc20/listen",
+ "homepage": "https://coma.fm/",
+ "logoUrl": "https://i.imgur.com/TEZtEBT.png",
+ "votes": 37,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "57d876d3-1ccd-4236-a54e-ad3b2869aabd"
+ },
+ {
+ "id": "44ad083f-ecca-43cc-90cd-0a125b12fd00",
+ "name": "DJFM.UA [MP3 256k]",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://cast.fex.net/djfm_x",
+ "homepage": "https://djfm.ua/",
+ "logoUrl": null,
+ "votes": 244,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "44ad083f-ecca-43cc-90cd-0a125b12fd00"
+ },
+ {
+ "id": "a39688fa-2959-4b0c-8bf7-8cf0bc9dd108",
+ "name": "Lounge FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "chillout",
+ "lounge"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/loungefm320",
+ "homepage": "https://loungefm.com.ua/",
+ "logoUrl": "https://loungefm.com.ua/img/icon-144x144.png",
+ "votes": 139,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "a39688fa-2959-4b0c-8bf7-8cf0bc9dd108"
+ },
+ {
+ "id": "7a3745cd-bf32-493d-97b7-dac324354b7c",
+ "name": "Radio Relax",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "easy listening"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiorelax.ua/RadioRelax",
+ "homepage": "https://www.radiorelax.ua/",
+ "logoUrl": null,
+ "votes": 868,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7a3745cd-bf32-493d-97b7-dac324354b7c"
+ },
+ {
+ "id": "0d82a261-11ae-4af7-a34c-6952f3a886a3",
+ "name": "RadiVo",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "russian,ukrainian",
+ "tags": [
+ "mix",
+ "pop",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radivo.thx8te.kh.ua/listen/radivo/radio.mp3",
+ "homepage": "https://radivo.thx8te.kh.ua/public/radivo",
+ "logoUrl": "https://radivo.thx8te.kh.ua/static/uploads/radivo/album_art.1770827559.png",
+ "votes": 8,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "0d82a261-11ae-4af7-a34c-6952f3a886a3"
+ },
+ {
+ "id": "c67c1183-a504-4ca8-9c33-ab8bb8a49aa0",
+ "name": "Авторадіо",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "news",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/avtoradio320",
+ "homepage": "https://avtoradio.ua/",
+ "logoUrl": null,
+ "votes": 185,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "c67c1183-a504-4ca8-9c33-ab8bb8a49aa0"
+ },
+ {
+ "id": "7d3a75c7-5796-454f-90d1-d6b890df64f4",
+ "name": "Одесса радио",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "russian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://listen6.myradio24.com/odesradio",
+ "homepage": "https://listen6.myradio24.com/odesradio",
+ "logoUrl": null,
+ "votes": 15,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "7d3a75c7-5796-454f-90d1-d6b890df64f4"
+ },
+ {
+ "id": "8c0a93e5-7e5a-499d-85eb-347e40445ad1",
+ "name": "Радіо НВ 96.0",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "talk"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online-radio.nv.ua/radionv.mp3",
+ "homepage": "https://radio.nv.ua/",
+ "logoUrl": null,
+ "votes": 6716,
+ "clickcount": 5,
+ "source": "radio-browser",
+ "sourceStationUuid": "8c0a93e5-7e5a-499d-85eb-347e40445ad1"
+ },
+ {
+ "id": "70f82553-eb32-463e-9bd9-a17331a89177",
+ "name": "FM Disco Melody",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "disco",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.melodiafm.ua/MelodiaFM_Disco",
+ "homepage": "https://www.melodiafm.ua/",
+ "logoUrl": null,
+ "votes": 316,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "70f82553-eb32-463e-9bd9-a17331a89177"
+ },
+ {
+ "id": "c063268d-f6bf-49d3-8f4c-82dc95cd7292",
+ "name": "Megapolis FM 105.2 Kryvyi Rih",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.megapolis.fm/listen/kryvyi_rih/radio.mp3",
+ "homepage": "https://cast.megapolis.fm/public/kryvyi_rih",
+ "logoUrl": "https://cast.megapolis.fm/static/uploads/kryvyi_rih/album_art.1708626006.png",
+ "votes": 103,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "c063268d-f6bf-49d3-8f4c-82dc95cd7292"
+ },
+ {
+ "id": "38df9888-784d-49ba-b7a8-3cc2d6e7b8d1",
+ "name": "Rock",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 0,
+ "streamUrl": "https://stream.zeno.fm/r6o4xljca6cvv",
+ "homepage": "https://stream.zeno.fm/r6o4xljca6cvv",
+ "logoUrl": null,
+ "votes": 132,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "38df9888-784d-49ba-b7a8-3cc2d6e7b8d1"
+ },
+ {
+ "id": "705a8179-a2e3-479d-91fb-26dbb95e4856",
+ "name": "Радіо Шлягер FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "news",
+ "other",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 224,
+ "streamUrl": "https://cast.brg.ua/shanson_main_public_mp3_hq",
+ "homepage": "https://shlager.fm/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20250111_141908308.jpg?alt=media&token=5b476f2f-6a30-4b8b-8d70-96c135e82ca8",
+ "votes": 447,
+ "clickcount": 4,
+ "source": "radio-browser",
+ "sourceStationUuid": "705a8179-a2e3-479d-91fb-26dbb95e4856"
+ },
+ {
+ "id": "ed3880a4-7ac6-4872-8931-9f6cb433f260",
+ "name": "Radio Gold Ukraine",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radioplayer.ua/RadioGold",
+ "homepage": "https://www.radiogold.com.ua/",
+ "logoUrl": null,
+ "votes": 284,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ed3880a4-7ac6-4872-8931-9f6cb433f260"
+ },
+ {
+ "id": "4833b353-709b-48fd-9d0a-a4a93e766602",
+ "name": "relax int",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "engilsh",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radiorelax.ua/RadioRelax_Int",
+ "homepage": "https://www.radiorelax.ua/",
+ "logoUrl": "null",
+ "votes": 87,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4833b353-709b-48fd-9d0a-a4a93e766602"
+ },
+ {
+ "id": "3ac2b9cc-46f2-42c3-b63f-975da3b70000",
+ "name": "RockRadio UA (РокРадіо UA)",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "rock ua"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://rockradioua.online:8433/rock_256",
+ "homepage": "https://rockradioua.online/",
+ "logoUrl": "https://rockradioua.online/wp-content/themes/rock-radio/favicon/apple-touch-icon.png",
+ "votes": 326,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "3ac2b9cc-46f2-42c3-b63f-975da3b70000"
+ },
+ {
+ "id": "7c03afd8-e20f-45b6-bc28-8c369d90dd4c",
+ "name": "STYLE FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,russian,ukrainian",
+ "tags": [
+ "chillout",
+ "house/soulful/deep house",
+ "jazz",
+ "light",
+ "lounge",
+ "lounge music"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://myradio24.org/station",
+ "homepage": "https://fm.co.ua/",
+ "logoUrl": "https://fm.co.ua/wp-content/uploads/2025/10/STYLEFM-KV.jpg",
+ "votes": 6,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "7c03afd8-e20f-45b6-bc28-8c369d90dd4c"
+ },
+ {
+ "id": "192405d7-e683-418d-8bcc-07c4cc8e9aa1",
+ "name": "Tim FM Chernihiv",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "alarm",
+ "local news",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://tim-fm.tim.ua/mp3",
+ "homepage": "https://timfm.online/",
+ "logoUrl": "https://timfm.online/favicon.ico",
+ "votes": 84,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "192405d7-e683-418d-8bcc-07c4cc8e9aa1"
+ },
+ {
+ "id": "a6e7696f-e9bb-4b0e-9bba-728a6e92a150",
+ "name": "True Black Metal Radio",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://trueblackmetalradio.com:8000/radio",
+ "homepage": null,
+ "logoUrl": null,
+ "votes": 144,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "a6e7696f-e9bb-4b0e-9bba-728a6e92a150"
+ },
+ {
+ "id": "27519a87-74fd-4325-8c1a-43d3218dee08",
+ "name": "ZFM+ (Захид ФМ +)",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "dance",
+ "edm",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.zfm.com.ua:8443/zfm",
+ "homepage": "https://zfm.com.ua/",
+ "logoUrl": "https://zfm.com.ua/images/default_album.jpg",
+ "votes": 41,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "27519a87-74fd-4325-8c1a-43d3218dee08"
+ },
+ {
+ "id": "5095ccc8-4f14-4b0b-986e-c80c54f839c1",
+ "name": "Буковинська Хвиля",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "news",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://100.cv.ua:8443/play",
+ "homepage": "https://www.100fm.cv.ua/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20231117_102518593.jpg?alt=media&token=bb97ee18-72a3-4693-bebe-c0c56e108ebe",
+ "votes": 79,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "5095ccc8-4f14-4b0b-986e-c80c54f839c1"
+ },
+ {
+ "id": "2354188e-32a3-4fe8-8219-cb537c92eaf9",
+ "name": "Наше Радіо 107,9",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://online.nasheradio.ua/NasheRadio_HD",
+ "homepage": "https://www.nasheradio.ua/",
+ "logoUrl": "https://play.tavr.media/static/image/nashe/NasheRadio_NewLogo_228x228.png",
+ "votes": 97,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "2354188e-32a3-4fe8-8219-cb537c92eaf9"
+ },
+ {
+ "id": "ca771d20-3fb2-4fc1-ad71-e86bd87c07be",
+ "name": "Радіо Київстар Made in Ukraine",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "256 kbit/s",
+ "aac",
+ "https",
+ "internet radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 281,
+ "streamUrl": "https://radio.kyivstar.ua/stream/ukraine/master.m3u8",
+ "homepage": "https://radio.kyivstar.ua/",
+ "logoUrl": "https://radio.kyivstar.ua/favicon.ico",
+ "votes": 70,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "ca771d20-3fb2-4fc1-ad71-e86bd87c07be"
+ },
+ {
+ "id": "c737b371-04bc-427a-8be4-fa27dd4a7482",
+ "name": "Радіо Київстар Rock",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "256 kbit/s",
+ "aac",
+ "https",
+ "internet radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 281,
+ "streamUrl": "https://radio.kyivstar.ua/stream/rock/master.m3u8",
+ "homepage": "https://radio.kyivstar.ua/",
+ "logoUrl": "https://radio.kyivstar.ua/favicon.ico",
+ "votes": 18,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "c737b371-04bc-427a-8be4-fa27dd4a7482"
+ },
+ {
+ "id": "102e2326-fc6d-48b7-ad9f-013782fed8c4",
+ "name": "Радіо Сяйво",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "320 kbit/s",
+ "https",
+ "mp3",
+ "music",
+ "regional radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream.ntktv.ua/syaivo.mp3",
+ "homepage": "https://syaivo.fm/",
+ "logoUrl": "https://syaivo.fm/wp-content/uploads/2023/11/logo-192.png",
+ "votes": 19,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "102e2326-fc6d-48b7-ad9f-013782fed8c4"
+ },
+ {
+ "id": "4a1c7503-b670-4e20-ae86-2e0db9ab8b0b",
+ "name": "Явір ФМ",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "160 kbit/s",
+ "aac",
+ "https",
+ "music",
+ "regional radio",
+ "yavoriv"
+ ],
+ "codec": "AAC+",
+ "bitrate": 160,
+ "streamUrl": "https://complex.in.ua/Yavir",
+ "homepage": "https://yavir.fm/",
+ "logoUrl": "https://yavir.fm/assets/images/logon.png",
+ "votes": 72,
+ "clickcount": 3,
+ "source": "radio-browser",
+ "sourceStationUuid": "4a1c7503-b670-4e20-ae86-2e0db9ab8b0b"
+ },
+ {
+ "id": "156661f7-db32-4f54-9075-a731703fbc25",
+ "name": "Ax Radio!",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "english,ukrainian",
+ "tags": [
+ "dance",
+ "hits",
+ "house",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 0,
+ "streamUrl": "https://m.axradio.net/stream.mp3",
+ "homepage": "https://axradio.net/",
+ "logoUrl": "https://play.axradio.net/img/favicon.png",
+ "votes": 73,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "156661f7-db32-4f54-9075-a731703fbc25"
+ },
+ {
+ "id": "9fdafa4d-71ca-4c69-8b1d-1db802988e9f",
+ "name": "FreshRock Internet Radio Station",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://stream.freshrock.net/128.mp3",
+ "homepage": "https://freshrock.net/page/main",
+ "logoUrl": "https://freshrock.net/favicon.ico",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9fdafa4d-71ca-4c69-8b1d-1db802988e9f"
+ },
+ {
+ "id": "3e1d723b-fcfe-4651-b593-b82ac2ecd646",
+ "name": "Garmonia Mira",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "classical",
+ "jazz",
+ "smooth"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://garmonia-stream.fakel.com.ua/1",
+ "homepage": "https://garmoniamira.com/",
+ "logoUrl": "https://garmoniamira.com/wa-data/public/site/themes/garmonia/img/mylogo.png",
+ "votes": 219,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3e1d723b-fcfe-4651-b593-b82ac2ecd646"
+ },
+ {
+ "id": "577f14dd-72e7-4523-8d80-978e56ea8453",
+ "name": "REPLAY NEWS - Українська Новинне радіо кожні 5 хвилин",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "news"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://replaynewsuk.ice.infomaniak.ch/replaynewsuk-128.mp3",
+ "homepage": "https://www.replaynews.net/",
+ "logoUrl": "https://www.publicsante.com/BIENVENU/LOGO%20REPLAY%20NEWS-UK.png",
+ "votes": 10,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "577f14dd-72e7-4523-8d80-978e56ea8453"
+ },
+ {
+ "id": "e1c4b3cf-f925-47a5-9b5b-00107f26606d",
+ "name": "The West Pole Radio",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.z-polus.info/hq",
+ "homepage": "https://z-polus.info/",
+ "logoUrl": "https://i0.wp.com/z-polus.info/wp-content/uploads/2020/12/cropped-zah_polus_white.png?fit=180%2c180&ssl=1",
+ "votes": 60,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "e1c4b3cf-f925-47a5-9b5b-00107f26606d"
+ },
+ {
+ "id": "ff2ab1e0-e007-4f48-aeb0-396c3d177717",
+ "name": "Trans World Radio Ukraine",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [],
+ "codec": "AAC",
+ "bitrate": 96,
+ "streamUrl": "https://radio.eclipse-streaming.co.za/listen/transworldradioukraine/TWR-ukraine_96.m4a",
+ "homepage": "https://twr-ua.org/",
+ "logoUrl": "https://radio.eclipse-streaming.co.za/static/uploads/transworldradioukraine/album_art.1708590525.jpg",
+ "votes": 40,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "ff2ab1e0-e007-4f48-aeb0-396c3d177717"
+ },
+ {
+ "id": "007a6934-18bc-4b23-8b21-54db0e9cc98a",
+ "name": "Yantarne FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "64 kbit/s",
+ "aac",
+ "https",
+ "music",
+ "regional radio"
+ ],
+ "codec": "AAC+",
+ "bitrate": 64,
+ "streamUrl": "https://complex.in.ua/yantarne",
+ "homepage": "https://yantarne.fm/",
+ "logoUrl": "https://yantarne.fm/img/main/favicon.webp",
+ "votes": 78,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "007a6934-18bc-4b23-8b21-54db0e9cc98a"
+ },
+ {
+ "id": "f8752550-7d50-4f6e-a7c0-652a7b908625",
+ "name": "Гуцульське радіо",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "320 kbit/s",
+ "https",
+ "mp3",
+ "music",
+ "regional news",
+ "regional radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://stream320.galychyna.fm/HutsulFM_RP",
+ "homepage": "https://hutsul.radio.fm/",
+ "logoUrl": "https://hutsul.radio.fm/favicon.ico",
+ "votes": 103,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "f8752550-7d50-4f6e-a7c0-652a7b908625"
+ },
+ {
+ "id": "cc45c968-e9b9-4597-8ffb-1629ff6abc3c",
+ "name": "Радіо Дзвони",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "40 kbit/s",
+ "aac",
+ "https",
+ "ivano-frankivsk",
+ "music",
+ "regional radio",
+ "religion"
+ ],
+ "codec": "AAC+",
+ "bitrate": 48,
+ "streamUrl": "https://radio.dzvony.org.ua/",
+ "homepage": "https://www.dzvony.org.ua/",
+ "logoUrl": null,
+ "votes": 17,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "cc45c968-e9b9-4597-8ffb-1629ff6abc3c"
+ },
+ {
+ "id": "efb88d9d-b816-478b-a67a-0592739500ec",
+ "name": "Радіо Київстар Chill & Lounge",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "256 kbit/s",
+ "aac",
+ "https",
+ "internet radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 281,
+ "streamUrl": "https://radio.kyivstar.ua/stream/chill/master.m3u8",
+ "homepage": "https://radio.kyivstar.ua/",
+ "logoUrl": "https://radio.kyivstar.ua/favicon.ico",
+ "votes": 34,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "efb88d9d-b816-478b-a67a-0592739500ec"
+ },
+ {
+ "id": "9c539fdc-ef3a-4b24-aadf-27d1a00b21dd",
+ "name": "Радіо Київстар Electro",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "256 kbit/s",
+ "aac",
+ "https",
+ "internet radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 281,
+ "streamUrl": "https://radio.kyivstar.ua/stream/elektro/master.m3u8",
+ "homepage": "https://radio.kyivstar.ua/",
+ "logoUrl": "https://radio.kyivstar.ua/favicon.ico",
+ "votes": 24,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "9c539fdc-ef3a-4b24-aadf-27d1a00b21dd"
+ },
+ {
+ "id": "927ad9f0-47db-41ad-982f-26a778bee9d7",
+ "name": "Радіо Ми-Україна",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "news",
+ "other",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.mediaonline.net.ua/wau320",
+ "homepage": "https://weua.fm/",
+ "logoUrl": "https://firebasestorage.googleapis.com/v0/b/radiogalaxy-580f4.appspot.com/o/images%2FIMG_20250104_130149460.jpg?alt=media&token=32e0c1f7-c755-4f7d-91f6-c1e9567bab34",
+ "votes": 17,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "927ad9f0-47db-41ad-982f-26a778bee9d7"
+ },
+ {
+ "id": "3d73d70f-ce5a-4f08-95dd-da97a1e77157",
+ "name": "Радіо Нове Життя",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "256 kbit/s",
+ "aac",
+ "https",
+ "internet radio",
+ "religion"
+ ],
+ "codec": "AAC",
+ "bitrate": 256,
+ "streamUrl": "https://online.novezhitya.net:8000/nlradio_ua-hi.aac",
+ "homepage": "https://novezhitya.net/",
+ "logoUrl": "https://novezhitya.net/wp-content/themes/nlradio/img/header-logo.svg",
+ "votes": 11,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "3d73d70f-ce5a-4f08-95dd-da97a1e77157"
+ },
+ {
+ "id": "321ebdf3-45a2-44a7-aa12-180b4f7429c3",
+ "name": "Радіо РАІ",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "aac",
+ "https",
+ "music",
+ "regional news",
+ "regional radio"
+ ],
+ "codec": "AAC+",
+ "bitrate": 320,
+ "streamUrl": "https://radio.rai.ua:9000/rai",
+ "homepage": "https://rai.ua/",
+ "logoUrl": "https://rai.ua/wp-content/uploads/2021/03/cropped-favkarai2-32x32.png",
+ "votes": 15,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "321ebdf3-45a2-44a7-aa12-180b4f7429c3"
+ },
+ {
+ "id": "990aa9cd-b761-46ea-8c50-e79c5a235a31",
+ "name": "Радіо С4",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "320 kbit/s",
+ "https",
+ "mp3",
+ "music",
+ "regional radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://radio.c4.com.ua:8443/320",
+ "homepage": "https://c4.com.ua/",
+ "logoUrl": "https://c4.com.ua/wp-content/themes/c4/assets/img/favicon.png",
+ "votes": 19,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "990aa9cd-b761-46ea-8c50-e79c5a235a31"
+ },
+ {
+ "id": "95197788-a251-4967-aeda-0c9b10aa41d8",
+ "name": "Радіо Трек",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "320 kbit/s",
+ "https",
+ "mp3",
+ "music",
+ "news",
+ "regional radio",
+ "rivne"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://cast.radiotrek.rv.ua:8433/MP3_320",
+ "homepage": "https://radiotrek.rv.ua/",
+ "logoUrl": "https://radiotrek.rv.ua/tpl/images/icons/apple-touch-icon.png",
+ "votes": 21,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "95197788-a251-4967-aeda-0c9b10aa41d8"
+ },
+ {
+ "id": "2b11e548-801a-48f3-a74e-dab927c71ece",
+ "name": "РокРадіо Metal",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "https",
+ "internet radio",
+ "metal",
+ "mp3"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://rockradioua.online:8433/metal_256",
+ "homepage": "https://rockradioua.online/",
+ "logoUrl": "https://rockradioua.online/wp-content/themes/rock-radio/favicon/favicon-32x32.png",
+ "votes": 35,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "2b11e548-801a-48f3-a74e-dab927c71ece"
+ },
+ {
+ "id": "4abcb0d3-1c2a-4c5c-91da-e877afc56ad5",
+ "name": "Слобожанське ФМ",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "information",
+ "music",
+ "national",
+ "news",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://globalic.stream:1810/stream",
+ "homepage": "https://www.sfm.in.ua/",
+ "logoUrl": "https://www.sfm.in.ua/wp-content/uploads/cropped-favicon-180x180.png",
+ "votes": 98,
+ "clickcount": 2,
+ "source": "radio-browser",
+ "sourceStationUuid": "4abcb0d3-1c2a-4c5c-91da-e877afc56ad5"
+ },
+ {
+ "id": "e2e83370-1d1b-4cb9-a9ef-168a50b5c900",
+ "name": "Radio Shanson",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "music",
+ "oldies",
+ "other",
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 256,
+ "streamUrl": "https://cast.brg.ua/newshanson_main_public_mp3_hq",
+ "homepage": "https://brg.ua/radio-shanson/",
+ "logoUrl": "null",
+ "votes": 66,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "e2e83370-1d1b-4cb9-a9ef-168a50b5c900"
+ },
+ {
+ "id": "7854411c-70ce-4fc3-b56c-87ce23e9fbce",
+ "name": "Подільське",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": null,
+ "tags": [
+ "pop"
+ ],
+ "codec": "MP3",
+ "bitrate": 320,
+ "streamUrl": "https://podilske.com:8013/p-radio",
+ "homepage": "https://www.podilske.com/",
+ "logoUrl": null,
+ "votes": 26,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "7854411c-70ce-4fc3-b56c-87ce23e9fbce"
+ },
+ {
+ "id": "c6d61009-2ebf-4cc7-bddf-8533c95ae37d",
+ "name": "Радіо Svoboda FM",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "192 kbit/s",
+ "https",
+ "internet radio",
+ "mp3",
+ "music",
+ "regional radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 192,
+ "streamUrl": "https://listen.radioking.com/radio/623869/stream/686722",
+ "homepage": "https://radio.svoboda.fm/",
+ "logoUrl": "https://radio.svoboda.fm/upload/design/661e642956fa25.49541093.png",
+ "votes": 33,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "c6d61009-2ebf-4cc7-bddf-8533c95ae37d"
+ },
+ {
+ "id": "efe499e7-ba61-4629-8436-20ede0d29f34",
+ "name": "Радіо Інді.UA",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukrainian",
+ "tags": [
+ "pop",
+ "rnb",
+ "rock"
+ ],
+ "codec": "MP3",
+ "bitrate": 128,
+ "streamUrl": "https://online.radioplayer.ua/RadioIndieUA",
+ "homepage": "https://play.tavr.media/radioindieua/",
+ "logoUrl": "https://upload.wikimedia.org/wikipedia/commons/4/48/%D0%A0%D0%B0%D0%B4%D1%96%D0%BE_%D0%86%D0%BD%D0%B4%D1%96.UA.png",
+ "votes": 33,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "efe499e7-ba61-4629-8436-20ede0d29f34"
+ },
+ {
+ "id": "431b6cc1-f9a4-4b73-b602-1654a412716c",
+ "name": "Радіо Київстар Retro",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "ukranian",
+ "tags": [
+ "256 kbit/s",
+ "aac",
+ "https",
+ "internet radio"
+ ],
+ "codec": "AAC",
+ "bitrate": 281,
+ "streamUrl": "https://radio.kyivstar.ua/stream/retromusic/master.m3u8",
+ "homepage": "https://radio.kyivstar.ua/",
+ "logoUrl": "https://radio.kyivstar.ua/favicon.ico",
+ "votes": 47,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "431b6cc1-f9a4-4b73-b602-1654a412716c"
+ },
+ {
+ "id": "31a3aae7-9bc4-4c5f-9519-64793223133c",
+ "name": "Радіо Пульс",
+ "country": "Ukraine",
+ "countryCode": "UA",
+ "language": "hungarian,ukranian",
+ "tags": [
+ "96 kbit/s",
+ "https",
+ "mp3",
+ "music",
+ "regional news",
+ "regional radio"
+ ],
+ "codec": "MP3",
+ "bitrate": 96,
+ "streamUrl": "https://pulzusfm.eu/sionelo",
+ "homepage": "https://www.pulzusfm.eu/ua",
+ "logoUrl": "https://www.pulzusfm.eu/sites/all/themes/ino/ino_sub/favicon.ico",
+ "votes": 6,
+ "clickcount": 1,
+ "source": "radio-browser",
+ "sourceStationUuid": "31a3aae7-9bc4-4c5f-9519-64793223133c"
}
]
diff --git a/public/stations.json b/public/stations.json
index 38fb0ac..6d5b54f 100644
--- a/public/stations.json
+++ b/public/stations.json
@@ -1,1420 +1,1000 @@
[
- {
- "id": "Radio1",
- "title": "Radio 1",
- "slogan": "Več dobre glasbe",
- "logo": "http://datacache.radio.si/api/radiostations/logo/radio1.svg",
- "liveAudio": "http://live.radio1.si/Radio1",
- "liveVideo": null,
- "poster": "",
- "lastSongs": "http://data.radio.si/api/lastsongsxml/radio1/json",
- "epg": "http://spored.radio.si/api/now/radio1",
- "defaultText": "www.radio1.si",
- "www": "https://www.radio1.si",
- "mountPoints": [
- "Radio1",
- "Radio1BK",
- "Radio1CE",
- "Radio1GOR",
- "Radio1KOR",
- "Radio1LI",
- "Radio1MB",
- "Radio1NM",
- "Radio1OB",
- "Radio1PO",
- "Radio1PR",
- "Radio1PRI",
- "Radio1PT",
- "Radio1RIB",
- "Radio1VE",
- "Radio1VR",
- "Radio1SAV"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38651300300"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "http://m.radio1.si"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "http://www.youtube.com/user/radio1slovenia"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "http://facebook.com/RadioEna"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "http://www.instagram.com/radio1slo"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radio1?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=50668",
- "rpUid": "705167",
- "dabUser": "radio1",
- "dabPass": "sUbSGhmzdwKQT",
- "dabDefaultImg": "http://media.radio.si/logo/dns/radio1/320x240.png",
- "small": false
+ {
+ "id": "Radio1",
+ "name": "Radio 1",
+ "slogan": "Več dobre glasbe",
+ "category": "Pop",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "pop",
+ "radio-1"
+ ],
+ "website": "https://www.radio1.si",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/radio1.svg"
},
- {
- "id": "Aktual",
- "title": "Radio Aktual",
- "slogan": "Narejen za vaša ušesa",
- "logo": "http://datacache.radio.si/api/radiostations/logo/aktual.svg",
- "liveAudio": "http://live.radio.si/Aktual",
- "liveVideo": "https://radio.serv.si/AktualTV/video.m3u8",
- "poster": "https://cdn1.radio.si/900/screenaktual_90c0280a8.jpg",
- "lastSongs": "http://data.radio.si/api/lastsongsxml/aktual/json",
- "epg": null,
- "defaultText": "",
- "www": "https://radioaktual.si",
- "mountPoints": [
- "Aktual"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+386158801430"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radioaktual.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/raktual?sub_confirmation=1"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radioaktual/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705160",
- "dabUser": "aktual",
- "dabPass": "GB31GZd5st0M",
- "dabDefaultImg": "http://media.radio.si/logo/dns/aktual/RadioAktual_DAB.jpg",
- "small": false
+ "streams": {
+ "audio": "http://live.radio1.si/Radio1"
},
- {
- "id": "Veseljak",
- "title": "Radio Veseljak",
- "slogan": "Najboljša domača glasba",
- "logo": "http://datacache.radio.si/api/radiostations/logo/veseljak.svg",
- "liveAudio": "http://live.radio.si/Veseljak",
- "liveVideo": "https://radio.serv.si/VeseljakGolicaTV/video.m3u8",
- "poster": "https://cdn1.radio.si/900/screenveseljak_166218c26.jpg",
- "lastSongs": "http://data.radio.si/api/lastsongsxml/veseljak/json",
- "epg": null,
- "defaultText": "www.veseljak.si",
- "www": "https://veseljak.si/",
- "mountPoints": [
- "Veseljak",
- "VeseljakPO"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38615880110"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://veseljak.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/c/VESELJAKNAJBOLJSADOMACAGLASBA"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioVeseljak"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/veseljak.si/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705166",
- "dabUser": "veseljak",
- "dabPass": "sLRDCAX9j3k2",
- "dabDefaultImg": "http://media.radio.si/logo/dns/veseljak/RadioVeseljak_DAB.jpg",
- "small": false
- },
- {
- "id": "Radio1Rock",
- "title": "Radio 1 ROCK",
- "slogan": "100% Rock",
- "logo": "http://datacache.radio.si/api/radiostations/logo/radio1rock.svg",
- "liveAudio": "http://live.radio.si/Radio1Rock",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/radio1rock/json",
- "epg": "http://spored.radio.si/api/now/radio1rock",
- "defaultText": "www.radio1rock.si",
- "www": "https://radio1rock.si/",
- "mountPoints": [
- "Radio1Rock"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38683879300"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radio1rock.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/R1Rock"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/R1rock.si/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radiobob?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=61109",
- "rpUid": "705162",
- "dabUser": "radiobob",
- "dabPass": "cjT24PpyVxit6",
- "dabDefaultImg": "http://media.radio.si/logo/dns/radio1rock/320x240.png",
- "small": false
- },
- {
- "id": "Radio80",
- "title": "Radio 1 80-a",
- "slogan": "Tvoji najljubši hiti 80-ih",
- "logo": "http://datacache.radio.si/api/radiostations/logo/radio80.svg",
- "liveAudio": "http://live.radio.si/Radio80",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/radio80/json",
- "epg": "http://spored.radio.si/api/now/radio80",
- "defaultText": "www.radio80.si",
- "www": "https://radio80.si/",
- "mountPoints": [
- "Radio80"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38615008875"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radio80.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/radio1slovenia"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radioena"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radio180-a?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=89760",
- "rpUid": "705102",
- "dabUser": "radio80",
- "dabPass": "nc6da2LolcBXC",
- "dabDefaultImg": "http://media.radio.si/logo/dns/radio80/320x240.png",
- "small": false
- },
- {
- "id": "Radio90",
- "title": "Radio 1 90-a",
- "slogan": "Samo hiti 90-ih",
- "logo": "http://datacache.radio.si/api/radiostations/logo/radio90.svg",
- "liveAudio": "http://live.radio.si/Radio90",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/radio90/json",
- "epg": null,
- "defaultText": "www.radio1.si",
- "www": "https://radio1.si/",
- "mountPoints": [
- "Radio90"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38615008875"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radio1.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/radio1slovenia"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radioena"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705172",
- "dabUser": "radio90",
- "dabPass": "P2RyUrHcyq7M",
- "dabDefaultImg": "http://media.radio.si/logo/dns/radio90/320x240.png",
- "small": false
- },
- {
- "id": "Country",
- "title": "Radio 1 Country",
- "slogan": "Samo največji country hiti",
- "logo": "http://datacache.radio.si/api/radiostations/logo/country.svg",
- "liveAudio": "http://live.radio.si/Country",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/country/json",
- "epg": "http://spored.radio.si/api/now/toti",
- "defaultText": "www.radio1.si",
- "www": "https://radio1.si/",
- "mountPoints": [
- "Country",
- "Toti"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38615008875"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radio1.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/radio1slovenia"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radioena"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705181",
- "dabUser": "country",
- "dabPass": "h4aagv93jq",
- "dabDefaultImg": "http://media.radio.si/logo/dns/country/320x240.png",
- "small": false
- },
- {
- "id": "Toti",
- "title": "Toti radio",
- "slogan": "Toti hudi hiti",
- "logo": "http://datacache.radio.si/api/radiostations/logo/toti.svg",
- "liveAudio": "http://live.radio.si/Toti",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/toti/json",
- "epg": "http://spored.radio.si/api/now/toti",
- "defaultText": "www.totiradio.si",
- "www": "https://totiradio.si/",
- "mountPoints": [
- "Maxi",
- "Toti"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38651220220"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://totiradio.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/radioantenaslo"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/HitradioAntena"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radioantena.si/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/totiradio?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=91414",
- "rpUid": "705108",
- "dabUser": "toti",
- "dabPass": "wmAos05tECsmf",
- "dabDefaultImg": "http://media.radio.si/logo/dns/toti/320x240.png",
- "small": false
- },
- {
- "id": "Antena",
- "title": "Radio Antena",
- "slogan": "Največ hitov, najmanj govora",
- "logo": "http://datacache.radio.si/api/radiostations/logo/antena.svg",
- "liveAudio": "http://live.radio.si/Antena",
- "liveVideo": "https://radio.serv.si/BestTV/video.m3u8",
- "poster": "https://cdn1.radio.si/900/screenbest_6559e3ac8.jpg",
- "lastSongs": "http://data.radio.si/api/lastsongsxml/antena/json",
- "epg": "http://spored.radio.si/api/now/antena",
- "defaultText": "www.radioantena.si",
- "www": "https://radioantena.si/",
- "mountPoints": [
- "Antena"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38612425630 "
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radioantena.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/radioantenaslo"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/HitradioAntena"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radioantena.si/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radioantena?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=37864",
- "rpUid": "705161",
- "dabUser": "radioantena",
- "dabPass": "nGkMhFk77jnBQ",
- "dabDefaultImg": "http://media.radio.si/logo/dns/antena/320x240.png",
- "small": false
- },
- {
- "id": "BestFM",
- "title": "BestFM",
- "slogan": "Muska, muska, muska",
- "logo": "http://datacache.radio.si/api/radiostations/logo/bestfm.svg",
- "liveAudio": "http://live.radio.si/BestFM",
- "liveVideo": "https://radio.serv.si/BestTV/video.m3u8",
- "poster": "https://cdn1.radio.si/900/screenbest_6559e3ac8.jpg",
- "lastSongs": "http://data.radio.si/api/lastsongsxml/bestfm/json",
- "epg": "",
- "defaultText": "www.bestfm.si",
- "www": "https://bestfm.si/",
- "mountPoints": [
- "BestFM"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38673372030"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://bestfm.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/profile.php?id=100086776586975"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/bestfm.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiokrka/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705115",
- "dabUser": "bestfm",
- "dabPass": "momo911x",
- "dabDefaultImg": "http://media.radio.si/logo/dns/bestfm/BestFM_DAB.jpg",
- "small": false
- },
- {
- "id": "Krka",
- "title": "Radio Krka",
- "slogan": "Dolenjska v srcu",
- "logo": "http://datacache.radio.si/api/radiostations/logo/krka.svg",
- "liveAudio": "http://live.radio.si/Krka",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/krka/json",
- "epg": "",
- "defaultText": "www.radiokrka.si",
- "www": "https://radiokrka.si/",
- "mountPoints": [
- "Krka"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38673372030"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radiokrka.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/radiokrka"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radiokrka"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiokrka/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705120",
- "dabUser": "krka",
- "dabPass": "qBi6z!um2Gm",
- "dabDefaultImg": "http://media.radio.si/logo/dns/krka/RadioKrka_DAB.jpg",
- "small": false
- },
- {
- "id": "Klasik",
- "title": "Klasik radio",
- "slogan": "Glasba, ki vas sprosti",
- "logo": "https://data.radio.si/api/radiostations/logo/klasik.svg",
- "liveAudio": "http://live.radio.si/Klasik",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/klasik/json",
- "epg": "",
- "defaultText": "www.klasikradio.si",
- "www": "https://www.klasikradio.si/",
- "mountPoints": [
- "Klasik"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38612425630"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.klasikradio.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UCd7OpUbSIoZarJgwFf4aIxw"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radiosalomon"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiosalomon/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705176",
- "dabUser": "klasik",
- "dabPass": "mQTpTR9XEbiF",
- "dabDefaultImg": "http://media.radio.si/logo/dns/klasik/320x240.png",
- "small": false
- },
- {
- "id": "Maxi",
- "title": "Toti Maxi",
- "slogan": "Sama dobra glasba",
- "logo": "https://data.radio.si/api/radiostations/logo/maxi.svg",
- "liveAudio": "http://live.radio.si/Maxi",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/toti/json",
- "epg": "",
- "defaultText": "www.totimaxi.si",
- "www": "https://www.radiomaxi.si/",
- "mountPoints": [
- "Maxi"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38631628444"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radiomaxi.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/profile.php?id=100064736766638"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioPtuj"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radio_ptuj/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/totiradio?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=37998",
- "rpUid": "705109",
- "dabUser": "ptuj",
- "dabPass": "cwv4jXVKMYT",
- "dabDefaultImg": "http://media.radio.si/logo/dns/ptuj/RadioPtuj_DAB.jpg",
- "small": false
- },
- {
- "id": "Salomon",
- "title": "Radio Salomon",
- "slogan": "Izbrana urbana glasba",
- "logo": "http://datacache.radio.si/api/radiostations/logo/salomon.svg",
- "liveAudio": "http://live.radio.si/Salomon",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/salomon/json",
- "epg": "",
- "defaultText": "www.radiosalomon.si",
- "www": "https://radiosalomon.si/",
- "mountPoints": [
- "Salomon"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+386015880111"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radiosalomon.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UCd7OpUbSIoZarJgwFf4aIxw"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radiosalomon"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiosalomon/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705116",
- "dabUser": "salomon",
- "dabPass": "a1bfadd8b8ut",
- "dabDefaultImg": "http://media.radio.si/logo/dns/salomon/RadioSalomon_DAB.jpg",
- "small": false
- },
- {
- "id": "Ptuj",
- "title": "Radio Ptuj",
- "slogan": "Največje uspešnice vseh časov",
- "logo": "https://data.radio.si/api/radiostations/logo/ptuj.svg",
- "liveAudio": "http://live.radio.si/Ptuj",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/ptuj/json",
- "epg": "",
- "defaultText": "www.radio-ptuj.si",
- "www": "https://www.radio-ptuj.si/",
- "mountPoints": [
- "Ptuj"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38627493420"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radio-ptuj.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/@RadioPtuj"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioPtuj"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radio_ptuj/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705119",
- "dabUser": "ptuj",
- "dabPass": "cwv4jXVKMYT",
- "dabDefaultImg": "http://media.radio.si/logo/dns/ptuj/RadioPtuj_DAB.jpg",
- "small": false
- },
- {
- "id": "Fantasy",
- "title": "Radio Fantasy",
- "slogan": "Same dobre vibracije",
- "logo": "https://data.radio.si/api/radiostations/logo/fantasy.svg",
- "liveAudio": "http://live.radio.si/Fantasy",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/fantasy/json",
- "epg": "http://spored.radio.si/api/now/koroski",
- "defaultText": "",
- "www": "https://rfantasy.si/",
- "mountPoints": [
- "Fantasy"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38634903921"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.rfantasy.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/c/RadioFantasyTv"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioFantasySlo"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiofantasyslo/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radiofantasy?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=61118",
- "rpUid": "",
- "dabUser": "koroski",
- "dabPass": "num87dhket",
- "dabDefaultImg": "http://media.radio.si/logo/dns/koroski/320x240.png",
- "small": true
- },
- {
- "id": "Robin",
- "title": "Radio Robin",
- "slogan": "Brez tebe ni mene",
- "logo": "https://data.radio.si/api/radiostations/logo/robin.svg",
- "liveAudio": "http://live.radio.si/Robin",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/robin/json",
- "epg": "http://spored.radio.si/api/now/robin",
- "defaultText": "www.robin.si",
- "www": "https://www.robin.si/",
- "mountPoints": [
- "Robin"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38653302822"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.robin.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UCACfPObotnJAnVXfCZNMlUg"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/Radio.Robin.goriski"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radio_robin/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radiorobin?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=37984",
- "rpUid": "705103",
- "dabUser": "radiorobin",
- "dabPass": "rt5mo9b9",
- "dabDefaultImg": "http://media.radio.si/logo/dns/robin/320x240.png",
- "small": false
- },
- {
- "id": "Koroski",
- "title": "Koroški radio",
- "slogan": "Ritem Koroške",
- "logo": "https://data.radio.si/api/radiostations/logo/koroski.svg",
- "liveAudio": "http://live.radio.si/Koroski",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/koroski/json",
- "epg": "http://spored.radio.si/api/now/koroski",
- "defaultText": "www.koroski-radio.si",
- "www": "https://www.koroski-radio.si/",
- "mountPoints": [
- "Koroski"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38628841245"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.koroski-radio.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UCLwH6lX4glK4o1N77JkeaJw"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/KoroskiRadio"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/koroski_r/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705105",
- "dabUser": "koroski",
- "dabPass": "num87dhket",
- "dabDefaultImg": "http://media.radio.si/logo/dns/koroski/320x240.png",
- "small": true
- },
- {
- "id": "VeseljakZlatiZvoki",
- "title": "Veseljak Zlati zvoki",
- "slogan": "Najvecja zakladnica slovenske domace glasbe",
- "logo": "https://data.radio.si/api/radiostations/logo/veseljakzlatizvoki.svg",
- "liveAudio": "http://live.radio.si/VeseljakZlatiZvoki",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/veseljakzlatizvoki/json",
- "epg": "",
- "defaultText": "www.veseljak.si",
- "www": "https://www.veseljak.si/",
- "mountPoints": [
- "VeseljakZlatiZvoki"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38615880110"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://veseljak.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/c/VESELJAKNAJBOLJSADOMACAGLASBA"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioVeseljak"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/veseljak.si/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705175",
- "dabUser": "zlatizvoki",
- "dabPass": "4jeeUnjA4qYV",
- "dabDefaultImg": "http://media.radio.si/logo/dns/veseljakzlatizvoki/RadioVeseljakZlatiZvoki_DAB.jpg",
- "small": false
- },
- {
- "id": "RockMB",
- "title": "Rock Maribor",
- "slogan": "100% Rock",
- "logo": "https://data.radio.si/api/radiostations/logo/rockmb.svg",
- "liveAudio": "http://live.radio.si/RockMB",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/radio1rock/json",
- "epg": "http://spored.radio.si/api/now/triglav",
- "defaultText": "www.rockmaribor.si",
- "www": "https://rockmaribor.si/",
- "mountPoints": [
- "RockMB"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://rockmaribor.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RockMaribor.si"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioTriglav"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiotriglav/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/rockmaribor?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=61116",
- "rpUid": "705107",
- "dabUser": "triglav",
- "dabPass": "ogFLUKodMUCB5",
- "dabDefaultImg": "http://media.radio.si/logo/dns/triglav/320x240.png",
- "small": false
- },
- {
- "id": "Kranj",
- "title": "Radio Kranj",
- "slogan": "",
- "logo": "https://data.radio.si/api/radiostations/logo/kranj.svg",
- "liveAudio": "http://live.radio.si/Kranj",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/kranj/json",
- "epg": "http://spored.radio.si/api/now/kranj",
- "defaultText": "www.radio-kranj.si",
- "www": "https://radio-kranj.si/",
- "mountPoints": [
- "Kranj"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38651303505"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radio-kranj.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UCe_Ze0SEHCSLLNUbWM0aBgA"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/pages/Radio-Kranj/1760816170864847"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiokranj/"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radiokranj?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=61102",
- "rpUid": "705104",
- "dabUser": "kranj",
- "dabPass": "ui8z3Ezzosyxw",
- "dabDefaultImg": "http://media.radio.si/logo/dns/kranj/320x240.png",
- "small": false
- },
- {
- "id": "Celje",
- "title": "Radio Celje",
- "slogan": "Vedno z menoj",
- "logo": "https://data.radio.si/api/radiostations/logo/celje.svg",
- "liveAudio": "http://live.radio.si/Celje",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/celje/json",
- "epg": "",
- "defaultText": "www.radiocelje.si",
- "www": "https://www.radiocelje.si/",
- "mountPoints": [
- "Celje"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+386034225100"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radiocelje.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UC99aNwZXokG6nnJLfSn5DSw"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radiocelje"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiocelje/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705117",
- "dabUser": "celje",
- "dabPass": "dunk7815g",
- "dabDefaultImg": "http://media.radio.si/logo/dns/celje/RadioCelje_DAB.jpg",
- "small": false
- },
- {
- "id": "Triglav",
- "title": "Radio Triglav",
- "slogan": "Radio za radovedne",
- "logo": "https://data.radio.si/api/radiostations/logo/triglav.svg",
- "liveAudio": "http://live.radio.si/Triglav",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/triglav/json",
- "epg": "http://spored.radio.si/api/now/triglav",
- "defaultText": "www.radiotriglav.si",
- "www": "https://radiotriglav.si/",
- "mountPoints": [
- "Triglav"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38651654064"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.radiotriglav.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioTriglav"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiotriglav/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "http://www.instagram.com/radio1slo"
- }
- ],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radiotriglav?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=38020",
- "rpUid": "705106",
- "dabUser": "triglav",
- "dabPass": "ogFLUKodMUCB5",
- "dabDefaultImg": "http://media.radio.si/logo/dns/triglav/320x240.png",
- "small": false
- },
- {
- "id": "Velenje",
- "title": "Radio Velenje",
- "slogan": "Ker smo radi na kamot",
- "logo": "http://datacache.radio.si/api/radiostations/logo/velenje.svg",
- "liveAudio": "http://live.radio.si/Velenje",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/velenje/json",
- "epg": "",
- "defaultText": "www.veseljak.si",
- "www": "https://veseljak.si/",
- "mountPoints": [
- "Velenje"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38615880110"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://veseljak.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/c/VESELJAKNAJBOLJSADOMACAGLASBA"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RadioVeseljak"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/veseljak.si/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705118",
- "dabUser": "velenje",
- "dabPass": "e9mopbu11",
- "dabDefaultImg": "http://media.radio.si/logo/dns/velenje/RadioVelenje_DAB.jpg",
- "small": false
- },
- {
- "id": "AktualK",
- "title": "Radio Aktual Kum",
- "slogan": "Narejen za vaša ušesa",
- "logo": "http://datacache.radio.si/api/radiostations/logo/aktualk.svg",
- "liveAudio": "http://live.radio.si/AktualK",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/aktualk/json",
- "epg": "",
- "defaultText": "",
- "www": null,
- "mountPoints": [
- "AktualK"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+386158801430"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radioaktual.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/stories/radioaktual/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "",
- "dabUser": null,
- "dabPass": null,
- "dabDefaultImg": null,
- "small": false
- },
- {
- "id": "AktualRomantika",
- "title": "Radio Aktual - Romantika",
- "slogan": "Kot nezna dlan, ki boza te",
- "logo": "http://datacache.radio.si/api/radiostations/logo/aktualromantika.svg",
- "liveAudio": "http://live.radio.si/AktualRomantika",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/aktualromantika/json",
- "epg": "",
- "defaultText": "",
- "www": null,
- "mountPoints": [
- "AktualRomantika"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+386158801430"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radioaktual.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/stories/radioaktual/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705174",
- "dabUser": "romantika",
- "dabPass": "Z75biJ5t7CpK",
- "dabDefaultImg": "http://media.radio.si/logo/dns/aktualromantika/RadioAktualRomnatika_DAB.jpg",
- "small": false
- },
- {
- "id": "Stop",
- "title": "Stop",
- "slogan": "Revija Stop: Več kot pol stoletja ob vaši strani!",
- "logo": "http://datacache.radio.si/api/radiostations/logo/stop.svg",
- "liveAudio": "http://live.radio.si/Stop",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/stop/json",
- "epg": "",
- "defaultText": "www.revijastop.si",
- "www": "https://revijastop.si/",
- "mountPoints": [
- "Stop"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://revijastop.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radiosalomon.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/channel/UCd7OpUbSIoZarJgwFf4aIxw"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radiosalomon"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiosalomon/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "",
- "dabUser": null,
- "dabPass": null,
- "dabDefaultImg": null,
- "small": false
- },
- {
- "id": "Radio1SLO",
- "title": "Radio 1 slovenski hiti",
- "slogan": "Sama dobra slovenska glasba",
- "logo": "http://datacache.radio.si/api/radiostations/logo/radio1slo.svg",
- "liveAudio": "http://live.radio.si/Radio1SLO",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/radio1slo/json",
- "epg": "",
- "defaultText": "www.radio1.si",
- "www": "https://www.radio1.si",
- "mountPoints": [
- "Radio1SLO"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38651300300"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "http://radio1.si"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "http://www.youtube.com/user/radio1slovenia"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "http://facebook.com/RadioEna"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "http://www.instagram.com/radio1slo"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "705110",
- "dabUser": "1slovenske",
- "dabPass": "ionb9hkd48",
- "dabDefaultImg": "http://media.radio.si/logo/dns/radio1slo/320x240.png",
- "small": false
- },
- {
- "id": "RockCE",
- "title": "Rock Celje",
- "slogan": "100% Rock",
- "logo": "https://data.radio.si/api/radiostations/logo/rockce.svg",
- "liveAudio": "http://live.radio.si/RockCE",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/rockce/json",
- "epg": null,
- "defaultText": "www.rock-celje.si",
- "www": "https://rock-celje.si/",
- "mountPoints": [
- "RockCE"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38628841245"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://www.rock-celje.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/RockCelje"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/radiosalomon"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/radiosalomon/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "",
- "dabUser": null,
- "dabPass": null,
- "dabDefaultImg": null,
- "small": false
- },
- {
- "id": "Radio1Bozicne",
- "title": "ROŠKARJEVE BOŽIČNE",
- "slogan": "100% Božične",
- "logo": "https://data.radio.si/api/radiostations/logo/radio1bozicne.svg",
- "liveAudio": "http://live.radio1.si/Radio1Bozicne",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "https://data.radio.si/api/lastsongsxml/radio1bozicne/json",
- "epg": null,
- "defaultText": "www.radio1.si",
- "www": "https://radio1.si/",
- "mountPoints": [
- "Radio1Bozicne"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radio1.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://radioaktual.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/stories/radioaktual/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "",
- "dabUser": null,
- "dabPass": null,
- "dabDefaultImg": null,
- "small": false
- },
- {
- "id": "TotiBozicni",
- "title": "TOTI BOŽIČNI RADIO",
- "slogan": "Tvoje mesto, tvoj radio",
- "logo": "http://datacache.radio.si/api/radiostations/logo/totibozicne.svg",
- "liveAudio": "http://live.radio.si/TotiBozicne",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/totibozicni/json",
- "epg": null,
- "defaultText": "www.totiradio.si",
- "www": "https://totiradio.si/",
- "mountPoints": [
- "TotiBozicni"
- ],
- "social": [
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-telefon-01.svg",
- "link": "tel:+38651220220"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-www-01.svg",
- "link": "https://totiradio.si/"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-youtube-01.svg",
- "link": "https://www.youtube.com/user/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-facebook-01.svg",
- "link": "https://www.facebook.com/raktual"
- },
- {
- "icon": "http://datacache.radio.si/api/radiostations/logo/ikona-instagram-01.svg",
- "link": "https://www.instagram.com/stories/radioaktual/"
- }
- ],
- "enabled": true,
- "radioApiIO": "",
- "rpUid": "",
- "dabUser": null,
- "dabPass": null,
- "dabDefaultImg": null,
- "small": false
- },
- {
- "id": "Hit",
- "title": "Radio HIT",
- "slogan": "Samo nostalgija",
- "logo": "http://datacache.radio.si/api/radiostations/logo/hit.svg",
- "liveAudio": "http://live.radio.si/Hit",
- "liveVideo": null,
- "poster": null,
- "lastSongs": "http://data.radio.si/api/lastsongsxml/hit/json",
- "epg": "http://spored.radio.si/api/now/hit",
- "defaultText": "www.radiohit.si",
- "www": "https://radiohit.si/",
- "mountPoints": [
- "Hit"
- ],
- "social": [],
- "enabled": true,
- "radioApiIO": "https://onair.radioapi.io/ingest/infonet/radiohit?format=aim&key=83B0Cq0wZH5DmLyZ13qr&cid=61120",
- "rpUid": "705141",
- "dabUser": "hit",
- "dabPass": "aaYqKTBBdUJt",
- "dabDefaultImg": "http://media.radio.si/logo/dns/hit/320x240.png",
- "small": false
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/radio1/json"
}
-]
\ No newline at end of file
+ },
+ {
+ "id": "Aktual",
+ "name": "Radio Aktual",
+ "slogan": "Narejen za vaša ušesa",
+ "category": "Pop",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "pop",
+ "aktual"
+ ],
+ "website": "https://radioaktual.si",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/aktual.svg",
+ "poster": "https://cdn1.radio.si/900/screenaktual_90c0280a8.jpg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Aktual",
+ "video": "https://radio.serv.si/AktualTV/video.m3u8"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/aktual/json"
+ }
+ },
+ {
+ "id": "Veseljak",
+ "name": "Radio Veseljak",
+ "slogan": "Najboljša domača glasba",
+ "category": "Folk",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "folk",
+ "veseljak",
+ "slovenian-music"
+ ],
+ "website": "https://veseljak.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/veseljak.svg",
+ "poster": "https://cdn1.radio.si/900/screenveseljak_166218c26.jpg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Veseljak",
+ "video": "https://radio.serv.si/VeseljakGolicaTV/video.m3u8"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/veseljak/json"
+ }
+ },
+ {
+ "id": "Radio1Rock",
+ "name": "Radio 1 ROCK",
+ "slogan": "100% Rock",
+ "category": "Rock",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "rock",
+ "radio-1"
+ ],
+ "website": "https://radio1rock.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/radio1rock.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Radio1Rock"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/radio1rock/json"
+ }
+ },
+ {
+ "id": "Radio80",
+ "name": "Radio 1 80-a",
+ "slogan": "Tvoji najljubši hiti 80-ih",
+ "category": "Retro",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "retro",
+ "radio-1",
+ "80s"
+ ],
+ "website": "https://radio80.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/radio80.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Radio80"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/radio80/json"
+ }
+ },
+ {
+ "id": "Radio90",
+ "name": "Radio 1 90-a",
+ "slogan": "Samo hiti 90-ih",
+ "category": "Retro",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "retro",
+ "radio-1",
+ "90s"
+ ],
+ "website": "https://radio1.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/radio90.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Radio90"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/radio90/json"
+ }
+ },
+ {
+ "id": "Country",
+ "name": "Radio 1 Country",
+ "slogan": "Samo največji country hiti",
+ "category": "Country",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "country",
+ "radio-1"
+ ],
+ "website": "https://radio1.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/country.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Country"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/country/json"
+ }
+ },
+ {
+ "id": "Toti",
+ "name": "Toti radio",
+ "slogan": "Toti hudi hiti",
+ "category": "Retro",
+ "country": "SI",
+ "language": "sl",
+ "region": "Styria",
+ "tags": [
+ "retro",
+ "regional"
+ ],
+ "website": "https://totiradio.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/toti.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Toti"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/toti/json"
+ }
+ },
+ {
+ "id": "Antena",
+ "name": "Radio Antena",
+ "slogan": "Največ hitov, najmanj govora",
+ "category": "Retro",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "retro"
+ ],
+ "website": "https://radioantena.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/antena.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Antena"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/antena/json"
+ }
+ },
+ {
+ "id": "BestFM",
+ "name": "BestFM",
+ "slogan": "Muska, muska, muska",
+ "category": "Pop",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "pop"
+ ],
+ "website": "https://bestfm.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/bestfm.svg",
+ "poster": "https://cdn1.radio.si/900/screenbest_6559e3ac8.jpg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/BestFM",
+ "video": "https://radio.serv.si/BestTV/video.m3u8"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/bestfm/json"
+ }
+ },
+ {
+ "id": "Krka",
+ "name": "Radio Krka",
+ "slogan": "Dolenjska v srcu",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Dolenjska",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://radiokrka.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/krka.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Krka"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/krka/json"
+ }
+ },
+ {
+ "id": "Klasik",
+ "name": "Klasik radio",
+ "slogan": "Glasba, ki vas sprosti",
+ "category": "Classical",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "classical"
+ ],
+ "website": "https://www.klasikradio.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/klasik.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Klasik"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/klasik/json"
+ }
+ },
+ {
+ "id": "Maxi",
+ "name": "Toti Maxi",
+ "slogan": "Sama dobra glasba",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Pomurje",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://www.radiomaxi.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/maxi.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Maxi"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/toti/json"
+ }
+ },
+ {
+ "id": "Salomon",
+ "name": "Radio Salomon",
+ "slogan": "Izbrana urbana glasba",
+ "category": "Dance",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "dance"
+ ],
+ "website": "https://radiosalomon.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/salomon.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Salomon"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/salomon/json"
+ }
+ },
+ {
+ "id": "Ptuj",
+ "name": "Radio Ptuj",
+ "slogan": "Največje uspešnice vseh časov",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Ptuj",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://www.radio-ptuj.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/ptuj.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Ptuj"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/ptuj/json"
+ }
+ },
+ {
+ "id": "Fantasy",
+ "name": "Radio Fantasy",
+ "slogan": "Same dobre vibracije",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Celje",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://rfantasy.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/fantasy.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Fantasy"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/fantasy/json"
+ }
+ },
+ {
+ "id": "Robin",
+ "name": "Radio Robin",
+ "slogan": "Brez tebe ni mene",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Goriška",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://www.robin.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/robin.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Robin"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/robin/json"
+ }
+ },
+ {
+ "id": "Koroski",
+ "name": "Koroški radio",
+ "slogan": "Ritem Koroške",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Koroška",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://www.koroski-radio.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/koroski.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Koroski"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/koroski/json"
+ }
+ },
+ {
+ "id": "VeseljakZlatiZvoki",
+ "name": "Veseljak Zlati zvoki",
+ "slogan": "Najvecja zakladnica slovenske domace glasbe",
+ "category": "Folk",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "folk",
+ "veseljak",
+ "slovenian-music"
+ ],
+ "website": "https://www.veseljak.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/veseljakzlatizvoki.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/VeseljakZlatiZvoki"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/veseljakzlatizvoki/json"
+ }
+ },
+ {
+ "id": "RockMB",
+ "name": "Rock Maribor",
+ "slogan": "100% Rock",
+ "category": "Rock",
+ "country": "SI",
+ "language": "sl",
+ "region": "Maribor",
+ "tags": [
+ "rock",
+ "regional"
+ ],
+ "website": "https://rockmaribor.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/rockmb.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/RockMB"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/radio1rock/json"
+ }
+ },
+ {
+ "id": "Kranj",
+ "name": "Radio Kranj",
+ "slogan": "",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Gorenjska",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://radio-kranj.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/kranj.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Kranj"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/kranj/json"
+ }
+ },
+ {
+ "id": "Celje",
+ "name": "Radio Celje",
+ "slogan": "Vedno z menoj",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Celje",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://www.radiocelje.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/celje.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Celje"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/celje/json"
+ }
+ },
+ {
+ "id": "Triglav",
+ "name": "Radio Triglav",
+ "slogan": "Radio za radovedne",
+ "category": "Talk",
+ "country": "SI",
+ "language": "sl",
+ "region": "Gorenjska",
+ "tags": [
+ "talk",
+ "regional"
+ ],
+ "website": "https://radiotriglav.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/triglav.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Triglav"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/triglav/json"
+ }
+ },
+ {
+ "id": "Velenje",
+ "name": "Radio Velenje",
+ "slogan": "Ker smo radi na kamot",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Šaleška",
+ "tags": [
+ "regional"
+ ],
+ "website": "https://veseljak.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/velenje.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Velenje"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/velenje/json"
+ }
+ },
+ {
+ "id": "AktualK",
+ "name": "Radio Aktual Kum",
+ "slogan": "Narejen za vaša ušesa",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Zasavje",
+ "tags": [
+ "regional",
+ "aktual"
+ ],
+ "website": null,
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/aktualk.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/AktualK"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/aktualk/json"
+ }
+ },
+ {
+ "id": "AktualRomantika",
+ "name": "Radio Aktual - Romantika",
+ "slogan": "Kot nezna dlan, ki boza te",
+ "category": "Seasonal",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "seasonal",
+ "aktual",
+ "christmas"
+ ],
+ "website": null,
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/aktualromantika.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/AktualRomantika"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/aktualromantika/json"
+ }
+ },
+ {
+ "id": "Stop",
+ "name": "Stop",
+ "slogan": "Revija Stop: Več kot pol stoletja ob vaši strani!",
+ "category": "Talk",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "talk"
+ ],
+ "website": "https://revijastop.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/stop.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Stop"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/stop/json"
+ }
+ },
+ {
+ "id": "Radio1SLO",
+ "name": "Radio 1 slovenski hiti",
+ "slogan": "Sama dobra slovenska glasba",
+ "category": "Retro",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "retro",
+ "radio-1",
+ "slovenian-music"
+ ],
+ "website": "https://www.radio1.si",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/radio1slo.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Radio1SLO"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/radio1slo/json"
+ }
+ },
+ {
+ "id": "RockCE",
+ "name": "Rock Celje",
+ "slogan": "100% Rock",
+ "category": "Rock",
+ "country": "SI",
+ "language": "sl",
+ "region": "Celje",
+ "tags": [
+ "rock",
+ "regional"
+ ],
+ "website": "https://rock-celje.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/rockce.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/RockCE"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/rockce/json"
+ }
+ },
+ {
+ "id": "Radio1Bozicne",
+ "name": "ROŠKARJEVE BOŽIČNE",
+ "slogan": "100% Božične",
+ "category": "Seasonal",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "seasonal",
+ "radio-1",
+ "christmas"
+ ],
+ "website": "https://radio1.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "https://data.radio.si/api/radiostations/logo/radio1bozicne.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio1.si/Radio1Bozicne"
+ },
+ "metadata": {
+ "lastSongs": "https://data.radio.si/api/lastsongsxml/radio1bozicne/json"
+ }
+ },
+ {
+ "id": "TotiBozicni",
+ "name": "TOTI BOŽIČNI RADIO",
+ "slogan": "Tvoje mesto, tvoj radio",
+ "category": "Seasonal",
+ "country": "SI",
+ "language": "sl",
+ "region": "Styria",
+ "tags": [
+ "seasonal",
+ "regional",
+ "christmas"
+ ],
+ "website": "https://totiradio.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/totibozicne.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/TotiBozicne"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/totibozicni/json"
+ }
+ },
+ {
+ "id": "Hit",
+ "name": "Radio HIT",
+ "slogan": "Samo nostalgija",
+ "category": "Retro",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "retro"
+ ],
+ "website": "https://radiohit.si/",
+ "enabled": true,
+ "assets": {
+ "logo": "http://datacache.radio.si/api/radiostations/logo/hit.svg"
+ },
+ "streams": {
+ "audio": "http://live.radio.si/Hit"
+ },
+ "metadata": {
+ "lastSongs": "http://data.radio.si/api/lastsongsxml/hit/json"
+ }
+ },
+ {
+ "id": "si-radio-prvi",
+ "name": "Radio Prvi",
+ "slogan": "",
+ "category": "News",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "news",
+ "talk",
+ "public"
+ ],
+ "website": "https://prvi.rtvslo.si/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/prvi"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "si-val-202",
+ "name": "Val 202",
+ "slogan": "",
+ "category": "Pop",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "pop",
+ "rock",
+ "news",
+ "sport"
+ ],
+ "website": "https://val202.rtvslo.si/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/val202"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "si-ars",
+ "name": "Radio Ars",
+ "slogan": "",
+ "category": "Classical",
+ "country": "SI",
+ "language": "sl",
+ "region": "National",
+ "tags": [
+ "classical",
+ "culture",
+ "public"
+ ],
+ "website": "https://ars.rtvslo.si/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/ars"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "si-radio-si",
+ "name": "Radio Si",
+ "slogan": "",
+ "category": "International",
+ "country": "SI",
+ "language": "en",
+ "region": "National",
+ "tags": [
+ "music",
+ "international",
+ "traffic"
+ ],
+ "website": "https://radiosi.rtvslo.si/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/rsi"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "si-radio-maribor",
+ "name": "Radio Maribor",
+ "slogan": "",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Maribor",
+ "tags": [
+ "regional",
+ "maribor",
+ "news"
+ ],
+ "website": "https://www.rtvslo.si/radio-maribor",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/rmb"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "si-radio-koper",
+ "name": "Radio Koper",
+ "slogan": "",
+ "category": "Regional",
+ "country": "SI",
+ "language": "sl",
+ "region": "Koper",
+ "tags": [
+ "regional",
+ "koper",
+ "news"
+ ],
+ "website": "https://www.rtvslo.si/radio-koper",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/rakp"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "si-radio-capodistria",
+ "name": "Radio Capodistria",
+ "slogan": "",
+ "category": "Regional",
+ "country": "SI",
+ "language": "it",
+ "region": "Koper",
+ "tags": [
+ "regional",
+ "italian",
+ "koper"
+ ],
+ "website": "https://www.rtvslo.si/radio-capodistria",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "http://mp3.rtvslo.si/capo"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "us-kexp",
+ "name": "KEXP 90.3",
+ "slogan": "",
+ "category": "Alternative",
+ "country": "US",
+ "language": "en",
+ "region": "International",
+ "tags": [
+ "indie",
+ "alternative",
+ "public"
+ ],
+ "website": "https://www.kexp.org/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "https://kexp.streamguys1.com/kexp160.aac"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "uk-nts-1",
+ "name": "NTS Radio 1",
+ "slogan": "",
+ "category": "Electronic",
+ "country": "GB",
+ "language": "en",
+ "region": "International",
+ "tags": [
+ "underground",
+ "electronic",
+ "experimental"
+ ],
+ "website": "https://www.nts.live/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "https://stream-relay-geo.ntslive.net/stream?client=direct"
+ },
+ "metadata": {}
+ },
+ {
+ "id": "uk-nts-2",
+ "name": "NTS Radio 2",
+ "slogan": "",
+ "category": "Electronic",
+ "country": "GB",
+ "language": "en",
+ "region": "International",
+ "tags": [
+ "underground",
+ "electronic",
+ "experimental"
+ ],
+ "website": "https://www.nts.live/",
+ "enabled": true,
+ "assets": {
+ "logo": ""
+ },
+ "streams": {
+ "audio": "https://stream-relay-geo.ntslive.net/stream2?client=direct"
+ },
+ "metadata": {}
+ }
+]
diff --git a/src/App.jsx b/src/App.jsx
index 20245f5..40e7ff3 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -133,12 +133,18 @@ function ArtworkPanel() {
1
+
+
+ );
+}
-
+function QuickPickCarousel() {
+ return (
+
);
@@ -351,23 +357,83 @@ function StationLibrary() {
-
+
+
+
+
-
-
-
-
+
+
+
+
Loading stations...
+
);
@@ -388,6 +454,7 @@ export default function App() {
+
diff --git a/src/player.js b/src/player.js
index 2dd6f44..f53740d 100644
--- a/src/player.js
+++ b/src/player.js
@@ -1,4 +1,6 @@
import { loadRadioStations } from './radio/loadRadioStations.ts';
+import { radioCountries } from './radio/radioCountries.ts';
+import { loadManagedStations } from './radio/loadManagedStations.ts';
// Web version of RadioPlayer — HTML5 Audio + Google Cast Web Sender SDK.
@@ -26,9 +28,14 @@ let stationLibraryTab = 'all';
let stationLibraryQuery = '';
let stationLibraryCategory = 'all';
let stationLibraryCountry = 'all';
+let stationLibraryPage = 0;
+let stationLibraryPageTotal = 1;
let stationCatalogState = 'idle';
let stationCatalogError = '';
let playbackError = '';
+let stationCountryFilterOpen = false;
+
+const STATION_LIBRARY_PAGE_SIZE = 12;
const RADIO_PLACEHOLDER_LOGO = '/images/radio-placeholder.svg';
@@ -68,9 +75,20 @@ const stationLibrarySummaryEl = document.getElementById('station-library-summary
const stationSearchInput = document.getElementById('station-search-input');
const stationLibraryCloseBtn = document.getElementById('station-library-close');
const stationCategoryListEl = document.getElementById('station-category-list');
-const stationCountryFilterEl = document.getElementById('station-country-filter');
+const stationCountryFilterWrapEl = document.querySelector('[data-country-filter]');
+const stationCountryFilterBtn = document.getElementById('station-country-filter-btn');
+const stationCountryFilterMenu = document.getElementById('station-country-filter-menu');
+const stationCountryFilterText = document.getElementById('station-country-filter-text');
+const stationCountryFilterFlag = document.getElementById('station-country-filter-flag');
+const stationLibraryPaginationEl = document.getElementById('station-library-pagination');
+const stationLibraryPagePrevBtn = document.getElementById('station-library-page-prev');
+const stationLibraryPageNextBtn = document.getElementById('station-library-page-next');
+const stationLibraryPageInfo = document.getElementById('station-library-page-info');
const stationTabBtns = document.querySelectorAll('[data-station-tab]');
+const radioCountryCodeByName = new Map(radioCountries.map((country) => [country.name, country.code]));
+const radioCountryNameByCode = new Map(radioCountries.map((country) => [country.code, country.name]));
+
// Editor
const editBtn = document.getElementById('edit-stations-btn');
const stationsListBtn = document.getElementById('stations-list-btn');
@@ -390,6 +408,19 @@ function getLastStationId() {
try { return localStorage.getItem('lastStationId'); } catch (e) { return null; }
}
+function saveLastStationCountry(country) {
+ try { if (country) localStorage.setItem('lastStationCountry', country); } catch (e) { /* ignore */ }
+}
+
+function getLastStationCountry() {
+ try { return localStorage.getItem('lastStationCountry'); } catch (e) { return null; }
+}
+
+function restoreLastStationCountry() {
+ const savedCountry = getLastStationCountry();
+ stationLibraryCountry = savedCountry || 'all';
+}
+
// ── castBothMode persistence & UI ────────────────────────────────────────────
function saveCastBothMode(val) {
@@ -553,9 +584,7 @@ function getStationLogoCandidates(station) {
function getStationSubtitle(station) {
return station?.slogan
|| station?.raw?.slogan
- || getStationHomepage(station)
|| station?.raw?.defaultText
- || station?.id
|| '';
}
@@ -593,30 +622,164 @@ function getCountryNames() {
return Array.from(new Set(stations.map(getStationCountry).filter(Boolean))).sort((a, b) => a.localeCompare(b));
}
+function getCountryDisplayName(countryValue) {
+ const value = String(countryValue || '').trim();
+ if (!value) return '';
+ if (value === 'all') return 'All countries';
+ if (value === 'SI') return 'Slovenia (managed)';
+ if (/^[A-Z]{2}$/i.test(value)) {
+ const countryName = radioCountryNameByCode.get(value.toUpperCase());
+ if (countryName) return countryName;
+ }
+ return value;
+}
+
+function getCountryFilterDisplayName(countryValue) {
+ const value = String(countryValue || '').trim();
+ if (!value) return '';
+ if (value === 'all') return 'All countries';
+ if (value.toUpperCase() === 'SI') return 'SLOVENIA (managed)';
+ if (/^[A-Z]{2}$/i.test(value)) {
+ const countryName = radioCountryNameByCode.get(value.toUpperCase());
+ if (countryName) return countryName;
+ }
+ return value;
+}
+
+function getCountryCodeFromValue(countryValue) {
+ const value = String(countryValue || '').trim();
+ if (!value || value === 'all') return '';
+ if (/^[A-Z]{2}$/i.test(value)) return value.toUpperCase();
+ return radioCountryCodeByName.get(value) || '';
+}
+
+function resetStationLibraryPage() {
+ stationLibraryPage = 0;
+}
+
+function goToPreviousStationLibraryPage() {
+ if (stationLibraryPage <= 0) return;
+ stationLibraryPage -= 1;
+ renderStationLibrary();
+}
+
+function goToNextStationLibraryPage() {
+ if (stationLibraryPage >= stationLibraryPageTotal - 1) return;
+ stationLibraryPage += 1;
+ renderStationLibrary();
+}
+
+function countryCodeToFlagEmoji(countryCode) {
+ const code = String(countryCode || '').trim().toUpperCase();
+ if (!/^[A-Z]{2}$/.test(code)) return '🌐';
+ return String.fromCodePoint(...code.split('').map((char) => 127397 + char.charCodeAt(0)));
+}
+
+function countryCodeToFlagUrl(countryCode) {
+ const code = String(countryCode || '').trim().toLowerCase();
+ if (!/^[a-z]{2}$/.test(code)) return '';
+ return `https://flagcdn.com/w20/${code}.png`;
+}
+
+function getCountryFlag(countryName) {
+ if (!countryName || countryName === 'all') return '🌐';
+ const countryCode = getCountryCodeFromValue(countryName);
+ return countryCode ? countryCodeToFlagEmoji(countryCode) : '🏳️';
+}
+
+function getCountryFlagUrl(countryName) {
+ if (!countryName || countryName === 'all') return 'https://flagcdn.com/w20/eu.png';
+ const countryCode = getCountryCodeFromValue(countryName);
+ return countryCode ? countryCodeToFlagUrl(countryCode) : '';
+}
+
+function toggleStationCountryFilter(forceOpen) {
+ stationCountryFilterOpen = typeof forceOpen === 'boolean' ? forceOpen : !stationCountryFilterOpen;
+ renderStationLibrary();
+}
+
+function closeStationCountryFilter() {
+ if (!stationCountryFilterOpen) return;
+ stationCountryFilterOpen = false;
+ renderStationLibrary();
+}
+
function renderCountryFilterOptions() {
- if (!stationCountryFilterEl) return;
+ if (!stationCountryFilterMenu || !stationCountryFilterBtn || !stationCountryFilterText) return;
const countries = getCountryNames();
- if (stationLibraryCountry !== 'all' && !countries.includes(stationLibraryCountry)) {
+ if (stationCatalogState === 'ready' && stationLibraryCountry !== 'all' && !countries.includes(stationLibraryCountry)) {
stationLibraryCountry = 'all';
+ saveLastStationCountry('all');
+ resetStationLibraryPage();
}
- stationCountryFilterEl.innerHTML = '';
+ stationCountryFilterBtn.setAttribute('aria-expanded', stationCountryFilterOpen ? 'true' : 'false');
+ stationCountryFilterText.textContent = getCountryFilterDisplayName(stationLibraryCountry);
+ if (stationCountryFilterFlag) {
+ stationCountryFilterFlag.src = getCountryFlagUrl(stationLibraryCountry);
+ }
+ stationCountryFilterWrapEl?.classList.toggle('open', stationCountryFilterOpen);
+ stationCountryFilterMenu.innerHTML = '';
+ stationCountryFilterMenu.classList.toggle('open', stationCountryFilterOpen);
- const allOption = document.createElement('option');
- allOption.value = 'all';
- allOption.textContent = 'All countries';
- stationCountryFilterEl.appendChild(allOption);
+ const addOption = (label, value) => {
+ const option = document.createElement('button');
+ option.type = 'button';
+ option.className = 'library-select-option' + (stationLibraryCountry === value ? ' active' : '');
+ option.setAttribute('role', 'option');
+ option.setAttribute('aria-selected', stationLibraryCountry === value ? 'true' : 'false');
- countries.forEach((country) => {
- const option = document.createElement('option');
- option.value = country;
- option.textContent = country;
- stationCountryFilterEl.appendChild(option);
- });
+ const flag = document.createElement('span');
+ const flagUrl = getCountryFlagUrl(value);
+ flag.className = 'library-select-option-flag';
+ flag.setAttribute('aria-hidden', 'true');
+ if (flagUrl) {
+ const flagImg = document.createElement('img');
+ flagImg.src = flagUrl;
+ flagImg.alt = '';
+ flagImg.setAttribute('aria-hidden', 'true');
+ flagImg.className = 'library-select-option-flag-img';
+ flagImg.loading = 'lazy';
+ flagImg.referrerPolicy = 'no-referrer';
+ flagImg.addEventListener('error', () => {
+ flagImg.remove();
+ flag.textContent = value === 'all' ? '🌐' : '🏳️';
+ }, { once: true });
+ flag.appendChild(flagImg);
+ } else {
+ flag.textContent = value === 'all' ? '🌐' : '🏳️';
+ }
- stationCountryFilterEl.value = stationLibraryCountry;
- stationCountryFilterEl.disabled = stationCatalogState === 'loading';
+ const text = document.createElement('span');
+ text.className = 'library-select-option-text';
+ text.textContent = label;
+
+ option.appendChild(flag);
+ option.appendChild(text);
+
+ option.addEventListener('click', () => {
+ stationLibraryCountry = value;
+ stationLibraryCategory = 'all';
+ saveLastStationCountry(value);
+ resetStationLibraryPage();
+ stationCountryFilterOpen = false;
+ renderStationLibrary();
+ });
+ stationCountryFilterMenu.appendChild(option);
+ };
+
+ addOption('All countries', 'all');
+ const orderedCountries = countries
+ .slice()
+ .sort((left, right) => {
+ const leftPriority = left.toUpperCase() === 'SI' ? -1 : 0;
+ const rightPriority = right.toUpperCase() === 'SI' ? -1 : 0;
+ if (leftPriority !== rightPriority) return leftPriority - rightPriority;
+ return getCountryFilterDisplayName(left).localeCompare(getCountryFilterDisplayName(right));
+ });
+
+ orderedCountries.forEach((country) => addOption(getCountryFilterDisplayName(country), country));
}
function getFilteredStationEntries() {
@@ -668,6 +831,7 @@ function getQuickPickEntries() {
function setStationLibraryTab(tab) {
stationLibraryTab = tab || 'all';
if (stationLibraryTab !== 'categories') stationLibraryCategory = 'all';
+ resetStationLibraryPage();
renderStationLibrary();
}
@@ -716,6 +880,7 @@ function renderCategoryChips() {
btn.textContent = category === 'all' ? 'All categories' : category;
btn.addEventListener('click', () => {
stationLibraryCategory = category;
+ resetStationLibraryPage();
renderStationLibrary();
});
stationCategoryListEl.appendChild(btn);
@@ -726,6 +891,7 @@ function renderStationLibrary() {
try {
if (!stationLibraryListEl) return;
stationLibraryListEl.innerHTML = '';
+ stationLibraryListEl.scrollTop = 0;
stationLibraryEl?.classList.toggle('show-categories', stationLibraryTab === 'categories');
stationTabBtns.forEach((btn) => {
@@ -739,6 +905,10 @@ function renderStationLibrary() {
if (stationCatalogState === 'loading') {
if (stationLibrarySummaryEl) stationLibrarySummaryEl.textContent = 'Loading stations...';
+ if (stationLibraryPageInfo) stationLibraryPageInfo.textContent = 'Page 1 of 1';
+ if (stationLibraryPagePrevBtn) stationLibraryPagePrevBtn.disabled = true;
+ if (stationLibraryPageNextBtn) stationLibraryPageNextBtn.disabled = true;
+ stationLibraryPaginationEl?.classList.add('hidden');
const empty = document.createElement('li');
empty.className = 'library-empty';
empty.textContent = 'Loading the local radio catalog...';
@@ -748,6 +918,10 @@ function renderStationLibrary() {
if (stationCatalogState === 'error') {
if (stationLibrarySummaryEl) stationLibrarySummaryEl.textContent = 'Unable to load stations';
+ if (stationLibraryPageInfo) stationLibraryPageInfo.textContent = 'Page 1 of 1';
+ if (stationLibraryPagePrevBtn) stationLibraryPagePrevBtn.disabled = true;
+ if (stationLibraryPageNextBtn) stationLibraryPageNextBtn.disabled = true;
+ stationLibraryPaginationEl?.classList.add('hidden');
const empty = document.createElement('li');
empty.className = 'library-empty';
empty.textContent = stationCatalogError || 'The local station catalog could not be loaded.';
@@ -757,6 +931,10 @@ function renderStationLibrary() {
if (!stations.length) {
if (stationLibrarySummaryEl) stationLibrarySummaryEl.textContent = 'No stations available';
+ if (stationLibraryPageInfo) stationLibraryPageInfo.textContent = 'Page 1 of 1';
+ if (stationLibraryPagePrevBtn) stationLibraryPagePrevBtn.disabled = true;
+ if (stationLibraryPageNextBtn) stationLibraryPageNextBtn.disabled = true;
+ stationLibraryPaginationEl?.classList.add('hidden');
const empty = document.createElement('li');
empty.className = 'library-empty';
empty.textContent = 'The local station catalog is empty.';
@@ -770,11 +948,23 @@ function renderStationLibrary() {
const tabLabel = stationLibraryTab === 'favourites' ? 'favourite' : stationLibraryTab === 'recent' ? 'recent' : 'available';
if (stationLibrarySummaryEl) {
- const countryLabel = stationLibraryCountry === 'all' ? '' : ` in ${stationLibraryCountry}`;
+ const countryLabel = stationLibraryCountry === 'all' ? '' : ` in ${getCountryDisplayName(stationLibraryCountry)}`;
stationLibrarySummaryEl.textContent = `${entries.length} ${tabLabel} station${entries.length === 1 ? '' : 's'}${countryLabel}`;
}
+ const totalPages = Math.max(1, Math.ceil(entries.length / STATION_LIBRARY_PAGE_SIZE));
+ stationLibraryPageTotal = totalPages;
+ stationLibraryPaginationEl?.classList.toggle('hidden', totalPages <= 1);
+ if (stationLibraryPage >= totalPages) {
+ stationLibraryPage = totalPages - 1;
+ }
+ const pageStart = stationLibraryPage * STATION_LIBRARY_PAGE_SIZE;
+ const pageEntries = entries.slice(pageStart, pageStart + STATION_LIBRARY_PAGE_SIZE);
+
if (entries.length === 0) {
+ if (stationLibraryPageInfo) stationLibraryPageInfo.textContent = 'Page 1 of 1';
+ if (stationLibraryPagePrevBtn) stationLibraryPagePrevBtn.disabled = true;
+ if (stationLibraryPageNextBtn) stationLibraryPageNextBtn.disabled = true;
const empty = document.createElement('li');
empty.className = 'library-empty';
empty.textContent = stationLibraryTab === 'favourites'
@@ -784,7 +974,21 @@ function renderStationLibrary() {
return;
}
- entries.forEach(({ station, index, count }) => {
+ if (stationLibraryPageInfo) {
+ stationLibraryPageInfo.textContent = `Page ${stationLibraryPage + 1} of ${totalPages}`;
+ }
+
+ if (stationLibraryPagePrevBtn) {
+ stationLibraryPagePrevBtn.disabled = stationLibraryPage <= 0;
+ stationLibraryPagePrevBtn.setAttribute('aria-disabled', stationLibraryPage <= 0 ? 'true' : 'false');
+ }
+
+ if (stationLibraryPageNextBtn) {
+ stationLibraryPageNextBtn.disabled = stationLibraryPage >= totalPages - 1;
+ stationLibraryPageNextBtn.setAttribute('aria-disabled', stationLibraryPage >= totalPages - 1 ? 'true' : 'false');
+ }
+
+ pageEntries.forEach(({ station, index, count }) => {
const title = getStationTitle(station);
const li = document.createElement('li');
@@ -806,7 +1010,7 @@ function renderStationLibrary() {
meta.className = 'library-station-meta';
const country = document.createElement('span');
country.className = 'library-station-country';
- country.textContent = getStationCountry(station) || getStationCategory(station);
+ country.textContent = getCountryDisplayName(getStationCountry(station)) || getStationCategory(station);
const tech = document.createElement('span');
tech.className = 'library-station-tech';
tech.textContent = getStationTechnicalLabel(station) || getStationCategory(station);
@@ -952,11 +1156,17 @@ async function loadStations() {
try {
stationCatalogState = 'loading';
stationCatalogError = '';
+ resetStationLibraryPage();
renderStationLibrary();
stopCurrentSongPollers();
const raw = await loadRadioStations();
+ const managedRaw = await loadManagedStations().catch(() => []);
- stations = raw
+ const normalizedRaw = raw
+ .map((s) => normalizeStationRecord(s))
+ .filter((s) => s.enabled !== false && s.url && s.url.length > 0);
+
+ const normalizedManaged = managedRaw
.map((s) => normalizeStationRecord(s))
.filter((s) => s.enabled !== false && s.url && s.url.length > 0);
@@ -964,7 +1174,23 @@ async function loadStations() {
.map((s) => normalizeStationRecord(s, true))
.filter((s) => s.url && s.url.length > 0);
- stations = stations.concat(userNormalized);
+ const mergedStations = [];
+ const seenStationIds = new Set();
+ const seenStreamUrls = new Set();
+
+ const pushStation = (station) => {
+ if (!station?.id || !station?.url) return;
+ if (seenStationIds.has(station.id) || seenStreamUrls.has(station.url)) return;
+ seenStationIds.add(station.id);
+ seenStreamUrls.add(station.url);
+ mergedStations.push(station);
+ };
+
+ normalizedManaged.forEach(pushStation);
+ normalizedRaw.forEach(pushStation);
+ userNormalized.forEach(pushStation);
+
+ stations = mergedStations;
stationCatalogState = stations.length > 0 ? 'ready' : 'empty';
console.debug('loadStations: loaded', stations.length, 'stations');
@@ -1144,11 +1370,11 @@ function updateCoverflowTransforms() {
const stageWidth = coverflowStageEl.clientWidth || 320;
const isMobile = window.matchMedia('(max-width: 760px)').matches;
const isNarrow = window.matchMedia('(max-width: 380px)').matches;
- const maxVisible = 1;
const spacing = isMobile ? Math.min(78, Math.max(62, stageWidth / 3.25)) : Math.min(116, Math.max(94, stageWidth / 3.1));
const depth = isMobile ? 26 : 36;
const rotation = isMobile ? 0 : 8;
const scaleStep = isMobile ? 0.08 : 0.1;
+ const maxVisible = isMobile ? 1 : isNarrow ? 1 : Math.max(1, Math.min(4, Math.floor((stageWidth - 120) / (spacing * 0.95))));
items.forEach((el, railIndex) => {
const idx = Number(el.dataset.idx);
@@ -1877,6 +2103,8 @@ function setupEventListeners() {
nextBtn?.addEventListener('click', playNext);
volumeSlider?.addEventListener('input', handleVolumeInput);
muteBtn?.addEventListener('click', toggleMute);
+ stationLibraryPagePrevBtn?.addEventListener('click', goToPreviousStationLibraryPage);
+ stationLibraryPageNextBtn?.addEventListener('click', goToNextStationLibraryPage);
closeOverlayBtn?.addEventListener('click', closeCastOverlay);
castOverlay?.addEventListener('click', (e) => { if (e.target === castOverlay) closeCastOverlay(); });
@@ -1887,13 +2115,14 @@ function setupEventListeners() {
castBtn?.addEventListener('click', requestCastSession);
editorCloseBtn?.addEventListener('click', closeEditorOverlay);
stationLibraryCloseBtn?.addEventListener('click', closeStationLibrary);
+ stationCountryFilterBtn?.addEventListener('click', (ev) => {
+ ev.preventDefault();
+ ev.stopPropagation();
+ toggleStationCountryFilter();
+ });
stationSearchInput?.addEventListener('input', () => {
stationLibraryQuery = stationSearchInput.value || '';
- renderStationLibrary();
- });
- stationCountryFilterEl?.addEventListener('change', () => {
- stationLibraryCountry = stationCountryFilterEl.value || 'all';
- stationLibraryCategory = 'all';
+ resetStationLibraryPage();
renderStationLibrary();
});
stationTabBtns.forEach((btn) => {
@@ -1903,10 +2132,20 @@ function setupEventListeners() {
artworkPlaceholder?.addEventListener('click', openStationLibrary);
castOutputBtn?.addEventListener('click', toggleCastBothMode);
window.addEventListener('resize', updateCoverflowTransforms);
+ document.addEventListener('click', (ev) => {
+ if (!stationCountryFilterOpen) return;
+ if (stationCountryFilterWrapEl?.contains(ev.target)) return;
+ closeStationCountryFilter();
+ });
// Keyboard shortcuts
document.addEventListener('keydown', (e) => {
if (e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement) return;
+ if (stationCountryFilterOpen && e.code === 'Escape') {
+ e.preventDefault();
+ closeStationCountryFilter();
+ return;
+ }
if (e.code === 'Space') { e.preventDefault(); togglePlay(); }
else if (e.code === 'ArrowRight') playNext();
else if (e.code === 'ArrowLeft') playPrev();
@@ -1959,6 +2198,7 @@ async function init() {
restoreSavedVolume();
restoreCastBothMode();
+ restoreLastStationCountry();
await loadStations();
setupEventListeners();
ensureArtworkPointerFallback();
diff --git a/src/radio/loadManagedStations.ts b/src/radio/loadManagedStations.ts
new file mode 100644
index 0000000..ff00259
--- /dev/null
+++ b/src/radio/loadManagedStations.ts
@@ -0,0 +1,10 @@
+export async function loadManagedStations(): Promise {
+ const response = await fetch('/stations.json');
+
+ if (!response.ok) {
+ throw new Error(`Failed to load managed stations: ${response.status}`);
+ }
+
+ const stations = await response.json();
+ return Array.isArray(stations) ? stations : [];
+}
\ No newline at end of file
diff --git a/src/radio/radioCountries.ts b/src/radio/radioCountries.ts
index 3ce82bd..e70adf7 100644
--- a/src/radio/radioCountries.ts
+++ b/src/radio/radioCountries.ts
@@ -1,24 +1,47 @@
export const radioCountries = [
{ name: 'Austria', code: 'AT' },
+ { name: 'Belgium', code: 'BE' },
+ { name: 'Bulgaria', code: 'BG' },
+ { name: 'Cyprus', code: 'CY' },
+ { name: 'Czechia', code: 'CZ' },
+ { name: 'Denmark', code: 'DK' },
+ { name: 'Estonia', code: 'EE' },
+ { name: 'Finland', code: 'FI' },
+ { name: 'France', code: 'FR' },
+ { name: 'Germany', code: 'DE' },
+ { name: 'Greece', code: 'GR' },
+ { name: 'Russia', code: 'RU' },
+ { name: 'Hungary', code: 'HU' },
+ { name: 'Ireland', code: 'IE' },
+ { name: 'Italy', code: 'IT' },
+ { name: 'Japan', code: 'JP' },
+ { name: 'Latvia', code: 'LV' },
+ { name: 'Lithuania', code: 'LT' },
+ { name: 'Luxembourg', code: 'LU' },
+ { name: 'Malta', code: 'MT' },
+ { name: 'Mexico', code: 'MX' },
+ { name: 'Netherlands', code: 'NL' },
+ { name: 'Poland', code: 'PL' },
+ { name: 'Brazil', code: 'BR' },
+ { name: 'Portugal', code: 'PT' },
+ { name: 'Romania', code: 'RO' },
{ name: 'Croatia', code: 'HR' },
{ name: 'Serbia', code: 'RS' },
{ name: 'Montenegro', code: 'ME' },
{ name: 'Bosnia & Herzegovina', code: 'BA' },
- { name: 'Germany', code: 'DE' },
+ { name: 'Argentina', code: 'AR' },
{ name: 'United Kingdom', code: 'GB' },
- { name: 'Italy', code: 'IT' },
- { name: 'France', code: 'FR' },
+ { name: 'Slovenia', code: 'SI' },
+ { name: 'Slovakia', code: 'SK' },
{ name: 'Spain', code: 'ES' },
{ name: 'USA', code: 'US' },
{ name: 'Canada', code: 'CA' },
{ name: 'Australia', code: 'AU' },
- { name: 'Luxembourg', code: 'LU' },
- { name: 'Netherlands', code: 'NL' },
+ { name: 'China', code: 'CN' },
{ name: 'Sweden', code: 'SE' },
{ name: 'Switzerland', code: 'CH' },
- { name: 'Hungary', code: 'HU' },
- { name: 'Czechia', code: 'CZ' },
- { name: 'Poland', code: 'PL' },
+ { name: 'Turkey', code: 'TR' },
+ { name: 'Ukraine', code: 'UA' },
] as const;
export type RadioCountry = (typeof radioCountries)[number];
\ No newline at end of file
diff --git a/src/styles.css b/src/styles.css
index 406bd4b..281dde7 100644
--- a/src/styles.css
+++ b/src/styles.css
@@ -147,20 +147,20 @@ input:focus-visible,
.player-layout {
position: relative;
isolation: isolate;
- width: min(1420px, 100%);
- height: clamp(680px, calc(100vh - 72px), 880px);
+ width: min(1340px, 100%);
+ height: clamp(600px, calc(100vh - 84px), 760px);
display: flex;
flex-direction: row;
align-items: stretch;
min-height: 0;
- overflow: hidden;
+ overflow: visible;
}
.sidebar-wrap {
flex-shrink: 0;
- width: 320px;
+ width: 360px;
margin-right: 18px;
- overflow: hidden;
+ overflow: visible;
will-change: width, margin-right;
transition:
width 0.46s cubic-bezier(0.22, 1, 0.36, 1),
@@ -252,35 +252,151 @@ input:focus-visible,
.library-filter-grid {
display: grid;
- grid-template-columns: minmax(0, 1fr) 148px;
+ grid-template-columns: 1fr;
gap: 10px;
}
.library-select {
min-width: 0;
+ position: relative;
+}
+
+.library-select-trigger {
+ width: 100%;
+ min-width: 0;
+ height: 44px;
+ display: flex;
+ align-items: center;
+ gap: 10px;
+ padding: 0 12px 0 14px;
+ border: 1px solid rgba(var(--accent-rgb), 0.26);
+ border-radius: 16px;
+ background:
+ linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
+ linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(var(--accent-3-rgb), 0.08));
+ color: var(--text-main);
+ font: inherit;
+ text-align: left;
+ box-shadow: 0 12px 28px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.1);
+ cursor: pointer;
+ transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
+}
+
+.library-select-flag,
+.library-select-option-flag {
+ flex: 0 0 auto;
+ width: 1.4rem;
+ height: 1rem;
+ text-align: center;
+ font-size: 1rem;
+ line-height: 1;
+}
+
+.library-select-flag,
+.library-select-option-flag-img {
+ display: block;
+ width: 1.4rem;
+ height: 1rem;
+ object-fit: cover;
+ border-radius: 2px;
+}
+
+.library-select-trigger:hover,
+.library-select.open .library-select-trigger {
+ transform: translateY(-1px);
+ border-color: rgba(var(--accent-rgb), 0.5);
+ box-shadow: 0 16px 32px rgba(0,0,0,0.2), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
+}
+
+.library-select-prefix {
+ flex: 0 0 auto;
+ color: var(--text-soft);
+ font-size: 0.7rem;
+ font-weight: 850;
+ letter-spacing: 0.06em;
+ text-transform: uppercase;
+}
+
+.library-select-value {
+ flex: 1 1 auto;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ font-size: 0.92rem;
+ font-weight: 850;
+}
+
+.library-select-caret {
+ flex: 0 0 auto;
+ opacity: 0.8;
+}
+
+.library-select-menu {
+ position: absolute;
+ top: calc(100% + 10px);
+ left: 0;
+ z-index: 12;
+ width: 100%;
+ max-height: 280px;
+ padding: 8px;
+ border: 1px solid rgba(var(--accent-rgb), 0.18);
+ border-radius: 18px;
+ background:
+ linear-gradient(180deg, rgba(16, 20, 27, 0.96), rgba(16, 20, 27, 0.9)),
+ rgba(255,255,255,0.04);
+ box-shadow: 0 24px 48px rgba(0,0,0,0.34);
+ backdrop-filter: blur(20px) saturate(130%);
+ overflow: auto;
+ display: none;
+}
+
+.library-select-menu.open {
display: grid;
gap: 6px;
}
-.library-select-label {
- color: var(--text-soft);
- font-size: 0.72rem;
- font-weight: 800;
- letter-spacing: 0.04em;
- text-transform: uppercase;
-}
-
-.library-select select {
+.library-select-option {
width: 100%;
min-width: 0;
- height: 44px;
+ min-height: 38px;
+ display: flex;
+ align-items: center;
+ gap: 10px;
padding: 0 12px;
- border: 1px solid rgba(255,255,255,0.12);
- border-radius: 14px;
- background: rgba(255,255,255,0.065);
- color: var(--text-main);
+ border: 1px solid transparent;
+ border-radius: 12px;
+ background: transparent;
+ color: var(--text-muted);
+ text-align: left;
font: inherit;
- appearance: none;
+ font-size: 0.9rem;
+ cursor: pointer;
+ transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
+}
+
+.library-select-option-text {
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.library-select-option:hover {
+ border-color: rgba(var(--accent-rgb), 0.24);
+ background: rgba(var(--accent-rgb), 0.12);
+ color: var(--text-main);
+ transform: translateX(1px);
+}
+
+.library-select-option.active {
+ border-color: rgba(var(--accent-rgb), 0.42);
+ background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-3-rgb), 0.12));
+ color: var(--text-main);
+}
+
+.library-select-option:focus-visible {
+ outline: 2px solid var(--accent);
+ outline-offset: 2px;
}
.library-search input {
@@ -299,23 +415,40 @@ input:focus-visible,
.library-tabs {
display: grid;
- grid-template-columns: repeat(2, minmax(0, 1fr));
+ grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 8px;
}
.library-tab {
min-width: 0;
- min-height: 36px;
- padding: 8px 10px;
+ min-height: 40px;
+ padding: 0;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
background: rgba(255,255,255,0.055);
color: var(--text-muted);
- font-size: 0.82rem;
font-weight: 800;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
+.library-tab-icon {
+ width: 18px;
+ height: 18px;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ flex: 0 0 auto;
+ opacity: 0.9;
+}
+
+.library-tab-icon svg {
+ width: 100%;
+ height: 100%;
+}
+
.library-tab:hover {
transform: translateY(-1px);
border-color: var(--border-strong);
@@ -365,6 +498,56 @@ input:focus-visible,
font-weight: 700;
}
+.library-pagination {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ gap: 10px;
+}
+
+.library-pagination-info {
+ flex: 1 1 auto;
+ min-width: 0;
+ color: var(--text-soft);
+ font-size: 0.78rem;
+ font-weight: 800;
+ text-align: center;
+ white-space: nowrap;
+}
+
+.library-page-btn {
+ min-width: 88px;
+ min-height: 34px;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ gap: 6px;
+ padding: 0 10px;
+ border: 1px solid rgba(255,255,255,0.1);
+ border-radius: 11px;
+ background: rgba(255,255,255,0.055);
+ color: var(--text-main);
+ font: inherit;
+ font-size: 0.78rem;
+ font-weight: 800;
+ transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
+}
+
+.library-page-btn:hover:not(:disabled) {
+ transform: translateY(-1px);
+ border-color: var(--border-strong);
+ background: rgba(255,255,255,0.085);
+}
+
+.library-page-btn:disabled {
+ opacity: 0.45;
+ cursor: not-allowed;
+}
+
+.library-page-btn svg {
+ flex: 0 0 auto;
+}
+
.library-list {
min-height: 0;
margin: 0;
@@ -433,6 +616,7 @@ input:focus-visible,
color: var(--text-main);
text-align: left;
cursor: pointer;
+ overflow: hidden;
transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
@@ -475,9 +659,11 @@ input:focus-visible,
min-width: 0;
display: grid;
gap: 6px;
+ overflow: hidden;
}
.library-station-title {
+ min-width: 0;
overflow: hidden;
color: var(--text-main);
font-size: 0.94rem;
@@ -489,18 +675,20 @@ input:focus-visible,
.library-station-meta {
display: flex;
- flex-wrap: wrap;
+ flex-wrap: nowrap;
min-width: 0;
align-items: center;
gap: 7px;
color: var(--text-muted);
font-size: 0.76rem;
font-weight: 700;
+ overflow: hidden;
}
.library-station-country,
.library-station-tech {
flex: 0 0 auto;
+ min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@@ -669,9 +857,10 @@ input:focus-visible,
"artwork info"
"artwork progress"
"artwork controls"
- "artwork volume";
+ "artwork volume"
+ "quickpick quickpick";
gap: 18px 28px;
- align-items: center;
+ align-items: start;
padding: clamp(18px, 3vw, 34px);
border: 1px solid var(--border);
border-radius: 28px;
@@ -820,6 +1009,14 @@ header {
gap: 18px;
}
+.quickpick-section {
+ grid-area: quickpick;
+ min-width: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
.artwork-container {
width: min(100%, 360px);
aspect-ratio: 1;
@@ -909,7 +1106,8 @@ header {
.artwork-coverflow {
position: relative;
- width: min(100%, 430px);
+ width: 100%;
+ max-width: none;
height: 128px;
overflow: hidden;
-webkit-app-region: no-drag;
@@ -994,10 +1192,10 @@ header {
.track-info {
grid-area: info;
min-width: 0;
- min-height: 232px;
+ min-height: 0;
display: flex;
flex-direction: column;
- justify-content: end;
+ justify-content: flex-start;
align-items: flex-start;
text-align: left;
}
@@ -1005,7 +1203,7 @@ header {
.track-info h2 {
width: 100%;
margin: 0;
- font-size: clamp(2.1rem, 5vw, 4.6rem);
+ font-size: clamp(2.1rem, 4.5vw, 3.1rem);
font-weight: 850;
line-height: 0.96;
letter-spacing: 0;
@@ -1166,7 +1364,7 @@ header {
grid-area: controls;
display: grid;
grid-template-columns: 64px 96px 64px;
- justify-content: start;
+ justify-content: center;
align-items: center;
gap: 18px;
}
@@ -1232,8 +1430,9 @@ header {
.volume-section {
grid-area: volume;
+ width: 100%;
display: grid;
- grid-template-columns: 40px minmax(120px, 320px) 44px;
+ grid-template-columns: 40px minmax(0, 1fr) 44px;
align-items: center;
gap: 12px;
}
@@ -1591,6 +1790,10 @@ input[type=range]::-webkit-slider-thumb {
.library-close {
display: inline-flex;
}
+
+ .library-tabs {
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ }
}
@media (max-width: 760px) {
@@ -1615,12 +1818,28 @@ input[type=range]::-webkit-slider-thumb {
"info"
"progress"
"controls"
- "volume";
+ "volume"
+ "quickpick";
gap: 13px;
padding: 16px;
border-radius: 22px;
}
+ .library-tabs {
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ gap: 6px;
+ }
+
+ .library-tab {
+ min-height: 36px;
+ border-radius: 11px;
+ }
+
+ .library-tab-icon {
+ width: 17px;
+ height: 17px;
+ }
+
.station-library {
left: 8px;
right: 8px;
@@ -1638,18 +1857,19 @@ input[type=range]::-webkit-slider-thumb {
.library-tabs {
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 6px;
- overflow-x: auto;
}
.library-filter-grid {
grid-template-columns: 1fr;
}
+ .library-select-menu {
+ max-height: 240px;
+ }
+
.library-tab {
- min-width: 82px;
+ min-width: 0;
min-height: 34px;
- padding-inline: 8px;
- font-size: 0.76rem;
}
.library-station {