diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-11-22 22:46:46 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-11-22 22:46:46 +0100 |
commit | 7012b23c947fc1ed146e314a30d3c70a5fde70e7 (patch) | |
tree | c42cb6445eb221bdb416454a29b44608517351b5 /youtube_dl/extractor/common.py | |
parent | 50123be4211e2c16aa5d2fc9ebadbaf72a9becce (diff) |
Match --download-archive during playlist processing (Fixes #1745)
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index eb3435c77..3cebeaf29 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -229,12 +229,14 @@ class InfoExtractor(object): self.to_screen(u'Logging in') #Methods for following #608 - def url_result(self, url, ie=None): + def url_result(self, url, ie=None, video_id=None): """Returns a url that points to a page that should be processed""" #TODO: ie should be the class used for getting the info video_info = {'_type': 'url', 'url': url, 'ie_key': ie} + if video_id is not None: + video_info['id'] = video_id return video_info def playlist_result(self, entries, playlist_id=None, playlist_title=None): """Returns a playlist""" |