crash on start

Hi, im using kodi 1.73 krypton on windows 10. It's a fresh install, but kodi still crashing on start... Here there is a log https://pastebin.com/y7xwMX8L Any ideas?

Exodus

So I use Exodus on Kodi to watch tv shows that aren't on Canadian Netflix. Just yesterday I went onto Kodi to watch a tv show but it wouldn't load. I also can't search for anything. I'm not sure if it's just me and I'm also not sure if it's Exodus or K...

27 Spanish IPTV Channels M3U Playlist (05-25)

Live Streams, spanish, news, movies, sports, entertainment, documentary, kids channels, 25-05-2017 espana iptv m3u playlist for kodi, acestream, vlc player, simpletv, ott player: | LA SEXTA HD | AMC HD | ANTENA 3 HD | FOX LIFE HD | FOX HD | COSMO HD | COMEDY CENTRAL HD | HOLLYWOOD HD | TELECINCO HD | LA […]

Kodi ignores LIRC after upgrade to 17.3

I updated my Kodi install on Ubuntu 17.04 today, now my IR remote is ignored by Kodi. LIRC still works because "irw" give out correct information, and because irexec is working. Lircmap.xml is still there, I checked. Thanks in advance

Krypton 17.3 Nvidia Shield TV Errors In Kodi Log

Below are errors found in the Kodi Log, If anyone could point me how I can resolve this, please let me know. ERROR: Window Translator: Can't find window files 15:45:02.751 T:137909797968 ERROR: Window Translator: Can't find window pvrosddirector 1...

how to run Kodi 17.3 on tube tv

My large screen tube type tv runs Kodi 16.1 Jarvis well but screen goes black when I try to run Kodi 17.3. This same device works fine on my flat screen TV. How can I fix this without buying another large flat screen tv?

Actions on playing video

What happens when I play (fullscreen) a video, fe by pressing OK on movie name in MyVideoNav (I am looking at Estuary)? I imagine it goes like this: - Kodi plays video full screen - Now I press OK on remote - Kodi activates VideoFullScreen and popula...

TVNAMER replacement – Tool to rename and move TVShow

Hello all, I am currently using TVNAMER (a script to rename the tv show with the name of the episode from thetvdb and then move the file into the right tv show folder) however, they have updated their API and TVNAMER is regularly reporting errors. W...

32 Polskie IPTV Channels M3U Playlist (05-25)

Live Streams, polish, news, movies, sports, entertainment, documentary, kids channels, 25-05-2017 polska iptv m3u playlist for kodi, acestream, vlc player, simpletv, ott player: | Disney Junior | Nat Geo People HD | Universal HD | Lifetime HD | 13 Ulica HD | SciFi Universal | E! | TLC HD | Cartoon Network HD | Lifetime HD | […]

[split] Kodi 17 crackling audio

I've been getting the same problem since I upgraded to 17.1 - everything was fine on 16. Here's the log https://pastebin.com/SkMapiUk Cheers Kev

Show rating of movies in media flags!

Hello Everyone,

I was annoyed by the fact that there was no way to see the IMDB rating of a movie without having to order them by rating. I like to order my movies by title, but I also wan't to see the IMDB rating. I saw this question popping by multiple times on this forum, so I started looking into the code. I found a solution to show the score like this:
[Image: Se4d_Bg.jpg]

As you can see in the bottom right corner, left to the quality, it now shows the rating of a movie! Unfortunately, I was unable to add the text "Rating" or what so ever.
Here's what you have to do to get the rating if you have installed Kodi on a PC:
1. Open the includes.xml file located in C:\Program Files (x86)\Kodi\addons\skin.estuary\xml\ or C:\Program Files\Kodi\addons\skin.estuary\xml\ depending on your OS.
2. Edit this file with Notepad (or Notepad++)
3. Go to line 414 (just after this:

Code:
            <include content="MediaFlag">
                <param name="texture" value="$INFO[ListItem.AudioChannels,flags/audiochannel/,.png]" />
                <param name="visible" value="!String.IsEmpty(ListItem.AudioChannels)" />
            </include>
            <include content="MediaFlag">
                <param name="texture" value="$INFO[ListItem.AudioCodec,flags/audiocodec/,.png]" />
                <param name="visible" value="!String.IsEmpty(ListItem.AudioCodec)" />
            </include>

and insert the following code after that:
Code:
            <control type="group">
                <width>115</width>
                <visible>!String.IsEmpty(ListItem.Rating)</visible>
                <control type="label">
                    <width>115</width>
                    <height>60</height>
                    <align>center</align>
                    <aligny>center</aligny>
                    <label>$INFO[ListItem.Rating]</label>
                    <font>font_flag</font>
                </control>
                <include content="MediaFlag">
                    <param name="texture" value="flags/flag.png" />
                </include>
            </control>

Restart Kodi and this should do the trick!
It would be very nice if the developer(s) of the skin would add this option by default Smile