youtube-dl

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

commit 485fedf6fd801d7ae0796d661ae7624564f67df8
parent da0baba5c8a0ac6220cc0155044a01b97bc00a76
Author: Dave <github@eric-carlier.me>
Date:   Thu, 28 Jul 2016 19:23:51 +0200

[dailymotion:playlist] Optimize download archive processing

Diffstat:
Myoutube_dl/extractor/dailymotion.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py @@ -331,7 +331,7 @@ class DailymotionPlaylistIE(DailymotionBaseInfoExtractor): for video_id in re.findall(r'data-xid="(.+?)"', webpage): if video_id not in video_ids: - yield self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion') + yield self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion', video_id) video_ids.add(video_id) if re.search(self._MORE_PAGES_INDICATOR, webpage) is None: