Search found 23398 matches

by rednoah
Yesterday, 12:31
Forum: macOS
Topic: preserving Collection subfolder names when mixed with single movie subfolders
Replies: 1
Views: 262

Re: preserving Collection subfolder names when mixed with single movie subfolders

:idea: You can use {folder} to use the current folder in your format. e.g. rename files in place, explicitly by generating absolute file paths with the same parent folder path: { folder }/{ plex.name } :idea: You can do things like folder[0..2] or folder[-3..-1] or folder[1..-2] to get the first N o...
by rednoah
Yesterday, 12:16
Forum: macOS
Topic: rename folder and file within current folder
Replies: 1
Views: 93

Re: rename folder and file within current folder

:?: Are you using the GUI or the CLI? :?: What is your custom format? If CLI, what is your command-line? :idea: Note that the behaviour you seek is the default. If your --format generates a relative path, then that relative path is interpreted relatively to the current parent folder for each file at...
by rednoah
Yesterday, 12:11
Forum: macOS
Topic: auto-delete empty source folders
Replies: 1
Views: 108

Re: auto-delete empty source folders

:?: Are you using the GUI or the CLI? (NOTE: The GUI will auto-delete left-behind empty folders by default. The CLI has the --apply prune option.) :?: Are the folders empty? Are the folders really empty from the server point-of-view which may prevent FileBot from deleting a folder even if the delete...
by rednoah
Yesterday, 03:18
Forum: Windows
Topic: File Names Using Meta Data
Replies: 1
Views: 110

Re: File Names Using Meta Data

:?: What does the MediaInfo table say?

:?: Have you tried Fetch & Match Data ➔ Attributes yet?

Screenshot
by rednoah
07 Oct 2024, 18:20
Forum: macOS
Topic: list of outputs for aco, vc, hdr, etc.
Replies: 1
Views: 128

Re: list of outputs for aco, vc, hdr, etc.

Unfortunately, no. FileBot does not know all possible outputs. You would have to read the libmediainfo source code for the specific version of libmediainfo that is bundled with the current release of FileBot. The MediaBindingBean source code may give some insight into how bindings like {hdr} may wor...
by rednoah
07 Oct 2024, 18:16
Forum: macOS
Topic: export and import presets
Replies: 1
Views: 108

Re: export and import presets

You can export / import all settings including custom presets. See Backup and Restore Settings for details.

Screenshot
by rednoah
07 Oct 2024, 17:51
Forum: macOS
Topic: Indicate non-HDR with "SDR"
Replies: 2
Views: 197

Re: Indicate non-HDR with "SDR"

You can account for undefined values like so: { any{ hdr }{ 'SDR' } } { allOf{ vc }{ ac }{ hdr }{ source }{ group } } :idea: Learn how {expressions} work and useful Helper Functions › Helper Functions :arrow: You'll want to rewrite your format like so: {n} - {s00e00} - {t} { allOf { airdate } { vf }...
by rednoah
07 Oct 2024, 04:09
Forum: Help and Support
Topic: Renaming plain files (photos)
Replies: 3
Views: 401

Re: Renaming plain files (photos)

e.g.

Format: Select all

X:/Photos by Month/{ d.format(/yyyy-MM/) }/10-{ i }_{ fn }

:idea: This will create folders named 2024-10. You can change the date/time pattern. You notably cannot have a folder named 2024/10 because 2024/10 means "folder named 10 inside folder named 2024".
by rednoah
06 Oct 2024, 04:13
Forum: Feature Requests and Bug Reports
Topic: ACO Returning Bluray Disc
Replies: 4
Views: 484

Re: ACO Returning Bluray Disc

{aco} is based on "Codec_Profile", "Format_Profile", "Format_Commercial" in that order. You are getting the value of the "Format_Profile" property, which has a bit of an unusual value: Format_Profile Blu-ray Disc You can use {audio} to grab a specific propert...
by rednoah
05 Oct 2024, 16:56
Forum: Feature Requests and Bug Reports
Topic: ACO Returning Bluray Disc
Replies: 4
Views: 484

Re: ACO Returning Bluray Disc

:?: What does the MediaInfo table say?
by rednoah
04 Oct 2024, 06:11
Forum: Feature Requests and Bug Reports
Topic: Any plans for an Asustor NAS app via App Center?
Replies: 7
Views: 2739

Re: Any plans for an Asustor NAS app via App Center?

Q3: Yes. It'll work the way you expect. Best to run a test though.
by rednoah
03 Oct 2024, 09:47
Forum: Feature Requests and Bug Reports
Topic: Any plans for an Asustor NAS app via App Center?
Replies: 7
Views: 2739

Re: Any plans for an Asustor NAS app via App Center?

Q1: What does the log say? Please copy & paste the text from the black text box so we can see what is happening. :idea: If you use --output "/output" --format "{plex}" then a file might get moved to /output/Movies/Avatar (2009)/... but if your --format is an absolute path alr...
by rednoah
02 Oct 2024, 03:56
Forum: Windows
Topic: Filebot Not Pulling Appropriate Database Data
Replies: 1
Views: 295

Re: Filebot Not Pulling Appropriate Database Data

:?: What are the file names that you have? Please post screenshots and sample file paths as text.

