Skip to content

Instantly share code, notes, and snippets.

View alexjj's full-sized avatar

Alex Johnstone alexjj

View GitHub Profile
@alexjj
alexjj / bbc playlists
Created September 20, 2013 12:28
Convert BBC Radio playlists to use with mpd. e.g. on raspberry pi or other linux device
#!/bin/bash
set -e
playlistdir=/var/lib/mpd/playlists
declare -A radios
radios["BBC Radio 4"]="http://www.bbc.co.uk/radio/listen/live/r4_aaclca.pls"
radios["BBC Radio 2"]="http://www.bbc.co.uk/radio/listen/live/r2_aaclca.pls"
for k in "${!radios[@]}"
do