mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-16 18:42:38 +09:00
[pbs] Fix multi part videos extraction
This commit is contained in:
parent
a7ab46375b
commit
6b3fbd3425
@ -366,8 +366,12 @@ class PBSIE(InfoExtractor):
|
|||||||
webpage, 'upload date', default=None))
|
webpage, 'upload date', default=None))
|
||||||
|
|
||||||
# tabbed frontline videos
|
# tabbed frontline videos
|
||||||
tabbed_videos = re.findall(
|
MULTI_PART_REGEXES = (
|
||||||
r'<div[^>]+class="videotab[^"]*"[^>]+vid="(\d+)"', webpage)
|
r'<div[^>]+class="videotab[^"]*"[^>]+vid="(\d+)"',
|
||||||
|
r'<a[^>]+href=["\']#video-\d+["\'][^>]+data-coveid=["\'](\d+)',
|
||||||
|
)
|
||||||
|
for p in MULTI_PART_REGEXES:
|
||||||
|
tabbed_videos = re.findall(p, webpage)
|
||||||
if tabbed_videos:
|
if tabbed_videos:
|
||||||
return tabbed_videos, presumptive_id, upload_date
|
return tabbed_videos, presumptive_id, upload_date
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user