1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-24 19:22:06 +00:00
This commit is contained in:
dirkf 2024-11-18 02:48:29 +00:00 committed by GitHub
parent ff968566a5
commit 0b817e51c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,15 +32,14 @@ class VOEIE(InfoExtractor):
'https://voe.sx/e/%s' % video_id, video_id) 'https://voe.sx/e/%s' % video_id, video_id)
player_url = self._search_regex( player_url = self._search_regex(
r'''("|')(?P<url>https://(?!voe\.sx/)[^/]+%s)\1\s*;''' % (path,), r'''("|')(?P<url>https://(?!voe\.sx/)[^/]+%s)\1\s*;''' % (video_path,),
webpage, 'redirect', group='url', default=None) webpage, 'redirect', group='url', default=None)
if player_url: if player_url:
webpage = self._download_webpage( webpage = self._download_webpage(
player_url, video_id, note='Redirecting to player page') player_url, video_id, note='Redirecting to player page')
sources = self._search_json( sources = self._search_json(
r'\bsources\s*=', webpage, 'sources', video_id, transform_source=js_to_json) r'\bsources\s*=', webpage, 'sources', video_id, transform_source=js_to_json)
title = self._search_regex( title = self._search_regex(
r'<title>(?:Watch\s+)?(?P<title>.+?)(?:-\s+VOE\s+\|.+)?</title>', r'<title>(?:Watch\s+)?(?P<title>.+?)(?:-\s+VOE\s+\|.+)?</title>',