Browse Source

[vimeo:channel] Add video id to url_result

This will allow us to decide much faster that we don't want an already archived video,
and will allow having to download webpages for each video that has already been downloaded,
thus significantly speeding up the archival of channels that have no new content.
totalwebcasting
Purdea Andrei 8 years ago
committed by Sergey M․
parent
commit
dfc8f46e1c
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/vimeo.py

+ 1
- 1
youtube_dl/extractor/vimeo.py View File

@ -652,7 +652,7 @@ class VimeoChannelIE(VimeoBaseInfoExtractor):
yield self._extract_list_title(webpage)
for video_id in re.findall(r'id="clip_(\d+?)"', webpage):
yield self.url_result('https://vimeo.com/%s' % video_id, 'Vimeo')
yield self.url_result('https://vimeo.com/%s' % video_id, 'Vimeo', video_id=video_id)
if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
break


Loading…
Cancel
Save