diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-01-27 03:27:46 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-01-27 03:27:46 +0100 |
commit | d0d51a8afa6e8e0691d14610254ccf080f50ba69 (patch) | |
tree | f984d2e5db1ca4983f3e3e4b4e47bb6e1447c7ef /youtube_dl | |
parent | c67598c3e1b396e998b4dc4e74275e6e059606f9 (diff) |
8tracks: Include performer as uploader
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 50a5a5cfb..0af59bce2 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -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) |