Kodi Community Forum

Full Version: TV Show episode bookmark
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've already tried the <epbookmark> tag, but there's a little problem.
With this tag i can set only part 2 start, but not part 1 end.

ex: Tv show Bones (IT)
S04E01E02 - Due Americani A Londra

Code:
<?xml version="1.0" encoding="utf-8"?>
    <episodedetails>
        <title>Due Americani A Londra 1</title>
        <rating>0</rating>
        <season>4</season>
        <episode>1</episode>
    <epbookmark>0</epbookmark>
        <plot></plot>
        <aired></aired>
</episodedetails>
    <episodedetails>
        <title>Due Americani A Londra 2</title>
        <rating>0</rating>
        <season>4</season>
        <episode>2</episode>
    <epbookmark>2490</epbookmark>
        <plot></plot>
        <aired></aired>
</episodedetails>
</xml>

with this xml i can set episode 1 to start at 0, but it never ends. it play till end.
episode 2 start at 41:30, and that's correct.

but now, how i can set episode 1 to end at 41:30?
no one??
Have you tried setting directly from the Video OSD
i've tried but it doesn't stop at 41:30, it just go over.

i'm trying to local scrape episode and set end of episode 1 so it stop play and i've to select episode 2 to continue.

that's not a problem for me, but my parents just watch the episode 2 two times in this way...
It's not designed to stop at the bookmark - the bookmark (like all bookmarks) just acts as a starting point.

If your parents sit through the same thing twice, one option would be to create an .nfo file for the first episode that names the title "episode 1 and 2, together" perhaps?

Cheers,
Jonathan
the info is currentrly set in that way, have a look at the code posted Big Grin

when you scrape episode you will have for one file 2 entry on tv show.
episode 1 (duration...)
episode 2 (duration...)
if you start without bookmark you can watch the full episode; with bookmark, as you said, you can watch from a starting point.

bookmark is like you said, but i was thinking that if i can use it to set a starting point i can also set an end point.
probably it's a "problem" only for me, but would be great to have a feature to set a start and end point of a tvshow if needed.