diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-04-05 23:49:15 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-04-05 23:49:15 +0700 |
commit | 235d828b7b113f22309a0f30048678baea210620 (patch) | |
tree | a0ec81bdd213a8ccfb9cb372152585f3f917db8c | |
parent | 1236ac6b0bc5ef49e4065ddfc310d15651633093 (diff) |
[openload] Fix extraction (closes #16099)
-rw-r--r-- | youtube_dl/extractor/openload.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py index af7db6e12..3e0a7a9a2 100644 --- a/youtube_dl/extractor/openload.py +++ b/youtube_dl/extractor/openload.py @@ -334,10 +334,11 @@ class OpenloadIE(InfoExtractor): decoded_id = (get_element_by_id('streamurl', webpage) or get_element_by_id('streamuri', webpage) or - get_element_by_id('streamurj', webpage)) - - if not decoded_id: - raise ExtractorError('Can\'t find stream URL', video_id=video_id) + get_element_by_id('streamurj', webpage) or + self._search_regex( + (r'>\s*([\da-zA-Z]+~\d{10,}~\d+\.\d+\.0\.0~[\da-zA-Z]+)\s*<', + r'>\s*([\w~]+~\d+\.\d+\.\d+\.\d+~[\w~]+)'), webpage, + 'stream URL')) video_url = 'https://openload.co/stream/%s?mime=true' % decoded_id |