IPTV simple client 20.8 ist broken
#31
(2023-02-17, 08:24)matthuisman Wrote:
(2023-02-17, 01:13)1deep Wrote:
(2023-02-15, 19:32)phunkyfish Wrote: I’m not sure if this was implemented as part of the core change. The original PR is here: https://github.com/xbmc/xbmc/pull/20860
Really hope there's a way to change instance settings or even create a new instance from code.

I've got an issue opened here keeping track of what I think we need in python
https://github.com/xbmc/xbmc/issues/22779
I've added this issue to the sticky thread here: https://forum.kodi.tv/showthread.php?tid...pid3141151
Maintainer of Enigma2 PVR addon: repo, docschangelog
How to create a full debug: here
Reply
#32
(2023-02-17, 08:24)matthuisman Wrote:
(2023-02-17, 01:13)1deep Wrote:
(2023-02-15, 19:32)phunkyfish Wrote: I’m not sure if this was implemented as part of the core change. The original PR is here: https://github.com/xbmc/xbmc/pull/20860
Really hope there's a way to change instance settings or even create a new instance from code.

I've got an issue opened here keeping track of what I think we need in python
https://github.com/xbmc/xbmc/issues/22779
I guess this can be considered somewhat of a hotfix for folks like me who like to tinker with different m3us etc and don't want to manually type things in every time. Only supports one instance but will bring back the automation part. I just threw in a line to delete the instance settings forcing it to do the migrate from the regular settings over again. Requires you to add a kodi force close line of code at the end for settings to take.

xbmcvfs.delete('special://masterprofile/addon_data/pvr.iptvsimple/instance-settings-1.xml')
SC = xbmcaddon.Addon('pvr.iptvsimple')
SC.setSetting('yoursettings')
Reply
#33
(2023-02-17, 13:11)1deep Wrote:
(2023-02-17, 08:24)matthuisman Wrote:
(2023-02-17, 01:13)1deep Wrote: Really hope there's a way to change instance settings or even create a new instance from code.

I've got an issue opened here keeping track of what I think we need in python
https://github.com/xbmc/xbmc/issues/22779
I guess this can be considered somewhat of a hotfix for folks like me who like to tinker with different m3us etc and don't want to manually type things in every time. Only supports one instance but will bring back the automation part. I just threw in a line to delete the instance settings forcing it to do the migrate from the regular settings over again. Requires you to add a kodi force close line of code at the end for settings to take.

xbmcvfs.delete('special://masterprofile/addon_data/pvr.iptvsimple/instance-settings-1.xml')
SC = xbmcaddon.Addon('pvr.iptvsimple')
SC.setSetting('yoursettings')

Genius!
Maintainer of Enigma2 PVR addon: repo, docschangelog
How to create a full debug: here
Reply
#34
I might need to steal that method. 😂
Reply
#35
(2023-02-17, 13:43)phunkyfish Wrote:
(2023-02-17, 13:11)1deep Wrote:
(2023-02-17, 08:24)matthuisman Wrote: I've got an issue opened here keeping track of what I think we need in python
https://github.com/xbmc/xbmc/issues/22779
I guess this can be considered somewhat of a hotfix for folks like me who like to tinker with different m3us etc and don't want to manually type things in every time. Only supports one instance but will bring back the automation part. I just threw in a line to delete the instance settings forcing it to do the migrate from the regular settings over again. Requires you to add a kodi force close line of code at the end for settings to take.

xbmcvfs.delete('special://masterprofile/addon_data/pvr.iptvsimple/instance-settings-1.xml')
SC = xbmcaddon.Addon('pvr.iptvsimple')
SC.setSetting('yoursettings')

Genius!

Lol thanks can't live without my automation scripts gotta maintain my parents setup too! Got another rudimentary script that broke going from 19 to 20 and can't figure out why. Since there's never been that I know of an easy way to clear PVR data in 1 click if the guide doesn't load I just made a button pressing script to add to the menu. Always worked. Now it just freezes when it presses clear data. This script is exclusive to aeon nox but I have one for Titan too and still freezes. Here it is if anyone finds this useful and wants to take a crack at it.

import xbmc
import sys
import json
import xbmcgui
import time

xbmc.executebuiltin('ActivateWindow(pvrsettings)')
xbmc.executebuiltin('SendClick(-74)')
time.sleep(3)
xbmc.executebuiltin("Action(Left)")
time.sleep(1)
xbmc.executebuiltin("Action(Select)")
time.sleep(3)
xbmc.executebuiltin("Action(Left)")
time.sleep(1)
xbmc.executebuiltin("Action(Select)")
time.sleep(15)
xbmc.executebuiltin("Action(Back)")
Reply
#36
i had a script to do this at one point. involved finding the sql epg db and wiping the data basically. haha
but removed that method as "too risky"
Reply
#37
new IPTV Merge now uses @1deep idea.
Seems to work pretty good. So hopefully happy Kodi 20 users now
https://github.com/matthuisman/slyguy.ad...197073R617

I have claimed instance-settings-90.xml for IPTV Merge
Reply
#38
(2023-02-18, 06:15)matthuisman Wrote: new IPTV Merge now uses @1deep idea.
Seems to work pretty good. So hopefully happy Kodi 20 users now
https://github.com/matthuisman/slyguy.ad...197073R617

I have claimed instance-settings-90.xml for IPTV Merge

Nice
Maintainer of Enigma2 PVR addon: repo, docschangelog
How to create a full debug: here
Reply
#39
(2023-02-18, 05:03)matthuisman Wrote: @phunkyfish
was looking at using IPTV Merge http server and then using remote url in IPTV Simple.
I have an option that makes IPTV Merge run when it gets an http call.
So this would allow IPTV Simple to control the refresh time instead of merge trying to tell it to refresh.
unfortunately on a bootup, simple try calls the url straight away before their service has started
thoughts? maybe iptv simple could have a delay?

The delay would be arbitrary and would be different depending on your setup. But IPTV Simple should try a few times before before giving up. That retry logic interval is part of the settings (I think)
Maintainer of Enigma2 PVR addon: repo, docschangelog
How to create a full debug: here
Reply
#40
(2023-02-18, 06:15)matthuisman Wrote: new IPTV Merge now uses @1deep idea.
Seems to work pretty good. So hopefully happy Kodi 20 users now
https://github.com/matthuisman/slyguy.ad...197073R617

I have claimed instance-settings-90.xml for IPTV Merge

Love it brother glad to be contributing instead of just lurking for 10 years lol
Reply
#41
I am on Amazon fire stick cube and when I install the iptv client my kodi crashes . It works fine on my fire stick but not my cube ??
Reply
#42
(2023-09-19, 00:02)Dannort5069 Wrote: I am on Amazon fire stick cube and when I install the iptv client my kodi crashes . It works fine on my fire stick but not my cube ??

Can you check this on a clean install?

Do you have a full debug log and crash log?
Maintainer of Enigma2 PVR addon: repo, docschangelog
How to create a full debug: here
Reply

Logout Mark Read Team Forum Stats Members Help
IPTV simple client 20.8 ist broken0
This forum uses Lukasz Tkacz MyBB addons.