Caller information and autopause AddOn?

A general question: Is there an addOn which can be configured to communicate with a telephone (PBX) system (like a fritz.box to keep things simple or, even better, more sophisticated things like Asterisk or Auerswald products)? I know that some apps fo...

[Kodi 17] This is weird: External Player CPU Usage

Setup: i5 NUC running Windows10 64bit and Kodi 17.0 with MPC-HC 64bit as external player for all media. This has me baffled: When I play HEVC .mkv encoded content launched via Kodi, MPC is launched as normal but playback is super-choppy with audio dr...

Prevent shutdown

Hello,

I'm actually looking for a workaround to prevent system shutdown when e.g. a PVR timer is running. Anyone got an idea?
I'm actually using Ubuntu 16.04 with Kodi 17.

In Ubuntu 14.04 LTS with Kodi 16 I managed this like this, which was working pretty good:

Code:
[root@kodi:~] {0}
cat /etc/cron.d/prevent-shutdown
*       *       *       *       *       root    /home/hts/prevent_shutdown.sh; sleep 15; /home/hts/prevent_shutdown.sh; sleep 15; /home/hts/prevent_shutdown.sh; sleep 15; /home/hts/prevent_shutdown.sh

[root@kodi:~] {0}
cat /home/hts/prevent_shutdown.sh
#!/bin/bash

/usr/lib/pm-utils/sleep.d/94-hts-prevent-shutdown.sh > /dev/null 2>&1
if [[ $? -ge 1 ]]; then
        chmod 0000 /sbin/shutdown
        chmod 000 /usr/sbin/pm-suspend
else
        [ -f /sbin/shutdown ] || ln -s /bin/systemctl /sbin/shutdown
        chmod 755 /sbin/shutdown
        chmod 775 /usr/sbin/pm-suspend
fi

Since the change from init.d to systemd, this solution is not working anymore.
I did already tried removing executable flags from /sbin/shutdown respectively /bin/systemctl, which was not working. Even removing the symlink is not working.
Therefore it looks like systemd uses another way.
systemd-inhibit won't be a solution, due tvheadend does not fork an extra process which I could separately start with this hook.

Thanks in advance.

Media info not showing in fanart view

Hi! I'm using OpenELEC 7.0.1 (Kodi 16.1) on a Raspberry Pi2 with the Confluence skin. Everything works except for a little problem. I use the "fanart" view for my video library and in some views there is no metadata (info panel) for the movies. For i...

Progress bar moves but no audio/video

I am suddenly unable to watch anything on Kodi 17. I can select s show and source and it seems to start but there is no picture or sound. The progress bar and timer move along as normal. I have tried updating and reinstalling with no change. Any help w...

Iptv???

Hello I have the raspberry pi 3 and i have install Kodi 17... i try to put IPTV but i cant find iptv menu inside of kodi 17. I have follow many youtubers how to do it but in my kodi is no IPTV menu or client!! Is have install repos but nothing!!! i wan...

Variable Frame-Rate Video Issue

Videos with a variable frame-rate are not working correctly on Kodi 17.0 and 17.1 RC1 on Windows. Source of video is European TV recordings in AVC format, and the frame rate varies between 25 and 50 FPS. Thumbnails of these videos are not displayed and...

Alter tags in tvshows lists

Hi, if I display my tv series as preview images and switch on the tag display, Titan 3.6.78 shows the tags in the form Big Bang Theory S01E01 That is not very helpful. I would like to show up the episode name instead of the series name (series name i...

Change background of MusicVisualisation

Hello! I'm doing my first steps in Skinning, made a copy of the skin Estuary and now I'm trying to change a few things, just for practice. Some changes worked well (replacing and resizing cover images and fonts) but it didn't found out how I can chang...

Forcing MySQL database reload from current NFO

Hello, I use mysql to share database between 4 kodi install :1 LibreElec, 2 OSMC and my main PX with Kodi Windows. I use my main PC to manage media database update. When i do some modification with tools, such tinymediamanager, then modified data are...

Why is this change breaking the skin?

I have just gone to Kodi 17.0 and hate the fact that I don't have "time remaining" shown.. So I tried to modify the Estuary skin and failed.

But then I realised I could use the Confluence skin so downloaded it and its fine.. But then I made the change that I have made many times in Kodi 16, documented here:

HOW-TO:Add_Time_Remaining_to_Confluence (wiki)

But when I made the change, it messes up the playback GUI.. But whats weird is that when I uncomment out my lines, its stays broken and only works again when I DELETE them.. I am a bit confused, as surely uncommenting them should be fine..

So let me be specific... The line of interest are this:

<label>$LOCALIZE[31049] $INFO[Player.Fibel>$LOCALIZE[31049]

<label>$INFO[Player.Duration(hh:mmConfuseds)]</label>


I then change them and add extra lines so it reads like this:

<!label>$LOCALIZE[31049] $INFO[Player.Fibel>$LOCALIZE[31049]
<label>Runtime: $INFO[Player.Duration(hh:mmConfuseds)] (Ends $INFO[Player.FinishTime])</label>

<!label>$INFO[Player.Duration(hh:mmConfuseds)]</label>
<label>-$INFO[Player.TimeRemaining(hh:mmConfuseds)]</label>


After this change, the Skin is no longer correct and the GUI is broken.. So I then uncomment/comment the lines:

<label>$LOCALIZE[31049] $INFO[Player.Fibel>$LOCALIZE[31049]
<!label>Runtime: $INFO[Player.Duration(hh:mmConfuseds)] (Ends $INFO[Player.FinishTime])</label>

<label>$INFO[Player.Duration(hh:mmConfuseds)]</label>
<!label>-$INFO[Player.TimeRemaining(hh:mmConfuseds)]</label>


And its STILL broken.. The only way I can get it working is to delete my lines, and then it works again, like this:


<label>$LOCALIZE[31049] $INFO[Player.Fibel>$LOCALIZE[31049]

<label>$INFO[Player.Duration(hh:mmConfuseds)]</label>



This is standard XML stuff.. So why is this breaking the skin.. Even when I comment out my lines.. Is there something else I am missing which is new in Kodi 17.0?

onNotification for Audio CD return type unknown

Hello. When start playing Audio CD the xbmc.onNotification return: Code: {u'item': {u'type': u'unknown'}, u'player': {u'playerid': 0, u'speed': 1}} I tried add to advancedsettings.xml this line but not help: Code: <musicextensions>  &nbs...