Search found 24637 matches

by rednoah
Today, 13:56
Forum: Episode / Movie Naming Scheme
Topic: movie naming scheme that has the specialty of calculating a world average certification
Replies: 8
Views: 1004

Re: movie naming scheme that has the specialty of calculating a world average certification

Can you give a few examples of movie + certification value that you want to see for that movie?

The new code will give you TMDB ratings, not IMDB ratings. We can change the code if you must have IMDB ratings (and account for IMDB rating not being available for the given TMDB ID).
by rednoah
Yesterday, 15:29
Forum: Episode / Movie Naming Scheme
Topic: movie naming scheme that has the specialty of calculating a world average certification
Replies: 8
Views: 1004

Re: movie naming scheme that has the specialty of calculating a world average certification

cafevincent wrote: Yesterday, 13:02 I would rather it only averages the found numbers between 0-21
The code above does exactly that as far as I can tell.

cafevincent wrote: Yesterday, 13:05 if no number then do not write the r##+space in the filename
The code above uses {rating} which is based on TMDB and thus never undefined.
by rednoah
Yesterday, 09:33
Forum: Episode / Movie Naming Scheme
Topic: movie naming scheme that has the specialty of calculating a world average certification
Replies: 8
Views: 1004

Re: movie naming scheme that has the specialty of calculating a world average certification

Alright, lets test with these TMDB IDs:
* https://www.themoviedb.org/movie/1305787-micro-budget
* https://www.themoviedb.org/movie/1081015-the-secret-art-of-human-flight
* https://www.themoviedb.org/movie/113747-shame



You could rewrite your format like so:
{
any{
'c' + info.certifications ...
by rednoah
25 Aug 2026, 04:18
Forum: Feature Requests and Bug Reports
Topic: Book file naming with Filebot
Replies: 1
Views: 40

Re: Book file naming with Filebot

You will have to build your own solution to some degree, but you can do this from FileBot and a custom format. Custom Scraper will get you started.

The key is the metadata lookup. You might know a website where you can search via the file name and then scrape the details from a webpage. The Audible ...
by rednoah
25 Aug 2026, 03:39
Forum: Windows
Topic: [NFS on Windows] Rename files only without create extra files? .mtime, .mediadata, .mediainfo, .filename
Replies: 3
Views: 1651

Re: Rename files only without create extra files? .mtime, .mediadata, .mediainfo, .filename

NFS on Windows? That's pretty rare. If you look into NTFS ADS and then see if you can configure how that that is handled by your NFS client-side file system driver and NFS server you might find a good solution.


:arrow: That said, since NFS on Windows is pretty much unknown territory for me, I'd ...
by rednoah
22 Aug 2026, 18:21
Forum: Feature Requests and Bug Reports
Topic: MAC OS 27 - load files doesn’t
Replies: 4
Views: 944

Re: MAC OS 27 - load files doesn’t

:arrow: Recent revisions of FileBot have already implemented a workaround, so you can use the latest beta for the time being:
viewtopic.php?t=1609
by rednoah
21 Aug 2026, 17:12
Forum: Windows
Topic: Fielbot & windows Profile
Replies: 1
Views: 95

Re: Fielbot & windows Profile

:idea: Your current preferences are stored in a platform-dependent manner (e.g. HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs on Windows; data/settings.properties if portable, ~/Library/Preferences on macOS; ~/.java/.userPrefs on Debian Linux; etc) and a backup of your settings is exported as ...
by rednoah
21 Aug 2026, 03:48
Forum: macOS
Topic: Have App Store but using beta
Replies: 2
Views: 59

Re: Have App Store but using beta

We can send a you complimentary license if you want to test the latest beta and provide feedback.
by rednoah
20 Aug 2026, 05:55
Forum: Windows
Topic: [NFS on Windows] Rename files only without create extra files? .mtime, .mediadata, .mediainfo, .filename
Replies: 3
Views: 1651

Re: rename files only without create extra files?

:?: You seem to be referring to xattr metadata . These extended file attributes would normally not appear as files in the file system, unless perhaps if you're using a strangely configured remote network file system?

:idea: The behaviour you are seeing is not default behaviour that other users are ...
by rednoah
19 Aug 2026, 04:52
Forum: Windows
Topic: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)
Replies: 9
Views: 36826

Re: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)

Right-Click FileBot is a standalone application that you can install from the Microsoft Store if needed. It'll use the filebot command-line to run filebot commands. That means it'll work with any version of FileBot that you have installed one way or another.

:!: Right-Click FileBot currently ...
by rednoah
17 Aug 2026, 04:33
Forum: Scripting and Automation
Topic: [Script] Generate Episode NFO files
Replies: 0
Views: 288

[Script] Generate Episode NFO files

This post-processing script will generate Episode NFO files:

