1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 19:41:08 +01:00

3 Commits

Author SHA1 Message Date
18c829f224 chore: update 2021-09-07 16:33:55 +02:00
865b0b736c fix(streams): radio record 2021-09-07 16:28:52 +02:00
84613b8d51 feat(zaatar): sync music via syncthing 2021-09-05 17:12:08 +02:00
9 changed files with 526 additions and 121 deletions

View File

@@ -1,9 +1,9 @@
{
"url": "https://github.com/NixOS/nixpkgs.git",
"rev": "84260c7a6b28f432784b7e66f83dbd8c6fe02795",
"date": "2021-08-31T19:32:18+01:00",
"path": "/nix/store/ljmx9s3zqhlsxsa5hbmbdch07gni1k8y-nixpkgs",
"sha256": "1ac19sb37667zzszzjhh4j109k2jdwwkvsxkd1rwfyw5inhz9z2w",
"rev": "bc06c93905f60a82d6ebbb78f78cf289257860cc",
"date": "2021-09-07T08:49:49-03:00",
"path": "/nix/store/0v0hdzzapspqk2pxc55w8sxkhd8wh96n-nixpkgs",
"sha256": "10msryn9d7wz2n58fs35cl5jv9q7f26lw2lcdc3f9v792v0r68pm",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false

View File

@@ -1,9 +1,9 @@
{
"url": "https://github.com/NixOS/nixpkgs.git",
"rev": "74d017edb6717ad76d38edc02ad3210d4ad66b96",
"date": "2021-08-27T16:58:49+02:00",
"path": "/nix/store/82jg1p0rlf7mkryjpdn0z6b95q4i9lnq-nixpkgs",
"sha256": "0wvz41izp4djzzr0a6x54hcm3xjr51nlj8vqghfgyrjpk8plyk4s",
"rev": "fd6dba47199a7c249e64c1aa1fef01ee78e58481",
"date": "2021-09-06T13:24:38+02:00",
"path": "/nix/store/fhr60jw5mzn3b19jg4h8iz7idd38j1vy-nixpkgs",
"sha256": "0a9njyymwpz9xjq7vbyz91kxv9gf1rfww0xx7rj191ahppzgwv6b",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false

View File

@@ -1,9 +1,9 @@
{
"url": "https://github.com/nix-community/NUR",
"rev": "cfa00caa43154cfe65592ab92937afe8eb13a2ab",
"date": "2021-08-31T17:00:52+00:00",
"path": "/nix/store/l32cqvldckfi9f6lz9xm33bmmac1y7mj-NUR",
"sha256": "1jzqah2ppnr9bggsj004xg4619w1icv6q3wmc45x077ys5xf08az",
"rev": "541a7902721582c8705acd196c7277d36a5881c5",
"date": "2021-09-07T14:30:46+00:00",
"path": "/nix/store/rh3798fkrqpgxpll8bmsfjgwy89m9jxf-NUR",
"sha256": "0xlh2v9n2pj4cnb4j26xzc3x9fpc229imx17kiw4lyyiq4mn6xc7",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false

View File

@@ -1,9 +1,9 @@
{
"url": "https://github.com/krebs/retiolum",
"rev": "7f68e529e3e59e815ab9a328052f54e72c95bb2d",
"date": "2021-08-24T22:02:15+02:00",
"path": "/nix/store/6y5iziis5i107bg0gq1fw3id95wzz8af-retiolum",
"sha256": "0bh5fjyr4amq0v2kk17hd758gd7zs7z2jrkxp6h05rmwxa1j2070",
"rev": "a643fe16365118d53ee2aa2d6205d0f0dae3719f",
"date": "2021-09-06T21:02:13+02:00",
"path": "/nix/store/r7fn6j86hn9089ls0rgbsp51qsyzmpib-retiolum",
"sha256": "1hbdli97ad0ajcm9gj1jnn7y6g0058i3hpdj8hyv2vkxsnshqdw4",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false

View File

@@ -33,7 +33,10 @@
"${cloud-dir}/syncthing/common".devices = [ "wilde" "manakish" ];
"${cloud-dir}/syncthing/library".devices = [ "wilde" "manakish" "heym" ];
"${cloud-dir}/syncthing/mundoiu".devices = [ "wilde" "manakish" "heym" ];
"${cloud-dir}/syncthing/music".devices = [ "wilde" "manakish" "heym" ];
"${cloud-dir}/syncthing/music" = {
devices = [ "wilde" "manakish" "heym" "zaatar" ];
id = "music";
};
"${cloud-dir}/moodle" = {
devices = [ "wilde" "toum" "manakish" ];
id = "moodle-dl";

View File

@@ -13,11 +13,23 @@ in
<niveum/modules/tuna.nix>
];
services.mpdscribble = {
services.syncthing = let mpd-directory = config.services.mpd.dataDir; in {
enable = true;
endpoints."last.fm" = {
username = "Sternenzone";
passwordFile = toString <system-secrets/lastfm.key>;
user = config.services.mpd.user; # config.users.extraUsers.moodle.name;
openDefaultPorts = true;
configDir = "${mpd-directory}/.config/syncthing";
dataDir = "${mpd-directory}/.config/syncthing";
declarative = rec {
cert = toString <system-secrets/syncthing/cert.pem>;
key = toString <system-secrets/syncthing/key.pem>;
devices = {
inherit ((import <niveum/lib>).syncthing.devices) wilde manakish heym;
};
folders.${config.services.mpd.musicDirectory} = {
devices = [ "heym" "wilde" "manakish" ];
id = "music";
type = "receiveonly";
};
};
};

View File

@@ -47,6 +47,7 @@ rec {
heym.id = "HLQSG3D-WSKLA6S-MEYQ3EU-GDBGABE-PY53RQ6-SWQAP2I-Z5MVBVX-MYPJXAM";
manakish.id = "AJVBWR2-VFFAGZF-7ZF5JAX-T63GMOG-NZ446WK-MC5E6WK-6X6Q2HE-QQA2JQ3";
toum.id = "CBJQXFF-FMFGWFU-2J6FMPR-SRDTSGX-7NHOYOH-CQCABKF-KQJMRJC-SDE24Q4";
zaatar.id = "CGHO6LK-ZJBAXBD-UWI7AH3-BXYARE6-EUIM7PE-O2FUCOM-VCCRNCM-IG34WQ7";
};
ignorePaths = [

482
lib/radiorecord.json Normal file
View File

@@ -0,0 +1,482 @@
[
{
"station": "Record",
"desc": "Танцевальный мейнстрим",
"logo": "https://radiorecord.ru/upload/stations_images/record_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rr_main96.aacp"
},
{
"station": "Party 24/7",
"desc": "Нон-стоп вечеринка с зарубежными танцевальными хитами",
"logo": "https://radiorecord.ru/upload/stations_images/party-24-7_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/party96.aacp"
},
{
"station": "Organic",
"desc": "Легкий грув. В стиле Tim Green и Sebastien Leger",
"logo": "https://radiorecord.ru/upload/stations_images/organic_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/organic96.aacp"
},
{
"station": "Chill House",
"desc": "Легкий, мелодичный вайб",
"logo": "https://radiorecord.ru/upload/stations_images/chillhouse_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/chillhouse96.aacp"
},
{
"station": "Lo-Fi",
"desc": "Ламповый бит и треск винила. В стиле Nujabes и J Dilla",
"logo": "https://radiorecord.ru/upload/stations_images/lofi_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/lofi96.aacp"
},
{
"station": "Dream Pop",
"desc": "Лёгкий вайб для отдыха и хорошего настроения",
"logo": "https://radiorecord.ru/upload/stations_images/dream-pop_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/dreampop96.aacp"
},
{
"station": "Ambient",
"desc": "Атмосферный саунд",
"logo": "https://radiorecord.ru/upload/stations_images/ambient_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/ambient96.aacp"
},
{
"station": "Innocence",
"desc": "Techno, Minimal, Deep. Саунд как у Solomun, Boris Brejcha и Nina Kravitz",
"logo": "https://radiorecord.ru/upload/stations_images/ibiza_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/ibiza96.aacp"
},
{
"station": "Deep",
"desc": "Глубокое house-звучание",
"logo": "https://radiorecord.ru/upload/stations_images/deep_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/deep96.aacp"
},
{
"station": "Tech House",
"desc": "На стыке хауса и техно. В стиле Fisher и Dont Blink",
"logo": "https://radiorecord.ru/upload/stations_images/techouse_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/techouse96.aacp"
},
{
"station": "Russian Mix",
"desc": "Русские хиты в танцевальной обработке: Zivert, Niletto, Rasa",
"logo": "https://radiorecord.ru/upload/stations_images/rus_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rus96.aacp"
},
{
"station": "Chill-Out",
"desc": "Расслабляющий вайб",
"logo": "https://radiorecord.ru/upload/stations_images/chil_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/chil96.aacp"
},
{
"station": "Pirate Station",
"desc": "Лучшее из drum & bass: Pendulum, Chase & Status, Camo & Krooked",
"logo": "https://radiorecord.ru/upload/stations_images/ps_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/ps96.aacp"
},
{
"station": "Маятник Фуко",
"desc": "Новая школа русского рэпа без цензуры: Morgenshtern, Markul, Obladaet & co. [18+]",
"logo": "https://radiorecord.ru/upload/stations_images/mf_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/mf96.aacp"
},
{
"station": "Black Rap",
"desc": "Рэп на английском",
"logo": "https://radiorecord.ru/upload/stations_images/yo_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/yo96.aacp"
},
{
"station": "Trancemission",
"desc": "Лучшее из транс-музыки: Armin, Above & Beyond, Christina Novelli",
"logo": "https://radiorecord.ru/upload/stations_images/tm_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/tm96.aacp"
},
{
"station": "Megamix",
"desc": "Mash-up из главных хитов Рекорда со скоростью 5 треков в минуту! ",
"logo": "https://radiorecord.ru/upload/stations_images/mix_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/mix96.aacp"
},
{
"station": "Record Gold",
"desc": "Хиты Рекорда эпохи Avicii и Swedish House Mafia",
"logo": "https://radiorecord.ru/upload/stations_images/gold_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/gold96.aacp"
},
{
"station": "Big Hits",
"desc": "Зарубежные танцевальные хиты: Dua Lipa, Ave Max, Sia",
"logo": "https://radiorecord.ru/upload/stations_images/bighits_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/bighits96.aacp"
},
{
"station": "Remix",
"desc": "Иностранные хиты в танцевальной обработке: Black Eyed Peas, Ariana Grande, Ed Sheeran",
"logo": "https://radiorecord.ru/upload/stations_images/rmx_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rmx96.aacp"
},
{
"station": "Russian Hits",
"desc": "Русский танцевальный поп: Клава Кока, Niletto, Тима Белорусских",
"logo": "https://radiorecord.ru/upload/stations_images/russianhits_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/russianhits96.aacp"
},
{
"station": "Summer Dance",
"desc": "Летние клубные хиты 24/7",
"logo": "https://radiorecord.ru/upload/stations_images/summer-dance_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/summerparty96.aacp"
},
{
"station": "Супердискотека 90-х",
"desc": "Танцевальные боевики нашей юности Руки Вверх, 2 Unlimited, Masterboy",
"logo": "https://radiorecord.ru/upload/stations_images/sd90_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/sd9096.aacp"
},
{
"station": "Russian Gold",
"desc": "Российские хиты в ремиксах",
"logo": "https://radiorecord.ru/upload/stations_images/russiangold_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/russiangold96.aacp"
},
{
"station": "Bass House",
"desc": "Современный house с характерным басом: Malaa, Volac, Valentino Khan",
"logo": "https://radiorecord.ru/upload/stations_images/jackin_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/jackin96.aacp"
},
{
"station": "VIP House",
"desc": "Изысканный саунд закрытых вечеринок",
"logo": "https://radiorecord.ru/upload/stations_images/vip_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/vip96.aacp"
},
{
"station": "Trance Classics",
"desc": "Главные хиты trance-музыки: Above&Beyond, Armin van Buuren, Ferry Corsten",
"logo": "https://radiorecord.ru/upload/stations_images/trancehits_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/trancehits96.aacp"
},
{
"station": "House Hits",
"desc": "Свежие house-новинки",
"logo": "https://radiorecord.ru/upload/stations_images/househits_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/househits96.aacp"
},
{
"station": "EDM",
"desc": "Музыка стадионов. ",
"logo": "https://radiorecord.ru/upload/stations_images/club_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/club96.aacp"
},
{
"station": "Minimal/Tech",
"desc": "Саунд изысканных и дорогих party",
"logo": "https://radiorecord.ru/upload/stations_images/mini_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/mini96.aacp"
},
{
"station": "Tropical",
"desc": "Жаркий и солнечный house",
"logo": "https://radiorecord.ru/upload/stations_images/trop_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/trop96.aacp"
},
{
"station": "House Classics",
"desc": "Золотой фонд мелодичных house-хитов",
"logo": "https://radiorecord.ru/upload/stations_images/houseclss_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/houseclss96.aacp"
},
{
"station": "D'n'B Classics",
"desc": "Золотые хиты drum'n'bass Aphrodite, Pendulum, Sub Focus",
"logo": "https://radiorecord.ru/upload/stations_images/drumhits_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/drumhits96.aacp"
},
{
"station": "EDM Classics",
"desc": "Фестивальные гимны",
"logo": "https://radiorecord.ru/upload/stations_images/edmhits_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/edmhits96.aacp"
},
{
"station": "Future House",
"desc": "Future и Jackin' house: Don Diablo, Tchami, Oliver Heldens",
"logo": "https://radiorecord.ru/upload/stations_images/fut_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/fut96.aacp"
},
{
"station": "Trap",
"desc": "Главные Trap-хиты: Yellow Claw, Apashe, DJ Snake",
"logo": "https://radiorecord.ru/upload/stations_images/trap_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/trap96.aacp"
},
{
"station": "Rap Classics",
"desc": "Хип-хоп золотого периода: 2Pac, Cypress Hill, Notorius BIG, ONYX",
"logo": "https://radiorecord.ru/upload/stations_images/rapclassics_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rapclassics96.aacp"
},
{
"station": "Progressive",
"desc": "Лучшее из progressive trance & house",
"logo": "https://radiorecord.ru/upload/stations_images/progr_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/progr96.aacp"
},
{
"station": "Breaks",
"desc": "Лучшее из breakbit, nu breaks и jungle",
"logo": "https://radiorecord.ru/upload/stations_images/brks_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/brks96.aacp"
},
{
"station": "Trancehouse",
"desc": "Trancehouse - сочетание трансовой мелодики и хаусового бита.",
"logo": "https://radiorecord.ru/upload/stations_images/trancehouse_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/trancehouse96.aacp"
},
{
"station": "Rap Hits",
"desc": "Рэп новой волны из России и из-за рубежа",
"logo": "https://radiorecord.ru/upload/stations_images/rap_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rap96.aacp"
},
{
"station": "GOA/PSY",
"desc": "Психоделический и Goa-trance",
"logo": "https://radiorecord.ru/upload/stations_images/goa_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/goa96.aacp"
},
{
"station": "Dream Dance",
"desc": "Мелодичный trance 90х-00х: Robert Miles, ATB, Blank&Jones",
"logo": "https://radiorecord.ru/upload/stations_images/dream_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/dream96.aacp"
},
{
"station": "Uplifting",
"desc": "Атмосферный и космический trance",
"logo": "https://radiorecord.ru/upload/stations_images/uplift_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/uplift96.aacp"
},
{
"station": "Electro",
"desc": "Лучшее в Electro-house: Wolfgang Gatner, Knife Party, Curbi",
"logo": "https://radiorecord.ru/upload/stations_images/elect_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/elect96.aacp"
},
{
"station": "Future Bass",
"desc": "Flume, Illenium, Marshmello",
"logo": "https://radiorecord.ru/upload/stations_images/fbass_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/fbass96.aacp"
},
{
"station": "Neurofunk",
"desc": "Технологичный и стремительный бит: Black Sun Empire, Dimension, Camo & Krooked",
"logo": "https://radiorecord.ru/upload/stations_images/neurofunk_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/neurofunk96.aacp"
},
{
"station": "Dancecore",
"desc": "Dance на скорости до 150bpm",
"logo": "https://radiorecord.ru/upload/stations_images/dc_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/dc96.aacp"
},
{
"station": "Liquid Funk",
"desc": "Атмосферный drum'b'bass",
"logo": "https://radiorecord.ru/upload/stations_images/liquidfunk_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/liquidfunk96.aacp"
},
{
"station": "Eurodance",
"desc": "Дискотечные бэнгеры 90-х: Culture Beat, Haddaway, La Bouche",
"logo": "https://radiorecord.ru/upload/stations_images/eurodance_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/eurodance96.aacp"
},
{
"station": "Dubstep",
"desc": "Басы на максимум!",
"logo": "https://radiorecord.ru/upload/stations_images/dub_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/dub96.aacp"
},
{
"station": "Technopop",
"desc": "Технопоп эпохи 90-х: E-Type, Masterboy, Culture Beat",
"logo": "https://radiorecord.ru/upload/stations_images/technopop_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/technopop96.aacp"
},
{
"station": "Techno",
"desc": "Техно для тех, кто любит пожёстче",
"logo": "https://radiorecord.ru/upload/stations_images/techno_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/techno96.aacp"
},
{
"station": "Disco/Funk",
"desc": "Disco-саунд нового тысячелетия",
"logo": "https://radiorecord.ru/upload/stations_images/discofunk_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/discofunk96.aacp"
},
{
"station": "Hardstyle",
"desc": "Маршевый бас и мелодичный лид: бескомпромиссная смесь",
"logo": "https://radiorecord.ru/upload/stations_images/teo_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/teo96.aacp"
},
{
"station": "Tecktonik",
"desc": "Стиль, породивший танцевальный бум 2000-х",
"logo": "https://radiorecord.ru/upload/stations_images/tecktonik_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/tecktonik96.aacp"
},
{
"station": "Midtempo",
"desc": "Dance на минималках",
"logo": "https://radiorecord.ru/upload/stations_images/mt_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/mt96.aacp"
},
{
"station": "Synthwave",
"desc": "Вайб в стиле электронной музыки 80-х",
"logo": "https://radiorecord.ru/upload/stations_images/synth_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/synth96.aacp"
},
{
"station": "Old School",
"desc": "Саунд рейвов начала 00-х: DJ Aligator, Klubbheads, Club Caviar",
"logo": "https://radiorecord.ru/upload/stations_images/pump_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/pump96.aacp"
},
{
"station": "Hard Bass",
"desc": "Расколбас родившийся в Петербурге.",
"logo": "https://radiorecord.ru/upload/stations_images/hbass_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/hbass96.aacp"
},
{
"station": "Darkside",
"desc": "Тёмная сторона drum'n'bass: Noisia, Panacea, Limewax",
"logo": "https://radiorecord.ru/upload/stations_images/darkside_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/darkside96.aacp"
},
{
"station": "Hypnotic",
"desc": "Идеальный бэкграунд для работы или поездки в авто",
"logo": "https://radiorecord.ru/upload/stations_images/hypno_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/hypno96.aacp"
},
{
"station": "Moombahton",
"desc": "Синтез house- и reggae-ритмов.",
"logo": "https://radiorecord.ru/upload/stations_images/mmbt_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/mmbt96.aacp"
},
{
"station": "2-step",
"desc": "Атмосферные синкопированные ритмы",
"logo": "https://radiorecord.ru/upload/stations_images/2step_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/2step96.aacp"
},
{
"station": "Groove/Tribal",
"desc": "Этнический бит",
"logo": "https://radiorecord.ru/upload/stations_images/groovetribal_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/groovetribal96.aacp"
},
{
"station": "Christmas",
"desc": "Музыка с запахом мандаринов и хвои. Новогоднее настроение 24/7",
"logo": "https://radiorecord.ru/upload/stations_images/christmas-radio_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/christmas96.aacp"
},
{
"station": "Rave FM",
"desc": "Первоапрельский спецпроект",
"logo": "https://radiorecord.ru/upload/stations_images/rave_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rave96.aacp"
},
{
"station": "Jungle",
"desc": "История и современность jungle-музыки: DJ Hype, Shy FX, Ed Rush",
"logo": "https://radiorecord.ru/upload/stations_images/jungle_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/jungle96.aacp"
},
{
"station": "Complextro",
"desc": "Синтез house и dubstep",
"logo": "https://radiorecord.ru/upload/stations_images/complextro_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/complextro96.aacp"
},
{
"station": "Гоп FM",
"desc": "Первоапрельский спецпроект. Памп и лоходенс",
"logo": "https://radiorecord.ru/upload/stations_images/gop_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/gop96.aacp"
},
{
"station": "Rock",
"desc": "Первоапрельский спецпроект: от Цоя до Metallica",
"logo": "https://radiorecord.ru/upload/stations_images/rock_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rock96.aacp"
},
{
"station": "60's Dance",
"desc": "Танцевальная музыка эпохи рок-н-ролла",
"logo": "https://radiorecord.ru/upload/stations_images/cadillac_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/cadillac96.aacp"
},
{
"station": "70's Dance",
"desc": "Легендарный грув. Abba, Boney M, Bee Gees",
"logo": "https://radiorecord.ru/upload/stations_images/1970_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/197096.aacp"
},
{
"station": "Record 80-х",
"desc": "Ритмы советской и зарубежной эстрады. C. C. Catch, Modern Talking, В. Леонтьев и Ласковый Май",
"logo": "https://radiorecord.ru/upload/stations_images/1980_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/198096.aacp"
},
{
"station": "Руки Вверх!",
"desc": "24 часа в сутки - только песни Руки Вверх!",
"logo": "https://radiorecord.ru/upload/stations_images/rv19_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/rv96.aacp"
},
{
"station": "Веснушка FM",
"desc": "Первоапрельский спецпроект: песни детства",
"logo": "https://radiorecord.ru/upload/stations_images/deti_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/deti96.aacp"
},
{
"station": "Медляк FM",
"desc": "Первоапрельский спецпроект",
"logo": "https://radiorecord.ru/upload/stations_images/mdl_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/mdl96.aacp"
},
{
"station": "Нафталин FM",
"desc": "Первоапрельский спецпроект",
"logo": "https://radiorecord.ru/upload/stations_images/naft_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/naft96.aacp"
},
{
"station": "Гастарбайтер FM",
"desc": "Первоапрельский спецпроект",
"logo": "https://radiorecord.ru/upload/stations_images/gast_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/gast96.aacp"
},
{
"station": "Симфония FM",
"desc": "Первоапрельский спецпроект: Моцарт, Бетховен, Чайковский & co.",
"logo": "https://radiorecord.ru/upload/stations_images/symph_image600_colored_fill.png",
"stream": "https://radiorecord.hostingradio.ru/symph96.aacp"
}
]

View File

@@ -2,6 +2,9 @@
# DI generated via: cat /tmp/di-fm.html| pup '.channel-tile-component json{}' | jq 'map({logo: .children[0].children[1].children[1].src | sub("^"; "http:"), station: .children[3].children[0].children[0].text, desc: .children[3].children[1].text | gsub("\\s+"; " ")})' > /tmp/di-fm.json
# soma.fm generated via: curl https://somafm.com/ | pup '.cbshort json{}' | jq 'map({logo:.children[0].children[0].src|sub("^"; "http://soma.fm"), desc: .children[2].text, station: .children[1].text})'
let
# https://github.com/NixOS/nixpkgs/blob/bc06c93905f60a82d6ebbb78f78cf289257860cc/lib/trivial.nix#L281-L282
importJSON = path: builtins.fromJSON (builtins.readFile path);
di-fm-name = name: "${name} | DI.FM";
di-fm = name: "http://prem2.di.fm/${name}_hi?${di-fm-key}";
@@ -95,6 +98,10 @@ in [
logo = "http://radio-rb.de/img/site/logo.png";
desc = "Голос нашего города ...";
}
] ++
# generated via: curl https://radiorecord.ru/api/stations | jq '.result.stations | sort_by(.sort) | map({station:.title,desc:.tooltip,logo:.icon_fill_colored,stream:.stream_320})' > radiorecord.json
importJSON ./radiorecord.json
++ [
{
desc = "Your favorite dance tunes from the start of the decade. Familiar hits and overlooked classics in abundance.";
logo = "http://cdn-images.audioaddict.com/1/4/0/3/5/b/14035b0944a3c2e77852b6d0944f381e.jpg?size=180x180";
@@ -1428,106 +1435,6 @@ in [
station = "Paradiso Nashville";
logo = "https://www.paradiso.de/wp-content/uploads/2019/11/191111_Paradiso-Nashville.jpg";
}
{
stream = radiorecord "1970";
station = radiorecord-name "1970";
logo = radiorecord-logo;
}
{
stream = radiorecord "1980";
station = radiorecord-name "1980";
logo = radiorecord-logo;
}
{
stream = radiorecord "2step";
station = radiorecord-name "2step";
logo = radiorecord-logo;
}
{
stream = radiorecord "cadillac";
station = radiorecord-name "Cadillac";
logo = radiorecord-logo;
}
{
stream = radiorecord "darkside";
station = radiorecord-name "Darkside";
logo = radiorecord-logo;
}
{
stream = radiorecord "dc";
station = radiorecord-name "Dancecore";
logo = radiorecord-logo;
}
{
stream = radiorecord "dream";
station = radiorecord-name "Dream Dance";
logo = radiorecord-logo;
}
{
stream = radiorecord "fbass";
station = radiorecord-name "Future Bass";
logo = radiorecord-logo;
}
{
stream = radiorecord "gast";
station = radiorecord-name "Gastarbaiter FM";
logo = radiorecord-logo;
}
{
stream = radiorecord "hbass";
station = radiorecord-name "Hardbass";
logo = radiorecord-logo;
}
{
stream = radiorecord "mf";
station = radiorecord-name "FuckO";
logo = radiorecord-logo;
}
{
stream = radiorecord "rap";
station = radiorecord-name "Rap";
logo = radiorecord-logo;
}
{
stream = radiorecord "rock";
station = radiorecord-name "Rock";
logo = radiorecord-logo;
}
{
stream = radiorecord "rus";
station = radiorecord-name "Russian Mix";
logo = radiorecord-logo;
}
{
stream = radiorecord "russianhits";
station = radiorecord-name "Russian Hits";
logo = radiorecord-logo;
}
{
stream = radiorecord "rv";
station = radiorecord-name "Ruki Vverh Hits";
logo = radiorecord-logo;
}
{
stream = radiorecord "symph";
station = radiorecord-name "Symphony";
logo = radiorecord-logo;
}
{
stream = radiorecord "synth";
station = radiorecord-name "Synthwave";
logo = radiorecord-logo;
}
{
stream = radiorecord "tm";
station = radiorecord-name "Trancemission";
logo = radiorecord-logo;
}
{
stream = radiorecord "uplift";
station = radiorecord-name "Uplifting";
logo = radiorecord-logo;
}
{
stream = stereoscenic "mod-h";
station = stereoscenic-name "Ambient Modern";