8tracks: Include performer as uploader
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 27 Jan 2013 02:27:46 +0000 (03:27 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 27 Jan 2013 02:27:46 +0000 (03:27 +0100)
test/tests.json
youtube_dl/InfoExtractors.py

index a46ff491b0ccc7e360558e4eb4251229eb043426..2fdd7f0f59472b50f069d06bdff59f2966f86f34 100644 (file)
         "file": "11885610.m4a",
         "md5": "96ce57f24389fc8734ce47f4c1abcc55",
         "info_dict": {
-          "title": "youtube-dl test track 1 \"'/\\\u00e4\u21ad"
+          "title": "youtube-dl test track 1 \"'/\\\u00e4\u21ad",
+          "uploader": "youtue-dl project<>\"'"
         }
       },
       {
index 50a5a5cfb922c010be12cff4a018ab08ee1cd981..0af59bce29794cef8d9aa0fe13058a60b6842667 100755 (executable)
@@ -3893,6 +3893,7 @@ class EightTracksIE(InfoExtractor):
                 'id': track_data['id'],
                 'url': track_data['track_file_stream_url'],
                 'title': track_data['name'],
+                'uploader': track_data['performer'],
                 'ext': 'm4a',
             }
             res.append(info)