youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit d0d51a8afa6e8e0691d14610254ccf080f50ba69
parent c67598c3e1b396e998b4dc4e74275e6e059606f9
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 27 Jan 2013 03:27:46 +0100

8tracks: Include performer as uploader

Diffstat:
Mtest/tests.json | 3++-
Myoutube_dl/InfoExtractors.py | 1+
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/tests.json b/test/tests.json @@ -244,7 +244,8 @@ "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<>\"'" } }, { diff --git 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)