robbeofficial / spotifyripper

small ripper script for spotify (rips playlists to mp3 and includes ID3 tags and album covers)
656 stars 102 forks source link

An errror occurred while ripping a Playlist #23

Open ghost opened 9 years ago

ghost commented 9 years ago

Spotifyripper cancel its process (Track not availble)

Have you for this issue any suggestion to skipping unplayable tracks ?

Thanks

Robin

tom08zehn commented 9 years ago

I had the same. I edited jbripper.py and wrapped line 117 in a try statement as follows:

ok = True try: self.ripper.load_track(track) # original line 117 except Exception: ok = False if ok: rip_init(session, track)

I would like to see this as a feature request :-)