diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-01-15 14:54:23 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-01-15 14:54:23 +0700 |
commit | aa860b80161152e7205232529e00f3fe636d000e (patch) | |
tree | b667d05f667f2ea6077ea7ccf16a2134f8649b60 /youtube_dl | |
parent | b484097b01e4f864c7a4369fc6fd071f756802af (diff) |
[youporn] Improve height and tbr extraction (refs #23659, refs #20425)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/youporn.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youporn.py b/youtube_dl/extractor/youporn.py index a1f0cce2c..4ca75454e 100644 --- a/youtube_dl/extractor/youporn.py +++ b/youtube_dl/extractor/youporn.py @@ -60,6 +60,9 @@ class YouPornIE(InfoExtractor): }, { 'url': 'http://www.youporn.com/watch/505835', 'only_matching': True, + }, { + 'url': 'https://www.youporn.com/watch/13922959/femdom-principal/', + 'only_matching': True, }] @staticmethod @@ -128,8 +131,9 @@ class YouPornIE(InfoExtractor): # Video URL's path looks like this: # /201012/17/505835/720p_1500k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4 # /201012/17/505835/vl_240p_240k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4 + # /videos/201703/11/109285532/1080P_4000K_109285532.mp4 # We will benefit from it by extracting some metadata - mobj = re.search(r'(?P<height>\d{3,4})[pP]_(?P<bitrate>\d+)[kK]_\d+/', video_url) + mobj = re.search(r'(?P<height>\d{3,4})[pP]_(?P<bitrate>\d+)[kK]_\d+', video_url) if mobj: height = int(mobj.group('height')) bitrate = int(mobj.group('bitrate')) |