spotify-cli-linux icon indicating copy to clipboard operation
spotify-cli-linux copied to clipboard

play a song you request

Open GeronVanDenHam opened this issue 6 years ago • 4 comments

can you make it possible to add a request to a song in the parameter? so for instance --play_ thunder and it would then search for thunder, find thunder by Imagine Dragons and play thay. or for instance --play imginedragons to play the spotify playlist of most listened to songs from this artist

GeronVanDenHam avatar Jan 26 '18 02:01 GeronVanDenHam

Hello,

Thanks for your issue. We can consider adding such features. I'm also open for Pull Requests. Please note, this project is only wrapper around API exposed by Spotify desktop application and it cannot work without it. If Spotify exposed an API, which allows to implement these functions, then we can do it.

Regards, Piotr

pwittchen avatar Jan 26 '18 14:01 pwittchen

This is possible using dbus-send --print-reply --session --type=method_call --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri <spotify_uri>.

However, you'd have to get the uri somehow. You can get this from right-clicking a song in spotify, or go through the Spotify API. Unfortunately, the API requires authentication for any requests, which requires you to either register the application or using web redirects to their app auth page.

Possible, but not easy.

kindlehl avatar Jan 21 '19 23:01 kindlehl

Maybe we can utilize this project: https://github.com/plamere/spotipy, to achieve that. I'm not sure, if it's able to return appropriate url.

pwittchen avatar Feb 15 '19 09:02 pwittchen

It looks like it might be possible with the search function. Will also need spotify credentials to embed in the project for authenticating with the API. I'm not sure how secure that is, or how to secure it. I can probably play around with this in a month or two when school/work eases, if you are interested in having this implemented. :)

We could add syntax on top of the spotify --play command. It could be something like:

spotify --play [ [--title | --album | --artist | --playlist] ref ]

[Edit] We could also have a dotfile for the user to place their own spotify credentials.

kindlehl avatar Feb 15 '19 10:02 kindlehl

This is possible using dbus-send --print-reply --session --type=method_call --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri <spotify_uri>.

Thank you for this, led me to find out that I could do this easier with a tool I already had installed playerctl

playerctl --player=spotify open spotify:playlist:<id> && \
playerctl --player=spotify shuffle on && \
playerctl --player=spotify play && \
sleep 1 && \
playerctl --player=spotify metadata

Fortunately, I didn't need the actual search functionality this feature request wants. I just wanted to control the player.

fritz-fritz avatar Apr 06 '24 22:04 fritz-fritz