aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/sexu.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-06 18:08:53 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-06 18:08:53 +0600
commite7bd17373d90073792e6ca0dd7c5a650f14bf2e3 (patch)
tree7acf2ebd57c0067bfc95d1344be3a966ec5625f3 /youtube_dl/extractor/sexu.py
parentc58e74062f58219a3843b795648eaa2fc160b9b4 (diff)
downloadyoutube-dl-e7bd17373d90073792e6ca0dd7c5a650f14bf2e3.tar.xz
[sexu] Improve extraction (Closes #8782)
Diffstat (limited to 'youtube_dl/extractor/sexu.py')
-rw-r--r--youtube_dl/extractor/sexu.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/youtube_dl/extractor/sexu.py b/youtube_dl/extractor/sexu.py
index 474e9fdfa..a99b2a8e7 100644
--- a/youtube_dl/extractor/sexu.py
+++ b/youtube_dl/extractor/sexu.py
@@ -1,7 +1,5 @@
from __future__ import unicode_literals
-import re
-
from .common import InfoExtractor
@@ -25,13 +23,18 @@ class SexuIE(InfoExtractor):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
- quality_arr = self._search_regex(
- r'"sources":\s*\[([^\]]+)\]', webpage, 'format string')
+ jwvideo = self._parse_json(
+ self._search_regex(r'\.setup\(\s*({.+?})\s*\);', webpage, 'jwvideo'),
+ video_id)
+
+ sources = jwvideo['sources']
+
formats = [{
- 'url': fmt[0].replace('\\', ''),
- 'format_id': fmt[1],
- 'height': int(fmt[1][:3]),
- } for fmt in re.findall(r'"file":"([^"]+)","label":"([^"]+)"', quality_arr)]
+ 'url': source['file'].replace('\\', ''),
+ 'format_id': source.get('label'),
+ 'height': self._search_regex(
+ r'^(\d+)[pP]', source.get('label', ''), 'height', default=None),
+ } for source in sources if source.get('file')]
self._sort_formats(formats)
title = self._html_search_regex(
@@ -40,9 +43,7 @@ class SexuIE(InfoExtractor):
description = self._html_search_meta(
'description', webpage, 'description')
- thumbnail = self._html_search_regex(
- r'"image":\s*"([^"]+)"',
- webpage, 'thumbnail', fatal=False)
+ thumbnail = jwvideo.get('image')
categories_str = self._html_search_meta(
'keywords', webpage, 'categories')