diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-10-31 09:02:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-31 09:02:50 +0100 |
commit | e2d5e9a361c31f4716fa02c095d9041407f00380 (patch) | |
tree | b7b3f5f2bb84714e855d5f07c1895e3ef2db6e26 | |
parent | 12ae240c3654f5119adee739f0aea90d3f47d690 (diff) | |
parent | 87ab4fb11a70c61e46cd7ee642f830b475b89c93 (diff) |
Merge pull request #30 from merval/merval/brightcove_drm
Added DRM logic to brightcove
-rw-r--r-- | youtube_dlc/extractor/brightcove.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/youtube_dlc/extractor/brightcove.py b/youtube_dlc/extractor/brightcove.py index 2aa9f4782..638673c31 100644 --- a/youtube_dlc/extractor/brightcove.py +++ b/youtube_dlc/extractor/brightcove.py @@ -471,12 +471,17 @@ class BrightcoveNewIE(AdobePassIE): title = json_data['name'].strip() formats = [] + sources_num = len(json_data.get('sources')) + key_systems_present = 0 for source in json_data.get('sources', []): container = source.get('container') ext = mimetype2ext(source.get('type')) src = source.get('src') - # https://support.brightcove.com/playback-api-video-fields-reference#key_systems_object - if ext == 'ism' or container == 'WVM' or source.get('key_systems'): + # https://apis.support.brightcove.com/playback/references/playback-api-video-fields-reference.html + if source.get('key_systems'): + key_systems_present += 1 + continue + elif ext == 'ism' or container == 'WVM': continue elif ext == 'm3u8' or container == 'M2TS': if not src: @@ -533,6 +538,10 @@ class BrightcoveNewIE(AdobePassIE): 'format_id': build_format_id('rtmp'), }) formats.append(f) + + if sources_num == key_systems_present: + raise ExtractorError('This video is DRM protected', expected=True) + if not formats: # for sonyliv.com DRM protected videos s3_source_url = json_data.get('custom_fields', {}).get('s3sourceurl') |