From 07d768cc40b3c6a8ea68e0ce1eae17f025f5ba0f Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Tue, 22 Jun 2021 21:52:15 +0530 Subject: Adds FM Radio Stations ``` !tune => This will play default radio station !tune next => Next Radio Station !tune prev => Previous Radio Station ``` --- src/configs/commands.config.json | 5 +++++ src/configs/radio.json | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/configs/radio.json (limited to 'src/configs') diff --git a/src/configs/commands.config.json b/src/configs/commands.config.json index cdb7745..9ef5a75 100644 --- a/src/configs/commands.config.json +++ b/src/configs/commands.config.json @@ -9,6 +9,11 @@ "name": "radioStop", "description": "Stop Radio", "file": "./commands/radioStop.js" + }, + { + "name": "tune", + "description": "FM Radio Tune IN", + "file": "./commands/tune.js" } ] } \ No newline at end of file diff --git a/src/configs/radio.json b/src/configs/radio.json new file mode 100644 index 0000000..2626cdc --- /dev/null +++ b/src/configs/radio.json @@ -0,0 +1,32 @@ +[ + { + "id": "ananthapuriFM", + "name": "Ananthapuri FM", + "url": "https://air.pc.cdn.bitgravity.com/air/live/pbaudio229/playlist.m3u8" + }, + { + "id": "clubFM", + "name": "Club FM 99.6", + "url": "https://22243.live.streamtheworld.com/CLUBFMUAEAAC.aac" + }, + { + "id": "nigthRide", + "name": "Nightride FM", + "url": "https://stream.nightride.fm/nightride.m4a" + }, + { + "id": "recordSynthwave", + "name": "Record Synthwave", + "url": "http://air.radiorecord.ru:805/synth_320" + }, + { + "id": "radioMango", + "name": "Radio Mango 91.9", + "url": "https://bcovlive-a.akamaihd.net/19b535b7499a4719a5c19e043063f5d9/ap-southeast-1/6034685947001/playlist.m3u8" + }, + { + "id": "oneFM", + "name": "One FM 91.3 Singapore", + "url": "https://22253.live.streamtheworld.com/ONE_FM_913AAC.aac?dist=sphradio-web" + } +] \ No newline at end of file -- cgit v1.2.3