Quantcast
Channel: Kodi Community Forum - All Forums
Viewing all 85654 articles
Browse latest View live

Add-on errors

$
0
0
Hi everyone,  I suddenly started getting errors on my 2 Kodi Odroi N2 boxes running Coreelec.  The 3 errors I am getting relate to Skinhelpe widget, Kayo and Optus addons.    Log here:  menuroyomu.kodi (paste)

Hopefully I've done that correctly.

Any help would be greatly appreciated.

Mod - My IBM pets (2 x IBM Power7+ 128 CPUs in total)

$
0
0
Hello guys! Want to share with you what I have beneath the table Smile
2 x Power 7+ servers with 512 Gb RAM total, 128 CPUs! 

P.S. Little guy on top is HMC that control those buddies. 
Image

Script Skin Helper Error

$
0
0
Hi!

I have been using Kodi 18.5 and Estuary Mod V2 as a skin for a few years. Today I was seeing some sluggishness so I decided to reinstall Kodi. This worked fine, all services were fine. I restored some of the .XML files I have saved such as sources, advancedsettings, guisettings, etc. though when I did that some of the movie posters failed to load. I decided to re-reinstall Kodi and the skin though now I keep getting a Script Skin Helper service error quite frequently. I am not sure why this is suddenly appearing now.

Any idea what the cause of this is?

tufomagofa.kodi (paste)

Script Skin Helper Error

$
0
0
Hi!

I have been using Kodi 18.5 and Estuary Mod V2 as a skin for a few years. Today I was seeing some sluggishness so I decided to reinstall Kodi. This worked fine, all services were fine. I restored some of the .XML files I have saved such as sources, advancedsettings, guisettings, etc. though when I did that some of the movie posters failed to load. I decided to re-reinstall Kodi and the skin though now I keep getting a Script Skin Helper service error quite frequently. I am not sure why this is suddenly appearing now.

Any idea what the cause of this is?

tufomagofa.kodi (paste)

Can't even download it!

$
0
0
When I try to download Kodi v18.5 "Leia" for raspberry pi from the website i get as a far as a "your download has started" window, but nothing happens, no download.

I've tried using chrome and safari.

Is there a direct link to the download anywhere??

Bug - Keymap editor seems not to save changes

$
0
0
Hi!

I bought Chinese SNES controller, which works totally fine with RetroPie and Kodi. I was able to setup it as SNES controller in Kodi.
Later I wanted to modify R1 & L1 buttons for volume up/down and used keymap editor add-on.

It seems like I am able to change volume up/down, but nothing happens after I save changes.
Reboot did not help. It seems like keymap won't save my settings.

Any workarounds? I just want to use SNES controller instead of Android app on my phone and the only missing thing is volume control. I been trying to fix this for two days and no success Sad 
Thanks in advance.

Explanation needed for clean database & smart playlist functions

$
0
0
I would greatly appreciate if someone would explain the behavior i'm experiencing

Kodi 18.4, platforms win10 & Linux

The `TV` source is added to library, inside are tvshow1, tvshow2 etc, the usual stuff..
TV library is set to use local nfos only
When i delete the tvshow1 on the hard drive and do a `clean library`, kodi removes it from the source&library, as expected

The ting i can't explain is:
The smart playlist with a `TV` source as a `path` still shows the tvshow1, that is, the poster and info, nothing inside
why that playlist can't see that tvshow1 is removed from the library? is that a bug or expected behavior?

tnx

MCE Remote - mapping those last wants

$
0
0
Sorry if this has been covered but the amount of posts is staggering and my searches arent coming up with anything specifically useful for me so far....

. Just moved from Mediaportal to KODI and trying to plug the last gaps when it comes to my remote

Running KODI (leia) on my Win10 machine with a classic Windows Media Remote (Microsoft) - the one that comes with the big nblack USB IR receiver.

Most of what i need is covered by the basics but looking to get the following running if poss:

Green Start button(reomte) to start KODI?
Info (i) button(remote) to do the equivelant of right click with mouse? so i can change info etc

While browsing Videos > Files some MKV files do not show

$
0
0
Hello,

I am running OpenELEC (official) Version: 8.0.4
When I browse my video library using Videos > Files some MKV files do not show in folders. I am pretty certain that with some previous/other distros, all of them where displayed.
Could it be something wrong with the files (they are regular 1080p mkv files) or with my Kodi settings?

Many thanks for any help.

Release - [RELEASE] ORF Radiothek

$
0
0
ORF Radiothek KODI Addon
=======
This Addon provides access to the ORF Radiothek (Austrian public service broadcaster) Streaming Portal (Live Radio, Podcasts, Archive, ...)


Supported platforms
-------------------
Windows, Linux , Android and OSX


Current Features
----------------
* Livestream
* Broadcast with Cue Tracks
* Highlights, Tags, Archive, Podcasts
* Missed a Show
* Search


Legal
-----
This addon provides access to audiostreams/podcasts on the ORF Radiothek Website but is not endorsed, certified or otherwise approved in any way by ORF.


https://github.com/s0faking/plugin.audio.radiothek

My Addons Do Not Show in Kodi

$
0
0
Hello all,

A bit of a puzzle for me.

A Long time ago I created 3 addons that would run a WOL and a windows batch command to shutdown a remote server.

These have worked fine in Win 7 and Kodi 17.  I've now upgraded to Win 10 and Kodi x64 18.1.

