- Copy/Rename config.yml.example to
config.yml - Update
config.ymlas needed.- See Configuration for further explanation
- Bring up app using provided docker-compose.yml
helm repo add renamarr https://hollanbm.github.io/renamarr/
helm repo update- Copy/Rename values.yaml.example to
values.yaml - Update
values.yamlas needed.- See Configuration for further explanation
helm install my-renamarr renamarr/renamarr -f values.yaml
This job uses the Sonarr API/Radarr API to do the following
- Iterate over all items (Movies or Series)
- Checks if any items need to be renamed
- Radarr get_api_v3_rename
- Sonarr get_api_v3_rename
- Triggers a rename on any item that need be renamed
- Series renames are batched up, for one rename call per series
- Movie renames are initiated per movie.
- Example, 1 movie, 2 files. There will be 2 rename API calls
- Checks if any items need to be renamed
This config option is useful if you have audio/video codec information as part of your mediaformat, and you are transcoding files after import. This will initiate a rescan of the files in your library, so that the mediainfo will be udpated. Then renamarr will come through and detect changes, and rename the files
This config option will rename series folders, when they no longer match your configured MediaFormat
- uses /api/v3/series/{id}/folder endpoint to determine if the series folder requires an update
- uses /api/v3/series/editor endpoint to update series rootFolderPath to it's current value
- moving the folder in place
- Series are processed in bulk at the end of the run, per root folder
This job uses the Sonarr API to do the following
- Iterate over continuing series
- If a series has an episode airing within
config.sonarr[].series_scanner.hours_before_air- default value of 4, max value of 12
- OR
- An episode that has aired previously
- With a title of TBA (excluding specials)
- will trigger a series refresh, to hopefully pull new info from The TVDB
- If a series has an episode airing within
This should prevent too many API calls to the TVDB, refreshing individual series, hourly
The application run immediately on startup, and then continue to schedule jobs every hour (+- 5 minutes) after the first execution.
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
sonarr |
Array | Yes | [] | One or more sonarr instances |
sonarr[].name |
string | Yes | N/A | user friendly instance name, used in log messages |
sonarr[].url |
string | Yes | N/A | url for sonarr instance |
sonarr[].api_key |
string | Yes | N/A | api_key for sonarr instance |
sonarr[].series_scanner.enabled |
boolean | No | False | enables/disables series_scanner functionality |
sonarr[].series_scanner.hourly_job |
boolean | No | False | disables hourly job. App will exit after first execution |
sonarr[].series_scanner.hours_before_air |
integer | No | 4 | The number of hours before an episode has aired, to trigger a rescan when title is TBA |
sonarr[].renamarr.enabled |
boolean | No | False | enables/disables renamarr functionality |
sonarr[].renamarr.hourly_job |
boolean | No | False | disables hourly job. App will exit after first execution |
sonarr[].renamarr.analyze_files |
boolean | No | False | This will initiate a rescan of the files in your library. This is helpful if you are transcoding files, and the audio/video codecs have changed. |
sonarr[].renamarr.rename_folders |
boolean | No | False | This will rename series folders when the current series folder no longer matches your MediaFormat |
radarr[].renamarr.enabled |
boolean | No | False | enables/disables renamarr functionality |
radarr[].renamarr.hourly_job |
boolean | No | False | disables hourly job. App will exit after first execution |
radarr[].renamarr.analyze_files |
boolean | No | False | This will initiate a rescan of the files in your library. This is helpful if you are transcoding files, and the audio/video codecs have changed. |
There is a devcontainer provided; it is optional but recommended. DevContainer's in VS Code
You will need to create config.yml in the root of the repo, to mount your config within the devcontainer
$ poetry install
$ poetry run python src/main.py$ pytest