diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-01-15 15:12:04 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-01-15 15:12:04 +0700 |
commit | 7e92f9015efe97352e824bb593bd810721f4a604 (patch) | |
tree | 9340f04d5efc8a21c0681f3d8e424de085874731 | |
parent | aa860b80161152e7205232529e00f3fe636d000e (diff) |
[youporn] Restrict fallback download URL (refs #27822)
-rw-r--r-- | youtube_dl/extractor/youporn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youporn.py b/youtube_dl/extractor/youporn.py index 4ca75454e..534270bac 100644 --- a/youtube_dl/extractor/youporn.py +++ b/youtube_dl/extractor/youporn.py @@ -103,7 +103,7 @@ class YouPornIE(InfoExtractor): links.append(video_url) # Fallback #1, this also contains extra low quality 180p format - for _, link in re.findall(r'<a[^>]+href=(["\'])(http.+?)\1[^>]+title=["\']Download [Vv]ideo', webpage): + for _, link in re.findall(r'<a[^>]+href=(["\'])(http(?:(?!\1).)+\.mp4(?:(?!\1).)*)\1[^>]+title=["\']Download [Vv]ideo', webpage): links.append(link) # Fallback #2 (unavailable as at 22.06.2017) |