mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
[ie/polskieradio:audition] Fix playlist extraction (#8459)
Closes #8419 Authored by: shubhexists
This commit is contained in:
parent
ef79d20dc9
commit
464327acdb
@ -262,14 +262,14 @@ def _call_lp3(self, path, query, video_id, note):
|
|||||||
query=query, headers={'x-api-key': '9bf6c5a2-a7d0-4980-9ed7-a3f7291f2a81'})
|
query=query, headers={'x-api-key': '9bf6c5a2-a7d0-4980-9ed7-a3f7291f2a81'})
|
||||||
|
|
||||||
def _entries(self, playlist_id, has_episodes, has_articles):
|
def _entries(self, playlist_id, has_episodes, has_articles):
|
||||||
for i in itertools.count(1) if has_episodes else []:
|
for i in itertools.count(0) if has_episodes else []:
|
||||||
page = self._call_lp3(
|
page = self._call_lp3(
|
||||||
'AudioArticle/GetListByCategoryId', {
|
'AudioArticle/GetListByCategoryId', {
|
||||||
'categoryId': playlist_id,
|
'categoryId': playlist_id,
|
||||||
'PageSize': 10,
|
'PageSize': 10,
|
||||||
'skip': i,
|
'skip': i,
|
||||||
'format': 400,
|
'format': 400,
|
||||||
}, playlist_id, f'Downloading episode list page {i}')
|
}, playlist_id, f'Downloading episode list page {i + 1}')
|
||||||
if not traverse_obj(page, 'data'):
|
if not traverse_obj(page, 'data'):
|
||||||
break
|
break
|
||||||
for episode in page['data']:
|
for episode in page['data']:
|
||||||
@ -281,14 +281,14 @@ def _entries(self, playlist_id, has_episodes, has_articles):
|
|||||||
'timestamp': parse_iso8601(episode.get('datePublic')),
|
'timestamp': parse_iso8601(episode.get('datePublic')),
|
||||||
}
|
}
|
||||||
|
|
||||||
for i in itertools.count(1) if has_articles else []:
|
for i in itertools.count(0) if has_articles else []:
|
||||||
page = self._call_lp3(
|
page = self._call_lp3(
|
||||||
'Article/GetListByCategoryId', {
|
'Article/GetListByCategoryId', {
|
||||||
'categoryId': playlist_id,
|
'categoryId': playlist_id,
|
||||||
'PageSize': 9,
|
'PageSize': 9,
|
||||||
'skip': i,
|
'skip': i,
|
||||||
'format': 400,
|
'format': 400,
|
||||||
}, playlist_id, f'Downloading article list page {i}')
|
}, playlist_id, f'Downloading article list page {i + 1}')
|
||||||
if not traverse_obj(page, 'data'):
|
if not traverse_obj(page, 'data'):
|
||||||
break
|
break
|
||||||
for article in page['data']:
|
for article in page['data']:
|
||||||
|
Loading…
Reference in New Issue
Block a user