I want my Filebot movie naming format to match that of my Radarr naming format

All about user-defined episode / movie / file name format expressions
Post Reply
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

Recently, I deployed a Radarr 4K instance, and for that instance I am using a naming scheme provided by Trash Guides

My Radarr naming format looks like this:

Code: Select all

 {Movie CleanTitle} {(Release Year)} {tmdb-{TmdbId}} - {{Edition Tags}} {[MediaInfo 3D]}{[Custom Formats]}{[Quality Full]}{[Mediainfo AudioCodec}{ Mediainfo AudioChannels]}{[MediaInfo VideoDynamicRangeType]}{[Mediainfo VideoCodec]}{-Release Group}
My Filebot naming format looks like this:

Format: Select all

C:/movie/{ny}/{ny} {vs.upperInitial().lowerTrail()}-{vf} {ac} {channels}
With Radarr, I get this output:

Code: Select all

Tombstone (1993) {tmdb-11969} - [Bluray-2160p][FLAC 2.0][DV HDR10][x265].mkv
With Filebot, I get this output:

Code: Select all

Hannibal (2001) Bluray-2160p AAC 5.1.mkv
Is there a way I can get some help to let my Filebot naming script match that of Radarr?
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

:arrow: You can copy & paste bits & pieces from the Plex Naming Schemes and Radarr Naming Schemes examples.

e.g.

Format: Select all

