[sixplay] handle videos with empty assets(closes #20016)
This commit is contained in:
parent
06242d44fe
commit
c5b02efe20
|
@ -61,7 +61,8 @@ class SixPlayIE(InfoExtractor):
|
||||||
quality_key = qualities(['lq', 'sd', 'hq', 'hd'])
|
quality_key = qualities(['lq', 'sd', 'hq', 'hd'])
|
||||||
formats = []
|
formats = []
|
||||||
subtitles = {}
|
subtitles = {}
|
||||||
for asset in clip_data['assets']:
|
assets = clip_data.get('assets') or []
|
||||||
|
for asset in assets:
|
||||||
asset_url = asset.get('full_physical_path')
|
asset_url = asset.get('full_physical_path')
|
||||||
protocol = asset.get('protocol')
|
protocol = asset.get('protocol')
|
||||||
if not asset_url or protocol == 'primetime' or asset.get('type') == 'usp_hlsfp_h264' or asset_url in urls:
|
if not asset_url or protocol == 'primetime' or asset.get('type') == 'usp_hlsfp_h264' or asset_url in urls:
|
||||||
|
|
Loading…
Reference in New Issue