Browse Source

[WDR] fixed parsing of playlists

totalwebcasting
Boris Wachtmeister 9 years ago
parent
commit
3a686853e1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/wdr.py

+ 2
- 2
youtube_dl/extractor/wdr.py View File

@ -72,7 +72,7 @@ class WDRIE(InfoExtractor):
},
{
'url': 'http://www1.wdr.de/mediathek/video/sendungen/aktuelle-stunde/aktuelle-stunde-120.html',
'playlist_mincount': 10,
'playlist_mincount': 8,
'info_dict': {
'id': 'aktuelle-stunde/aktuelle-stunde-120',
},
@ -121,7 +121,7 @@ class WDRIE(InfoExtractor):
entries = [
self.url_result(page_url + href[0], 'WDR')
for href in re.findall(
r'<a href="(%s)"' % self._PAGE_REGEX,
r'<a href="(%s)"[^>]+data-extension=' % self._PAGE_REGEX,
webpage)
]


Loading…
Cancel
Save