X:/Media/{ plex.id % {" - [$vs-$vf]"} % {"[$ac $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

I don't know if i understand what you are saying.

Is this the way to solve my issue by using this:

Format: Select all

X:/Media/{ plex.id % {" - [$vs-$vf]"} % {"[$ac $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }
Or was it just an example?

You said, "You can copy & paste bits & pieces from the Plex Naming Schemes and Radarr Naming Schemes examples"

That is exactly what I showed in the examples that I post. I showed the Plex naming scheme I got from Trash Guides, and I showed you the Radarr naming scheme, which I got from you years ago

So i don't understand what you mean
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

yellowdaemon wrote: 22 Jul 2026, 08:28 Is this the way to solve my issue by using this:

Format: Select all

X:/Media/{ plex.id % {" - [$vs-$vf]"} % {"[$ac $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }
Or was it just an example?
:arrow: This is an example to get you started. It'll do what you want as-is, as far as I can tell at this point anyway. Try it. See what it does. Modify as needed, or give us feedback so we can help you modify as needed.



rednoah wrote: 22 Jul 2026, 03:00 You can copy & paste bits & pieces from the Plex Naming Schemes and Radarr Naming Schemes examples.
:idea: Although the example above will likely get you sorted with just blind copy & paste, I am working under the assumption that you also want to know how that example works and how I came up piece of example code. What does plex.id do? What does % {" - [$vs-$vf]"} do? And so on. Plex Naming Schemes will explain that in detail and provide additional examples.
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

I got you. Yes! As you describe, I will try to tweak it myself, and I now understand where I can find information about it. I will try to see if it fits my needs.

Thank you for your help

How can I process the existing movie folders and movies to match the new naming format scheme?
Is it something I need to do in Radarr, or can I run a Filebot script to do it? I have Filebot running on Windows and on Synology
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

yellowdaemon wrote: 22 Jul 2026, 10:33 How can I process the existing movie folders and movies to match the new naming format scheme?
:arrow: As far as FileBot is concerned, there's no difference between processing new files or existing files. I'd just use the FileBot Desktop application as usual from your Windows Desktop and process files remotely via your network share:



:idea: If your network share is very slow, then running FileBot on device or with Optimizations for Remote File Systems is possible, but I wouldn't worry about that unless you actually have an issue with the FileBot Desktop application not processing your files fast enough. A typical home network (even on WiFi) is plenty fast but of course much slower than a built-in SSD.


:idea: I can't give you much advice on Radarr, but I would assume that you might need to click some kind of Rescan / Refresh button after you have moved files with FileBot, so that Radarr is aware of the new file paths.
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

The rename works well for new files, but all my current files are structured in the respective movie folder and movie name. If i use the method you showed above it will rename all the movies but it will also create new folders. I want something where it renamed the movie folder and file, without creating new ones.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

i use the script you provided earlier X:/Media/{ plex.id % {" - [$vs-$vf]"} % {"[$ac $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }

But the script is not working like it should.

This is the output i get from Radarr naming format:

The Nun (2018) {tmdb-439079} - [Bluray-2160p][TrueHD Atmos 7.1][DV HDR10][h265]-MgB.mkv

This is the output i get with the new script:

C:/movie/movie/The Nun (2018) - [BluRay-2160p][MLP 7.1][DV+HDR10][HEVC]-MgB.mkv

I don't know why a subdirectory movie is created

I only use this script: C:/movie/{ plex.id % {" - [$vs-$vf]"} % {"[$ac $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} } where i change X:/media to C:/movie
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

:arrow: If you want to rename files in-place, then you simply need to modify your custom format to create just a file name as opposed to a complete file path, like so:

Format: Select all

{plex.name} {"{tmdb-$tmdbid}"} - {"[$vs-$vf]"}{"[$ac $channels]" }{"[$hdr]"}{"[$vc]"}{"-$group"}


:idea: In case you're curious, the Movies / TV Shows category folder level and the movie name folder level are part of the {plex} binding. The advanced {plex} operators can be used if you want to use the built-in Plex naming scheme (i.e. a complete file path) to some degree but modify things here or there, e.g. remove the category folder level. That said, if you're renaming files in place then only {plex.name} (i.e. the file name bit of the Plex file path) is relevant for your use case.
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

I don't get what you are trying to say.

Do you mean that if I want to remove the subdirectory movie i need to adjust the the advance {plex} operators?
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

rednoah wrote: 22 Jul 2026, 12:00 :arrow: If you want to rename files in-place, then you simply need to modify your custom format to create just a file name as opposed to a complete file path, like so:

Format: Select all

{plex.name} {"{tmdb-$tmdbid}"} - {"[$vs-$vf]"}{"[$ac $channels]" }{"[$hdr]"}{"[$vc]"}{"-$group"}


:idea: In case you're curious, the Movies / TV Shows category folder level and the movie name folder level are part of the {plex} binding. The advanced {plex} operators can be used if you want to use the built-in Plex naming scheme (i.e. a complete file path) to some degree but modify things here or there, e.g. remove the category folder level. That said, if you're renaming files in place then only {plex.name} (i.e. the file name bit of the Plex file path) is relevant for your use case.
What I want is to rename the movie folder and the movie inside it. If I follow the example in the video, I would be able to create a new folder and a corresponding new movie file in that folder according to the new naming format. That would mean that i will have to delete all the old movie folders. I want it to rename the movie folder and the files in the folder without creating new folders and files
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

Alright, lets go back to organising files as originally discussed. As far as FileBot is concerned, you decide the file path you want via your custom format, and then FileBot will make it happen. It's that simple.

Let's assume you want:
* movie file names as discussed above
* each movie file in its own movie folder named using the Avatar (2009) {tmdb-19995} pattern (NOTE: this is my educated guess)
* each movie folder in your C:\movie root folder as discussed above


:arrow: Here's a custom format that will generate the file path you want as best as I can guess at this point:

Format: Select all

C:/movie/{ ~plex.id % {" {tmdb-$tmdbid}"} % {" - [$vs-$vf]"} % {"[$ac $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }

Code: Select all

C:/movie/Avatar (2009) {tmdb-19995}/Avatar (2009) {tmdb-19995} - [BluRay-2160p][AAC 5.1][HDR10][ATEME]
* movies root folder = C:/movie
* movie folder = Avatar (2009) {tmdb-19995}
* movie file name = Avatar (2009) {tmdb-19995} - [BluRay-2160p][AAC 5.1][HDR10][ATEME]



:idea: FileBot will automatically create folders / delete empty folders as needed to create the file structure you want, but notably might not migrate existing companion files. The latter can be enabled if needed though.
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

With the last format, it works as expected. Thank you for your help.

I have only one question left regarding that format;

With Radarr, I get this: [TrueHD Atmos 7.1], but with your format, I got this: [MLP 7.1]

Is there a reason that I get different ac channels?
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

:idea: I don't know how Radarr works exactly.

:arrow: I can however tell you exactly how FileBot works if you share the MediaInfo table of the file at hand. Let's have a look and find out what the file itself says.
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

Properties: Select all

[General]
Count                       : 359
StreamCount                 : 1
StreamKind                  : General
StreamKind/String           : General
StreamKindID                : 0
UniqueID                    : 197803539694033366943164898667608166722
UniqueID/String             : 197803539694033366943164898667608166722 (0x94CF93761033A51534283AC23DD45142)
VideoCount                  : 1
AudioCount                  : 2
TextCount                   : 35
MenuCount                   : 1
Video_Format_List           : HEVC
Video_Format_WithHint_List  : HEVC
Video_Codec_List            : HEVC
Video_Language_List         : en
Audio_Format_List           : MLP FBA 16-ch / E-AC-3 JOC
Audio_Format_WithHint_List  : MLP FBA 16-ch / E-AC-3 JOC
Audio_Codec_List            : MLP FBA 16-ch / E-AC-3 JOC
Audio_Language_List         : en / en
Audio_Channels_Total        : 14
Text_Format_List            : PGS / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8
Text_Format_WithHint_List   : PGS / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8
Text_Codec_List             : PGS / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8 / UTF-8
Text_Language_List          : en / en / en / ar / bg / zh / zh / zh / cs / da / nl / et / fi / fr / de / el / he / hu / id / it / ja / ko / lv / lt / no / pl / pt / pt / ru / sl / es / es / sv / th / tr
Format                      : Matroska
Format/String               : Matroska
Format/Url                  : https://matroska.org/downloads/windows.html
Format/Extensions           : mkv mk3d mka mks
Format_Commercial           : Matroska
Format_Version              : Version 2
FileSize                    : 20667577047
FileSize/String             : 19.2 GiB
FileSize/String1            : 19 GiB
FileSize/String2            : 19 GiB
FileSize/String3            : 19.2 GiB
FileSize/String4            : 19.25 GiB
Duration                    : 5793704
Duration/String             : 1h 36mn
Duration/String1            : 1h 36mn 33s 704ms
Duration/String2            : 1h 36mn
Duration/String3            : 01:36:33.704
Duration/String4            : 01:36:27:22
Duration/String5            : 01:36:33.704 (01:36:27:22)
OverallBitRate_Mode         : VBR
OverallBitRate_Mode/String  : VBR
OverallBitRate              : 28537981
OverallBitRate/String       : 28.5 Mbps
FrameRate                   : 23.976
FrameRate/String            : 23.976 fps
FrameCount                  : 138910
StreamSize                  : 9876154
StreamSize/String           : 9.42 MiB (0%)
StreamSize/String1          : 9 MiB
StreamSize/String2          : 9.4 MiB
StreamSize/String3          : 9.42 MiB
StreamSize/String4          : 9.419 MiB
StreamSize/String5          : 9.42 MiB (0%)
StreamSize_Proportion       : 0.00048
IsStreamable                : Yes
Title                       : The Nun 2018 4K UHD BluRay 2160p DoVi HDR TrueHD 7.1 Atmos H.265-MgB
Movie                       : The Nun 2018 4K UHD BluRay 2160p DoVi HDR TrueHD 7.1 Atmos H.265-MgB
Encoded_Date                : 2023-11-21 16:47:09 UTC
Encoded_Application         : MakeMKV v1.17.2 win(x64-release)
Encoded_Application/String  : MakeMKV 1.17.2 win(x64-release)
Encoded_Application_Name    : MakeMKV
Encoded_Application_Version : 1.17.2 win(x64-release)
Encoded_Library             : libmakemkv v1.17.2 (1.3.10/1.5.2) win(x64-release)
Encoded_Library/String      : libmakemkv 1.17.2 (1.3.10/1.5.2) win(x64-release)
Encoded_Library_Name        : libmakemkv
Encoded_Library_Version     : 1.17.2 (1.3.10/1.5.2) win(x64-release)

[Video]
Count                            : 398
StreamCount                      : 1
StreamKind                       : Video
StreamKind/String                : Video
StreamKindID                     : 0
StreamOrder                      : 0
ID                               : 1
ID/String                        : 1
UniqueID                         : 1
Format                           : HEVC
Format/String                    : HEVC
Format/Info                      : High Efficiency Video Coding
Format/Url                       : http://www.itu.int
Format_Commercial                : HEVC
Format_Profile                   : Main 10@L5@High
HDR_Format                       : Dolby Vision / SMPTE ST 2086
HDR_Format/String                : Dolby Vision, Version 1.0, Profile 8.6, dvhe.08.06, BL+RPU, no metadata compression, Blu-ray compatible / SMPTE ST 2086, Version HDR10, HDR10 compatible
HDR_Format_Commercial            : Blu-ray / HDR10
HDR_Format_Version               : 1.0 /
HDR_Format_Profile               : dvhe.08 /
HDR_Format_Level                 : 06 /
HDR_Format_Settings              : BL+RPU /
HDR_Format_Compression           : None /
HDR_Format_Compatibility         : Blu-ray / HDR10
InternetMediaType                : video/H265
CodecID                          : V_MPEGH/ISO/HEVC
Duration                         : 5793704.583333
Duration/String                  : 1h 36mn
Duration/String1                 : 1h 36mn 33s 704ms
Duration/String2                 : 1h 36mn
Duration/String3                 : 01:36:33.704
Duration/String4                 : 01:36:27:22
Duration/String5                 : 01:36:33.704 (01:36:27:22)
BitRate                          : 24459558
BitRate/String                   : 24.5 Mbps
Width                            : 3840
Width/String                     : 3840 pixel
Height                           : 2160
Height/String                    : 2160 pixel
Sampled_Width                    : 3840
Sampled_Height                   : 2160
PixelAspectRatio                 : 1.000
DisplayAspectRatio               : 1.778
DisplayAspectRatio/String        : 16:9
FrameRate_Mode                   : CFR
FrameRate_Mode/String            : CFR
FrameRate                        : 23.976
FrameRate/String                 : 23.976 (24000/1001) fps
FrameRate_Num                    : 24000
FrameRate_Den                    : 1001
FrameCount                       : 138910
ColorSpace                       : YUV
ChromaSubsampling                : 4:2:0
ChromaSubsampling/String         : 4:2:0 (Type 2)
ChromaSubsampling_Position       : Type 2
BitDepth                         : 10
BitDepth/String                  : 10 bit
Bits-(Pixel*Frame)               : 0.123
Delay                            : 0
Delay/String3                    : 00:00:00.000
Delay/String4                    : 00:00:00:00
Delay/String5                    : 00:00:00.000 (00:00:00:00)
Delay_Source                     : Container
Delay_Source/String              : Container
StreamSize                       : 17713930001
StreamSize/String                : 16.5 GiB (86%)
StreamSize/String1               : 16 GiB
StreamSize/String2               : 16 GiB
StreamSize/String3               : 16.5 GiB
StreamSize/String4               : 16.50 GiB
StreamSize/String5               : 16.5 GiB (86%)
StreamSize_Proportion            : 0.85709
Title                            : The Nun 2018 4K UHD BluRay 2160p DoVi HDR By MgB
Language                         : en
Language/String                  : en
Language/String1                 : en
Language/String2                 : en
Language/String3                 : eng
Language/String4                 : en
Default                          : No
Default/String                   : No
Forced                           : No
Forced/String                    : No
colour_description_present       : Yes
colour_description_present_Sourc : Stream
colour_range                     : Limited
colour_range_Source              : Stream
colour_primaries                 : BT.2020
colour_primaries_Source          : Stream
transfer_characteristics         : PQ
transfer_characteristics_Source  : Stream
matrix_coefficients              : BT.2020 non-constant
matrix_coefficients_Source       : Stream
MasteringDisplay_ColorPrimaries  : Display P3
MasteringDisplay_ColorPrimaries_ : Stream
MasteringDisplay_Luminance       : min: 0.0050 cd/m2, max: 4000 cd/m2
MasteringDisplay_Luminance_Sourc : Stream
MasteringDisplay_Luminance_Min   : 0.0050
MasteringDisplay_Luminance_Max   : 4000
MaxCLL                           : 568
MaxCLL/String                    : 568 cd/m2
MaxCLL_Source                    : Stream
MaxFALL                          : 141
MaxFALL/String                   : 141 cd/m2
MaxFALL_Source                   : Stream

[Audio]
Count                     : 289
StreamCount               : 2
StreamKind                : Audio
StreamKind/String         : Audio
StreamKindID              : 0
StreamKindPos             : 1
StreamOrder               : 1
ID                        : 2
ID/String                 : 2
UniqueID                  : 2
Format                    : MLP FBA
Format/String             : MLP FBA 16-ch
Format/Info               : Meridian Lossless Packing FBA with 16-channel presentation
Format_Commercial         : Dolby TrueHD with Dolby Atmos
Format_Commercial_IfAny   : Dolby TrueHD with Dolby Atmos
Format_AdditionalFeatures : 16-ch
CodecID                   : A_TRUEHD
CodecID/Url               : http://www.dolby.com/consumer/technology/trueHD.html
Duration                  : 5793705.833333
Duration/String           : 1h 36mn
Duration/String1          : 1h 36mn 33s 706ms
Duration/String2          : 1h 36mn
Duration/String3          : 01:36:33.706
Duration/String5          : 01:36:33.706
BitRate_Mode              : VBR
BitRate_Mode/String       : VBR
BitRate                   : 3272414
BitRate/String            : 3272 Kbps
BitRate_Maximum           : 5742000
BitRate_Maximum/String    : 5742 Kbps
Channel(s)                : 8
Channel(s)/String         : 8 channel
ChannelPositions          : Front: L C R, Side: L R, Back: L R, LFE
ChannelPositions/String2  : 3/2/2.1
ChannelLayout             : L R C LFE Ls Rs Lb Rb
SamplesPerFrame           : 40
SamplingRate              : 48000
SamplingRate/String       : 48.0 KHz
SamplingCount             : 278097880
FrameRate                 : 1200.000
FrameRate/String          : 1200.000 fps (40 SPF)
FrameRate_Num             : 1200
FrameRate_Den             : 1
FrameCount                : 6952447
BitDepth                  : 24
BitDepth/String           : 24 bit
Compression_Mode          : Lossless
Compression_Mode/String   : Lossless
Delay                     : 0
Delay/String3             : 00:00:00.000
Delay/String5             : 00:00:00.000
Delay_Source              : Container
Delay_Source/String       : Container
Video_Delay               : 0
Video_Delay/String3       : 00:00:00.000
Video_Delay/String5       : 00:00:00.000
StreamSize                : 2369925366
StreamSize/String         : 2.21 GiB (11%)
StreamSize/String1        : 2 GiB
StreamSize/String2        : 2.2 GiB
StreamSize/String3        : 2.21 GiB
StreamSize/String4        : 2.207 GiB
StreamSize/String5        : 2.21 GiB (11%)
StreamSize_Proportion     : 0.11467
Title                     : English TrueHD Atmos 7.1 @ 3272 Kbps - Original
Language                  : en
Language/String           : en
Language/String1          : en
Language/String2          : en
Language/String3          : eng
Language/String4          : en
Default                   : Yes
Default/String            : Yes
Forced                    : No
Forced/String             : No
NumberOfDynamicObjects    : 11
BedChannelCount           : 1 channel
BedChannelConfiguration   : LFE

[Audio]
Count                      : 311
StreamCount                : 2
StreamKind                 : Audio
StreamKind/String          : Audio
StreamKindID               : 1
StreamKindPos              : 2
StreamOrder                : 2
ID                         : 3
ID/String                  : 3
UniqueID                   : 3
Format                     : E-AC-3
Format/String              : E-AC-3 JOC
Format/Info                : Enhanced AC-3 with Joint Object Coding
Format/Url                 : https://en.wikipedia.org/wiki/Dolby_Digital_Plus
Format_Commercial          : Dolby Digital Plus with Dolby Atmos
Format_Commercial_IfAny    : Dolby Digital Plus with Dolby Atmos
Format_Settings_Endianness : Big
Format_AdditionalFeatures  : JOC
InternetMediaType          : audio/eac3
CodecID                    : A_EAC3
Duration                   : 5790816.000000
Duration/String            : 1h 36mn
Duration/String1           : 1h 36mn 30s 816ms
Duration/String2           : 1h 36mn
Duration/String3           : 01:36:30.816
Duration/String5           : 01:36:30.816
BitRate_Mode               : CBR
BitRate_Mode/String        : CBR
BitRate                    : 768000
BitRate/String             : 768 Kbps
Channel(s)                 : 6
Channel(s)/String          : 6 channel
ChannelPositions           : Front: L C R, Side: L R, LFE
ChannelPositions/String2   : 3/2/0.1
ChannelLayout              : L R C LFE Ls Rs
SamplesPerFrame            : 1536
SamplingRate               : 48000
SamplingRate/String        : 48.0 KHz
SamplingCount              : 277959168
FrameRate                  : 31.250
FrameRate/String           : 31.250 fps (1536 SPF)
FrameCount                 : 180963
Compression_Mode           : Lossy
Compression_Mode/String    : Lossy
Delay                      : 1744
Delay/String               : 1s 744ms
Delay/String1              : 1s 744ms
Delay/String2              : 1s 744ms
Delay/String3              : 00:00:01.744
Delay/String5              : 00:00:01.744
Delay_Source               : Container
Delay_Source/String        : Container
Video_Delay                : 1744
Video_Delay/String         : 1s 744ms
Video_Delay/String1        : 1s 744ms
Video_Delay/String2        : 1s 744ms
Video_Delay/String3        : 00:00:01.744
Video_Delay/String5        : 00:00:01.744
StreamSize                 : 555918336
StreamSize/String          : 530 MiB (3%)
StreamSize/String1         : 530 MiB
StreamSize/String2         : 530 MiB
StreamSize/String3         : 530 MiB
StreamSize/String4         : 530.2 MiB
StreamSize/String5         : 530 MiB (3%)
StreamSize_Proportion      : 0.02690
Title                      : English DD+ Atmos 5.1 @ 768 Kbps
Language                   : en
Language/String            : en
Language/String1           : en
Language/String2           : en
Language/String3           : eng
Language/String4           : en
ServiceKind                : CM
ServiceKind/String         : Complete Main
Default                    : No
Default/String             : No
Forced                     : No
Forced/String              : No
ComplexityIndex            : 16
NumberOfDynamicObjects     : 15
BedChannelCount            : 1 channel
BedChannelConfiguration    : LFE
bsid                       : 16
dialnorm                   : -28 dB
compr                      : -0.28 dB
acmod                      : 7
lfeon                      : 1
dialnorm_Average           : -28 dB
dialnorm_Minimum           : -28 dB
dialnorm_Maximum           : -28 dB
dialnorm_Count             : 432
compr_Average              : 2.88 dB
compr_Minimum              : 0.53 dB
compr_Maximum              : 4.22 dB
compr_Count                : 276
User avatar
rednoah
The Source
Posts: 24609
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by rednoah »

:idea: I see. {ac} is giving you MLP (Meridian Lossless Packing) because that's the first word in the Format/String property:

Properties: Select all

Format                    : MLP FBA
Format/String             : MLP FBA 16-ch
Format/Info               : Meridian Lossless Packing FBA with 16-channel presentation

:arrow: You could try {aco} audio codec profile binding and see if that gives you the values you want to see:

Format: Select all

{ aco }

:arrow: Your custom format but with {aco} instead of {ac}:

Format: Select all

C:/movie/{ ~plex.id % {" {tmdb-$tmdbid}"} % {" - [$vs-$vf]"} % {"[$aco $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }
:idea: Please read the FAQ and How to Request Help.
yellowdaemon
Posts: 42
Joined: 07 Jan 2021, 16:09

Re: I want my Filebot movie naming format to match that of my Radarr naming format

Post by yellowdaemon »

Format: Select all

C:/movie/{ ~plex.id % {" {tmdb-$tmdbid}"} % {" - [$vs-$vf]"} % {"[$aco $channels]" } % {"[$hdr]"} % {"[$vc]"} % {"-$group"} }
It work.

Thanks!
Post Reply