Updated Common Problems (markdown)

master
Donald Webster 7 years ago
parent e57cf51f0b
commit e03aee6af9

@ -27,7 +27,7 @@
## Movie File and Folder Naming
* Currently, Radarr requires that each movie be in a folder with the format `Movie Title (Year)/`, optionally `_` or `.` are valid separators. To facilitate correct quality and resolution identification during import, a file name like `Movie Title (Year) [Quality-Resolution].ext` is best, again `_` or `.` are valid separators too.
* A useful tool for making these changes to your collection is [filebot](http://www.filebot.net/#download) which has paid version in both the Apple and Windows stores, but can be found for free on their [SourceForge](https://sourceforge.net/projects/filebot/files/latest/download) site. It has both a GUI and CLI, so you can use whatever you're comfortable with. For the above example, `{ny}` expands to `Name (Year)` and `{vf}` gives the resolution like `1080p`. There is nothing to infer quality, so you can hard code that using something like `{ny} [Bluray-{vf}]` assuming you want to make your entire collection Bluray in quality.
* A useful tool for making these changes to your collection is [filebot](http://www.filebot.net/#download) which has paid version in both the Apple and Windows stores, but can be found for free on their [SourceForge](https://sourceforge.net/projects/filebot/files/latest/download) site. It has both a GUI and CLI, so you can use whatever you're comfortable with. For the above example, `{ny}` expands to `Name (Year)` and `{vf}` gives the resolution like `1080p`. There is nothing to infer quality, so you can fake it using `{ny}/{ny} [{dim[1] >= 720 ? 'Bluray' : 'DVD'}-{vf}]` which will name anything lower than 720p to `[DVD-572p]` and greater or equal to 720p like `[Bluray-1080p]`.
* This limitation is a known source of concern, a [feature request](http://feathub.com/Radarr/Radarr/+29) exists to enable the option to *not* use a folder for each movie and the developers have this in mind for the future.
* The [[Create a Folder for Each Movie]] is a great source for making sure your file and folder structure will work great.

Loading…
Cancel
Save