Live data from Hacker News

FreeYourMusic lets users migrate their playlists off Spotify

freeyourmusic.com

251–260 of 271 posts

Re: FreeYourMusic lets users migrate their playlists off Spotify

#251
post #46

I think something like this still works with a client id, secret, and a playlist: TOKEN=$(curl --basic --user $ID:$SECRET -X POST -d grant_type=client_credentials https://accounts.spotify.com/api/token | jq -r .access_token) curl -H "Authorization: Bearer $TOKEN" https://api.spotify.com/v1/playlists/$PLAYLIST/tracks | tee playlist-$PLAYLIST.json | jq -rc '.items[].track | "\(.artists[0].name) -- \(.name)"' | sort

It works, but the tracks api is limited to 100 max results, so you have to call it multiple times with offset for larger playlists [1]. [1] https://developer.spotify.com/documentation/web-api/referenc...

Yes, that's pagination :)

It should be possible to script that out too.

Re: FreeYourMusic lets users migrate their playlists off Spotify

#252

Any github repositories and code which provide Spotify playlist->txt/csv/json/xml ? ANSWER to myself: Seems there is at least a simple drag&drop solution with the select all on desktop app -> LibreOffice https://www.quora.com/How-do-I-export-my-Spotify-playlist-as...

From elsewhere in the comments: https://github.com/pavel-aicradle/exportify

Re: FreeYourMusic lets users migrate their playlists off Spotify

#255
post #251

Earlier quoted context omitted.

It works, but the tracks api is limited to 100 max results, so you have to call it multiple times with offset for larger playlists [1]. [1] https://developer.spotify.com/documentation/web-api/referenc...

Yes, that's pagination :) It should be possible to script that out too.

Yep, it is, I was just noting it in case someone was wondering why it was being wonky after trying it out.

I already did just to test it out, the results include a 'next' link that you can use :)

Re: FreeYourMusic lets users migrate their playlists off Spotify

#256

Earlier quoted context omitted.

It works, but the tracks api is limited to 100 max results, so you have to call it multiple times with offset for larger playlists [1]. [1] https://developer.spotify.com/documentation/web-api/referenc...

Most APIs have page size limits.

Yep, I was just noting it for anyone else that tried it and was curious.

Re: FreeYourMusic lets users migrate their playlists off Spotify

#258

Earlier quoted context omitted.

Just give me the fucking mp3 or flac files, subscriptions should be advertised as radio, not a music "library". I've been bitching about the industry burning down my shelves for years now... it's unfathomable how much people rely on these stupid streaming services. That said, I'd still gladly pay for the music discovery, I just have started to feel cheated out of my money over the years doing so. Should I really be p…

last.fm is still going strong. Send your plays there from pretty much any service/app and you'll start getting recommendations.

Huge fan of last.fm. I haven’t been using their discovery features (though I may start now that you’ve mentioned it), but I absolutely love all the listening statistics they offer. I find it super interesting to see how my listening habits and music taste evolve over time , as well as seeing which tracks I come back to most.

Re: FreeYourMusic lets users migrate their playlists off Spotify

#259

Earlier quoted context omitted.

I think the internet age has changed this. The pure cost to offer customer service is insane for the costs users are paying. If you want good customer service you're going to have to pay for it, but the market has shown that's not going to be a option, because not enough people are willing to pay for it. Great customer service used to be a differentiator, but for many services, cost is way more important, and custome…

If companies weren't making millions or billions of dollars in pure profit, I'd be more inclined to agree with this line of thought. But their profit/cost ratios are high enough to offer more customer service than they currently are. And ultimately, it's not the customer's fault that the business is not working from a sustainable business model.

But customers still pay in spite of that. And that is what ultimately matters.

Re: FreeYourMusic lets users migrate their playlists off Spotify

#260
post #192
post #178

Earlier quoted context omitted.

> But if there was a profitable model where they offer great customer service wouldn't they? Or at least a competitor would come in who did. They wouldn't offer great customer service, they'll offer what they feel they can get away with. And there were competitors but they were pushed out (remember RDIO?, good times).

remember RDIO? wow. I do now. Why did they shut down?

> Why did they shut down?

Because Spotify had an ad-supported free service based on selling data and paying the bare minimum it could get away with to artists, while RDIO had a subscription-only service for a long time focused on music recommendations from friends. Spotify squeezed RDIO with its free tier and monetized its user data. After a fruitless trip into online radio, RDIO were bought out by Pandora.

Post reply on HN