[extractor/common] Introduce number fields for chapters and series

master
Sergey M․ 8 years ago
parent 7a0b07c719
commit 27bfd4e526

@ -204,21 +204,21 @@ class InfoExtractor(object):
chapter or section: chapter or section:
chapter: Name or title of the chapter the video belongs to. chapter: Name or title of the chapter the video belongs to.
chapter_id: Number or id of the chapter the video belongs to, as an integer chapter_number: Number of the chapter the video belongs to, as an integer.
or unicode string. chapter_id: Id of the chapter the video belongs to, as a unicode string.
The following fields should only be used when the video is an episode of some The following fields should only be used when the video is an episode of some
series or programme: series or programme:
series: Title of the series or programme the video episode belongs to. series: Title of the series or programme the video episode belongs to.
season: Title of the season the video episode belongs to. season: Title of the season the video episode belongs to.
season_id: Number or id of the season the video episode belongs to, as an season_number: Number of the season the video episode belongs to, as an integer.
integer or unicode string. season_id: Id of the season the video episode belongs to, as a unicode string.
episode: Title of the video episode. Unlike mandatory video title field, episode: Title of the video episode. Unlike mandatory video title field,
this field should denote the exact title of the video episode this field should denote the exact title of the video episode
without any kind of decoration. without any kind of decoration.
episode_id: Number or id of the video episode within a season, as an integer episode_number: Number of the video episode within a season, as an integer.
or unicode string. episode_id: Id of the video episode, as a unicode string.
Unless mentioned otherwise, the fields should be Unicode strings. Unless mentioned otherwise, the fields should be Unicode strings.

Loading…
Cancel
Save