Add radio

This script holds a list of radio channels and can play them and switch on demand.
This commit is contained in:
iAmInAction 2023-07-08 15:10:16 +00:00 committed by GitHub
parent 6ca9d00418
commit f8f6f2be76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

96
radio.sh Normal file
View File

@ -0,0 +1,96 @@
#!/bin/bash
export PLAYER="ffplay"
export PLAYERARGS="-nodisp -hide_banner -loglevel error"
while true
do
if [ -z "$prchan" ]
then
prdisp="Playback stopped."
else
prdisp="Now playing: $prchan"
fi
channel=$(dialog --backtitle "$prdisp" --menu "Choose a station:" 18 45 25 \
1 "80s80s" \
2 "80s80s In the mix" \
3 "100,5" \
4 "100,5 In the mix" \
5 "1Live" \
6 "WDR 2" \
7 "Antenne AC" \
8 "WDR Cosmo" \
9 "Radio21" \
10 "Radio Digby" \
11 "Exit" \
3>&1 1>&2 2>&3
)
clear
kill $PLAYERID
case $channel in
1)
prchan="80s80s"
"$PLAYER" "https://80s80s.hoerradar.de/80s80s-mweb-mp3-hq" $PLAYERARGS &
PLAYERID=$!
;;
2)
prchan="80s80s In the mix"
"$PLAYER" "https://80s80s.hoerradar.de/80s80s-mix-mp3-hq" $PLAYERARGS &
PLAYERID=$!
;;
3)
prchan="100,5"
"$PLAYER" "https://stream.dashitradio.de/dashitradio/mp3-128/stream.mp3" $PLAYERARGS &
PLAYERID=$!
;;
4)
prchan="100,5 In the mix"
"$PLAYER" "https://stream.dashitradio.de/in_the_mix/mp3-128" $PLAYERARGS &
PLAYERID=$!
;;
5)
prchan="1Live"
"$PLAYER" "http://wdr-1live-live.icecast.wdr.de/wdr/1live/live/mp3/128/stream.mp3" $PLAYERARGS &
PLAYERID=$!
;;
6)
prchan="WDR 2"
"$PLAYER" "http://wdr-wdr2-aachenundregion.icecast.wdr.de/wdr/wdr2/aachenundregion/mp3/128/stream.mp3" $PLAYERARGS &
PLAYERID=$!
;;
7)
prchan="Antenne AC"
"$PLAYER" "http://mp3.antenneac.c.nmdn.net/ps-antenneac/livestream.mp3" $PLAYERARGS &
PLAYERID=$!
;;
8)
prchan="WDR Cosmo"
"$PLAYER" "http://wdr-cosmo-live.icecast.wdr.de/wdr/cosmo/live/mp3/128/stream.mp3" $PLAYERARGS &
PLAYERID=$!
;;
9)
prchan="Radio21"
"$PLAYER" "https://radio21.streamabc.net/radio21-hannover-mp3-192-3735655" $PLAYERARGS &
PLAYERID=$!
;;
10)
prchan="Radio Digby"
"$PLAYER" "http://ourdns.zone:8000/radiodigby.mp3" $PLAYERARGS &
PLAYERID=$!
;;
11)
killall $PLAYER
echo "Exiting..."
exit 0
;;
*)
echo "Not a valid channel."
exit 1
;;
esac
done