I am no programmer and what I do to get my addons into kodi is to drop them directly (within their own folders) into the addons folder where all the other addons live.

I have 3 addons but only 1 is showing in Kodi and I have to manually enable it.  The other 2 are no where to be seen

The working addon has this "addon.xml" file:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.wol"
       name="Start Server"
       version="1.0.0"
       provider-name="FlashPan">
  <requires>
    <import addon="xbmc.python" version="2.25.0"/>
  </requires>
  <extension point="xbmc.python.script"
             library="default.py" />
  <extension point="xbmc.addon.metadata">
    <summary lang="en">Wake up a computer using Wake-On-Lan</summary>
    <description lang="en">Sends a WOL magic packet to a remote computer using its ethernet MAC address</description>
    <platform>all</platform>
  </extension>
</addon>

The non working addon has this "addon.xml" file:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="shutdown server"
       name="Shutdown Server"
       version="1.0.0"
       provider-name="FlashPan">
  <requires>
    <import addon="xbmc.python" version="2.25.0"/>
  </requires>
  <extension point="xbmc.python.script"
             library="shutdownserver.py" />
  <extension point="xbmc.addon.metadata">
    <summary lang="en">Shutdown Remote Windows PC</summary>
    <description lang="en">Runs Batch file in C:\Utils\kodiServerScripts\Shutdown Server</description>
    <platform>all</platform>
  </extension>
</addon>

Any ideas why only 1 addon is visible in 18.1?

Thanks and cheers in advance for any help.

square pixels when playing a video with DRM

$
0
0
Hello,
TV Sony XG9505 with android TV 8.0.0
Kodi 18.5
addon : catch-up TV to watch french Live TV and replay

Playing a video without DRM on a TV channel is no problem.
When I play a video with DRM on the same channel, there are regularly square pixels on the image and distortion.
I have no problem playing this video with DRM on an android tv 7.1.1.1 box with the same kodi and catch-up TV versions
Is there a bug with the kodi player and/or inputstream.adaptive on android TV 8.0.0 ?
Both devices are with widevine L1, I don't understand why it doesn't work well on Sony android TV.

A log when i play video with DRM on Sony TV is here :
ivuhifowun.kodi (paste)

Thank you

Log error

$
0
0
Good afternoon I hope you can help I am gave error messages for check log coming up kiwisotara (paste) any help thank you

Library Cleanup takes a long time

$
0
0
Hi
I have several Windows 10 machines running the latest Kodi.  One takes a long time (10 minutes) to clean the library.  The others take less than a minute.  Any ideas why?

Rename Properties Title of media file

$
0
0
Although the media title which appears in a file explorer directory listing is renamed, the Title identified in the Properties of each media file is not renamed. Is there a means of renaming this title? I do not see an option for this in Settings.

Making a custom Skin for Kodi

$
0
0
Hello everyone,
I am determined to make my own Kodi skin.
I am new to the world of coding so I will be learning how to code during this experiment.
Can someone recommend the first steps to take into doing so?
I've hardly written any code and this is new territory... What tools do you suggest that I use?
I am slightly familiar with how Linux works: I have set the SSH connection and done some minor changes on the Kodi interface (such as splash and logo .pngs; and Home.xml)
My Kodi is running on a Raspberry Pi 3 with OSMC connected to the TV. But I am thinking that perhaps it's better to do this on windows and then install the skin on the pi when it's done.
That being said, I hope you can provide guidance to get this done.
Thank you very much!!
Federico.

sports Addon

$
0
0
I am searching for a working addon that will play replays of ufc fights and boxing.... thanks in advance

tmdb - Added new movie, but it won't scan

$
0
0
I'm running LibreELEC on a RPI3.  I have been using it to play movies in the car for over a year, and when I add a new MP4 or MKV file to my /storage/movies folder and Update Library, it usually scans just fine.

Today, I added "UglyDolls.mp4" and it will not scan / add to my library.  Can anyone advise why this is happening? 

From looking at the log, it seems like it called out to tmdb API and returned an empty <results></results> ??  But I can make the same API call from my Windows PC and I get back results describing the movie.  (I copy/pasted the URL from my log file)  Note: when I did this, both my RPI3 and my Windows PC were connected to the same WIFI network.  Log file was obtained over SSH using PuTTY.

Debug log:
imenudurek.kodi (paste)

Where can I find an update for 'Skin Helper Service Widgets'?

$
0
0
Hi,

I'm still using the original Titan 3.7.x with Kodi 17.6.

Lately, Kodi has updated one of their addods or something, and since then I start getting errors with the notification of 'Skin Helper Service Widgets' regarding some default widgets such as 'Favorites', 'Random Tv Shows' etc.
Also when I go to Edit Shortcuts and open the dialog to choose a source for the widget, the 'Default widgets' shows me an empty list.

How can I fix that?
Is there any update of 'Skin Helper Service Widgets' that maybe could fix that?

Thanks.

SMB shares

$
0
0
Hi,

I am running kodi on a few devices, all streaming from my mac. I have upgraded to Catalina and so cannot use SMBup. I have activated file sharing, and windows file sharing, and have 2 folders form the mac shared and 2 external drives shared.

I can access one of the folders and one external drive from all kodi apps with no issues, but the other folder and shared drive ask for a username and password. I cannot see any difference in the sharing properties for each share. All allow guest access and provide read only access to 'Everyone'.

Can anyone help me work out why it works for some shares and not others?

Thanks,

Nick
Viewing all 85654 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>