pwittchen/spotify-cli-linux

play a song you request

GeronVanDenHam opened this issue · 5 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

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

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.

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.

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.