diff --git a/youtube_dl/extractor/boundhub.py b/youtube_dl/extractor/boundhub.py index b675d1051..3fa791e47 100644 --- a/youtube_dl/extractor/boundhub.py +++ b/youtube_dl/extractor/boundhub.py @@ -38,14 +38,6 @@ class BoundHubIE(InfoExtractor): # Get uploader url uploader_url = self._search_regex(r'\s*([\s\S]+?)', webpage, 'html_screenshots', fatal=False)): - img = dict() - img['url'] = match.rstrip('/') - img['id'] = int_or_none(os.path.splitext(os.path.basename(img['url']))[0]) - thumbnails.append(img) - return { 'id': self._match_id(url), 'title': self._search_regex(r'\s*

(.*)

', webpage, 'title', default=None) or self._og_search_title(webpage), @@ -55,7 +47,6 @@ class BoundHubIE(InfoExtractor): 'duration': (int(minutes) * 60) + int(seconds), 'ext': self._html_search_regex(r'postfix:\s*[\"\']\.([^\"\']*)[\"\']', webpage, 'ext', fatal=False), 'thumbnail': self._html_search_regex(r'preview_url:\s*[\"\']([^\"\']*)[\"\']', webpage, 'thumbnail', fatal=False), - 'thumbnails': thumbnails, 'uploader': self._search_regex(r'\s*\s*(.*)\s*
', webpage, 'uploader', fatal=False), 'uploader_id': int_or_none(self._html_search_regex(r'https?://(?:www\.)?boundhub\.com/members/(\d+)', uploader_url, 'uploader_id', fatal=False)), 'uploader_url': uploader_url,