youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 2334762b03dec5da4d6788539e3e11192eb97010
parent 3fc088f8c7f61026943a62fc28e051a7d3a6bdd5
Author: remitamine <remitamine@gmail.com>
Date:   Sun, 10 Jan 2016 07:55:58 +0100

[shahid] raise ExtractorError if the video is DRM protected

Diffstat:
Myoutube_dl/extractor/shahid.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/shahid.py b/youtube_dl/extractor/shahid.py @@ -73,6 +73,9 @@ class ShahidIE(InfoExtractor): 'https://shahid.mbc.net/arContent/getPlayerContent-param-.id-%s.type-%s.html' % (video_id, api_vars['type']), video_id, 'Downloading player JSON') + if player.get('drm'): + raise ExtractorError('This video is DRM protected.', expected=True) + formats = self._extract_m3u8_formats(player['url'], video_id, 'mp4') video = self._download_json(