audio = easyid3.EasyID3(join('mp3', file_name))
title = audio['title'][0]
artist = title.split(',', 1)[0].strip()
artist_slug = slughifi(artist)
title_part = slughifi(title.rsplit(',', 1)[1].strip())
audio = easyid3.EasyID3(join('mp3', file_name))
title = audio['title'][0]
artist = title.split(',', 1)[0].strip()
artist_slug = slughifi(artist)
title_part = slughifi(title.rsplit(',', 1)[1].strip())