Radarr Naming Schemes

All about user-defined episode / movie / file name format expressions
Post Reply
User avatar
rednoah
The Source
Posts: 22998
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Radarr Naming Schemes

Post by rednoah »

Radarr and FileBot are both highly customizable when it comes to naming and organizing your media files. The FileBot format engine is programmable and can mimic any Radarr naming scheme to any degree of 1:1 accuracy. However, the examples below prioritize simplicity over 1:1 correctness.



Example 1

Code: Select all

{Movie CleanTitle} {(Release Year)} {tmdb-{TmdbId}} {imdb-{ImdbId}} {edition-{Edition Tags}} {[Quality Full]}{[MediaInfo 3D]}{[MediaInfo VideoDynamicRangeType]}{[Mediainfo AudioCodec}{ Mediainfo AudioChannels]}[{Mediainfo VideoCodec}]{-Release Group}

Format: Select all

{ plex % {" {tmdb-$tmdbid}"} % {" {imdb-$imdbid}"} % {"{edition-$edition}"} % {" [$vs-$vf]"} % {" [$s3d]"} % {" [$hdr]"} % {" [$ac $channels]" } % {" [$vc]"} % {" -$group"} }

Example 2

Code: Select all

{Movie Title} {(Release Year)} {Edition Tags} {Quality Full} {MediaInfo VideoDynamicRange} {MediaInfo AudioCodec} {MediaInfo AudioChannels}

Format: Select all

{ny} {tags} {vs}-{vf} {hdr} {ac} {channels}

Example 3

Code: Select all

{Movie TitleThe} {(Release Year)} [tmbdid-{TmdbId}] [imdbid-{ImdbId}] {edition-{Edition Tags}} {[Quality Full]}{[MediaInfo 3D]}{[MediaInfo VideoDynamicRangeType]}{[Mediainfo AudioCodec}{ Mediainfo AudioChannels}][{Mediainfo VideoCodec}][{MediaInfo VideoBitDepth}]{MediaInfo AudioLanguages}{-Release Group}

Format: Select all

{n.sortName()} ({y}) [tmdbid-{tmdbid}] [imdb-{imdbid}] {"{edition-$edition}"} {vs}-{vf} {s3d} {hdr} {"${bitdepth}bit"} {ac} {channels} {vc} {audioLanguages}{-group}

Example 4

Code: Select all

Avatar (2009) {tmdb-19995}/Avatar (2009) [Bluray-2160p]

Format: Select all

{ ~plex.id % { " [${width >= 1280 ? 'Bluray' : 'DVD'}-${vf}]" } }
** this example assumes that {vs} source media is undefined and so uses {width} to guess the source medium instead


:idea: Please read the FAQ and How to Request Help.
Post Reply