-
-
Notifications
You must be signed in to change notification settings - Fork 101
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
Support for Smart Shuffle #477
Comments
@systematicallyrandom haven't found a way yet to enable smart shuffle. The API Endpoint currently only allows for a Technically,
We can see in the playback state actually that {
"device": {
"id": "foo",
"is_active": true,
"is_private_session": false,
"is_restricted": false,
"name": "bar",
"type": "Computer",
"volume_percent": 100,
"supports_volume": true
},
"repeat_state": "context",
"shuffle_state": true,
"context": {
"type": "album",
"href": "https://api.spotify.com/v1/albums/6yWMN087PgSimbcVmHLEwG",
"external_urls": {
"spotify": "https://open.spotify.com/album/6yWMN087PgSimbcVmHLEwG"
},
"uri": "spotify:album:6yWMN087PgSimbcVmHLEwG"
},
"timestamp": 1732537078305,
"progress_ms": 319750,
"is_playing": true,
"item": {
"album": {
"album_type": "album",
"total_tracks": 15,
"external_urls": {
"spotify": "https://open.spotify.com/album/6yWMN087PgSimbcVmHLEwG"
},
"href": "https://api.spotify.com/v1/albums/6yWMN087PgSimbcVmHLEwG",
"id": "6yWMN087PgSimbcVmHLEwG",
"images": [
{
"url": "https://i.scdn.co/image/ab67616d0000b273dce45359981d62e087a29e6f",
"height": 640,
"width": 640
},
{
"url": "https://i.scdn.co/image/ab67616d00001e02dce45359981d62e087a29e6f",
"height": 300,
"width": 300
},
{
"url": "https://i.scdn.co/image/ab67616d00004851dce45359981d62e087a29e6f",
"height": 64,
"width": 64
}
],
"name": "Ænima",
"release_date": "1996-09-17",
"release_date_precision": "day",
"type": "album",
"uri": "spotify:album:6yWMN087PgSimbcVmHLEwG",
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/2yEwvVSSSUkcLeSTNyHKh8"
},
"href": "https://api.spotify.com/v1/artists/2yEwvVSSSUkcLeSTNyHKh8",
"id": "2yEwvVSSSUkcLeSTNyHKh8",
"name": "TOOL",
"type": "artist",
"uri": "spotify:artist:2yEwvVSSSUkcLeSTNyHKh8"
}
],
"is_playable": true
},
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/2yEwvVSSSUkcLeSTNyHKh8"
},
"href": "https://api.spotify.com/v1/artists/2yEwvVSSSUkcLeSTNyHKh8",
"id": "2yEwvVSSSUkcLeSTNyHKh8",
"name": "TOOL",
"type": "artist",
"uri": "spotify:artist:2yEwvVSSSUkcLeSTNyHKh8"
}
],
"disc_number": 1,
"duration_ms": 399266,
"explicit": true,
"external_ids": {
"isrc": "USZE19600150"
},
"external_urls": {
"spotify": "https://open.spotify.com/track/0nLOl4fSiBZKGFla5pLUtf"
},
"href": "https://api.spotify.com/v1/tracks/0nLOl4fSiBZKGFla5pLUtf",
"id": "0nLOl4fSiBZKGFla5pLUtf",
"is_playable": true,
"name": "Ænema",
"popularity": 60,
"preview_url": "https://p.scdn.co/mp3-preview/cb0d70ad5cd62af8f0d6e00953ed0c8ea2d6f89b?cid=cfe923b2d660439caf2b557b21f31221",
"track_number": 13,
"type": "track",
"uri": "spotify:track:0nLOl4fSiBZKGFla5pLUtf",
"is_local": false
},
"currently_playing_type": "track",
"actions": {
"disallows": {
"resuming": true
}
},
"smart_shuffle": false
} We can see there are a At the moment, I am only aware of a way of setting the |
Thanks for looking into it! Hopefully Spotify updates their API soon. |
@systematicallyrandom, yeah they technically updated there API recently. They removed features instead of adding some |
Summary
Is it possible to add support for the newer smart shuffle feature that Spotify implemented to replace the radio station feature for playlists?
Use Case
Spotify no longer supports the radio station feature for individual songs or playlists.
Benefits
No response
Potential Solutions
No response
Additional Details
No response
The text was updated successfully, but these errors were encountered: