You should look in kodi log for error. But because you ave sensitive informations there we can't see it and you need to figure out the issue yourself.
Posts by vpeter
-
-
Sorry but seems I don't understand anymore what is what. In your kodi log there is indication Couldn't resolve host name. But with whet you get Unauthorised. This are two different problems.
-
-
What you posted is EPG file. But how your stream url looks we still don't know. And this is your problem. In kodi log you have My Personal Address. What is it in real? At least what is the server part http://some_server_name.com/? Because this server name can't be reached by name on LE box. Why? Who knows until we see what it is
-
No need for a debug log until you fix your dns issue on your box. If it works on firefox doesn't mean it will work the same on LE box.
Post one of the URL you use. Remove only password or other sensitive information.
Those wget command above has nothing to do with kodi. It is just a test if stream can be downloaded.
-
It is part of plymouth-lite package LibreELEC.tv/package.mk at master · LibreELEC/LibreELEC.tv · GitHub which is used in initramfs.
-
This is your first problem
So it is DNS issue after all
You can test your link from ssh console with wget or curl
Also next time post DEBUG kodi log. And it is fundamental issue (but only to you).
-
It is not fixed because this part is not (yet) included in LE.
-
With ()& you put commands in separate process and main script continues to run (and kodi starts as before).
That's why remove ()& and use only sleep and echo lines.
-
-
Ok, so you are using locales somewhere in storage. Good then
-
Sorry but I'm lost. If you are building vdr it is addon and nothing from it will come to image. Only if you add dependency with ADDITIONAL_PACKAGES or somewhere else then files from it can be added to image. And why do you need locale in image? In addon doesn't work?
-
How and where did you copy locales which are missing in image?
-
I'm using PVR Simple Client and I'm sure bunch of other people too. Successfully of course. So it issue only on your system. But we will never know what was it.
-
Maybe you just had DNS issues.
Anyway, don't bother to post same issue again
-
I think you will give more information to help you. Like Kodi debug log for a start when you try to play one item from PVR Simple Client.
fundamental problem
-
LibreELEC vdr-addon is created without any vdr locale file.
If you really do need them you have to configure and add locale for all packages.
That's what I suggested with cp command: they are all copied to config folder. And vdr should pick them up.
-
Files from addon can't be put in image.
Maybe copying all locales at the end of vdr-addon package would help? But I'm not sure if vdr addon and plugins would see them. Maybe setting LANGUAGE variable in vdr start script would do.
Codeaddon() { ....... # copy all locales mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/config cp -Pr $BUILD/vdr-*/locale $ADDON_BUILD/$PKG_ADDON_ID/config }
I'm not VDR user so have no idea how to test.