fzakaria / HypeScript

Python HypeMachine script downloader
www.fzakaria.com
55 stars 21 forks source link

Minor filename improvement #7

Closed uniZero closed 11 years ago

uniZero commented 11 years ago

As much of the music on Hype Machine contains no metadata, I would suggest changing the line:

filename = "{}.mp3".format(title)

to ..

filename = "{} - {}.mp3".format(artist, title)

That way we get the standard "Artist - Title.mp3" filename format. I use Jaikoz to automate the process of tagging music, which allows metadata to be extracted from filenames in this manner.

Thanks for the script! Very time-saving

fzakaria commented 11 years ago

I'll make the change