Bleuzen / SpotRec

Spotify desktop client recorder for PulseAudio
MIT License
74 stars 17 forks source link

Filter / characters out of filenames #6

Closed nokyan closed 5 years ago

nokyan commented 5 years ago

Recording tracks that have a "/" in their title previously didn't work, this hacky solution fixes it by just replacing every "/" in the filename with nothing.

Bleuzen commented 5 years ago

Thanks, but there is room to improve:

self.filename = self.filename.replace("/", "_")
Bleuzen commented 5 years ago

Ok great :)