Call extracted property age_limit everywhere

pull/1571/head
Philipp Hagemeister 11 years ago
parent 8dbe9899a9
commit cfadd183c4

@ -313,7 +313,7 @@ class YoutubeDL(object):
return u'[download] %s upload date is not in range %s' % (date_from_str(date).isoformat(), dateRange) return u'[download] %s upload date is not in range %s' % (date_from_str(date).isoformat(), dateRange)
age_limit = self.params.get('age_limit') age_limit = self.params.get('age_limit')
if age_limit is not None: if age_limit is not None:
if age_limit < info_dict.get('age_restriction', 0): if age_limit < info_dict.get('age_limit', 0):
return u'Skipping "' + title + '" because it is age restricted' return u'Skipping "' + title + '" because it is age restricted'
return None return None

@ -47,6 +47,6 @@ class PornotubeIE(InfoExtractor):
'title': video_title, 'title': video_title,
'ext': 'flv', 'ext': 'flv',
'format': 'flv', 'format': 'flv',
'age_restriction': age_limit} 'age_limit': age_limit}
return [info] return [info]

@ -117,7 +117,7 @@ class YouPornIE(InfoExtractor):
'format': format, 'format': format,
'thumbnail': thumbnail, 'thumbnail': thumbnail,
'description': video_description, 'description': video_description,
'age_restriction': age_limit, 'age_limit': age_limit,
}) })
if self._downloader.params.get('listformats', None): if self._downloader.params.get('listformats', None):

@ -1496,7 +1496,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
'player_url': player_url, 'player_url': player_url,
'subtitles': video_subtitles, 'subtitles': video_subtitles,
'duration': video_duration, 'duration': video_duration,
'age_restriction': 18 if age_gate else 0, 'age_limit': 18 if age_gate else 0,
}) })
return results return results

Loading…
Cancel
Save