1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-06-22 19:36:20 +00:00

Merge c4e689e453961145610cd6075cf54901ea78a6b0 into c052a16f72af7dd7671d4dd62826de71cd99dfb6

This commit is contained in:
guming0 2025-04-14 09:18:30 +00:00 committed by GitHub
commit d96ebfcb85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -74,10 +74,10 @@ class WeiboIE(InfoExtractor):
url, video_id, note='Revisiting webpage')
title = self._html_search_regex(
r'<title>(.+?)</title>', webpage, 'title')
r'<title>(.+?)</title>', 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)