about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-12-24 13:53:27 +0700
committerSergey M․ <dstftw@gmail.com>2017-12-24 13:53:27 +0700
commit273c23d960cbd2da18fadaef002473db41b5f56b (patch)
treec952166284f63bfa5dd1693bf669bf5592229c4a
parentb954e72c8731e65b9b0548a537cd0e3275b54e4d (diff)
downloadyoutube-dl-273c23d960cbd2da18fadaef002473db41b5f56b.tar.gz
youtube-dl-273c23d960cbd2da18fadaef002473db41b5f56b.tar.xz
youtube-dl-273c23d960cbd2da18fadaef002473db41b5f56b.zip
[openload] Add support for oload.stream (closes #15070)
-rw-r--r--youtube_dl/extractor/openload.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py
index a99af12a4..aed579f36 100644
--- a/youtube_dl/extractor/openload.py
+++ b/youtube_dl/extractor/openload.py
@@ -242,7 +242,7 @@ class PhantomJSwrapper(object):
 
 
 class OpenloadIE(InfoExtractor):
-    _VALID_URL = r'https?://(?:www\.)?(?:openload\.(?:co|io|link)|oload\.tv)/(?:f|embed)/(?P<id>[a-zA-Z0-9-_]+)'
+    _VALID_URL = r'https?://(?:www\.)?(?:openload\.(?:co|io|link)|oload\.(?:tv|stream))/(?:f|embed)/(?P<id>[a-zA-Z0-9-_]+)'
 
     _TESTS = [{
         'url': 'https://openload.co/f/kUEfGclsU9o',
@@ -289,6 +289,9 @@ class OpenloadIE(InfoExtractor):
     }, {
         'url': 'http://www.openload.link/f/KnG-kKZdcfY',
         'only_matching': True,
+    }, {
+        'url': 'https://oload.stream/f/KnG-kKZdcfY',
+        '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'