Sam-Max / plugin.video.jacktook

A Kodi addon for torrent finding and streaming

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jacktook

A Kodi addon for torrent finding and streaming.

Requirements.

  • Kodi 19+

Features.

Torrent Search:

  • Jackett integration
  • Prowlarr integration
  • Torrentio integration

Torrent Engines:

  • Torrest Integration
  • Real Debrid Integration

Metadata:

  • TMDB Integration
  • AniList Integration
  • Fanart.tv Integration

Others:

  • API calls caching

Installation of this addon (Jacktook)

The recommended way of installing the addon is through its repository, so that any updates will be automatically installed.

You can also install the addon without installing its repository. To do so, get the latest release from github. Please note that, if there are any additional dependencies, they won't be resolved unless the repository is installed.

Steps.

  1. Install this addon (recommended way of installing the addon is through its repository)

  2. Add configuration on addon settings to connect with Jackett, Prowlarr or Torrentio.

  3. Install Torrest addon. Torrest

Notes:

  1. Jackett and Prowlarr are optional if using Torrentio.
  2. Torrest is optional if using Debrid service.
  3. Prowlarr IndexerIds and Anime IndexerIds fields are comma separated trackers ids without space. Ex. 12,13,14. (from version 0.1.5)
  4. When using Jackett or Prowlarr with Debrid don't add many trackers and avoid trackers that gives you torrent files instead of magnet links, or select on trackers options if available to retrieve magnets as priority, to improve search speed and results.
  5. You can deploy/install on a remote server (instructions more below) the Torrest Service(torrent client that comes built-in on Torrest Addon that provides an API specially made for streaming). After that, you need to configure Torrest Addon with the Torrest Service IP/Domain and Port.

How to run Jackett service using Docker:

Detailed instructions are available at LinuxServer.io Jackett Docker

How to run Prowlarr service using Docker:

Detailed instructions are available at Prowlarr Website

How to run Torrest service using Docker (optional):

  1. Create a Dockerfile with the following content (make sure to check before the latest VERSION of the binary and your OS and ARCH and update accordingly).
FROM ubuntu:22.04

RUN apt-get update && apt-get install -y curl unzip

ARG VERSION=0.0.5 OS=linux ARCH=x64

RUN curl -L https://github.com/i96751414/torrest-cpp/releases/download/v${VERSION}/torrest.${VERSION}.${OS}_${ARCH}.zip -o torrest.zip \
    && unzip torrest.zip -d /usr/local/lib \
    && rm torrest.zip

RUN chmod +x /usr/local/lib/torrest

CMD ["/usr/local/lib/torrest", "--log-level", "INFO"]
  1. Build the Dockerfile

    docker build -t torrest-cpp .

  2. Run the container on port 8080 (default port).

    docker run -p 8080:8080 --name torrest-service torrest-cpp

Screenshots:

Disclaimer:

This addon doesn't get sources by itself on torrent websites for legal reason and it should only be used to access movies and TV shows not protected by copyright.

About

A Kodi addon for torrent finding and streaming

License:GNU General Public License v3.0


Languages

Language:Python 100.0%