diff options
author | aystroganov@gmail.com <aystroganov@gmail.com> | 2016-03-06 21:57:41 +1100 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-03-06 17:53:22 +0600 |
commit | c58e74062f58219a3843b795648eaa2fc160b9b4 (patch) | |
tree | 1bb06e334c4cd1304ee02b006223be86ea4edbd1 | |
parent | af7d5a63b2f127dda0923a68dfe05e8572a733c9 (diff) |
[Sexu] fix extractor
-rw-r--r-- | youtube_dl/extractor/sexu.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/sexu.py b/youtube_dl/extractor/sexu.py index 6365a8779..474e9fdfa 100644 --- a/youtube_dl/extractor/sexu.py +++ b/youtube_dl/extractor/sexu.py @@ -14,7 +14,7 @@ class SexuIE(InfoExtractor): 'id': '961791', 'ext': 'mp4', 'title': 'md5:4d05a19a5fc049a63dbbaf05fb71d91b', - 'description': 'md5:c5ed8625eb386855d5a7967bd7b77a54', + 'description': 'md5:2b75327061310a3afb3fbd7d09e2e403', 'categories': list, # NSFW 'thumbnail': 're:https?://.*\.jpg$', 'age_limit': 18, @@ -26,7 +26,7 @@ class SexuIE(InfoExtractor): webpage = self._download_webpage(url, video_id) quality_arr = self._search_regex( - r'sources:\s*\[([^\]]+)\]', webpage, 'forrmat string') + r'"sources":\s*\[([^\]]+)\]', webpage, 'format string') formats = [{ 'url': fmt[0].replace('\\', ''), 'format_id': fmt[1], @@ -41,7 +41,7 @@ class SexuIE(InfoExtractor): 'description', webpage, 'description') thumbnail = self._html_search_regex( - r'image:\s*"([^"]+)"', + r'"image":\s*"([^"]+)"', webpage, 'thumbnail', fatal=False) categories_str = self._html_search_meta( |