Skip to content

Instantly share code, notes, and snippets.

View whelks-chance's full-sized avatar

Ian Harvey whelks-chance

View GitHub Profile
@psychemedia
psychemedia / nomis_api_demo.ipynb
Last active June 26, 2022 19:30
demo - nomis API python wrapper
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stengland
stengland / bbcradio.sh
Last active January 11, 2023 14:53
Play BBC Radio with mpd or mplayer from the command line
#!/bin/bash
play() {
playlist="http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/uk/sbr_high/ak/bbc_$1.m3u8"
echo $playlist
if mpc
then
mpc add $playlist
mpc play
else
mplayer $playlist