summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-09 11:15:50 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-09 11:15:50 +0100
commita6dae6c09c2c6be7a6d090ca0a7741674bf1fd98 (patch)
tree35630dcf08423dbd7759687e0e642635c147cb8a
parentf866e474f313d262b2c9696f84aee4432d75f7a9 (diff)
downloadyoutube-dl-a6dae6c09c2c6be7a6d090ca0a7741674bf1fd98.tar.gz
youtube-dl-a6dae6c09c2c6be7a6d090ca0a7741674bf1fd98.tar.xz
youtube-dl-a6dae6c09c2c6be7a6d090ca0a7741674bf1fd98.zip
[ndr] Improve video url regex (fixes #4140)
-rw-r--r--youtube_dl/extractor/ndr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ndr.py b/youtube_dl/extractor/ndr.py
index add4b3e5d..c31ff8160 100644
--- a/youtube_dl/extractor/ndr.py
+++ b/youtube_dl/extractor/ndr.py
@@ -67,7 +67,7 @@ class NDRIE(InfoExtractor):
 
         thumbnail = None
 
-        video_url = re.search(r'''3: \{src:'(?P<video>.+?)\.hi\.mp4', type:"video/mp4"},''', page)
+        video_url = re.search(r'''3: \{src:'(?P<video>.+?)\.(lo|hi|hq)\.mp4', type:"video/mp4"},''', page)
         if video_url:
             thumbnails = re.findall(r'''\d+: \{src: "([^"]+)"(?: \|\| '[^']+')?, quality: '([^']+)'}''', page)
             if thumbnails: