Not marking video as complete until 100% is watched AND keeping resume point
#1
I currently use Kodi to watch Video Podcasts and I can't seem to get past this one issue.

The videos are around 2hr 5min long and usually when I get to around 2hr, Kodi doesn't want to keep the resume points anymore.

I tried setting playcountminimumpercent to 101 and 100.

101 makes it not create any resume point while 100 seems to still cause Kodi to claim watched it all.

This behavior is great for when I am watching TV shows but my Podcast goes to the very end usually so it's not technically watched and then I have to try and seek back
where I left off.
Reply
#2
See http://kodi.wiki/view/AdvancedSettings.xml#video

Example:
Code:
<video>
    <playcountminimumpercent>95</playcountminimumpercent>
    <ignoresecondsatstart>30</ignoresecondsatstart>
    <ignorepercentatend>3</ignorepercentatend>
</video>
Reply
#3
There is also a wiki page dedicated to that... http://kodi.wiki/view/Video_cache
My Signature
Links to : Official:Forum rules (wiki) | Official:Forum rules/Banned add-ons (wiki) | Debug Log (wiki)
Links to : HOW-TO:Create Music Library (wiki) | HOW-TO:Create_Video_Library (wiki)  ||  Artwork (wiki) | Basic controls (wiki) | Import-export library (wiki) | Movie sets (wiki) | Movie universe (wiki) | NFO files (wiki) | Quick start guide (wiki)
Reply
#4
(2017-10-23, 01:01)Klojum Wrote: See http://kodi.wiki/view/AdvancedSettings.xml#video

Example:
Code:
<video>
    <playcountminimumpercent>95</playcountminimumpercent>
    <ignoresecondsatstart>30</ignoresecondsatstart>
    <ignorepercentatend>3</ignorepercentatend>
</video>

Thanks Again!

I had to change the variables in my case for it to work for what I need.

Code:
  <video>
  <ignoresecondsatstart>30</ignoresecondsatstart>
  <ignorepercentatend>0</ignorepercentatend>
  <playcountminimumpercent>101</playcountminimumpercent>
  </video>

This allows me to watch up to say 1:59:30 out of 2:00:00 and still watch where I left off.
Reply

Logout Mark Read Team Forum Stats Members Help
Not marking video as complete until 100% is watched AND keeping resume point0