2021-04-28, 19:33
The wiki entry for Episodes ( https://kodi.wiki/view/NFO_files/Episodes ) is missing the information that the nfo-Tag
Bonus error: The tag
Here is a complete minimal example for multi-part episodes:
(I've added the tag
Filenames:
That actually took quite some time to figure out…
is required for multi-part episodes. Maybe the nfo-tagxml:<episode></episode>
is also required. The description that this tag is "Ignored on Import. Episode is read from filename" is wrong.xml:<season></season>
Bonus error: The tag
is not required.xml:<uniqueid type="" default=""></uniqueid>
Here is a complete minimal example for multi-part episodes:
(I've added the tag
to make it xml conform, I don't know if Kodi even looks at these.)xml:<multiepisodenfo></multiepisodenfo>
Filenames:
- Chapter 1 - S01E01E02E03E04.mp4
- Chapter 1 - S01E01E02E03E04.nfo
xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<multiepisodenfo>
<episodedetails>
<title>Part 1</title>
<season>1</season>
<episode>1</episode>
</episodedetails>
<episodedetails>
<title>Part 2</title>
<season>1</season>
<episode>2</episode>
</episodedetails>
<episodedetails>
<title>Part 3</title>
<season>1</season>
<episode>3</episode>
</episodedetails>
<episodedetails>
<title>Part 4</title>
<season>1</season>
<episode>4</episode>
</episodedetails>
</multiepisodenfo>
That actually took quite some time to figure out…