{ source, target ->
if (target.video && type =~ /Episode/) {
XML(target.dir / target.nameWithoutExtension + '.nfo') {
episodes.each{ e ->
episodedetails {
id(e.info.id)
showtitle(e.series.name)
title(e.info.title)

if (e.group ...
by rednoah
15 Aug 2026, 16:16
Forum: macOS
Topic: Problems getting subtitles
Replies: 1
Views: 121

Re: Problems getting subtitles

:?: Does FileBot display this error message? Screenshot? Because it doesn't look like a FileBot error message as far as I can tell.

:?: What does the log say?
by rednoah
14 Aug 2026, 17:15
Forum: Help and Support
Topic: I don't understand why Lucky (2026) isn't recognized at all
Replies: 3
Views: 244

Re: I don't understand why Lucky (2026) isn't recognized at all

It'll probably work for next weeks episode.



EDIT:

FileBot r11070 includes various code changes to improve support for this kind of corner case.
by rednoah
14 Aug 2026, 03:48
Forum: Help and Support
Topic: I don't understand why Lucky (2026) isn't recognized at all
Replies: 3
Views: 244

Re: I don't understand why Lucky (2026) isn't recognized at all

The issue is that a search for Lucky 2026 does not include the correct result, but does include the incorrect result. We have a number of workarounds but none of them seem to work in this case.

We might be able to fix this by adding Lucky 2026 as alternative title to the database.
by rednoah
10 Aug 2026, 03:27
Forum: Windows
Topic: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)
Replies: 9
Views: 36826

Re: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)


can't get it to work it shows my Presets i click on it then nothing

:?: What does the log say?

:idea: Note that the task runs in the background. You will see a tray icon while it's running. Windows will hide tray icons by default in the "more" section but you can configure the tray icon to ...
by rednoah
09 Aug 2026, 15:49
Forum: macOS
Topic: Filebot can't match Life, Larry and the Pursuit of Unhappiness TV Show
Replies: 1
Views: 79

Re: Filebot can't match Life, Larry and the Pursuit of Unhappiness TV Show

:?: Can you paste one of the file names you're having trouble with?

:arrow: You can always use Manual Matching if auto-detection doesn't work for one reason or another.
by rednoah
09 Aug 2026, 01:31
Forum: Windows
Topic: Font color
Replies: 1
Views: 291

Re: Font color

:?: Can you provide screenshot the illustrates the issue?

:idea: You could force Light Mode if you want black text on white background: [DOCS] How do I use Dark Mode? › System (Default)
by rednoah
05 Aug 2026, 10:14
Forum: Scripting and Automation
Topic: Post Rename Reference
Replies: 9
Views: 5639

Re: Post Rename Reference

:idea: Looks like PowerShell doesn't like [...] in >> file paths...

:arrow: Try this:
filebot -script fn:amc ... --def exec="Add-Content -LiteralPath {quote defines.myLogFile} -Value {quote f}" --def myLogFile="T:/FileBot/Logs/%title%.txt"
** using -LiteralPath instead of -Path is the key here
by rednoah
05 Aug 2026, 05:35
Forum: Scripting and Automation
Topic: Post Rename Reference
Replies: 9
Views: 5639

Re: Post Rename Reference

:!: Your doing this on Windows!? With Windows CMD no less!? I don't usually use emoji... but... 🤯


:idea: Alright, lets say this work for you, so we can start with this:
filebot -script fn:amc ... --def exec="echo {quote f} >> T:/FileBot/Logs/File.txt"

:idea: You also have a variable %title ...
by rednoah
05 Aug 2026, 02:33
Forum: Windows
Topic: Clean folders
Replies: 3
Views: 3408

Re: Clean folders


is it possible to move a folder... for example if exists an Extra folder just move it with its contents

Yes. Please check Post Process ➔ Import companion files to move / copy along all kinds of Companion Files including Extra folders:

https://i.imgur.com/KQWUvAo.png https://i.imgur.com/jNm0NHx ...
by rednoah
05 Aug 2026, 02:16
Forum: Episode / Movie Naming Scheme
Topic: I am problem renaming WWE Smackdown
Replies: 2
Views: 572

Re: I am problem renaming WWE Smackdown

Q: FileBot is highlighting episodes in shades of red colour. What does this mean?


:?: Is the match shown in the screenshot correct? (NOTE: I cannot see the original file name so I cannot tell if the proposed file name is correct)


:arrow: You can still click Rename even if the line is ...
by rednoah
01 Aug 2026, 04:39
Forum: Scripting and Automation
Topic: Post Rename Reference
Replies: 9
Views: 5639

Re: Post Rename Reference


I run your AMC script from a bash script and I'm trying to get that filepath back into my bash script.

:!: AFAIK, a process called by your bash script (i.e. filebot ) fundamentally cannot modify (i.e. write back variables) to the parent process.


:?: What exactly do you need to do? Why pass ...
by rednoah
30 Jul 2026, 20:08
Forum: Feature Requests and Bug Reports
Topic: Allow the Original Files and New Names panes in the Rename window to be inspected independently
Replies: 6
Views: 890

Re: Allow the Original Files and New Names panes in the Rename window to be inspected independently

:idea: The Inspect menu item is the easy-to-discover way to find this feature:

Screenshot


:arrow: I'll see about including this feature in the next video tutorial somehow just to make it easy to find for users that go through the video tutorials.
by rednoah
30 Jul 2026, 14:12
Forum: Feature Requests and Bug Reports
Topic: Allow the Original Files and New Names panes in the Rename window to be inspected independently
Replies: 6
Views: 890

Re: Allow the Original Files and New Names panes in the Rename window to be inspected independently


Could this be the default view? I think it's a much better way of viewing proposed changes.

:arrow: Just hit SPACE to toggle this additional view on or off in the blink of an eye as needed. I would consider making changes to the match view to better support your use case though. Though making ...
by rednoah
30 Jul 2026, 05:24
Forum: Help and Support
Topic: Feature Request: Expandable File Filter editor in Preset Editor
Replies: 4
Views: 515

Re: Feature Request: Expandable File Filter editor in Preset Editor

:arrow: You can check the revision number in the top right: [FAQ] How do I open the Debug Console / Groovy Pad?

:idea: The latest build in Latest Beta Revisions and Release Candidates is currently from 2026-07-20 09:02 so a beta build for r11059 or higher does not currently exist. But I can push ...
by rednoah
29 Jul 2026, 19:49
Forum: Help and Support
Topic: Feature Request: Expandable File Filter editor in Preset Editor
Replies: 4
Views: 515

Re: Feature Request: Expandable File Filter editor in Preset Editor

:?: What is your use case? Can you share your very long and complex multi-line file filter expression so that we can see what you can see?




EDIT:

I had a look and it wasn't growing horizontally to fill out the window width. FileBot r11059 makes the File Filter / File Order expression field grow ...
by rednoah
29 Jul 2026, 19:39
Forum: Feature Requests and Bug Reports
Topic: Allow the Original Files and New Names panes in the Rename window to be inspected independently
Replies: 6
Views: 890

Re: Allow the Original Files and New Names panes in the Rename window to be inspected independently

:arrow: You'll want to use the Inspect ➔ Match view ( Keyboard Shortcut: SPACE ) to check and compare original file / match object / custom format output / destination file. That way you'll get the entire screen width for your long file path and differences are also easier to spot if each text field ...
by rednoah
25 Jul 2026, 20:04
Forum: macOS
Topic: [arm64] Apple Silicon Roadmap
Replies: 19
Views: 32071

Re: [arm64] Apple Silicon Roadmap

There are known issues on macOS 27 Golden Gate . Apple changed something and broke things. It happens. You have upgraded to a beta of macOS after all.

The issue at hand is notably entirely unrelated to Apple Silicon / Intel / Rosetta / etc, but does effect MAS / non-MAS editions of FileBot ...
by rednoah
24 Jul 2026, 20:08
Forum: Windows
Topic: How Can I Retrieve My License Email
Replies: 3
Views: 604

Re: How Can I Retrieve My License Email

:arrow: [FAQ] How do I recover a lost license key?

:idea: We were able to find your life-time license purchase via your FileBot Forums email address. We have re-sent it to your email address. Please do not lose it again. It's a life-time license. Please do store it carefully because you may need ...
by rednoah
22 Jul 2026, 15:09
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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

:idea: I see. {ac} is giving you MLP (Meridian Lossless Packing) because that's the first word in the Format/String property:
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 ...
by rednoah
22 Jul 2026, 14:03
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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

: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.
by rednoah
22 Jul 2026, 13:16
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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

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 ...
by rednoah
22 Jul 2026, 12:00
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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

: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:
{plex.name} {"{tmdb-$tmdbid}"} - {"[$vs-$vf]"}{"[$ac $channels]" }{"[$hdr]"}{"[$vc]"}{"-$group"}



:idea: In case you're curious ...
by rednoah
22 Jul 2026, 11:02
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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


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 ...
by rednoah
22 Jul 2026, 09:41
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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


Is this the way to solve my issue by using this:
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 ...
by rednoah
22 Jul 2026, 03:00
Forum: Episode / Movie Naming Scheme
Topic: I want my Filebot movie naming format to match that of my Radarr naming format
Replies: 16
Views: 1630

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

: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"} }
by rednoah
19 Jul 2026, 17:05
Forum: macOS
Topic: Keep losing files
Replies: 1
Views: 421

Re: Keep losing files

:?: What does the target file path in the New Names section say before you click the Rename button?

:?: What does the History say?

:idea: You can enable the Reveal files post-processing feature to reveal files after they have been renamed and organized.
by rednoah
19 Jul 2026, 09:54
Forum: Windows
Topic: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)
Replies: 9
Views: 36826

Re: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)

We use the IExplorerCommand interface so that should work on both Windows 10 and Windows 11. That said, we only test on Windows 11, so if it doesn't work on Windows 10 for some unknown reason then there's not much we can do about that. If you're on Windows 10 and have some Windows development ...
by rednoah
18 Jul 2026, 16:42
Forum: Feature Requests and Bug Reports
Topic: There is an error when uploading files that contain Latin characters.
Replies: 1
Views: 548

Re: There is an error when uploading files that contain Latin characters.

:?: You mean to say you drag-n-drop a file with accents into FileBot but it doesn't appear in the list after the drop?

:?: Do you have an example file path?

:?: Are these file paths on a local file system or a remote SMB network share?

:?: Does the log contain any clues?



:idea: Here's what ...
by rednoah
17 Jul 2026, 04:14
Forum: Windows
Topic: How Can I Retrieve My License Email
Replies: 3
Views: 604

Re: How Can I Retrieve My License Email

:arrow: [FAQ] How do I recover a lost license key?

:idea: Note that the email address you have used to register here in the forums is not associated with any order as far as I can tell. You may need to look up your order number via Paddle Support. They can lookup your order number with your ...
by rednoah
15 Jul 2026, 04:42
Forum: Ubuntu & Desktop Linux
Topic: Help: Kubuntu 26.04 Filebot has permissions issues only recently
Replies: 2
Views: 810

Re: Help: Kubuntu 26.04 Filebot has permissions issues only recently

:?: How did you install FileBot? (NOTE: depending on how you install an application, it may or may not running in a sandboxed environment with limited file system access)


:?: How are you running FileBot? Are you running FileBot for a long long time? How did you configure the output folder? It ...
by rednoah
15 Jul 2026, 04:19
Forum: Feature Requests and Bug Reports
Topic: MAC OS 27 - load files doesn’t
Replies: 4
Views: 944

Re: MAC OS 27 - load files doesn’t

:idea: macOS 27 seems to have broken backwards-compatibility in some ways. They might fix it before the final release, or they might not. In any case, thanks for running the latest beta and reporting issues.

:arrow: Recent revisions of FileBot have already implemented a workaround, so you can use ...
by rednoah
13 Jul 2026, 17:44
Forum: Windows
Topic: add "start application" to Right-Click Menu for Win11
Replies: 2
Views: 738

Re: add "start application" to Right-Click Menu for Win11

Yes, this kind of use case will definitely be supported in future versions.

That involves opening the UI and running a given preset in the selected files right away, as well as just launching FileBot (or any other program) and passing the selected files along.

The next major update for Right-Click ...
by rednoah
11 Jul 2026, 03:56
Forum: Feature Requests and Bug Reports
Topic: Upgrade to life-time license?
Replies: 1
Views: 765

Re: Upgrade to life-time license?

:arrow: Don't be hasty. If you're new to FileBot then I strongly recommend evaluating for a year before committing permanently. See FileBot Pricing Explained for details.

:arrow: That said, if you're sure, you can always request a refund within the 14 day period , and then buy a life-time license ...
by rednoah
10 Jul 2026, 03:46
Forum: Windows
Topic: THe Office Superfan episodes
Replies: 1
Views: 755

Re: THe Office Superfan episodes

Usable as "Alternate Order 2" in API-connected systems.
https://thetvdb.com/series/the-office-us#seasons


:idea: Unfortunately, Alternate Order 2 is currently not accessible from FileBot. See Episode Order Preferences › TheTVDB for a list of accessible episode order keys.


UPDATE

:!: I've ...
by rednoah
08 Jul 2026, 09:44
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 753
Views: 3331658

Re: Release Groups {group}

Thanks! Added.
by rednoah
06 Jul 2026, 08:02
Forum: Ubuntu & Desktop Linux
Topic: .deb script edit
Replies: 1
Views: 1173

Re: .deb script edit

:arrow: If you're on Debian / Ubuntu / etc then you will want to use sudo apt-get install to install the filebot package. You can copy & paste the commands from the Ubuntu / Debian package is available via APT link:
https://www.filebot.net/linux/apt.html


:idea: If you just download the *.deb ...
by rednoah
04 Jul 2026, 06:32
Forum: Help and Support
Topic: Bad License Key (Bad Signature)
Replies: 1
Views: 1370

Re: Bad License Key (Bad Signature)

:idea: You seem to have manually modified the license key at hand. Order: P63454711 was made on 2024-07-17 and has thus long since expired. Issue-Date: 2025-07-14 is something that you have typed in yourself.


:idea: If you have recently purchased a new license, then you will have received a new ...
by rednoah
03 Jul 2026, 14:49
Forum: Help and Support
Topic: Unknown Error: An application component is damaged or missing
Replies: 0
Views: 1705

Unknown Error: An application component is damaged or missing

:idea: If you get strange errors like this, then your FileBot installation seems to have been modified or corrupted by bit rot or drive failure:
Unknown Error: java.lang.ClassFormatError: Illegal UTF8 string in constant pool in class file org/bouncycastle/util/Arrays
Unknown Error: An application ...
by rednoah
03 Jul 2026, 13:47
Forum: Help and Support
Topic: lost license key
Replies: 3
Views: 1794

Re: lost license key

I guess you could contact Microsoft Store support with your paypal payment information. They might be able too lookup the account for that transaction. We have no access to that kind of information.
by rednoah
02 Jul 2026, 20:56
Forum: Help and Support
Topic: lost license key
Replies: 3
Views: 1794

Re: lost license key

:arrow: [FAQ] How do I recover a lost license key?

:arrow: Note that the current universal license system did not yet exist in 2017. If you have made a purchase in 2017, then it must be a Microsoft Store or Mac App Store purchase. In that case, the Store will remember your purchase in your ...
by rednoah
01 Jul 2026, 04:20
Forum: Scripting and Automation
Topic: filebot:watcher and post-processing
Replies: 1
Views: 1937

Re: filebot:watcher and post-processing

:idea: You can pass in custom post-processing scripts like so:
--apply /path/to/apply.groovy
See [DOCS] Custom Post-Processing Scripts › Add Post-Processing Scripts via the --apply option from Terminal for details.


:arrow: Here's a command-line example to get you started:

docker run --rm ...
by rednoah
28 Jun 2026, 17:48
Forum: Windows
Topic: Display/Remove Close Captions
Replies: 5
Views: 2791

Re: Display/Remove Close Captions

:idea: You can click on the Copy to Clipboard button and then paste the content via CTRL+V here in the forums.

window.icon16 Open FileBot ➔ action.format Edit Format ➔ action.variables Change Sample ➔ action.load Select Media File ➔ action.properties Open MediaInfo ➔ Copy to Clipboard

https://i ...
by rednoah
28 Jun 2026, 04:44
Forum: Windows
Topic: Display/Remove Close Captions
Replies: 5
Views: 2791

Re: Display/Remove Close Captions

:?: Can you share the MediaInfo table for one of these files you want to tag with CC2 ?


:idea: In general, you can do something like this to check the number of subtitle tracks and then add a CC2 / CC3 / CC4 / etc marker accordingly:
{
def cc = text.size()
if (cc >= 2) return " [CC$cc]"
}
by rednoah
25 Jun 2026, 06:10
Forum: Feature Requests and Bug Reports
Topic: Can't see New Preset or delete any presets
Replies: 5
Views: 3583

Re: Can't see New Preset or delete any presets

I see. A 1920x1080 at 150% would be equivalent to 1280x720 and we don't really test and optimize for that screen size. I'll add that to our tests and see what we can do though.



UPDATE
FileBot r11026 and higher will allow you to use the mouse wheel to scroll off-screen menu items into view. We ...
by rednoah
24 Jun 2026, 12:13
Forum: Feature Requests and Bug Reports
Topic: Filebot Fails to rename series.
Replies: 5
Views: 3538

Re: Filebot Fails to rename series.

I guess you could try using your mobile as hotspot or a different WiFi from a different place? Just for testing.

It’s almost certainly an issue between you and the target server (API server; different from the website server) so at this point you could only try lots of different tests to narrow ...
by rednoah
24 Jun 2026, 03:01
Forum: Feature Requests and Bug Reports
Topic: Can't see New Preset or delete any presets
Replies: 5
Views: 3583

Re: Can't see New Preset or delete any presets

:?: What’s your screen resolution? I tried on Windows with 200% on a standard 4K monitor and was able to fit 20+ custom presets in addition to the built-in presets. Maybe you have a screen height that is less than 1080 pixels? Maybe a small laptop?

:idea: Built-in presets cannot be deleted as they ...
by rednoah
23 Jun 2026, 12:38
Forum: Feature Requests and Bug Reports
Topic: Can't see New Preset or delete any presets
Replies: 5
Views: 3583

Re: Can't see New Preset or delete any presets

1.
Yep, looks like you have too many Presets for your screen.


:?: Which screen size / screen resolution / scale factor are you using? If you're using a high scale factor then you could temporarily use a smaller scale factor to allow for more things on screen at once.

:?: Is it a screen size ...
by rednoah
22 Jun 2026, 12:49
Forum: Feature Requests and Bug Reports
Topic: Filebot Fails to rename series.
Replies: 5
Views: 3538

Re: Filebot Fails to rename series.

Getting the same issue for multiple different servers would definitely be a bit strange, unless it's something CloudFlare related that happens to be used by both TMDB and TVDB. In any case, Connection reset by peer means that the remote end of the network connection closed the connection ...
by rednoah
20 Jun 2026, 12:23
Forum: Ubuntu & Desktop Linux
Topic: Name matching issue
Replies: 1
Views: 2516

Re: Name matching issue

Here's what I get:
Screenshot


:?: Which version of FileBot are you using? What does System Information say?

:?: Which database are you using? Are you using a custom preset or a custom format that might explain the different behaviour you get?
by rednoah
19 Jun 2026, 03:19
Forum: macOS
Topic: Support ending for Intel-Based apps
Replies: 1
Views: 2636

Re: Support ending for Intel-Based apps

Don't worry about it. You can safely ignore that message. It's just about Apple removing Rosetta 2 from a future versions of macOS. "a future release of macOS" notably refers to late 2027 at the earliest and not this year. See Q: When will FileBot publish arm64 binaries on the Mac App Store? for ...
by rednoah
18 Jun 2026, 13:32
Forum: Feature Requests and Bug Reports
Topic: Filebot Fails to rename series.
Replies: 5
Views: 3538

Re: Filebot Fails to rename series.

Sounds like a generic network error...

:?: Are you using a VPN?

:?: Which database are you using? Have you tried using a different database?

:?: What does the Error Log say?
by rednoah
17 Jun 2026, 10:05
Forum: Windows
Topic: Can't Find My License
Replies: 1
Views: 2444

Re: Can't Find My License

:idea: The email address you have used to register here in the forums is not associated with a license purchase. If you don't know neither your email address nor your license number, then you will need to check with Paddle (our payment provider) to lookup your license number / license key via your ...
by rednoah
17 Jun 2026, 04:12
Forum: unRAID & docker
Topic: [FAQ] How do I activate my license in the FileBot Desktop WebUI? (filebot-xpra)
Replies: 0
Views: 3521

[FAQ] How do I activate my license in the FileBot Desktop WebUI? (filebot-xpra)


Please help me activate my FileBot license in Docker. Copying and pasting into the WebUI doesn't work. I really don't want to have to use the command-line for this.


:idea: The Paste License Key option requires access to your system clipboard. If the clipboard does not work, then you may need ...
by rednoah
17 Jun 2026, 03:29
Forum: Episode / Movie Naming Scheme
Topic: Naming Harry Potter And The Sorcerers Stone?
Replies: 1
Views: 2912

Re: Naming Harry Potter And The Sorcerers Stone?

:idea: Harry Potter and the Philosopher's Stone is the official English movie name according to the database, so that's the value the {n} binding will give you.


:arrow: You could use Edit Name to manually rewrite the target file name if you don't like the name in the database.

https://i.imgur ...
by rednoah
14 Jun 2026, 13:27
Forum: Feature Requests and Bug Reports
Topic: Open-With Filebot Functionality No Longer Working in v5.2.3 MacOS arm64
Replies: 1
Views: 2925

Re: Open-With Filebot Functionality No Longer Working in v5.2.3 MacOS arm64

:?: Did that ever work? Which version?


:idea: Open with FileBot works on Windows and Linux because the selected files are passed as argument array into the startup function. However, macOS doesn't pass selected files as argument array, so that's why it doesn't work when first launching FileBot ...
by rednoah
13 Jun 2026, 03:48
Forum: macOS
Topic: [arm64] Apple Silicon Roadmap
Replies: 19
Views: 32071

Re: [arm64] Apple Silicon Roadmap

At a glance, probably not a Rosetta / Intel / ARM issue at all. Probably something else. Probably not something that an ARM version would fix. Though I cannot reproduce the issue on my M1 MacBook with macOS 26.5 here. Can you provide more information so we can investigate and fix this bug ...
by rednoah
13 Jun 2026, 03:34
Forum: Windows
Topic: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)
Replies: 9
Views: 36826

Re: [BETA] Right-Click FileBot (FileBot Context Menu for Windows 11 available for testing)

The context menu uses your Presets . You can create / modify your Presets into the FileBot Desktop application to suit your needs. Specifically, you'll want to use a custom format and not {plex.id} which is the default format and adds {tmdb-12345} markers to the movie folder name.

After that you'll ...
by rednoah
12 Jun 2026, 04:54
Forum: Ubuntu & Desktop Linux
Topic: %post CDS dump (-Xshare:dump) crashes with SIGABRT under rpm-ostree — blocks updates on atomic Fedora (Bazzite/Silverblu
Replies: 3
Views: 3868

Re: %post CDS dump (-Xshare:dump) crashes with SIGABRT under rpm-ostree — blocks updates on atomic Fedora (Bazzite/Silve

Cheers! In the meanwhile, we have added a || true to that %post line to ensure a positive exit code even if CDS archive generation fails. The next public release / RPM is many months away though.
by rednoah
10 Jun 2026, 07:25
Forum: macOS
Topic: lost my license when filebot upgraded
Replies: 7
Views: 64980

Re: lost my license when filebot upgraded


10.15.8 catalina, I don't want to upgrade. When Filebot went to its newest upgrade it just made it so it tries to boot up, bounces a few times and never opens. So I rolled back to an older version to get it back working and when I uninstalled I lost my license key.

FileBot 5.2.3 should restore ...
by rednoah
10 Jun 2026, 03:53
Forum: macOS
Topic: [arm64] Apple Silicon Roadmap
Replies: 19
Views: 32071

Re: [arm64] Apple Silicon Roadmap

Q: When will FileBot publish arm64 binaries on the Mac App Store? explains the issue in detail. Please read that first and then point out specific aspects you would like to discuss or find dumb.

We are saying "Apple currently prevents us from uploading a correct version for future versions of ...
by rednoah
10 Jun 2026, 03:20
Forum: Ubuntu & Desktop Linux
Topic: %post CDS dump (-Xshare:dump) crashes with SIGABRT under rpm-ostree — blocks updates on atomic Fedora (Bazzite/Silverblu
Replies: 3
Views: 3868

Re: %post CDS dump (-Xshare:dump) crashes with SIGABRT under rpm-ostree — blocks updates on atomic Fedora (Bazzite/Silve

The RPM install and post process is typically running as root so writing to /usr/share/filebot is not usually a problem. At this point, the [RPM] Fedora package is used by dnf and zypper. We have never tested with rpm-ostree but could look into it that is what is commonly used nowadays.
by rednoah
08 Jun 2026, 02:51
Forum: Help and Support
Topic: Lost License Key
Replies: 1
Views: 3186

Re: Lost License Key

FileBot License PX34215387 has been re-sent to your registered email address.
by rednoah
07 Jun 2026, 05:42
Forum: Synology NAS & Embedded Linux
Topic: Generate thumbnails for video files on Synology NAS
Replies: 10
Views: 72533

Re: Generate thumbnails for video files on Synology NAS

iconoclast wrote: 06 Jun 2026, 02:46 It actually worked! I can't believe it was that simple.
Spread the word! Feel free to help others and write a tutorial in your own words.
by rednoah
04 Jun 2026, 04:03
Forum: Synology NAS & Embedded Linux
Topic: Generate thumbnails for video files on Synology NAS
Replies: 10
Views: 72533

Re: Generate thumbnails for video files on Synology NAS

:idea: SHARE='/volume1/Media' indeed refers to the input file path. You can use Right-Click ➔ Properties in File Station and then copy & paste the file path of the selected folder from the Location text field.

https://i.imgur.com/AapE5dN.png


:idea: If you want to generate thumbnails for ...
by rednoah
01 Jun 2026, 02:23
Forum: Synology NAS & Embedded Linux
Topic: Generate thumbnails for video files on Synology NAS
Replies: 10
Views: 72533

Re: Generate thumbnails for video files on Synology NAS


Thank you for taking the time to assist me. Your responses make sense and are helpful. I would like to ask though because I'm a little confused. I've read other places that I"m supposed to install FileBot, Java Installer, FFMPEG, JSnode. Is this not the case? Those packages are not needed to ...
by rednoah
31 May 2026, 04:01
Forum: Synology NAS & Embedded Linux
Topic: Generate thumbnails for video files on Synology NAS
Replies: 10
Views: 72533

Re: Generate thumbnails for video files on Synology NAS


So are you saying that I can run this functionality using task scheduler alone?

Yes. Open Task Manager . Create Task. Paste Shell Script as shown in the screenshots above. Maybe modify the first line. That's it.

https://i.imgur.com/BiGfSNR.png https://i.imgur.com/qT8fdWc.png


:idea: You can ...
by rednoah
30 May 2026, 14:51
Forum: Synology NAS & Embedded Linux
Topic: Generate thumbnails for video files on Synology NAS
Replies: 10
Views: 72533

Re: Generate thumbnails for video files on Synology NAS


I see the scripts that have been recommend to be added to facilitate thumbnails but I don't know where or how to put them. Can someone please walk me through the next steps?

You can use Task Scheduler to create and run scripts:

https://i.imgur.com/BiGfSNR.png https://i.imgur.com/qT8fdWc.png ...
by rednoah
30 May 2026, 07:07
Forum: Scripting and Automation
Topic: Post Rename Reference
Replies: 9
Views: 5639

Re: Post Rename Reference

The -exec custom post-process commands manual is a good way to get started with custom post-process commands.


e.g.
-exec /path/to/script.sh {f} {historic.f} {json}
{f} is the new file path
{historic.f} is the previous file path
{json} is the xattr metadata


:idea: "ut_title=%N" is notably ...
by rednoah
29 May 2026, 12:04
Forum: macOS
Topic: [arm64] Apple Silicon Roadmap
Replies: 19
Views: 32071

Re: [arm64] Apple Silicon Roadmap

MAS purchases don’t have a standalone universe license number. See post above.

The MAS edition will notably not be discontinued. The message you see is misleading. It’s a generic message by Apple, not us, and not specifically about FileBot. We will switch the MAS edition to ARM64-only if and when ...
by rednoah
27 May 2026, 07:56
Forum: Feature Requests and Bug Reports
Topic: Presets are gone
Replies: 7
Views: 10823

Re: Presets are gone

:idea: This post is primarily about the Windows version of FileBot.


:arrow: If you're using the macOS version of FileBot, then you can export / import settings like so: Backup and Restore Settings

https://i.imgur.com/fhvfMMi.png


:arrow: On a more technical level, if you're must restore ...
by rednoah
26 May 2026, 05:54
Forum: macOS
Topic: [arm64] Apple Silicon Roadmap
Replies: 19
Views: 32071

Re: [arm64] Apple Silicon Roadmap

I kept getting the "Intel Support Ending" message so I went on the Mac app Store to find the ARM version.
The MAS only has the intel version available to me.

I downloaded the ARM version from your website and exported the settings from intel and restored to the arm version. My presets were ...
by rednoah
23 May 2026, 06:39
Forum: macOS
Topic: Universal binary for macOS 28
Replies: 4
Views: 7085

Re: Universal binary for macOS 28


If one is running the Mac App Store Intel version is there any way to transfer that license to the arm64 version or are we all waiting for Apple to tell you to drop x64?

We're waiting for Apple to allow developers to drop x64 support in favour of arm64 support. See [arm64] Apple Silicon Roadmap ...
by rednoah
19 May 2026, 10:50
Forum: Feature Requests and Bug Reports
Topic: remove duplicates from {tags}
Replies: 4
Views: 6576

Re: remove duplicates from {tags}

FileBot r10975 fixes this issue internally as well so the custom code workaround above will no longer be necessary with upcoming releases.
by rednoah
18 May 2026, 16:58
Forum: Feature Requests and Bug Reports
Topic: remove duplicates from {tags}
Replies: 4
Views: 6576

Re: remove duplicates from {tags}

:idea: {tags} does all of the above by default, except evidently not for Imax / IMAX which seems to be a corner case where default normalisation is not applied which then makes deduplication not work.


:arrow: You can fix the issue via your custom format code like so:
{ tags.unique{ it.upper ...
by rednoah
12 May 2026, 09:12
Forum: Help and Support
Topic: Way to change default GUI to copy instead of rename?
Replies: 3
Views: 6137

Re: Way to change default GUI to copy instead of rename?


Is there a way to have a preset pre-chosen at launch?

Well, you'd still have to load in files, though that can be pre-configured via Presets . I guess you have to set up a Presets and use "1" as keyboard shortcut. Then you just need to press "1" every time you launch FileBot to load and process ...
by rednoah
11 May 2026, 03:35
Forum: Help and Support
Topic: Way to change default GUI to copy instead of rename?
Replies: 3
Views: 6137

Re: Way to change default GUI to copy instead of rename?

You can create a Presets for your preferred use case. That way you can switch rename action / format / language / order / etc with a single keyboard shortcut.
by rednoah
10 May 2026, 14:25
Forum: Help and Support
Topic: FileBot 5.2.1 matching incorrectly
Replies: 8
Views: 10654

Re: FileBot 5.2.1 matching incorrectly

If you mean xattr metadata then you can check that easily via Filter tool. You can also use the Set Attributes menu item which is only there if the file at hand as xattr metadata.
by rednoah
10 May 2026, 12:34
Forum: Anything and Everything else
Topic: [FAQ] How do I verify the integrity of the FileBot installer?
Replies: 0
Views: 7500

[FAQ] How do I verify the integrity of the FileBot installer?

You can verify the integrity of a FileBot package by checking the SHA-256 checksum. If you compute the checksum of the file at hand, and then compare it to the known checksum published on our public GitHub repository, then you can be sure that the file you have is exactly byte-for-byte the file ...
by rednoah
10 May 2026, 02:34
Forum: Help and Support
Topic: FileBot 5.2.1 matching incorrectly
Replies: 8
Views: 10654

Re: FileBot 5.2.1 matching incorrectly

:idea: Nope, that file path by itself works just fine:
$ filebot -rename -r "Superman Collection" --db TheMovieDB --output .
[MOVE] from [Superman Collection/1978 Superman 188/Superman (1978).BLURAY.1080p.FHD.HEVC.10bit.DTS-d3g.[68AC17A3].mkv] to [Superman (1978).mkv]



:arrow: You can create a ...
by rednoah
10 May 2026, 02:12
Forum: Feature Requests and Bug Reports
Topic: Simple request (if possible). episode.imdb = IMDb tt#
Replies: 5
Views: 6508

Re: Simple request (if possible). episode.imdb = IMDb tt#

You could use {tmdb-95057} S01E01 as ID for such purposes. That'd be better at identifying the episode and more human-readable compared to tt11608512 . The numeric TMDB Episode ID is available but again not all that useful, since TMDB itself doesn't even use the Episode ID for lookup purposes ...
by rednoah
09 May 2026, 16:30
Forum: Feature Requests and Bug Reports
Topic: Simple request (if possible). episode.imdb = IMDb tt#
Replies: 5
Views: 6508

Re: Simple request (if possible). episode.imdb = IMDb tt#

Well, the problem with IMDB IDs is that they're a bit useless because IMDB in general is a bit useless, for programs anyway. You'll want TMDB / TVDB IDs because that's where we have APIs that can use those IDs to retrieve episode information.
by rednoah
09 May 2026, 13:25
Forum: Windows
Topic: Filebot takes a lot of time at fetching artwork and, do not fetch all artwork
Replies: 5
Views: 6870

Re: Filebot takes a lot of time at fetching artwork and, do not fetch all artwork

It's very possible that the server can detect / guess if a human-operated browser is making the request or a robot, and then apply different rate-limiting / anti-abuse measures. The issue could also be completely unrelated. Your browser may also be using a different DNS service, thus connecting to a ...
by rednoah
09 May 2026, 13:05
Forum: Help and Support
Topic: FileBot 5.2.1 matching incorrectly
Replies: 8
Views: 10654

Re: FileBot 5.2.1 matching incorrectly

:?: Can you paste the file name? (see Export Original Files / New Names as TSV )


:idea: Looks good to me:
$ filebot -rename Superman.1978.mkv
[MOVE] from [Superman.1978.mkv] to [Superman (1978).mkv]





:idea: If FileBot is adamant about immediately matching the completely wrong movie, then ...
by rednoah
09 May 2026, 13:01
Forum: Feature Requests and Bug Reports
Topic: Simple request (if possible). episode.imdb = IMDb tt#
Replies: 5
Views: 6508

Re: Simple request (if possible). episode.imdb = IMDb tt#

FileBot generally only used series TMDB ID / IMDB ID. We generally don't support episode-level IMDB. I'm pretty sure that TMDB does not maintain IMDB IDs for episodes. The best I can give you is {episode.id} which will give you the numeric episode ID for your selected database. I would not use that ...
by rednoah
09 May 2026, 03:32
Forum: Windows
Topic: Filebot takes a lot of time at fetching artwork and, do not fetch all artwork
Replies: 5
Views: 6870

Re: Filebot takes a lot of time at fetching artwork and, do not fetch all artwork

:idea: ConnectException is a fundamental network connection error unrelated to any specific version of FileBot, nor FileBot specifically, and simply means that the remote server does not accept connections at this time, for some reason, due to being down, due to your IP being blocked, impossible to ...
by rednoah
06 May 2026, 16:37
Forum: Episode / Movie Naming Scheme
Topic: Source Media {vs} and {source}
Replies: 49
Views: 321172

Re: Source Media {vs} and {source}

CORE.WEB-DL has been added.