Skip to content

Set quality profile and add Alexa card with artwork

Latest
Compare
Choose a tag to compare
@josephschmitt josephschmitt released this 02 Jul 04:18
· 4 commits to master since this release

Two major feature additions:

New config option for choosing a quality profile

You can now optionally supply a key called "quality" for each provider that matches the quality you want the media to download at. Note that the name of the quality has to match exactly what it's called in Sonarr or Radarr for it to work. Example:

  "server": {...}
  "movies": {
    "provider": "radarr",
    "server": {...},
    "quality": "HD-1080p"
  },
  "shows": {
    "provider": "sonarr",
    "server": {...},
    "quality": "HDTV-1080p"
  }

If you don't set a quality, it'll use whatever the first quality profile from the API is, usually "Any".

Support for displaying cards in the Alexa app

This requires providing an API key for TMDB, which is where we get the artwork from. You can do so in the config in the new artwork section:

  "server": {...},
  "movies": {...},
  "shows": {...},
  "artwork": {
    "tmdbApiKey": "abcdefghijklmnopqrstuvwxyz123456"
  }

Once configured correctly, a card will be displayed for Movies and Shows in the Alexa app (or in the Echo Show if you have one) after checking if a movie or show is already on your list, or after adding a new movie or show.