From a1394b820d1f9004a9e48322bb1a3d99f0377704 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Mon, 25 Apr 2016 00:01:37 +0600 Subject: [PATCH] [openload] Fix title extraction (Closes #9298) --- youtube_dl/extractor/openload.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py index 4468f31fc..216a40745 100644 --- a/youtube_dl/extractor/openload.py +++ b/youtube_dl/extractor/openload.py @@ -99,9 +99,14 @@ class OpenloadIE(InfoExtractor): video_url = self._search_regex( r'return\s+"(https?://[^"]+)"', self.openload_decode(code), 'video URL') + title = self._og_search_title(webpage, default=None) or self._search_regex( + r']+class=["\']title["\'][^>]*>([^<]+)', webpage, + 'title', default=None) or self._html_search_meta( + 'description', webpage, 'title', fatal=True) + return { 'id': video_id, - 'title': self._og_search_title(webpage), + 'title': title, 'thumbnail': self._og_search_thumbnail(webpage), 'url': video_url, } -- 2.30.2