diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-04-06 00:15:22 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-04-06 00:15:22 +0700 |
commit | fdfb32a0dd80de4be67b0fcf93764bfa2a4ce7a5 (patch) | |
tree | b63b3894dbafde88c9726a5ca8ac23b6c84097e0 | |
parent | 235d828b7b113f22309a0f30048678baea210620 (diff) |
[openload] Relax stream URL regex
-rw-r--r-- | youtube_dl/extractor/openload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py index 3e0a7a9a2..9f5bebe40 100644 --- a/youtube_dl/extractor/openload.py +++ b/youtube_dl/extractor/openload.py @@ -336,8 +336,8 @@ class OpenloadIE(InfoExtractor): get_element_by_id('streamuri', webpage) or 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, + (r'>\s*([\w-]+~\d{10,}~\d+\.\d+\.0\.0~[\w-]+)\s*<', + r'>\s*([\w~-]+~\d+\.\d+\.\d+\.\d+~[\w~-]+)'), webpage, 'stream URL')) video_url = 'https://openload.co/stream/%s?mime=true' % decoded_id |