Fixed missed edits

Abzie 2017-02-04 23:55:52 +00:00
parent bfec6f31a4
commit 54cb546dde
1 changed files with 5 additions and 5 deletions

@ -2,7 +2,7 @@ If you're looking to trigger a custom script in your download client to tell Rad
### Overview ###
Radarr can execute a custom script when new episodes are imported or a series is renamed, depending on the which action occurred the parameters will be different. Parameters are passed to the script through environment variables (allowing for more flexibility in what we send to the script and not having to worry about a particular order). In all cases the Environment Variables Radarr sends will be prefixed with `Radarr` and converted to lowercase, the `Series_Id` will appear as `radarr_series_id`.
Radarr can execute a custom script when new episodes are imported or a series is renamed, depending on the which action occurred the parameters will be different. Parameters are passed to the script through environment variables (allowing for more flexibility in what we send to the script and not having to worry about a particular order). In all cases the Environment Variables Radarr sends will be prefixed with `Radarr` and converted to lowercase, the `Movie_Id` will appear as `radarr_movie_id`.
### Environment Variables ###
@ -13,7 +13,7 @@ Radarr can execute a custom script when new episodes are imported or a series is
| EventType | Grab|
| Movie_Id | Internal ID of the movie|
| Movie_Title| Title of the movie|
| Movie_ImdbId| imdb id for the series |
| Movie_ImdbId| imdb id for the movie |
| Release_Title | NZB/Torrent title |
| Release_Indexer | Indexer where the release was grabbed |
| Release_Size | Size of the release reported by the indexer |
@ -28,9 +28,9 @@ Radarr can execute a custom script when new episodes are imported or a series is
| Movie_Title | Title of the movie |
| Movie_Path | Full path to the movie |
| Movie_ImdbId | IMDB ID for the movie |
| MovieFile_Id | Internal ID of the episode file |
| MovieFile_RelativePath | Path to the episode file relative to the movie' path |
| MovieFile_Path | Full path to the episode file |
| MovieFile_Id | Internal ID of the movie file |
| MovieFile_RelativePath | Path to the movie file relative to the movie' path |
| MovieFile_Path | Full path to the movie file |
| MovieFile_Quality | Quality name from Radarr |
| MovieFile_QualityVersion | 1 is the default, 2 for proper, 3+ could be used for anime versions |
| MovieFile_ReleaseGroup | Release group, will not be set if it is unknown |