STRM Resume Issue from the Dashboard - In progress Movies Section - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Video Support (https://forum.kodi.tv/forumdisplay.php?fid=264) +--- Thread: STRM Resume Issue from the Dashboard - In progress Movies Section (/showthread.php?tid=371215) |
STRM Resume Issue from the Dashboard - In progress Movies Section - Andreus - 2023-01-10 STRM doesn't resume from the Dashboard - In progress Movies Section but it works if I go into Movie and open the movie from there here is a video example: https://streamable.com/511kk6 Is there a way to fix? RE: STRM Resume Issue from the Dashboard - In progress Movies Section - User 476552 - 2023-01-10 Resuming is a pet peeve of mine on Kodi, it's not always handled by addons and skins. Does it resume from the context menu? i.e. Open context menu, explicitly select Resume Check your setting for default select action, Settings -> Media -> Videos -> Default Select Action, set to Resume if not already. RE: STRM Resume Issue from the Dashboard - In progress Movies Section - Andreus - 2023-01-10 Unfortunately, there is no "Resume" option in the context menu in the initial Dashboard. here a screenshot: https://prnt.sc/BVGVbuYgln0m And even if I click on "Information" and then on play, the resume of the movie it only works if I don't do it from the dashboard RE: STRM Resume Issue from the Dashboard - In progress Movies Section - User 476552 - 2023-01-10 Then, unfortunately, the skin (Estuary) is not handling resume. This is not a video playback issue, as Kodi itself will in fact resume from other sections. More specifically either Estuary is not seeing a resume or it's not opening the file with ",resume" in the backend. (This should be in the Estuary support section.) RE: STRM Resume Issue from the Dashboard - In progress Movies Section - Andreus - 2023-01-12 Thanks @"nymdbwdp", I asked the same question in the Estuary support section: https://forum.kodi.tv/showthread.php?tid=371250 RE: STRM Resume Issue from the Dashboard - In progress Movies Section - Hitcher - 2023-01-12 (2023-01-10, 21:23)nymdbwdp Wrote: More specifically either Estuary is not seeing a resume or it's not opening the file with ",resume" in the backend.Nothing to do with the skin. RE: STRM Resume Issue from the Dashboard - In progress Movies Section - User 476552 - 2023-01-12 Funny you say that @Hitcher does Estuary use Player.Open(url) or Player.Open(url,resume)? Sorry it's been a couple weeks since I looked at it, it's PlayMedia I modified estuary to specifically resume in my case because it wouldn't for me either. <onclick>PlayMedia($INFO[ListItem.FileNameAndPath],resume)</onclick> RE: STRM Resume Issue from the Dashboard - In progress Movies Section - Hitcher - 2023-01-12 It won't use either as it's a dynamic list and Kodi handles what happens when you click on it. RE: STRM Resume Issue from the Dashboard - In progress Movies Section - Dangelus - 2023-01-12 (2023-01-12, 18:49)Andreus Wrote: Thanks @"nymdbwdp", I asked the same question in the Estuary support section: https://forum.kodi.tv/showthread.php?tid=371250 @Andreus please DO NOT create duplicate threads. If you feel you have posted in the incorrect place click the "report" button and report your own thread and a moderator can assist you. As this is not a skin issue I have sent your duplicate thread to the bin. RE: STRM Resume Issue from the Dashboard - In progress Movies Section - User 476552 - 2023-01-12 I'm not trying to be contrary, nor am I saying there's anything wrong with the skin, I love the skin. I'm saying, I've already come across this and fixed it in my own version as to not have this conversation with the developer. Code: xml/Variables.xml: <value condition="Skin.HasSetting(album_onclick_play)">PlayMedia(musicdb://albums/$INFO[ListItem.DBID]/)</value> In my instance, being a newb I didn't know what to use so I changed it in Includes_Home.xml to handle an onclick specifically with resume and it works. If you were to put an <onclick condition="String.IsEmpty(ListItem.TVShowTitle)">PlayMedia($INFO[ListItem.FileNameAndPath],resume)</onclick> Into WidgetListPoster Under <control type="panel" id="$PARAM[list_id]"> It will in fact resume. Obviously what I put there only handles Movies, I use 2 different onclicks with conditionals and another script for more actions that only apply to my situation, and I'm not a skin developer so it's rather basic. ** I didn't offer this as a solution to the OP because, even though my approach to open source software is just change the code if it doesn't work, this is not a solution for everyone and not everyone is able to do so. |