Skip to content

Instantly share code, notes, and snippets.

@sheepla
Last active August 20, 2023 22:25
Show Gist options
  • Save sheepla/1c418efe906b5c9ac430aca1d5de12f2 to your computer and use it in GitHub Desktop.
Save sheepla/1c418efe906b5c9ac430aca1d5de12f2 to your computer and use it in GitHub Desktop.
Listen to radio CLI with interactive menu
#!/bin/bash
# Listen to radio cli
# Dependence:
# - fzf: fuzzy finder
# - ffplay: music player (Install `ffmpeg`)
cat << EOS | ffplay -i -nodisp -v quiet "$(fzf <<< "${channels}" | awk '{print $2}')"
NHKR1 https://nhkradioakr1-i.akamaihd.net/hls/live/511633/1-r1/1-r1-01.m3u8
NHKR2 https://nhkradioakr2-i.akamaihd.net/hls/live/511929/1-r2/1-r2-01.m3u8
NHKFM https://nhkradioakfm-i.akamaihd.net/hls/live/512290/1-fm/1-fm-01.m3u8
EOS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment