@ -335,7 +334,7 @@ You can repeat this process for as many users as you like.
"language": "English",
"language": "English",
"quality": "HD-1080p",
"quality": "HD-1080p",
"root_folder": "/tv/",
"root_folder": "/tv/",
"tags": {},
"tags": [],
"url": "http://localhost:8989/"
"url": "http://localhost:8989/"
},
},
"trakt": {
"trakt": {
@ -603,7 +602,7 @@ Use filters to specify the movie/shows's country of origin or blacklist (i.e. fi
- Blank list (i.e. `[]`) - Add movies from any country.
- Blank list (i.e. `[]`) - Add movies from any country.
- `ignore` (i.e. `["ignore"]`) Add movies from any country, including ones with no country specified.
- `ignore` (i.e. `["ignore"]`) - Add movies from any country, including ones with no country specified.
`allowed_languages` - Only add movies with these languages. Listed as two-letter language codes.
`allowed_languages` - Only add movies with these languages. Listed as two-letter language codes.
@ -613,7 +612,9 @@ Use filters to specify the movie/shows's country of origin or blacklist (i.e. fi
- Special keywords:
- Special keywords:
- Blank list (i.e. `[]`) - Only add shows that are in English (`en`).
- Blank list (i.e. `[]`) - Add movies with any language.
- `ignore` (i.e. `["ignore"]`) - Add movies with any language, including ones with no language specified.
`blacklisted_genres` - Blacklist certain genres.
`blacklisted_genres` - Blacklist certain genres.
@ -633,9 +634,17 @@ Use filters to specify the movie/shows's country of origin or blacklist (i.e. fi
- Has to be longer than `blacklisted_min_runtime` or else it will be ignored.
- Has to be longer than `blacklisted_min_runtime` or else it will be ignored.
`blacklisted_min_year` - Blacklist release dates before specified year.
`blacklisted_min_year` - Blacklist release dates before specified year. This can be a 4 digit year, `0`, or `-<number of years to go back>` format.
- If `0`, blacklist movies that came out before the current year.
- If `-10`, blacklist movies that came out 10 years before the current year.
`blacklisted_max_year` - Blacklist release dates after specified year.
`blacklisted_max_year` - Blacklist release dates after specified year. This can be a 4 digit year, `0`, or `+<number of years to go forward>` format.
- If `0`, blacklist movies that are coming out after the current year.
- If `+1`, blacklist movies that are coming out after 1 year from current year.
`blacklisted_title_keywords` - Blacklist certain words in titles.
`blacklisted_title_keywords` - Blacklist certain words in titles.
@ -721,7 +730,7 @@ Use filters to specify the movie/shows's country of origin or blacklist (i.e. fi
- Blank list (i.e. `[]`) - Add shows from any country.
- Blank list (i.e. `[]`) - Add shows from any country.
- `ignore` (i.e. `["ignore"]`) Add shows from any country, including ones with no country specified.
- `ignore` (i.e. `["ignore"]`) - Add shows from any country, including ones with no country specified.
`allowed_languages` - Only add shows with these languages.
`allowed_languages` - Only add shows with these languages.
@ -731,7 +740,9 @@ Use filters to specify the movie/shows's country of origin or blacklist (i.e. fi
- Special keywords:
- Special keywords:
- Blank list (i.e. `[]`) - Only add shows that are in English (`en`).
- Blank list (i.e. `[]`) - Add shows with any language.
- `ignore` (i.e. `["ignore"]`) - Add shows with any language, including ones with no language specified.
`blacklisted_genres` - Blacklist certain genres.
`blacklisted_genres` - Blacklist certain genres.
@ -753,9 +764,17 @@ Use filters to specify the movie/shows's country of origin or blacklist (i.e. fi
- Has to be longer than `blacklisted_min_runtime` or else it will be ignored.
- Has to be longer than `blacklisted_min_runtime` or else it will be ignored.
`blacklisted_min_year` - Blacklist release dates before specified year.
`blacklisted_min_year` - Blacklist release dates before specified year. This can be a 4 digit year, `0`, or `-<number of years to go back>` format.
`blacklisted_max_year` - Blacklist release dates after specified year.
- If `0`, blacklist shows that came out before the current year.
- If `-10`, blacklist shows that came out 10 years before the current year.
`blacklisted_max_year` - Blacklist release dates after specified year. This can be a 4 digit year, `0`, or `+<number of years to go forward>` format.
- If `0`, blacklist shows that are coming out after the current year.
- If `+1`, blacklist shows that are coming out after 1 year from current year.
`blacklisted_title_keywords` - Blacklist certain words in titles.
`blacklisted_title_keywords` - Blacklist certain words in titles.
@ -962,7 +981,7 @@ Sonarr configuration.
"language": "English",
"language": "English",
"quality": "HD-1080p",
"quality": "HD-1080p",
"root_folder": "/tv/",
"root_folder": "/tv/",
"tags": {},
"tags": [],
"url": "http://localhost:8989"
"url": "http://localhost:8989"
},
},
```
```
@ -975,55 +994,29 @@ Sonarr configuration.
`root_folder` - Root folder for TV shows.
`root_folder` - Root folder for TV shows.
`tags` - Assign tags to shows based the network it airs on. More details on this below.
`tags` - Assign tags to shows. Tags need to be created in Sonarr first.
`url` - Sonarr's URL.
- Note: If you have URL Base enabled in Sonarr's settings, you will need to add that into the URL as well.
### Tags
The `tags` option allows Sonarr to assign tags to shows from specific television networks, so that Sonarr can filter in/out certain keywords from releases.
**Example:**
To show how tags work, we will create a tag `AMZN` and assign it to certain television networks that usually have AMZN releases.
- Examples:
1. First, we will create a tag in Sonarr (Settings > Indexers > Restrictions).
```json
"tags": ["anime"]
```
Must contain: BluRay, Amazon, AMZN
Must not contain:
Tags: AMZN
```
```
2. And, finally, we will edit the Traktarr config and assign the `AMZN` tag to some networks.
```json
"tags": ["anime", "jap"]
```
```json
```json
"tags": {
"tags": [
"amzn": [
"anime",
"hbo",
"jap"
"amc",
"usa network",
"tnt",
"starz",
"the cw",
"fx",
"fox",
"abc",
"nbc",
"cbs",
"tbs",
"amazon",
"syfy",
"cinemax",
"bravo",
"showtime",
"paramount network"
]
]
}
```
```
`url` - Sonarr's URL.
- Note: If you have URL Base enabled in Sonarr's settings, you will need to add that into the URL as well.
## Trakt
## Trakt
Trakt Authentication info:
Trakt Authentication info:
@ -1214,6 +1207,8 @@ Options:
-s, --sort [rating|release|votes]
-s, --sort [rating|release|votes]
Sort list to process. [default: votes]
Sort list to process. [default: votes]
-rt, --rotten_tomatoes INTEGER Set a minimum Rotten Tomatoes score.
-rt, --rotten_tomatoes INTEGER Set a minimum Rotten Tomatoes score.
-y, --year, --years TEXT Can be a specific year or a range of years to search. For
example, '2000' or '2000-2010'.
-g, --genres TEXT Only add movies from this genre to Radarr. Multiple genres are
-g, --genres TEXT Only add movies from this genre to Radarr. Multiple genres are
specified as a comma-separated list. Use 'ignore' to add movies
specified as a comma-separated list. Use 'ignore' to add movies
from any genre, including ones with no genre specified.
from any genre, including ones with no genre specified.