Search found 24538 matches
- Yesterday, 16:37
- Forum: Episode / Movie Naming Scheme
- Topic: Source Media {vs} and {source}
- Replies: 48
- Views: 279577
Re: Source Media {vs} and {source}
CORE.WEB-DL has been added.
- Yesterday, 14:45
- Forum: Windows
- Topic: Subtitles not working
- Replies: 3
- Views: 89
Re: Subtitles not working
What did the error say? Might be helpful for the next guy.
- Yesterday, 09:49
- Forum: Episode / Movie Naming Scheme
- Topic: Release Groups {group}
- Replies: 747
- Views: 2976096
Re: Release Groups {group}
All of the above have been added to the list now.
- Yesterday, 06:13
- Forum: Windows
- Topic: Subtitles not working
- Replies: 3
- Views: 89
Re: Subtitles not working
- Yesterday, 06:11
- Forum: Feature Requests and Bug Reports
- Topic: Slow Artwork Lookup
- Replies: 2
- Views: 80
Re: Slow Artwork Lookup
:?: What does the log say?
:?: What does the progress indicator / status say?
:idea: If there's a network issue, then FileBot might retry multiple times, perhaps for up to 10-20 seconds for each request. I suppose FileBot will do this for each requested artwork, failing and retrying requests ...
:?: What does the progress indicator / status say?
:idea: If there's a network issue, then FileBot might retry multiple times, perhaps for up to 10-20 seconds for each request. I suppose FileBot will do this for each requested artwork, failing and retrying requests ...
- Yesterday, 06:08
- Forum: Help and Support
- Topic: Lost License Key
- Replies: 1
- Views: 49
Re: Lost License Key
The only currently active license key associated with the email address you have used here in the forums is P79989290, a 1-year license newly purchased today.
- 04 May 2026, 09:23
- Forum: Scripting and Automation
- Topic: Look who's back, back again... Match array entry based on minimum runtime?
- Replies: 4
- Views: 310
Re: Look who's back, back again... Match array entry based on minimum runtime?
You'll probably want to compare the numerical values:
If you compare string values, then "9" is greater than "10", which is probably not what we want here.
Groovy: Select all
minutes >= (k as int)- 03 May 2026, 12:48
- Forum: Feature Requests and Bug Reports
- Topic: My Hero Academia: Vigilantes
- Replies: 4
- Views: 959
Re: My Hero Academia: Vigilantes
:idea: FileBot itself may not be aware of the implementation details of the underlying network connection (OSI Layer 1-6) because that is all happening on OS and JRE runtime layer, and so FileBot doesn't actually know what's going on, and can only forward the error message / error code it gets from ...
- 03 May 2026, 12:32
- Forum: Scripting and Automation
- Topic: Look who's back, back again... Match array entry based on minimum runtime?
- Replies: 4
- Views: 310
Re: Look who's back, back again... Match array entry based on minimum runtime?
Try this:
Format: Select all
{
def runtimes = [
188 : "Extended",
151 : "Special",
20 : '20min',
0 : '0min'
]
return runtimes.findResult{ k, v -> minutes >= k ? v : null }
}- 03 May 2026, 12:03
- Forum: Windows
- Topic: Constant issues with matching (with AniDB)
- Replies: 1
- Views: 144
Re: Constant issues with matching (with AniDB)
I cannot fundamentally reproduce the issue. I made a up an example file name and it works just fine here:
$ filebot -rename *.mkv --db AniDB
Rename episodes using [AniDB] with [Absolute Order]
Lookup via [Cowboy Bebop] [Cowboy Bebop]
Fetching episode data for [Cowboy Bebop]
* Cowboy Bebop [23] | 26 ...
$ filebot -rename *.mkv --db AniDB
Rename episodes using [AniDB] with [Absolute Order]
Lookup via [Cowboy Bebop] [Cowboy Bebop]
Fetching episode data for [Cowboy Bebop]
* Cowboy Bebop [23] | 26 ...
- 30 Apr 2026, 14:55
- Forum: macOS
- Topic: Universal binary for macOS 28
- Replies: 2
- Views: 247
Re: Universal binary for macOS 28
FileBot has x64 / Intel and arm64 / Apple Silicon binaries, so you can download the one for your platform:
https://www.filebot.net/download.html
:idea: FileBot notably does not have - and at this point never will have - universal binaries that contain both x64 and arm64 code in a single package ...
https://www.filebot.net/download.html
:idea: FileBot notably does not have - and at this point never will have - universal binaries that contain both x64 and arm64 code in a single package ...
- 28 Apr 2026, 05:01
- Forum: Feature Requests and Bug Reports
- Topic: My Hero Academia: Vigilantes
- Replies: 4
- Views: 959
Re: My Hero Academia: Vigilantes
You can enable full debug logging to see all the HTTP request / response messages via the advanced settings.
However, you have a fundamental network connection error, maybe a DNS issue, maybe *.fanart.tv servers being down or blocked by your ISP, etc. You would have to use something like wireshark ...
However, you have a fundamental network connection error, maybe a DNS issue, maybe *.fanart.tv servers being down or blocked by your ISP, etc. You would have to use something like wireshark ...
- 25 Apr 2026, 17:40
- Forum: Episode / Movie Naming Scheme
- Topic: Not insert .SDH into filename
- Replies: 1
- Views: 478
Re: Not insert .SDH into filename
- 23 Apr 2026, 07:02
- Forum: macOS
- Topic: FileBot 5.2.1 won't open on macOS 10.15.8
- Replies: 1
- Views: 981
Re: FileBot 5.2.1 won't open on macOS 10.15.8
macOS 13.7.8 and up should be fine. We hope to fix compatibility issues with macOS 10.15.8 with the next release.
- 22 Apr 2026, 11:34
- Forum: Windows
- Topic: Naming for Plex using TVDB
- Replies: 1
- Views: 872
Re: Naming for Plex using TVDB
:arrow: You'll want to configure FileBot for Plex as shown in the Getting Started video tutorials:
https://www.youtube.com/watch?v=cihWAvDW7MM
:idea: This entails setting {plex.id} as naming scheme, which changes the naming scheme to what Plex wants, file naming, folder naming, etc, the whole ...
https://www.youtube.com/watch?v=cihWAvDW7MM
:idea: This entails setting {plex.id} as naming scheme, which changes the naming scheme to what Plex wants, file naming, folder naming, etc, the whole ...
- 21 Apr 2026, 14:47
- Forum: Anything and Everything else
- Topic: Calendar mismatch after auto-rename with airing dates
- Replies: 1
- Views: 907
Re: Calendar mismatch after auto-rename with airing dates
:?: You mean to say you found unexpected behaviour after enabling the Set creation date post-processing feature? The episode airdate is typically not relevant in the context of FileBot.
:?: Can you give a specific episode that shows up with different airdates in different applications?
:idea ...
:?: Can you give a specific episode that shows up with different airdates in different applications?
:idea ...
- 19 Apr 2026, 10:21
- Forum: Anything and Everything else
- Topic: Buying filebot with cryptocurrency
- Replies: 1
- Views: 646
Re: Buying filebot with cryptocurrency
Your 1st public post as been approved so you can now send personal messages.
Moderation Required
Purchase FileBot with Crypto Currency
- 15 Apr 2026, 18:53
- Forum: Feature Requests and Bug Reports
- Topic: Right-Click FileBot Testing & Support
- Replies: 3
- Views: 943
Re: Right-Click FileBot Testing & Support
:idea: I see. You've disabled the Windows 11 context menu and are using the classic context menu instead. In that case the old [Windows] Explorer Context Menu Integration for Scripts reg files may also work well for you. That approach is possible since 2013 actually. This will likely work better for ...
- 15 Apr 2026, 17:28
- Forum: Windows
- Topic: make search result picture bigger
- Replies: 7
- Views: 13082
Re: make search result picture bigger
You will almost certainly need to restart FileBot after changing the scale factor to apply the new settings. I would also recommend restarting your PC after changing the scale factor.
- 15 Apr 2026, 17:23
- Forum: Windows
- Topic: make search result picture bigger
- Replies: 7
- Views: 13082
Re: make search result picture bigger
:idea: You can make FileBot bigger by setting the Windows Scale Factor to 200% instead of 100%. That'll make everything twice as big.
without changing windows?
:?: Is there any particular reason why you want to explicitly not use 200% in your Windows settings? Adding context would allow us to ...
without changing windows?
:?: Is there any particular reason why you want to explicitly not use 200% in your Windows settings? Adding context would allow us to ...
- 15 Apr 2026, 16:52
- Forum: Feature Requests and Bug Reports
- Topic: Right-Click FileBot Testing & Support
- Replies: 3
- Views: 943
Re: Right-Click Chatbot Testing & Support
1) Installation went fine. Seems to work just fine thru Windows explorer. However, I also use "Everything" from Voidtools, Wiztree, and Treesize for file management. The right-click menu doesn't show up on those utilities.
That's interesting, but support for 3rd party tools is unfortunately not ...
- 15 Apr 2026, 16:10
- Forum: Windows
- Topic: Font is very small
- Replies: 9
- Views: 24768
- 15 Apr 2026, 16:01
- Forum: Windows
- Topic: make search result picture bigger
- Replies: 7
- Views: 13082
Re: make search result picture bigger
:idea: I see. So based on the browser in the background it seems that you prefer 200% Scale Factor, so the easiest solution would be to set the Windows Scale Factor to 200% and then have everything scale accordingly. Changing the setting in Windows seems to me the easiest and best solution. You seem ...
- 15 Apr 2026, 06:05
- Forum: Windows
- Topic: make search result picture bigger
- Replies: 7
- Views: 13082