as I have already explained I cannot use these addons because of my daughter ..
pcd will definitely solve your problem if it can be fixed
as I have already explained I cannot use these addons because of my daughter ..
pcd will definitely solve your problem if it can be fixed
no video url?
Traceback (most recent call last):
File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/plugins/plugin.video.cumination/default.py", line 199, in <module>
sys.exit(main())
File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/plugins/plugin.video.cumination/default.py", line 192, in main
url_dispatcher.dispatch(mode, queries)
File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/plugins/plugin.video.cumination/resources/lib/url_dispatcher.py", line 105, in dispatch
raise Exception(message)
Exception: Error: mode vidz7.v7_play requested argument url but it was not provided.
Display MoreDisplay MoreDisplay Moreskins file .xml is in folder
XCplugin\skin\fhd
XCplugin\skin\hd
you can modify them to your liking but you will need to remove the update.py / .pyc / .pyo files
from folder xcplugin/hello @Lululla
I need a litle help!
Where is it?
XCplugin\skin\fhdXCplugin\skin\hd
Is it 3 files?
remove the update.py / .pyc / .pyo files
And how coud i find tjis folder:xcplugin/Thanks
usr/lib/enigma2/Python/Plugins/Extensions/XCplugin/skin
Hi
I dont have this file
pyo files
BTW im use a new version of plugin! V2.2
Thanks
english
italian man
skins file .xml is in folder
XCplugin\skin\fhd
XCplugin\skin\hd
you can modify them to your liking but you will need to remove the update.py / .pyc / .pyo files
from folder xcplugin/
I added v.4.3 at the top of trehad
in this version work youtube url................
I installed these libraries, and did a lot of testing
the youtube link of the stram is detected and sent to the player
Select
---Player Diect
if no work...
install next..
Code
The new version of XcPlugin Forever Version 2.2 selects mu3 for direct crash in vuuno4kse.H7S, ATV7.1, openbh-5.1.011
Please try
go to:
usr\lib\enigma2\python\Plugins\Extensions\XCplugin
remove this files if they exist (update.pyc - update.pyo - update.py)
put this attached file in folder xcforever and restart
report please
I think he means the addons inside kodilite, it happened to me too but I put everything back without problems
It is obvious, many files were deleted in the next version and many could no longer remain in their place, in compilation those files were no longer good, hard work was done for this, you can always compare in pythonstyle, even the way of writing and indemnification.
Now it is easy to spot errors, if we do an update without deleting the files inside kodilite, we make a soup and a very heavy folder in megabytes ..
I can say that kodilite is now 80% compatible with PY3 and PY2
I am not sure of all the addons you will insert, I cannot control what you insert in your boxes.
But a little bit of effort in backing up a folder of plugins or scripts ..
(The fact remains that there are scripts (added to updated kodilite v.9.1r1 and PY3 compatible. So if you put the old evrsions back, don't write that kodilite doesn't work
![]()
if you are referring to the kodilite addon folders, as I said before, the ipk file removes the old version completely, even the addons. (the zip so to speak) which are in the kodilite folder
all plugins (most image plugins are placed here)
/usr/lib/enigma2/python/Plugins/Extensions/
here there is Kodilite, as there is xcforever, as there is Xtreamitly and others
here are kodilite
/usr/lib/enigma2/python/Plugins/Extensions/Kodilite
here plugins VIDEO of Kodilite
/usr/lib/enigma2/python/Plugins/Extensions/Kodilite/plugins
here are scripts
/usr/lib/enigma2/python/Plugins/Extensions/Kodilite/scripts
hence, all that is present here
/usr/lib/enigma2/python/Plugins/Extensions/Kodilite
will be removed
i show control and preinstall file for ipk file
PREINST
#!/bin/sh
if [ -d /usr/lib/enigma2/python/Plugins/Extensions/KodiLite ]; then
rm -rf /usr/lib/enigma2/python/Plugins/Extensions/KodiLite > /dev/null 2>&1
fi
exit 0
POSTRM (REMOVE IPK)
#!/bin/sh
if [ -d /usr/lib/enigma2/python/Plugins/Extensions/KodiLite ]; then
rm -rf /usr/lib/enigma2/python/Plugins/Extensions/KodiLite > /dev/null 2>&1
fi
exit 0
CONTROL (INFO FOR FILE)
Package: enigma2-plugin-extensions-kodilite
Version: 9.1_r1
Description: Enigma2 Plugin kodilite by pcd
Section: extra
Priority: optional
Maintainer: pcd@linuxsat-support.com
Architecture: all
OE: kodilite
Homepage: pcd@linuxsat-support.com
Depends:
Source: None
Display More
Here are setting for show plugin KL in plugins browser in plugin.py
_session = ""
plug = ""
def main(session, **kwargs):
global _session
_session = session
log = cfg.elog.value
if log is True:
logf = open('/tmp/e.log', 'w')
sys.stdout = logf
else:
if os.path.exists("/tmp/e.log"):
os.remove("/tmp/e.log")
if not os.path.exists("/etc/KodiLite"):
os.system("mkdir -p /etc/KodiLite")
if not os.path.exists("/etc/KodiLite/favorites.xml"):
cmd = "cp " + THISPLUG + "/lib/defaults/favorites.xml /etc/KodiLite/"
os.system(cmd)
print("In def main 4")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/vid")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/pic")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/tmp")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/home/")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/database/")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/userdata/")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/userdata/Database/")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/home/addons/")
os.system("mkdir -p " + cfg.cachefold.value + "/xbmc/home/addons/packages")
print("In def main 5")
try:
cachefolder = cfg.cachefold.value
except:
cachefolder = "/media/hdd"
afile = open("/etc/xbmc.txt", 'w')
afile.write(cachefolder)
afile.close()
print("In def main 6")
# start()
# if cfg.update.getValue() is True:
try:
from Plugins.Extensions.KodiLite.Update2 import updstart2
updstart2()
except:
print("\nError 2 updating some scripts")
try:
from Plugins.Extensions.KodiLite.Update import updstart
updstart()
except:
print("\nError updating some scripts")
start()
print("In def main 7")
def start():
print("Going into StartPlugin_mainmenu")
gpath = THISPLUG + "/greet"
if os.path.exists(gpath):
cmd = "rm -rf " + gpath
os.system(cmd)
# _session.open(Getcats)
global ADDONCAT
ADDONCAT = "plugins"
f1 = open("/tmp/addoncat.txt", "w")
f1.write(ADDONCAT)
f1.close()
_session.open(Start_mainmenu)
def mpanel(menuid, **kwargs):
if menuid == "mainmenu":
return [("KodiLite", main, "xbmc_addons", 12)]
else:
return []
def Plugins(**kwargs):
loadPluginSkin(kwargs["path"])
try:
viewdownloads = cfg.viewdownloads.value
mmenu = cfg.mmenu.value
except:
viewdownloads = 'disabled'
mmenu = False
list = []
list.append(PluginDescriptor(icon="plugin.png", name="KodiLite", description="Kodi Addons for enigma2", where=PluginDescriptor.WHERE_MENU, fnc=mpanel))
list.append(PluginDescriptor(icon="plugin.png", name="KodiLite", description="Kodi Addons for enigma2", where=PluginDescriptor.WHERE_PLUGINMENU, fnc=main))
list.append(PluginDescriptor(icon="plugin.png", name="KodiLite", description="Kodi Addons for enigma2", where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main))
if not viewdownloads == "disabled":
list.append(PluginDescriptor(where=PluginDescriptor.WHERE_SESSIONSTART, fnc=showjobviews))
return list
Display More
the .ipk or .deb file is nothing more than a compressed file, which can execute instructions thanks to scripts (previously mentioned), there is no written remove or hide plugins.
The preinst does nothing but check if there is an old version and remove it
Then we proceed to extract the "data" file present in .ipk
For the removal it uses the "postrm" file, it removes the plugins folder and the scripts mentioned
We need to understand why they disappear: are the plugins folders present deleted?
there is a specific error on the screen? there is a crash with relative log?
I personally tested the installation file and it never happened to me
Greetings mate, how are you, I know I'm boring, but let me tell you that now it won't open a single page, here's the error log
if simple..
HTTP Error 503: Service Unavailable
the problem is not always the addons or plugins, the server in question often fails, SERVICE NOT AVAILABLE
so it doesn't find the called url.
Yesterday was all day DOWN ..
did install the 9.1r1 IPK over the 9.1 .... after update all my plugins are gone.
"nice" no i can download weeks to get it all back :-(
Overshot the target, existing extensions can be overwritten but none simply completely deleted!
are you sure what you say?
does an installation of an ipk plugin make the other plugins disappear?
I don't think this has happened to others who have already done so
Can you explain better what you did to install the plguin, the various steps?
what box do you have, what image do you have, maybe the problem was not in the kdl ipk or maybe yes, but I await others to confirm this statement
Regards
Hi @Lululla
So i need to install Open ATV 7?
but no keep the old 6.3 which will not be updated anymore and I will not have the libraries suitable for the new plugins
![]()
youtube links don't work for me,
maybe it works on your box.
I installed these libraries, and did a lot of testing
the youtebe link of the stram is detected and sent to the player
enigma2-plugin-extensions-streamlinkwrapper
enigma2-plugin-extensions-ytdlpwrapper
enigma2-plugin-extensions-ytdlwrapper
python3-yt-dlp
python3-youtube-dl
HelpConfig here
Quote
for trial.. report ,
Hi @Lululla
Thanks
Tomorrow i will try to install older version.....(I use Open ATV 6.3 and i dont have a picture just sound)
atv 6.3 is end of life
Display MoreDisplay MoreDisplay MoreI wonder if anyone can help please. I had to change the server so I went to the app on my box and it will not let me change using the numbers/letters combo on my handset. So I went to /etc/enigma2/xc and only had files called xc_e2_plugin.xml.
So read this forum and changed the .xml to xc_plugin.xml.
Run the app and still cant see the updated server, only what I attempted using the handset. Username and password are still there and correct.
I have rebooted the system several times. Txt and .sh are not present in TMP.
What am I doing wrong?
I am using V2.2
Thank you in advance.
Please read here
PostXcPlugin Forever VersionNew Version of plugin XC-Code StreamHere my share folder
(Code, 2 lines)
FIRST OPERATIONS TO BE PERFORMED TO CONFIGURE THE PLUGIN:
MANUAL SETTING OF XML FILE WITH CREDENTIALS (/etc/enigma2/xc/):
1) Open the file in /etc/enigma2/xc/xc_e2_plugin.xml with notepad ++
2) Edit xc_e2_plugin.xml it as shown
3)Save it and put it back in the /etc/enigma2/xc folder
4) open the plugin - menu button - blue button - select your file - then save
5) Use the plugin
VERSION 1.0
(Code, 71 lines)
Changelog
-NEW MAIN HOME
…
and since it is your first post, it is a good rule to say hello here when you enter a forum
When I tryed to it with blue button,the Receiver crashed,that's the reason why I always enter the data directly via the plugin in the CONFIG.
Here the crashlog:
08:43:28.3752 File "/usr/lib/enigma2/python/Components/ActionMap.py", line 238, in action
08:43:28.3845 File "/usr/lib/enigma2/python/Plugins/Extensions/XCplugin/plugin.py", line 350, in xcPlay
08:43:28.3866 self.session.open(xc_Play)
08:43:28.3867 File "/usr/lib/enigma2/python/StartEnigma.py", line 178, in open
08:43:28.3887 self.execBegin()
08:43:28.3887 File "/usr/lib/enigma2/python/StartEnigma.py", line 92, in execBegin
08:43:28.3892 currentDialog.execBegin()
08:43:28.3892 File "/usr/lib/enigma2/python/Screens/Screen.py", line 67, in execBegin
08:43:28.3933 File "/usr/lib/enigma2/python/Plugins/Extensions/XCplugin/plugin.py", line 3379, in openList
08:43:28.4002 for root, dirs, files in os.walk(path):
08:43:28.4003 File "/usr/lib/python3.9/os.py", line 342, in walk
08:43:28.4008 TypeError: expected str, bytes or os.PathLike object, not module
08:43:28.4009 [ePyObject] (PyObject_CallObject(<bound method ActionMap.action of <Components.ActionMap.HelpableActionMap object at 0xaddd3868>>,('XCpluginActions', 'blue')) failed)
With Menue/CONFIG/Yellow button it comes a error:
restart box and try, if no work, update from github
regards
go to
/usr/lib/enigma2/python/Plugins/Extensions/
remove xcplugin folder
regards
opkg remove enigma2-plugin-extensions-xcplugin-forever
box and image please..
install pillow library
;)
py3:
opkg install python3-pillow
please major info
box and image used
no modul ???
have a screenshot ??
Ok sorry my friend would prefer the ipk file to come out easier to install sorry
~ KODILITE 9.1R1 ~
Added 9.1r1 (trial version)
20221105 9.1r1
-major fix
-removed adnutils
-settings add (moved)
-recoded script.main
-recoded all .py files
-improve speed
-improve poster fix
-config on Menu Button
-tmdb/imdb on Info/Epg Button
And here last addon
;)