mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 12:49:02 +01:00
parent
68f5867cf0
commit
1bd3639f69
@ -41,6 +41,7 @@ class TenPlayIE(InfoExtractor):
|
|||||||
'PG': 15,
|
'PG': 15,
|
||||||
'M': 15,
|
'M': 15,
|
||||||
'MA': 15,
|
'MA': 15,
|
||||||
|
'MA15+': 15,
|
||||||
'R': 18,
|
'R': 18,
|
||||||
'X': 18
|
'X': 18
|
||||||
}
|
}
|
||||||
@ -79,7 +80,7 @@ class TenPlayIE(InfoExtractor):
|
|||||||
'id': data.get('altId') or content_id,
|
'id': data.get('altId') or content_id,
|
||||||
'title': data.get('title'),
|
'title': data.get('title'),
|
||||||
'description': data.get('description'),
|
'description': data.get('description'),
|
||||||
'age_limit': self._AUS_AGES[data.get('classification')],
|
'age_limit': self._AUS_AGES.get(data.get('classification')),
|
||||||
'series': data.get('showName'),
|
'series': data.get('showName'),
|
||||||
'season': data.get('showContentSeason'),
|
'season': data.get('showContentSeason'),
|
||||||
'timestamp': data.get('published'),
|
'timestamp': data.get('published'),
|
||||||
|
Loading…
Reference in New Issue
Block a user