Browse Source

[vk.com] Simplified the page_id acquisition by using the id matched in the URL earlier on.

totalwebcasting
Will Sewell 10 years ago
parent
commit
021a0db8f7
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      youtube_dl/extractor/vk.py

+ 1
- 7
youtube_dl/extractor/vk.py View File

@ -218,13 +218,7 @@ class VKUserVideosIE(InfoExtractor):
}
def _real_extract(self, url):
# Extract page id
mobj = re.match(self._VALID_URL, url)
if mobj is None:
raise ExtractorError('Invalid URL: %s' % url)
# Download page and get video ids
page_id = mobj.group(1)
page_id = self._match_id(url)
page = self._download_webpage(url, page_id)
video_ids = orderedSet(m.group(1) for m in re.finditer(r'href="/video([0-9_]+)"', page))


Loading…
Cancel
Save