Kodi Community Forum
Tagging/grouping TV Show episodes - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228)
+---- Thread: Tagging/grouping TV Show episodes (/showthread.php?tid=357621)



Tagging/grouping TV Show episodes - LeeJS - 2020-10-10

Hi,

My Mrs is a big fan of Xmas (who isn't) and when the day rolls around we like to fill the TV with Xmas expisodes of our favourite shows. Is there a way to tag or group together all episodes across various shows by tagging or collecting them?

Ta.


RE: Tagging/grouping TV Show episodes - Karellen - 2020-10-10

There is nothing that really sets apart a Christmas episode from a standard episode. Some may have the word "Christmas" in the title, others won't.

The only way I can think to accomplish this is by creating a Basic Playlist.
  1. Download and Install via zip the following addon... https://forum.kodi.tv/showthread.php?tid=257334
  2. Restart Kodi
  3. Navigate to the first episode to add to the list
  4. Call up the Context Menu and select Add to Basic Playlist
  5. The first time you do this you will need to create the playlist by typing in the name. eg Christmas Episodes
  6. Once done, you can quickly add the remaining episodes to the playlist via the context menu.



RE: Tagging/grouping TV Show episodes - zerocool_ie - 2020-10-13

I use the smart playlist function to look for words in the title and plot.
It's not perfect by any means, but gives the Mrs a good selection of Christmas eps to watch Smile

xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
    <name>All Christmas</name>
    <match>one</match>
    <rule field="title" operator="contains">
        <value>christmas</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>christmas</value>
    </rule>
    <rule field="title" operator="contains">
        <value> santa.</value>
    </rule>
    <rule field="plot" operator="contains">
        <value> santa.</value>
    </rule>
    <rule field="title" operator="contains">
        <value> santa,</value>
    </rule>
    <rule field="plot" operator="contains">
        <value> santa,</value>
    </rule>
    <rule field="title" operator="contains">
        <value>secret santa</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>secret santa</value>
    </rule>
    <rule field="title" operator="contains">
        <value>santa claus</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>santa claus</value>
    </rule>
    <rule field="title" operator="contains">
        <value>st. nick</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>st. nick</value>
    </rule>
    <rule field="title" operator="contains">
        <value>yule</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>yule</value>
    </rule>
    <rule field="title" operator="contains">
        <value>xmas</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>xmas</value>
    </rule>
    <rule field="title" operator="contains">
        <value> elf</value>
    </rule>
    <rule field="plot" operator="contains">
        <value> elf</value>
    </rule>
    <rule field="title" operator="contains">
        <value> elves</value>
    </rule>
    <rule field="plot" operator="contains">
        <value> elves</value>
    </rule>
    <rule field="title" operator="contains">
        <value>scrooge</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>scrooge</value>
    </rule>
    <rule field="title" operator="contains">
        <value>mistletoe</value>
    </rule>
    <rule field="plot" operator="contains">
        <value>mistletoe</value>
    </rule>
    <order direction="ascending">tvshow</order>
</smartplaylist>