diff options
| author | Remita Amine <remitamine@gmail.com> | 2018-05-23 12:15:21 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2018-05-23 12:15:21 +0100 | 
| commit | 268e132dec96ea9e8a9a3cafb788baf39a498c7d (patch) | |
| tree | a8ad5e2b33bc6854208ec4ab1737687a9d6a3926 | |
| parent | 670dcba8c73ee69545513522676b2c480bc48662 (diff) | |
[go90] extract age limit and detect drm protection(#10127)
| -rw-r--r-- | youtube_dl/extractor/go90.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/go90.py b/youtube_dl/extractor/go90.py index 9b2e1c164..35dde42d0 100644 --- a/youtube_dl/extractor/go90.py +++ b/youtube_dl/extractor/go90.py @@ -6,7 +6,9 @@ import re  from .common import InfoExtractor  from ..utils import (      determine_ext, +    ExtractorError,      int_or_none, +    parse_age_limit,      parse_iso8601,  ) @@ -23,6 +25,7 @@ class Go90IE(InfoExtractor):              'description': 'VICE\'s Karley Sciortino meets with activists who discuss the state\'s strong anti-porn stance. Then, VICE Sports explains NFL contracts.',              'timestamp': 1491868800,              'upload_date': '20170411', +            'age_limit': 14,          }      } @@ -33,6 +36,8 @@ class Go90IE(InfoExtractor):              video_id, headers={                  'Content-Type': 'application/json; charset=utf-8',              }, data=b'{"client":"web","device_type":"pc"}') +        if video_data.get('requires_drm'): +            raise ExtractorError('This video is DRM protected.', expected=True)          main_video_asset = video_data['main_video_asset']          episode_number = int_or_none(video_data.get('episode_number')) @@ -123,4 +128,5 @@ class Go90IE(InfoExtractor):              'season_number': season_number,              'episode_number': episode_number,              'subtitles': subtitles, +            'age_limit': parse_age_limit(video_data.get('rating')),          } | 
