aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-08-28 01:58:07 +0700
committerSergey M․ <dstftw@gmail.com>2019-08-28 01:58:07 +0700
commitb500955a58efb019133b3214ea81635342728f1f (patch)
tree1238053d4ce460152cee5bb20024b1e667b0c9ca
parentacc86c9a978a916fed1d1ed9ecf201d2c1a3060c (diff)
downloadyoutube-dl-b500955a58efb019133b3214ea81635342728f1f.tar.xz
[openload] Add support for oload.vip (closes #22205)
-rw-r--r--youtube_dl/extractor/openload.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py
index 030355257..ab4980d4d 100644
--- a/youtube_dl/extractor/openload.py
+++ b/youtube_dl/extractor/openload.py
@@ -243,7 +243,12 @@ class PhantomJSwrapper(object):
class OpenloadIE(InfoExtractor):
- _DOMAINS = r'(?:openload\.(?:co|io|link|pw)|oload\.(?:tv|best|biz|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|press|pw|life|live|space|services|website)|oladblock\.(?:services|xyz|me)|openloed\.co)'
+ _DOMAINS = r'''(?x)
+ (?:
+ openload\.(?:co|io|link|pw)|
+ oload\.(?:tv|best|biz|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|press|pw|life|live|space|services|website|vip)|
+ oladblock\.(?:services|xyz|me)|openloed\.co)
+ '''
_VALID_URL = r'''(?x)
https?://
(?P<host>
@@ -383,6 +388,9 @@ class OpenloadIE(InfoExtractor):
}, {
'url': 'https://openloed.co/f/b8NWEgkqNLI/',
'only_matching': True,
+ }, {
+ 'url': 'https://oload.vip/f/kUEfGclsU9o',
+ 'only_matching': True,
}]
@classmethod