diff --git a/youtube_dl/extractor/weibo.py b/youtube_dl/extractor/weibo.py index 621df5b54..eeb0f0825 100644 --- a/youtube_dl/extractor/weibo.py +++ b/youtube_dl/extractor/weibo.py @@ -74,10 +74,10 @@ class WeiboIE(InfoExtractor): url, video_id, note='Revisiting webpage') title = self._html_search_regex( - r'(.+?)', webpage, 'title') + r'(.+?)', webpage, 'title', flags=re.DOTALL) video_formats = compat_parse_qs(self._search_regex( - r'video-sources=\\\"(.+?)\"', webpage, 'video_sources')) + r'video-sources=\\\"(.+?)\"', webpage, 'video_sources', flags=re.DOTALL)) formats = [] supported_resolutions = (480, 720)