From 31820d477b9c7e75c921a4062f8a88ab2eb541ba Mon Sep 17 00:00:00 2001 From: yonaikerlol Date: Sat, 22 Dec 2018 17:15:41 -0400 Subject: [PATCH] [Manyvids] Fix title search (#18604) --- youtube_dl/extractor/manyvids.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/manyvids.py b/youtube_dl/extractor/manyvids.py index b94b3c2ab..5bad50810 100644 --- a/youtube_dl/extractor/manyvids.py +++ b/youtube_dl/extractor/manyvids.py @@ -28,8 +28,8 @@ class ManyVidsIE(InfoExtractor): r'data-(?:video-filepath|meta-video)\s*=s*(["\'])(?P(?:(?!\1).)+)\1', webpage, 'video URL', group='url') - title = '%s (Preview)' % self._html_search_regex( - r']+class="m-a-0"[^>]*>([^<]+)', webpage, 'title') + title = '%s' % self._html_search_regex( + r']+class="item-title"[^>]*>([^<]+)', webpage, 'title') like_count = int_or_none(self._search_regex( r'data-likes=["\'](\d+)', webpage, 'like count', default=None))