mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-04 17:34:32 +01:00
[vpro] Fix playlist title extraction and update tests
This commit is contained in:
parent
a3d8b38168
commit
ddb19772d5
@ -459,7 +459,7 @@ class NPOPlaylistBaseIE(NPOIE):
|
|||||||
class VPROIE(NPOPlaylistBaseIE):
|
class VPROIE(NPOPlaylistBaseIE):
|
||||||
IE_NAME = 'vpro'
|
IE_NAME = 'vpro'
|
||||||
_VALID_URL = r'https?://(?:www\.)?(?:tegenlicht\.)?vpro\.nl/(?:[^/]+/){2,}(?P<id>[^/]+)\.html'
|
_VALID_URL = r'https?://(?:www\.)?(?:tegenlicht\.)?vpro\.nl/(?:[^/]+/){2,}(?P<id>[^/]+)\.html'
|
||||||
_PLAYLIST_TITLE_RE = r'<title>\s*([^>]+?)\s*-\s*Teledoc\s*-\s*VPRO\s*</title>'
|
_PLAYLIST_TITLE_RE = r'<h1[^>]+class=["\'].*?\bmedia-platform-title\b.*?["\'][^>]*>([^<]+)'
|
||||||
_PLAYLIST_ENTRY_RE = r'data-media-id="([^"]+)"'
|
_PLAYLIST_ENTRY_RE = r'data-media-id="([^"]+)"'
|
||||||
|
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
@ -473,12 +473,13 @@ class VPROIE(NPOPlaylistBaseIE):
|
|||||||
'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
|
'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
|
||||||
'upload_date': '20130225',
|
'upload_date': '20130225',
|
||||||
},
|
},
|
||||||
|
'skip': 'Video gone',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'url': 'http://www.vpro.nl/programmas/2doc/2015/sergio-herman.html',
|
'url': 'http://www.vpro.nl/programmas/2doc/2015/sergio-herman.html',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'sergio-herman',
|
'id': 'sergio-herman',
|
||||||
'title': 'Sergio Herman: Fucking perfect',
|
'title': 'sergio herman: fucking perfect',
|
||||||
},
|
},
|
||||||
'playlist_count': 2,
|
'playlist_count': 2,
|
||||||
},
|
},
|
||||||
@ -487,7 +488,7 @@ class VPROIE(NPOPlaylistBaseIE):
|
|||||||
'url': 'http://www.vpro.nl/programmas/2doc/2015/education-education.html',
|
'url': 'http://www.vpro.nl/programmas/2doc/2015/education-education.html',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'education-education',
|
'id': 'education-education',
|
||||||
'title': '2Doc',
|
'title': 'education education',
|
||||||
},
|
},
|
||||||
'playlist_count': 2,
|
'playlist_count': 2,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user