mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 01:25:06 +00:00
[cspan] Fix clip/prog id extraction (#8317)
This commit is contained in:
parent
9165d6bab9
commit
f693213567
1 changed files with 10 additions and 5 deletions
|
@ -67,6 +67,11 @@ def _real_extract(self, url):
|
|||
matches = results[0]
|
||||
video_type, video_id = matches.groups()
|
||||
video_type = 'clip' if video_type == 'id' else 'program'
|
||||
else:
|
||||
m = re.search(r'data-(?P<type>clip|prog)id=["\'](?P<id>\d+)', webpage)
|
||||
if m:
|
||||
video_id = m.group('id')
|
||||
video_type = 'program' if m.group('type') == 'prog' else 'clip'
|
||||
else:
|
||||
senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
|
||||
if senate_isvp_url:
|
||||
|
|
Loading…
Reference in a new issue