mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-23 17:04:33 +01:00
playerglobewien - fix flake error with whitespaces
This commit is contained in:
parent
09531ab29e
commit
d4a419700c
@ -38,7 +38,7 @@ class PlayerGlobeWienIE(InfoExtractor):
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
formats = []
|
||||
title = self._html_search_regex(r'<title>(.+?)</title>', webpage, 'title')
|
||||
title = re.sub(r'^Globe Wien VOD -\s*','',title)
|
||||
title = re.sub(r'^Globe Wien VOD -\s*', '', title)
|
||||
|
||||
stream_url = self._download_webpage("https://player.globe.wien/api/playout?vodId=" + video_id, video_id)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user