Skip to content

Commit

Permalink
[openload] Add support for oload.vip (closes #22205)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw authored and pareronia committed Jun 22, 2020
1 parent 31bab10 commit 18855ba
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion youtube_dl/extractor/openload.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,12 @@ def get(self, url, html=None, video_id=None, note=None, note2='Executing JS on w


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>
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 18855ba

Please sign in to comment.