Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Evaluate the channel name as a regex #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ $ somafm listen groovesalad
22:27:30 | Mindex - Jagga-jah
```

You don't have to write the whole channel name, the first letters are enough.

```console
$ somafm listen groov
22:27:30 | Mindex - Jagga-jah
```

### Listen to Groove Salad at highest quality:
```console
$ somafm listen groovesalad --quality=highest
Expand Down
2 changes: 1 addition & 1 deletion src/somafm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function help() {

function listen() {
local playlist=$(curl -s -H 'Accept: application/json' https://somafm.com/channels.json | \
jq -r ".channels | map(select(.id == \"${channel}\")) | .[]" | \
jq -r ".channels | map(select( (.id == \"${channel}\") or (.id | test(\"^${channel}\")) )) | limit(1;.[])" | \
jq -r ".playlists | map(select(.quality == \"${quality}\")) | limit(1;.[]) | .url")

case "${playlist}" in
Expand Down