Skip to content

Commit

Permalink
[RAI] Added checks for DRM protected content (PR ytdl-org#27657)
Browse files Browse the repository at this point in the history
reviewed by pukkandan (yt-dlp/yt-dlp#150)
  • Loading branch information
nixxo authored and dirkf committed Apr 5, 2022
1 parent 60f014a commit 75599af
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions youtube_dl/extractor/rai.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ class RaiPlayIE(RaiBaseIE):
# subtitles at 'subtitlesArray' key (see #27698)
'url': 'https://www.raiplay.it/video/2020/12/Report---04-01-2021-2e90f1de-8eee-4de4-ac0e-78d21db5b600.html',
'only_matching': True,
}, {
# DRM protected
'url': 'https://www.raiplay.it/video/2020/09/Lo-straordinario-mondo-di-Zoey-S1E1-Lo-straordinario-potere-di-Zoey-ed493918-1d32-44b7-8454-862e473d00ff.html',
'only_matching': True,
}]

def _real_extract(self, url):
Expand All @@ -166,6 +170,13 @@ def _real_extract(self, url):
media = self._download_json(
base + '.json', video_id, 'Downloading video JSON')

if try_get(
media,
(lambda x: x['rights_management']['rights']['drm'],
lambda x: x['program_info']['rights_management']['rights']['drm']),
dict):
raise ExtractorError('This video is DRM protected.', expected=True)

title = media['name']

video = media['video']
Expand Down

0 comments on commit 75599af

Please sign in to comment.