Search found 24630 matches

by rednoah
Yesterday, 17:12
Forum: Windows
Topic: Fielbot & windows Profile
Replies: 1
Views: 25

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
Yesterday, 03:48
Forum: macOS
Topic: Have App Store but using beta
Replies: 2
Views: 38

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: Rename files only without create extra files? .mtime, .mediadata, .mediainfo, .filename
Replies: 1
Views: 73

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: 36678

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: 253

[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: 111

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: 228

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: 228

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: 36678

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: 75

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: 284

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: 5607

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: 5607

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: 3395

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: 565

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: 5607

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: 735

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: 735

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: 501

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: 501

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: 735

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: 32000

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: 599

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: 1544

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: 1544

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.