2015-02-24, 11:34
Hi,
I want to define a Smart Playlist that shows the next unwatched episode (just one per TV Show) of all the TV Shows on my library.
With the following XML I am able to show *all* the unwatched episodes of *all* my TV Shows (orderd by episode number), but I just want the next one to the last one seen per TV Show.
Thanks!
I want to define a Smart Playlist that shows the next unwatched episode (just one per TV Show) of all the TV Shows on my library.
With the following XML I am able to show *all* the unwatched episodes of *all* my TV Shows (orderd by episode number), but I just want the next one to the last one seen per TV Show.
Code:
<smartplaylist type="episodes">
<name>Unwatched</name>
<match>all</match>
<rule field="playcount" operator="is">
<value>0</value>
</rule>
<limit>10</limit>
<order direction="ascending">episode</order>
</smartplaylist>
Thanks!