Quantcast
Channel: Kodi Community Forum - Service Add-ons
Viewing all 218 articles
Browse latest View live

Simkl TV Tracker Update 3.0.0

$
0
0
Image

Official website: https://simkl.com/apps/kodi/

Description:

When you watch 70% of the video on Kodi (configurable in Add-On options), Simkl Add-on will send a ping to the Simkl API that you watched the video and Simkl will mark this video as watched in your Simkl profile.

Simkl Add-On for Kodi can detect and mark TV Show, Anime episodes, and Movies that you watch on your Kodi Media Player.

Even when Kodi could not recognize the video you’re watching, it will send the filename to Simkl as well, which has a better detection library, especially for Anime filenames so everything that you watch can be recognized and marked as watched. Simkl knows what you're watching, tells you episodes you've missed, and connects you to what your friends are into.

Features:
With Simkl you can:
̣─ Keep track of what you've watched
─ Have a cool profile with curious info (Demo profile: https://simkl.com/1/)
─ Connect with friends
─ Compare watchlist with friends so you know what to watch

With this Add-on you can:
─ Scrobble automatically the TV Show or film that you are watching to Simkl

Installation:
─ Open Kodi. Go to System » Settings » Add-ons » Install from repository » Kodi Add-on repository » Services » Simkl TV Tracker and click Install.
─ Now it should show a prompt with instructions to Login. If this doesn't happen, go to Settings » Add-ons » My Add-ons » Services » Simkl » Configure » LogIn

Tested on...
✔ Kodi 16 ─ v1.0.0 Arch Linux (Jan 2017)
✔ Kodi 17 ─ v1.0.4 Arch Linux (Feb 2017)
✔ Kodi 17 ─ v1.0.4 Windows 10 (Feb 2017)
✔ Kodi 18 ─ v2.0.0 Windows 10 (Feb 2019)
✔ Kodi 19 ─ v3.0.0 Windows 10 (March 2021)

FAQ:
- Q: Can I test Dev versions of the addon?
- A: Of course, you have the source on GitHub (Remember to check the branches)

- Q: I found a bug, what should I do?
- A: Reply to this post or report it on GitHub's Issues (Better)

- Q: What are the main ID databases that Simkl uses for better detection?
- A: TVDB for TV Shows, TMDB for movies, and ANIDB for anime

- Q: Do you have Discord?
- A: YES! https://discord.gg/u89XfYn

For more info, please check 
https://simkl.com/apps/kodi/

IFTTT plug in

$
0
0
Is there a IFTTT plugin to use with Kodi 19 ? thx

Boblight stop working on Kodi v19 Matrix

$
0
0
Hello, since I update on v19 boblight no longer works. I have made a fresh install but still the same issue.
I have this line in the log but I can't solved the problem :

2021-04-11 10:59:25.740 T:4992    ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'TypeError'>
                                                   Error Contents: can't concat str to bytes
                                                   Traceback (most recent call last):
                                                     File "C:\Users\H2G2\AppData\Roaming\Kodi\addons\script.xbmc.boblight\default.py", line 242, in <module>
                                                       run_boblight()
                                                     File "C:\Users\H2G2\AppData\Roaming\Kodi\addons\script.xbmc.boblight\default.py", line 193, in run_boblight
                                                       if main.startup() == 0:
                                                     File "C:\Users\H2G2\AppData\Roaming\Kodi\addons\script.xbmc.boblight\default.py", line 130, in startup
                                                       if xbmcgui.Dialog().yesno(__scriptname__, localize(32504) + " " + localize(32509)):
                                                   TypeError: can't concat str to bytes
                                                   -->End of Python script error report<--

If anyone can help me to solve this he will be my hero of the day  Wink . My kodi run on Win10 x64

Version Check Service - Trying to unistall and reinstall

$
0
0
I am trying to reinstall the service version check on Kodi (Matrix, Nvidia Shield, Android TV). For this service / plugin, the uninstall button is greyed out, thus not allowing me to uninstall and reinstall. Is this typical and can I reinstall?

inadyn add-on

$
0
0
Hi, would there be a way to set the update / check timer?

Thanks in advance.

[Linux] script.module.chromium: Chromium service for Kodi

$
0
0
Before I start, this does not give users a browser gui or any kind, but is an addon for developers to use Chromium browser to web scrape.

What is it?:
This addon uses system docker to spawn a Chromium process with gui enabled. Even though gui is enabled inside the docker, your host OS does not need to have a working X11 or any kind of redirection, because the GUI of chromium is running inside Xvfb (Virtual X framebuffer). The spawned Chromium process is enabled with the CDP (Chromium Developer Protocol? or sth like that), so that, and third party client can conenct with websockets and control the browser according to your needs.

How can i use it?:

Depend the addon in addon xml and use following syntax:
 

from chromium import Browser  # import the library

useragent = None  # String value to spoof User-Agent, dont spoof it unless you know what you are doing
loadtimeout = 5  # Maximum time to wait in seconds for Document to load dynamically (time needed for JS or client side scripts to finish manipulating the DOM)
maxtimeout = 15  # Maximum time to wait in seconds, if this times out, tab is closed and return value is what is already received
port = 9222  # the cdp port to conenct to, by default the service is running on 127.0.0.1:9222, so changing his value will not take affect since the service is hardcoded run on 9222, u can change it to connect another instance on your PC for debugging.

# The Browser arguments are default to above

with Browser(useragent, loadtimeout, maxtimeout,port) as browser:
    page = browser.navigate("https://www.google.com")
    #the return value is unicode HTML data

# so simply use:
with Browser() as browser:
    page = browser.navigate("https://www.google.com")


Why would i use it?:
I started this to overcome Cloudflare IUAM mode when using TOR. Unlike normal browsing, TOR browsing is close to impossible thanks to Cloudflare is being a faschist against the requests come from TOR network, and always utilize the Javascript bypass page, and this bypass mechanism is extremely dynamic, complicated, and frequently updated. Therefore i gave up on pure python bypass technics and use this instead, and so far works like charm. And besides, today web sites heavily depend on client side scripting therefore this is kind of a must to scrape stuff from the web.

Which platforms are supported?:
Linux, only linux. I have tested on my Mint Desktop and Corelec STB and everthing is smooth there. It is written PY2 + PY3 compatible so works on Kodi 18 & 19 boh from the same repo. Architecturally, i have infrastructure that can support even from XBMC 14 gotham but dont go that far, i have never test lover than 18. 

This system is using Xvfb which is a linux component, so it wont scale to windows or Android. May be another method can considered for Windows but there is no chance in Androids. At least i dont really care at.

PS: on linux make sure the user that spawns the kodi process has rights to execute docker commands, the service basically automates Docker, so there must a a working docker to sue this. On corelec/libreelec it is based on service.system.docker which comes with the distro, so you dont need to do much.

Advanced usage:

The browser instance has already implemented a websocket connection management, and primitives to execute the CDP commands, so instead of directly using .navigate method you can interact with CDP according to your wish.

Sources:
The code lies below:
https://github.com/hbiyik/repository.biy...e.chromium

The docker files:
https://github.com/hbiyik/docker-xvfb-chromium

The repo itself:
https://github.com/hbiyik/repository.biyik/releases

I highly suggest to use the repo, if you want to do development, there are dependencies for this script which is hard to manage manually.

Todo:
  • Inroduce a 'validation' callback method as an input to navigate method, so that the client will wait until the DOM response is expected, instead of listening DOM events with timer   done in 0.0.2
  • Make the script as program and utilize the settings.xml
  • Make docker settings customizable
  • Make the port customizable? Who needs that? Dunno

Known Issues:
On Libre/Corelec A dialog keeps popping up sayin "xvfb-chromium:kill" however does not really kill, This does not impact the operation but gets kind of boring when it keeps spamming the beeps. I ll look into it. Seems like there is another service monitoring all Libreelec Dockers.

Support thread for Autostop addon

$
0
0
This thread is for supporting the new Autostop service addon.   It is now in the Kodi repository and can be downloaded directly or installed via the Kodi GUI.  


Description:

An addon for Kodi (XBMC) which monitors video and music playback. It allows users to selectively stop paused playback or stop current playback after a certain amount of time.


Main Features:
  • Kodi 19 compatible.
  • Autostop paused playback setting from 0 - 60 minutes in 5 minute intervals.
  • Autostop current playback setting from 0 - 120 minutes in 10 to 30 minute intervals.
  • Automatically engage Kodi screensaver when stopping paused or current playback.
  • Ability to change sleep timer by calling addon from favourites or keyboard.xml (see Readme)

Please feel free to report any issues or feature requests.


Jeff

WatchedList Errors

$
0
0
Good Day,
I had an crash and i needed to start over. So now the WatchedList Add-on will not connect to the MariaDB5 or 10 on my Synology.
Also where is all the DB Files located so i can try and recover if it will let me,
I am getting Open DB Error. Any help on how to fix this please.
Thanks

Mezzmo addon UPnP/DLNA client

$
0
0
I've created an updated release of the Mezzmo Kodi addon.  This version automatically detects the uPNP  server software type and will adjust accordingly to disable Mezzmo specific integration enhancements.  I've tested this version with a number of uPNP servers including Mezzmo, Kodi, SiliconDust and Playon.  All worked as expected except PlayOn, which seems to have some proprietary uPNP usage.  This addon serves up video, music and pictures from uPNP sources.  It also has a uPNP discovery tool which will find all uPNP servers on your network.

Note, this version is for Kodi 19 and higher.  If there is enough interest I can update the current Kodi 18 version for improved multi-server uPNP support.

Feedback welcome.

Jeff

Unaired Episodes

$
0
0
Hello,

I am looking/searching for an addon to show on the local tv series library the unaired episodes.

Thanks in advance.

[RELEASE] service.plexskipinto

$
0
0
PlexSkipInto is a plugin that adds a "skip into" button to a playback of a TV show. Since i wasn't able to figure out where to find intro start/end time of tv show intros this uses metedata from plex media server. If you have PMS but prefer kodi locally like i do this plugin can use what plex has. For this to work you need a plex server with the proper metadata.

Github repository

Image

Is there an add-on that can send IP command to projector based on file name playing

$
0
0
Looking for a solution to control Projector lens memory and motorized masking screen based on movie playing. I can have aspect ratio listed in movie file name such as "movie title (2022) (240)" and would like add-on to send ip command based on aspect ratio in parenthesis. Anything like this exist?

Next step to validate my addon with "Kodi Addon-Checker" ?

$
0
0
Hello, looking for some help here from you guys Kodi addon developers  Wink

I have now created a PR for integration of the addon "service.languagepreferencemanager"  into the official Kodi Repo-scripts repository (see https://forum.kodi.tv/showthread.php?tid=153783&page=20)
Hopefully it could benefit more users in the future that way.

My question is about Kodi Addon-Checker : I have been able to install it locally and validate the code before submitting the PR (after some more cleaning, no error remaining now).

But now my PR seems to be pending the Addon Kodi-Checker run and validation workflow...

Am I the one supposed to do something now (upload my local checker report, or ?) or is it for a "Kodi official approver/reviewer" to run it and then I should just wait for his review ?

Thanks for any advice !

Error on execution : executeJSONRPC

$
0
0
Hello,
I made a script to change the genres directly in kodi (database) and also manage the films in directories
I can do everything except change the location of the film "c22 in the database"
my command to change the location of the movie:

  command = ('{"jsonrpc": "2.0", "method": "VideoLibrary.SetMovieDetails", "id": 1, "params": {"file": "% s", "moviesid":% s} } '% (filecible, self.idfilm))
then:
    data = xbmc.executeJSONRPC (command)
send me an error

Is that in the kodi source changing the location of the movie (database: c22) is allowed?
thank you
best regards ray.lp

What controls projector lens memory?

$
0
0
Is there a solution to automate Projector lens memory and motorized masking screen based on movie aspect ratio, using information in the movie file name to send IP commands?

Synchronize movies I watched FROM Kodi TO IMDB

KODI exit (close program) before HTPC goes into standby mode

$
0
0
[font]Friends, I use HTPC with Kodi Matrix. Tell me the options on how to do my HTPC, which I control from the remote control, close correctly before switching to standby mode. Maybe via cmd? [/font]I didn't google how. [font]Switching to standby mode is done through the power context menu only. [/font]Let me explain why I need it. I watch a TV program as a PVR client. I finished browsing and sent HTPC to standby. After waking up HTPC will try to continue watching last TV channel, but will not be able to, because the PVR server is also sleeping, and TV-addon  reports that the server is not available and crashes. The server needs ~10 seconds to wake up, the KODI wakes it up via wake-on-lan addon.

Problem with add-on Plex (LinuxServer.io)

$
0
0
Good afternoon, I installed last week the Plex add-on for Kodi  and I am having problems with it. Until recently, it was showing me the Plex interface in my computer (http://"ip":32400/manage) but now I get a message saying: 

<Response code="503" title="Maintenance" status="Plex Media Server is currently running database migrations.".
I tried updating the add-on and waited a full day to see if it would update the status and complete the supposed migration. Then, I uninstalled and reinstalled the add-on several times but no solution yet. Is this happening to anyone? 
I have Kodi on an Odroid N2+ with Docker and linuxserver.io installed and updated
 Image

Thank you very much to anyone who can answer me.

Ignore Forced Subtitles plugin

$
0
0
Hi,

This is a simple and small Kodi service that replaces forced subtitles with complete subtitles in the same language.
I built it for myself, but maybe someone else will find it useful. Mostly for those who cannot wait until future versions of Kodi will include (?) an 'ignore forced subtitles' option by default Smile

Ignore Forced Subtitles plugin

Cheers,
A.

Add-on to update collections

$
0
0
I apologize if this topic has already been covered in another exchange, but I'm looking for an add-on that allows me to schedule the day and time for my collections to update. Does anyone know if it exists and if so what is this add-on called? Thank you!!!
Viewing all 218 articles
Browse latest View live