mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-04-27 00:25:54 +03:00
[GH-ISSUE #714] Local files #427
Labels
No labels
api-bug
bug
dependencies
documentation
duplicate
enhancement
external-ide
headless-mode
implicit-grant-flow
invalid
missing-endpoint
pr-welcome
private-api
pull-request
question
spotipy3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotipy#427
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 @rsvedant on GitHub (Aug 2, 2021).
Original GitHub issue: https://github.com/spotipy-dev/spotipy/issues/714
how do I get local file song name using spotipy? coz ive noticed that if a playlist has a local file, it doesn't play the songs at all and gives no error, so i wrapped it up to a try except and made it continue the process on an exception and it works but it skips the local files, so how would I go about getting the song name of a local file that's in my playlist using spotipy?
@stephanebruckert commented on GitHub (Aug 8, 2021):
Have a look at https://developer.spotify.com/documentation/general/guides/local-files-spotify-playlists/
You should be able to skip local tracks looking for
is_local.Also note that track infos might not be available depending on the quality of the local track metadata:
@Peter-Schorn commented on GitHub (Aug 8, 2021):
See also https://support.spotify.com/us/article/local-files/. In particular, you need to make sure the playlist with the local file is downloaded on the Spotify desktop application and any other Spotify client (e.g., the iOS app) where you intend to play the track. I can confirm that local files work for me.
@rsvedant commented on GitHub (Aug 9, 2021):
Oh okay, thanks a lot!
@dieser-niko commented on GitHub (May 1, 2024):
Closing as the issue seems to be resolved.