mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-19 21:37:28 +01:00
[ie/ARD] Use traverse_obj
Co-authored-by: Simon Sawicki <accounts@grub4k.xyz>
This commit is contained in:
parent
a434c7b7e2
commit
ddc7e9a1bb
@ -678,11 +678,13 @@ def _real_extract(self, url):
|
||||
'description': ('description', {str}),
|
||||
}))
|
||||
|
||||
item = self.graphql_query(display_id, self._QUERY_ITEM % video_id)['item']
|
||||
audio_list = item.get('audioList', [])
|
||||
return {
|
||||
'display_id': display_id,
|
||||
'formats': [{'url': x['href'], 'format_id': x['distributionType']} for x in audio_list],
|
||||
'formats': traverse_obj(self.graphql_query(display_id, self._QUERY_ITEM % video_id), (
|
||||
'item', 'audioList', lambda _, v: url_or_none(v['href']), {
|
||||
'url': 'href',
|
||||
'format_id': ('distributionType', {str}),
|
||||
})),
|
||||
'id': video_id,
|
||||
**traverse_obj(item, {
|
||||
'description': ('synopsis', {str}),
|
||||
|
Loading…
Reference in New Issue
Block a user