mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-02-04 09:40:08 +09:00
Merge c4e689e453
into e1b3fa242c
This commit is contained in:
commit
df39360bd8
@ -74,10 +74,10 @@ class WeiboIE(InfoExtractor):
|
|||||||
url, video_id, note='Revisiting webpage')
|
url, video_id, note='Revisiting webpage')
|
||||||
|
|
||||||
title = self._html_search_regex(
|
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(
|
video_formats = compat_parse_qs(self._search_regex(
|
||||||
r'video-sources=\\\"(.+?)\"', webpage, 'video_sources'))
|
r'video-sources=\\\"(.+?)\"', webpage, 'video_sources', flags=re.DOTALL))
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
supported_resolutions = (480, 720)
|
supported_resolutions = (480, 720)
|
||||||
|
Loading…
Reference in New Issue
Block a user