mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[vpro] Improve playlist extraction
This commit is contained in:
parent
536b0700b0
commit
574f42d79a
@ -428,6 +428,15 @@ class VPROIE(NPOIE):
|
|||||||
'title': 'Sergio Herman: Fucking perfect',
|
'title': 'Sergio Herman: Fucking perfect',
|
||||||
},
|
},
|
||||||
'playlist_count': 2,
|
'playlist_count': 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
# playlist with youtube embed
|
||||||
|
'url': 'http://www.vpro.nl/programmas/2doc/2015/education-education.html',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'education-education',
|
||||||
|
'title': '2Doc',
|
||||||
|
},
|
||||||
|
'playlist_count': 2,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -437,7 +446,7 @@ def _real_extract(self, url):
|
|||||||
webpage = self._download_webpage(url, playlist_id)
|
webpage = self._download_webpage(url, playlist_id)
|
||||||
|
|
||||||
entries = [
|
entries = [
|
||||||
self.url_result('npo:%s' % video_id, 'NPO')
|
self.url_result('npo:%s' % video_id if not video_id.startswith('http') else video_id)
|
||||||
for video_id in re.findall(r'data-media-id="([^"]+)"', webpage)
|
for video_id in re.findall(r'data-media-id="([^"]+)"', webpage)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user