From b722f62c1043eb178cda7e95765737a37dc97a02 Mon Sep 17 00:00:00 2001 From: John D Date: Fri, 1 Sep 2017 16:22:41 -0700 Subject: [PATCH] fixed coding conventions and enchanced regular expression for title to be more flexible --- youtube_dl/extractor/manyvids.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/youtube_dl/extractor/manyvids.py b/youtube_dl/extractor/manyvids.py index 164cc15ad..ea739ce3f 100644 --- a/youtube_dl/extractor/manyvids.py +++ b/youtube_dl/extractor/manyvids.py @@ -4,6 +4,7 @@ from __future__ import unicode_literals from .common import InfoExtractor from ..compat import compat_urllib_parse_unquote + class ManyVidsIE(InfoExtractor): _VALID_URL = r'https?://www.manyvids\.com/Video/(?P[0-9]+)' _TEST = { @@ -24,8 +25,7 @@ class ManyVidsIE(InfoExtractor): video_url = compat_urllib_parse_unquote(self._search_regex( r'data-video-filepath=\"(.+?)\"', webpage, 'video URL', default='')) - title = self._html_search_regex(r'

', - webpage, 'title') + title = self._html_search_regex(r']+class="m-a-0"[^>]*>([^<]+)', webpage, 'title') formats.append({ 'url': video_url }) @@ -33,5 +33,4 @@ class ManyVidsIE(InfoExtractor): 'id': video_id, 'title': title, 'formats': formats, - - } \ No newline at end of file + }