Last active
August 20, 2023 22:25
-
-
Save sheepla/1c418efe906b5c9ac430aca1d5de12f2 to your computer and use it in GitHub Desktop.
Listen to radio CLI with interactive menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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