Skip to content

Instantly share code, notes, and snippets.

@noodlebug
noodlebug / bbcradio.sh
Last active February 23, 2021 14:03 — forked from stengland/bbcradio.sh
Play BBC Radio with mpd or mplayer from the command line
#!/bin/bash
play() {
playlist="http://bbcmedia.ic.llnwd.net/stream/bbcmedia_$1_mf_p"
echo $playlist
if mpc
then
echo "Using mpc"
mpc add $playlist
mpc play
else