diff options
author | yonaikerlol <lawlietrs7@gmail.com> | 2019-02-14 11:28:16 -0400 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-02-14 22:28:16 +0700 |
commit | 7bee705d8f110f09d8e72b1c863ff197ccc1d4f1 (patch) | |
tree | 511dd2c1a99d39837f289d3f78d02654eabe02d6 | |
parent | 6f5c1807f43b9dfd17fdc6932ae7ecb6c77fb1a0 (diff) |
[openload] Add support for oload.live
-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 a2ae25272..c1dcbb7eb 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|pw)| - oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|pw) + oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|pw|live) ) )/ (?:f|embed)/ @@ -346,6 +346,9 @@ class OpenloadIE(InfoExtractor): }, { 'url': 'https://oload.pw/f/WyKgK8s94N0', 'only_matching': True, + }, { + 'url': 'https://oload.live/f/-Z58UZ-GR4M', + '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' |