mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 09:10:09 +01:00
Merge branch 'master' of github.com:rg3/youtube-dl
This commit is contained in:
commit
ab180fc648
@ -68,11 +68,16 @@ def _real_extract(self, url):
|
|||||||
video_type, video_id = matches.groups()
|
video_type, video_id = matches.groups()
|
||||||
video_type = 'clip' if video_type == 'id' else 'program'
|
video_type = 'clip' if video_type == 'id' else 'program'
|
||||||
else:
|
else:
|
||||||
senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
|
m = re.search(r'data-(?P<type>clip|prog)id=["\'](?P<id>\d+)', webpage)
|
||||||
if senate_isvp_url:
|
if m:
|
||||||
title = self._og_search_title(webpage)
|
video_id = m.group('id')
|
||||||
surl = smuggle_url(senate_isvp_url, {'force_title': title})
|
video_type = 'program' if m.group('type') == 'prog' else 'clip'
|
||||||
return self.url_result(surl, 'SenateISVP', video_id, title)
|
else:
|
||||||
|
senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
|
||||||
|
if senate_isvp_url:
|
||||||
|
title = self._og_search_title(webpage)
|
||||||
|
surl = smuggle_url(senate_isvp_url, {'force_title': title})
|
||||||
|
return self.url_result(surl, 'SenateISVP', video_id, title)
|
||||||
if video_type is None or video_id is None:
|
if video_type is None or video_id is None:
|
||||||
raise ExtractorError('unable to find video id and type')
|
raise ExtractorError('unable to find video id and type')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user