mirror of
https://github.com/Rigellute/spotify-tui.git
synced 2026-04-27 00:25:53 +03:00
[GH-ISSUE #171] Starting song / artist / album radio #86
Labels
No labels
bug
enhancement
good first issue
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-tui#86
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Bios-Marcel on GitHub (Nov 27, 2019).
Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/171
Hey,
it'd be pretty cool to start the radio (automatic music suggestion / playback) for a certain song, album or artist. Might be available for playlists too, not sure. Maybe there should be a global shortcut that simply uses the selection in the currently focus container.
@Rigellute commented on GitHub (Nov 27, 2019):
Yes this would be cool. Spotify offer is a "recommendation" API which takes a "seed" - https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/
This should be a straight forward one to implement.
Perhaps we could use the keypress
r?@Bios-Marcel commented on GitHub (Nov 27, 2019):
Cool, nice to hear.
So, I was actually thinking about something else considering the keystrokes. Maybe keystrokes should exclusively be non-character keyinputs. So
Ctrl+?andCtrl+Shift+?instead ofR,S,?and so on .I'd prefer this because navigation within lists somewhat annoys me right now. I know there's already certain shortcuts that would be different to this. What do you think about this in general? I can make a new issue for this if you will.I have written a terminal client for discord and in order to easily navigate the server / channel tree you can just start typing the first characters of the name and it will jump to the corresponding node in the tree. I'd really like something like this for spotify-tui. Anyway, I have found that to be very useful and it allows me to navigate the data without even looking at it.
@Rigellute commented on GitHub (Nov 27, 2019):
Searching within a list would be a great feature - something I find myself wanting.
This wouldn't require us redefining existing bindings to be exclusively non-character keys - we could implement a keypress that puts you into search/filter mode.
Feel free to raise this as an additional issue.
@Rigellute commented on GitHub (Jan 26, 2020):
@neriglissar's work #200 closes this
@Joelius300 commented on GitHub (May 24, 2022):
Is it correct that this doesn't work for playlists? In the official app there's a radio for those too (not for albums though) but pressing r on a playlist doesn't seem to play the radio in spt.
Also is there a way to go to the radio without immediately starting playback?