Recent played videos
#1
Hi all,

I use Kodi as my first player for movies and series.

Everytime I need to reach the last played movie I need to go to VIDEOS or to FAVORITES (the star in the left-corner-bottom) and then search for it.

Why there is not a "RECENT PLAYED" where I can go immediately and where I can RESUME the movie?

It's me that I cannot find it or there is not such folder? I am crazy everytime!!!
Reply
#2
I used a smart_playlist (wiki) to achieve this:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Movies - Recently Watched</name>
    <match>all</match>
    <limit>25</limit>
    <order direction="descending">lastplayed</order>
</smartplaylist>
4x R-Pi4b LibreELEC v10 | Aeon Nox: SiLVO | Flirc cases
Storage Synology DS411 | 4 x WD RED 6TB
Software MariaDB 10.4.19 | Filebot | Ember Media Manager
wiki (wiki) | First time user (wiki) | Debug_Log (wiki) | mysql (wiki) | artwork (wiki)
Reply
#3
@ zerocool_ie

.xsp missing operators/rules:

Movies still playing-
Code:
<rule field="inprogress" operator="true" /></rule>

&/or

Recent played movie/s-
Code:
<rule field="inprogress" operator="false" />
    <rule field="playcount" operator="greaterthan">
        <value>0</value></rule>

Example:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Movies In Progress</name>
    <match>all</match>
    <rule field="inprogress" operator="true"></rule>
    <order direction="descending">lastplayed</order>
</smartplaylist>
Reply
#4
thanks @k4sh1n, in this playlist I don't care if it's unfinished or not Smile

I use this other one to generate the "zerocool_ie, you haven't finished these!" list!

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Movies - In Progress</name>
    <match>all</match>
    <rule field="inprogress" operator="true" />
    <order direction="descending">lastplayed</order>
</smartplaylist>
4x R-Pi4b LibreELEC v10 | Aeon Nox: SiLVO | Flirc cases
Storage Synology DS411 | 4 x WD RED 6TB
Software MariaDB 10.4.19 | Filebot | Ember Media Manager
wiki (wiki) | First time user (wiki) | Debug_Log (wiki) | mysql (wiki) | artwork (wiki)
Reply
#5
Oh ic, no worries then, 2 sp-lists are better than 1Wink, please disregard
Hopefully OP can mock-up/mod from the above link/examples

Open question, re- use of syntax close tags, required?

Code:
</rule>
Reply
#6
just created some test playlists using the Kodi UI

Jarvis
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>testJarvis</name>
    <match>all</match>
    <rule field="title" operator="contains">
        <value>trek</value>
    </rule>
</smartplaylist>

Krypton
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>testKrypton</name>
    <match>all</match>
    <rule field="title" operator="contains">
        <value>trek</value>
    </rule>
</smartplaylist>

Both contain </rule> and work correctly.

My guess is that the closing tag is needed when a value is used, and not when an operator is used.

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>OperatorTestJarvis</name>
    <match>all</match>
    <rule field="inprogress" operator="true" />
</smartplaylist>
4x R-Pi4b LibreELEC v10 | Aeon Nox: SiLVO | Flirc cases
Storage Synology DS411 | 4 x WD RED 6TB
Software MariaDB 10.4.19 | Filebot | Ember Media Manager
wiki (wiki) | First time user (wiki) | Debug_Log (wiki) | mysql (wiki) | artwork (wiki)
Reply
#7
No one mentioned this add-on http://forum.kodi.tv/showthread.php?tid=279131 works well with 16.1 and works with 17 it is beta though.
Reply
#8
(2016-09-25, 23:23)PatK Wrote: No one mentioned this add-on http://forum.kodi.tv/showthread.php?tid=279131 works well with 16.1 and works with 17 it is beta though.

Before to try the tricky stuff before, I will firstly try this!

Why this is not implemented by default in KODI. What is more NEEDED in a player if not the history? I really don't undestand the devs.
Reply
#9
Sometimes we don't understand the users as well.
Play history is in v17 and you can create smartplaylist for it
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#10
(2016-09-27, 17:00)Pipppero2007 Wrote: What is more NEEDED in a player if not the history?

The ability to play files. Laugh
Reply
#11
For me, half the fun of Kodi is making tweaks, adding functionality tailored to my own specific use cases and reading this forum! Smile
4x R-Pi4b LibreELEC v10 | Aeon Nox: SiLVO | Flirc cases
Storage Synology DS411 | 4 x WD RED 6TB
Software MariaDB 10.4.19 | Filebot | Ember Media Manager
wiki (wiki) | First time user (wiki) | Debug_Log (wiki) | mysql (wiki) | artwork (wiki)
Reply
#12
(2016-09-27, 18:03)zerocool_ie Wrote: For me, half the fun of Kodi is making tweaks, adding functionality tailored to my own specific use cases and reading this forum! Smile

+1
Reply
#13
+1
Reply
#14
(2016-09-27, 17:38)Martijn Wrote: Sometimes we don't understand the users as well.
Play history is in v17 and you can create smartplaylist for it

If I understand correctly in v17 I will have the history? Then I will wait for the stable of it. I dont need smartplaylist, I only need history. Thanks!!!
Reply

Logout Mark Read Team Forum Stats Members Help
Recent played videos0