mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
parent
cf60522652
commit
ed4cc4ea79
1 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ class PrankCastIE(InfoExtractor):
|
|||
'cast': ['Devonanustart', 'Phonelosers'],
|
||||
'description': '',
|
||||
'categories': ['prank'],
|
||||
'tags': ['prank call', 'prank'],
|
||||
'tags': ['prank call', 'prank', 'live show'],
|
||||
'upload_date': '20220825'
|
||||
}
|
||||
}, {
|
||||
|
@ -35,7 +35,7 @@ class PrankCastIE(InfoExtractor):
|
|||
'cast': ['phonelosers'],
|
||||
'description': '',
|
||||
'categories': ['prank'],
|
||||
'tags': ['prank call', 'prank'],
|
||||
'tags': ['prank call', 'prank', 'live show'],
|
||||
'upload_date': '20221006'
|
||||
}
|
||||
}]
|
||||
|
@ -62,5 +62,5 @@ def _real_extract(self, url):
|
|||
'cast': list(filter(None, [uploader] + traverse_obj(guests_json, (..., 'name')))),
|
||||
'description': json_info.get('broadcast_description'),
|
||||
'categories': [json_info.get('broadcast_category')],
|
||||
'tags': self._parse_json(json_info.get('broadcast_tags') or '{}', video_id)
|
||||
'tags': try_call(lambda: json_info['broadcast_tags'].split(','))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue