aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-06-26 00:01:06 +0700
committerSergey M․ <dstftw@gmail.com>2018-06-26 00:01:06 +0700
commitc3bcd206eb031de30179c88ac7acd806a477ceae (patch)
tree2e414defb36c9cb41491e3e15008549a3cfda13a
parent1f6cc5807ec69584664388b8edfaf6b3ae442cea (diff)
downloadyoutube-dl-c3bcd206eb031de30179c88ac7acd806a477ceae.tar.xz
[porncom] Fix extraction (closes #16808)
-rw-r--r--youtube_dl/extractor/porncom.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/porncom.py b/youtube_dl/extractor/porncom.py
index 60ade06da..5726cab3a 100644
--- a/youtube_dl/extractor/porncom.py
+++ b/youtube_dl/extractor/porncom.py
@@ -43,7 +43,8 @@ class PornComIE(InfoExtractor):
config = self._parse_json(
self._search_regex(
- r'=\s*({.+?})\s*,\s*[\da-zA-Z_]+\s*=',
+ (r'=\s*({.+?})\s*;\s*v1ar\b',
+ r'=\s*({.+?})\s*,\s*[\da-zA-Z_]+\s*='),
webpage, 'config', default='{}'),
display_id, transform_source=js_to_json, fatal=False)
@@ -69,7 +70,7 @@ class PornComIE(InfoExtractor):
'height': int(height),
'filesize_approx': parse_filesize(filesize),
} for format_url, height, filesize in re.findall(
- r'<a[^>]+href="(/download/[^"]+)">MPEG4 (\d+)p<span[^>]*>(\d+\s+[a-zA-Z]+)<',
+ r'<a[^>]+href="(/download/[^"]+)">[^<]*?(\d+)p<span[^>]*>(\d+\s*[a-zA-Z]+)<',
webpage)]
thumbnail = None
duration = None