:idea: Note that sample file paths as text are absolutely necessary so that we can recreate the issue on our end. Please read How to Request Help for details.
by rednoah
01 Oct 2024, 16:37
Forum: Feature Requests and Bug Reports
Topic: No season folder created when only one season?
Replies: 5
Views: 665

Re: No season folder created when only one season?

Gorilliams wrote: 01 Oct 2024, 16:32 The action copy was temporary while I was figuring out some mismatch issues, to avoid manually renaming them back for the next try.
I recommend --action test (i.e. Dry Run in FileBot Node) or --action duplicate when running this kind of test.
by rednoah
01 Oct 2024, 15:13
Forum: Feature Requests and Bug Reports
Topic: No season folder created when only one season?
Replies: 5
Views: 665

Re: No season folder created when only one season?

1. --order Absolute Rename episodes using [TheMovieDB] with [Absolute Order] [COPY] from [.../SHOW-NAME.S01E03.mkv] to [.../SHOW-NAME {tmdb-138501}/SHOW-NAME - E03 - Through Many Miles - Of Tricks and Trials.mkv] :idea: If you use Absolute Order then you force FileBot to work with absolute episode n...
by rednoah
01 Oct 2024, 10:56
Forum: Windows
Topic: Making a preset for photo date created (or modified)
Replies: 7
Views: 7251

Re: Making a preset for photo date created (or modified)

:idea: You can use {d} in Plain File Mode to access the File Creation Date (i.e. file system attribute, not EXIF metadata) in YYYY-MM-DD format:

Format: Select all

{ d }
:idea: {ct} can be used to get the exact creation time stamp:

Format: Select all

{ ct.format(/yyyy-MM-dd hh∶mm∶ss/) }
by rednoah
30 Sep 2024, 16:30
Forum: macOS
Topic: Double language segment on rename
Replies: 1
Views: 272

Re: Double language segment on rename

:idea: { ~plex.id } already adds the language suffix. The { '.' + lang.ISO3 } you have added at the end of your format adds the additional language suffix at the end of the file name. :idea: The {plex} format manual has the following example for us to copy & paste to get started: { ~plex.id % { ...
by rednoah
30 Sep 2024, 09:55
Forum: Windows
Topic: VF Giving Different Value Than Expected
Replies: 2
Views: 387

Re: VF Giving Different Value Than Expected

:idea: The {vf} binding works a bit like this . 576p would require height >= 576 or height > 480 and width > 720 . 720x552 isn't high enough to qualify by height, and isn't wide enough to allow for leniency on height. :arrow: You can use {hpi} to get the raw height number + progressive/interlaced le...
by rednoah
30 Sep 2024, 05:25
Forum: Scripting and Automation
Topic: Qbittorrent Issues with Unsorted Media and Categorization
Replies: 3
Views: 681

Re: Qbittorrent Issues with Unsorted Media and Categorization

This is very helpful. :?: Did you check the log? Did the log answer your question? What was the answer / explanation to your question? (asking for the next guy) Using a custom label like "ut_label=audiobook" or "ut_label=ebook", is there a way I can get filebot to just move thes...
by rednoah
29 Sep 2024, 08:31
Forum: Scripting and Automation
Topic: [Script] Generate custom NFO files
Replies: 0
Views: 372

[Script] Generate custom NFO files

This post-processing script for Plain File Mode will generate custom NFO files: (requires FileBot r10422 or higher) { source, target -> XML(target.dir / target.nameWithoutExtension + '.xml') { nfo { title(target.nameWithoutExtension) originaltitle(source.nameWithoutExtension) aired(d) runtime(minute...
by rednoah
29 Sep 2024, 03:06
Forum: Scripting and Automation
Topic: Qbittorrent Issues with Unsorted Media and Categorization
Replies: 3
Views: 681

Re: Qbittorrent Issues with Unsorted Media and Categorization

(1) What does the log say when this happens? The log will tell you what it's doing and likely why it's doing what it's doing. :idea: --def excludeList maintains a list of files that have already been processed, so we don't accidentally process files that have already been processed, e.g. when filebo...
by rednoah
29 Sep 2024, 02:39
Forum: Episode / Movie Naming Scheme
Topic: Im going nuts!
Replies: 1
Views: 305

Re: Im going nuts!

:idea: "seriesname s01e01.sv.srt" is notably not Emby standard naming, so we will ignore this aspect of your request hand help you rename and organize files for Emby instead. :arrow: Please follow the How do I organize files for Plex? guide. You can use the {emby.id} format as both movie f...
by rednoah
27 Sep 2024, 18:00
Forum: Help and Support
Topic: Renaming plain files (photos)
Replies: 3
Views: 401

Re: Renaming plain files (photos)

So pretty much copy & paste from the first example of the Plain File Mode manual then?

e.g.

Format: Select all

10-{ i }_{ fn }
** I don't know where the initial 10- bit is coming from so it's hard coded here.
by rednoah
27 Sep 2024, 15:47
Forum: Windows
Topic: Renaming .lrc files with music?
Replies: 24
Views: 3598

Re: Renaming .lrc files with music?

There should be some sort of tool on the web to put in your preffered setup and it gives you the correct code. The problem is that you yourself don't know what you want, until you see that the thing you previously wanted isn't actually what you wanted, as is naturally the case when we find one corn...