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.
- Download and Install via zip the following addon... https://forum.kodi.tv/showthread.php?tid=257334
- Restart Kodi
- Navigate to the first episode to add to the list
- Call up the Context Menu and select Add to Basic Playlist
- The first time you do this you will need to create the playlist by typing in the name. eg Christmas Episodes
- 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
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>
|