[ie/abematv] Fix availability extraction (#10569)

Authored by: middlingphys
This commit is contained in:
middlingphys 2024-07-29 14:54:59 +09:00 committed by GitHub
parent 6daf2c27c0
commit ef36d517f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -377,8 +377,7 @@ class AbemaTVIE(AbemaTVBaseIE):
f'https://api.abema.io/v1/video/programs/{video_id}', video_id,
note='Checking playability',
headers=headers)
ondemand_types = traverse_obj(api_response, ('terms', ..., 'onDemandType'))
if 3 not in ondemand_types:
if not traverse_obj(api_response, ('label', 'free', {bool})):
# cannot acquire decryption key for these streams
self.report_warning('This is a premium-only stream')
availability = 'premium_only'