Browse Source
[extractor/common] Add support for movies in _json_ld
master
Sergey M․
6 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
7 additions and
0 deletions
-
youtube_dl/extractor/common.py
|
|
@ -1250,6 +1250,13 @@ class InfoExtractor(object): |
|
|
|
part_of_series = e.get('partOfSeries') or e.get('partOfTVSeries') |
|
|
|
if isinstance(part_of_series, dict) and part_of_series.get('@type') in ('TVSeries', 'Series', 'CreativeWorkSeries'): |
|
|
|
info['series'] = unescapeHTML(part_of_series.get('name')) |
|
|
|
elif item_type == 'Movie': |
|
|
|
info.update({ |
|
|
|
'title': unescapeHTML(e.get('name')), |
|
|
|
'description': unescapeHTML(e.get('description')), |
|
|
|
'duration': parse_duration(e.get('duration')), |
|
|
|
'timestamp': unified_timestamp(e.get('dateCreated')), |
|
|
|
}) |
|
|
|
elif item_type in ('Article', 'NewsArticle'): |
|
|
|
info.update({ |
|
|
|
'timestamp': parse_iso8601(e.get('datePublished')), |
|
|
|