Skip to content

Stremio addon for multiple catalogs of top movies like IMDb Top 250

License

Notifications You must be signed in to change notification settings

Deflix-tv/stremio-top-movies

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stremio-top-movies

Stremio addon for multiple catalogs of top movies:

  • IMDb Top Rated (a.k.a. IMDb Top 250)
  • IMDb Most Popular
  • Top Box Office (US, last weekend)
  • Rotten Tomatoes Certified Fresh Movies (DVD & Streaming)

For film festival catalogs, which this addon also served in the past, please check out https://github.com/Deflix-tv/stremio-film-festivals.

Contents

  1. Install
  2. Run locally
    1. Configuration

Install

This addon is a remote addon, so it's an HTTP web service and Stremio just sends HTTP requests to it. You dont't need to run any untrusted code on your machine.

You only have to enter the addon URL in the search box of the addons section of Stremio, like this:
https://stremio-top-movies.deflix.tv/manifest.json

That's it!

Run locally

Alternatively you can also run the addon locally and use that in Stremio. The addon is written in Go and compiles to a single executable file without dependencies, so it's really easy to run on your machine.

You can use one of the precompiled binaries from GitHub:

  1. Download the binary for your OS from https://github.com/Deflix-tv/stremio-top-movies/releases
  2. Simply run the executable binary
  3. To stop the program press Ctrl-C (or ⌃-C on macOS)

Or use Docker:

  1. docker pull doingodswork/stremio-top-movies
  2. docker run --name stremio-top-movies -v /path/to/data:/data -p 8080:8080 doingodswork/stremio-top-movies
  3. To stop the container: docker stop stremio-top-movies

Then similar to installing the publicly hosted addon you just enter the following URL in the search box of the addon section of Stremio:
http://localhost:8080/manifest.json

Configuration

The following options can be configured via command line argument:

Usage of stremio-top-movies:
  -bindAddr string
        Local interface address to bind to. "localhost" only allows access from the local host. "0.0.0.0" binds to all network interfaces. (default "localhost")
  -cacheAge string
        Max age for a client or proxy cache. The format must be acceptable by Go's 'time.ParseDuration()', for example "24h". (default "24h")
  -dataDir string
        Location of the data directory. It contains CSV files with IMDb IDs and a "metas" subdirectory with meta JSON files (default ".")
  -logLevel string
        Log level to show only logs with the given and more severe levels. Can be "debug", "info", "warn", "error" (default "info")
  -port int
        Port to listen on (default 8080)