mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-03 06:22:58 +01:00
[odnoklassniki] Make URL explicit
This commit is contained in:
parent
c6bbdadd79
commit
ba2df04b41
@ -47,7 +47,8 @@ class OdnoklassnikiIE(InfoExtractor):
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
webpage = self._download_webpage(
|
||||
'http://ok.ru/video/%s' % video_id, video_id)
|
||||
|
||||
player = self._parse_json(
|
||||
unescapeHTML(self._search_regex(
|
||||
|
Loading…
Reference in New Issue
Block a user