mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[WDR] fixed parsing of playlists
This commit is contained in:
parent
949fc42e00
commit
3a686853e1
@ -72,7 +72,7 @@ class WDRIE(InfoExtractor):
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
'url': 'http://www1.wdr.de/mediathek/video/sendungen/aktuelle-stunde/aktuelle-stunde-120.html',
|
'url': 'http://www1.wdr.de/mediathek/video/sendungen/aktuelle-stunde/aktuelle-stunde-120.html',
|
||||||
'playlist_mincount': 10,
|
'playlist_mincount': 8,
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'aktuelle-stunde/aktuelle-stunde-120',
|
'id': 'aktuelle-stunde/aktuelle-stunde-120',
|
||||||
},
|
},
|
||||||
@ -121,7 +121,7 @@ class WDRIE(InfoExtractor):
|
|||||||
entries = [
|
entries = [
|
||||||
self.url_result(page_url + href[0], 'WDR')
|
self.url_result(page_url + href[0], 'WDR')
|
||||||
for href in re.findall(
|
for href in re.findall(
|
||||||
r'<a href="(%s)"' % self._PAGE_REGEX,
|
r'<a href="(%s)"[^>]+data-extension=' % self._PAGE_REGEX,
|
||||||
webpage)
|
webpage)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user