Kodi Community Forum
Recently added movies per a playlist - 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: Windows (https://forum.kodi.tv/forumdisplay.php?fid=59)
+---- Thread: Recently added movies per a playlist (/showthread.php?tid=303708)



Recently added movies per a playlist - jouster - 2017-01-10

Had a decent scan through but couldn't see anything specific to my thoughts so started a enw thread

I have a large collection of movies and Kodi has been handling them well for many years now

Due to having such a large library, I have started using smart playlists to better manage file types and have separate main menu items for Movies, Documentaries, Concerts, Disney and so on and again they all work well,but if I go to recently added section in the sub menu for each smart menu playlist it shows me ALL recently added files that are deemed as movies (set by content type)

So is there anyway to set the recently added sub menu to ONLY display recently added items in EACH playlist specifically....Huh It would really tidy things up nicely.

Happy to edit any items that need editing....but would love to know if this is even possible?

Thanks in advance....


RE: Recently added movies per a playlist - DarrenHill - 2017-01-10

You could maybe do that more easily with a suitably configured video node (wiki) for each category? That should add the filter restrictions I think.


RE: Recently added movies per a playlist - jouster - 2017-01-10

tried a quick node and the recently added node still pulls all recently added movies and now just the ones in THAT new node


RE: Recently added movies per a playlist - DarrenHill - 2017-01-10

You could write your own recently added nodes, making them specific to the filter.


RE: Recently added movies per a playlist - PatK - 2017-01-10

Modification of this recently added with path might work if your files have some path orientation. Alternatively you might be able to incorporate one of your exisiting smart playlists output as one of the rules. But I do suggest you look at nodes for organization, I've converted a lot of my smart playlists into node and don't regret it.

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>RA Drive W last 36 weeks</name>
    <match>all</match>
    <rule field="path" operator="contains">
        <value>W:</value>
    </rule>
    <rule field="dateadded" operator="inthelast">
        <value>36 weeks</value>
    </rule>
</smartplaylist>