Kodi Community Forum

Full Version: Not marking video as complete until 100% is watched AND keeping resume point
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
See http://kodi.wiki/view/AdvancedSettings.xml#video

Example:
Code:
<video>
    <playcountminimumpercent>95</playcountminimumpercent>
    <ignoresecondsatstart>30</ignoresecondsatstart>
    <ignorepercentatend>3</ignorepercentatend>
</video>
There is also a wiki page dedicated to that... http://kodi.wiki/view/Video_cache
(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.