diff options
author | Sergey M․ <dstftw@gmail.com> | 2019-01-24 02:30:12 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2019-01-24 02:30:12 +0700 |
commit | 9713d1d1e0a7eff5c1b9873a2f4f054111a568ab (patch) | |
tree | 1e61638f7137fe17b3d31a4d926c3e6283b8ebda /youtube_dl/extractor/openload.py | |
parent | a1e171233d86a064865353cc820969c10cb1f251 (diff) |
[openload] Add support for oload.club (closes #18969)
Diffstat (limited to 'youtube_dl/extractor/openload.py')
-rw-r--r-- | youtube_dl/extractor/openload.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py index cf51e4770..b713e78b8 100644 --- a/youtube_dl/extractor/openload.py +++ b/youtube_dl/extractor/openload.py @@ -249,7 +249,7 @@ class OpenloadIE(InfoExtractor): (?:www\.)? (?: openload\.(?:co|io|link)| - oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun) + oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun|club) ) )/ (?:f|embed)/ @@ -334,6 +334,9 @@ class OpenloadIE(InfoExtractor): }, { 'url': 'https://oload.fun/f/gb6G1H4sHXY', 'only_matching': True, + }, { + 'url': 'https://oload.club/f/Nr1L-aZ2dbQ', + 'only_matching': True, }] _USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36' |