8tracks: Better default titles
[youtube-dl] / youtube_dl / InfoExtractors.py
index 50a5a5cfb922c010be12cff4a018ab08ee1cd981..ff085b0ee2fcf72a3e7b82e289a3378d3d02ac78 100755 (executable)
@@ -3892,7 +3892,9 @@ class EightTracksIE(InfoExtractor):
             info = {
                 'id': track_data['id'],
                 'url': track_data['track_file_stream_url'],
-                'title': track_data['name'],
+                'title': track_data['performer'] + u' - ' + track_data['name'],
+                'raw_title': track_data['name'],
+                'uploader_id': data['user']['login'],
                 'ext': 'm4a',
             }
             res.append(info)