mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[Newgrounds] Add age_limit and fix duration (#1156)
Authored by: u-spec-png
This commit is contained in:
parent
ebf2fb4d61
commit
3001a84dca
1 changed files with 16 additions and 1 deletions
|
@ -42,6 +42,7 @@ class NewgroundsIE(InfoExtractor):
|
||||||
'timestamp': 955064100,
|
'timestamp': 955064100,
|
||||||
'upload_date': '20000406',
|
'upload_date': '20000406',
|
||||||
'description': 'Scrotum plays "catch."',
|
'description': 'Scrotum plays "catch."',
|
||||||
|
'age_limit': 17,
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
# source format unavailable, additional mp4 formats
|
# source format unavailable, additional mp4 formats
|
||||||
|
@ -54,6 +55,7 @@ class NewgroundsIE(InfoExtractor):
|
||||||
'timestamp': 1487965140,
|
'timestamp': 1487965140,
|
||||||
'upload_date': '20170224',
|
'upload_date': '20170224',
|
||||||
'description': 'ZTV News Episode 8 (February 2017)',
|
'description': 'ZTV News Episode 8 (February 2017)',
|
||||||
|
'age_limit': 17,
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
|
@ -69,6 +71,7 @@ class NewgroundsIE(InfoExtractor):
|
||||||
'timestamp': 1140663240,
|
'timestamp': 1140663240,
|
||||||
'upload_date': '20060223',
|
'upload_date': '20060223',
|
||||||
'description': 'Metal Gear is awesome is so is this movie.',
|
'description': 'Metal Gear is awesome is so is this movie.',
|
||||||
|
'age_limit': 13,
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.newgrounds.com/portal/view/297383/format/flash',
|
'url': 'https://www.newgrounds.com/portal/view/297383/format/flash',
|
||||||
|
@ -81,8 +84,15 @@ class NewgroundsIE(InfoExtractor):
|
||||||
'uploader': 'Egoraptor',
|
'uploader': 'Egoraptor',
|
||||||
'upload_date': '20060223',
|
'upload_date': '20060223',
|
||||||
'timestamp': 1140663240,
|
'timestamp': 1140663240,
|
||||||
|
'age_limit': 13,
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
_AGE_LIMIT = {
|
||||||
|
'e': 0,
|
||||||
|
't': 13,
|
||||||
|
'm': 17,
|
||||||
|
'a': 18,
|
||||||
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
media_id = self._match_id(url)
|
media_id = self._match_id(url)
|
||||||
|
@ -127,12 +137,16 @@ def _real_extract(self, url):
|
||||||
r'(?:Author|Writer)\s*<a[^>]+>([^<]+)'), webpage, 'uploader',
|
r'(?:Author|Writer)\s*<a[^>]+>([^<]+)'), webpage, 'uploader',
|
||||||
fatal=False)
|
fatal=False)
|
||||||
|
|
||||||
|
age_limit = self._html_search_regex(
|
||||||
|
r'<h2\s*class=["\']rated-([^"\'])["\'][^>]+>', webpage, 'age_limit', default='e')
|
||||||
|
age_limit = self._AGE_LIMIT.get(age_limit)
|
||||||
|
|
||||||
timestamp = unified_timestamp(self._html_search_regex(
|
timestamp = unified_timestamp(self._html_search_regex(
|
||||||
(r'<dt>\s*Uploaded\s*</dt>\s*<dd>([^<]+</dd>\s*<dd>[^<]+)',
|
(r'<dt>\s*Uploaded\s*</dt>\s*<dd>([^<]+</dd>\s*<dd>[^<]+)',
|
||||||
r'<dt>\s*Uploaded\s*</dt>\s*<dd>([^<]+)'), webpage, 'timestamp',
|
r'<dt>\s*Uploaded\s*</dt>\s*<dd>([^<]+)'), webpage, 'timestamp',
|
||||||
default=None))
|
default=None))
|
||||||
duration = parse_duration(self._html_search_regex(
|
duration = parse_duration(self._html_search_regex(
|
||||||
r'"duration"\s*:\s*["\']?([\d]+)["\']?,', webpage,
|
r'"duration"\s*:\s*["\']?(\d+)["\']?', webpage,
|
||||||
'duration', default=None))
|
'duration', default=None))
|
||||||
|
|
||||||
view_count = parse_count(self._html_search_regex(
|
view_count = parse_count(self._html_search_regex(
|
||||||
|
@ -164,6 +178,7 @@ def _real_extract(self, url):
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnail': self._og_search_thumbnail(webpage),
|
'thumbnail': self._og_search_thumbnail(webpage),
|
||||||
'description': self._og_search_description(webpage),
|
'description': self._og_search_description(webpage),
|
||||||
|
'age_limit': age_limit,
|
||||||
'view_count': view_count,
|
'view_count': view_count,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue