Search found 23002 matches

by rednoah
Today, 18:39
Forum: Windows
Topic: Windows version does not add season and episode when renaming?
Replies: 1
Views: 68

Re: Windows version does not add season and episode when renaming?

The format above explicitly does not generate season / episode numbers. This is likely movie format, and not an episode format. Please read Format Expressions for details. An episode format would look like this: {n} - {s00e00} - {t} n ... series name s00e00 ... season / episode numbers t ... episode...
by rednoah
Today, 18:24
Forum: Windows
Topic: -rename keeplink errors with "The file or directory is not a reparse point"
Replies: 12
Views: 536

Re: -rename keeplink errors with "The file or directory is not a reparse point"

You pass this --def exec expression: Parameter: exec = echo {quote historic.folder, folder} >> c:\filebot_logs\testexec.txt which results in this command being executed: echo @' M:\incoming\(( MOVIES ))\Double.Down.South.2022.1080p.WEBRip.DDP5.1.x265.10bit-GalaxyRG265[TGx] '@ @' W:\Movies\Double Dow...
by rednoah
Today, 10:01
Forum: Scripting and Automation
Topic: --apply import issues
Replies: 15
Views: 2013

Re: --apply import issues

Here's what I get: $ find input input input/Avatar.2009.mp4 input/poster.png input/movie.nfo $ filebot -rename input/Avatar.2009.mp4 --output output ... [MOVE] from [input/Avatar.2009.mp4] to [output/Avatar (2009).mp4] Processed 1 file $ filebot -find output --apply import output/Avatar (2009).mp4 [...
by rednoah
25 Apr 2024, 07:19
Forum: Scripting and Automation
Topic: conflict replace gets skipped
Replies: 7
Views: 161

Re: conflict replace gets skipped

--def excludeLink=y is a good solution. I forgot the amc script had its own built-in option for skipping already-hardlinked files as well. :lol:
by rednoah
25 Apr 2024, 07:15
Forum: Synology NAS & Embedded Linux
Topic: Broken Since DSM Update (Unsupported class file major version 65)
Replies: 3
Views: 79

Re: Broken Since DSM Update (Unsupported class file major version 65)

Phobos wrote: 24 Apr 2024, 20:55 4.9.5
I see. Upgrading to the latest version will almost certainly fix the issue at hand.
by rednoah
25 Apr 2024, 06:55
Forum: Help and Support
Topic: PLEX not recognising correct episode
Replies: 3
Views: 107

Re: PLEX not recognising correct episode

:idea: The Plex Series metadata agent in Plex uses TheMovieDB by default. You therefore must match and name your files against TheMovieDB in FileBot. TheTVDB numbering and TheMovieDB numbering is identical in most cases, but can be completely different on some cases, depending on the series at hand....
by rednoah
24 Apr 2024, 19:02
Forum: Scripting and Automation
Topic: movie deletion based on watch status and Imdb score
Replies: 3
Views: 100

Re: movie deletion based on watch status and Imdb score

Theoretically, yes. :?: But which database? How to read that database? Which tables? Which columns? That'll be the main challenge. :arrow: If you could write your own standalone tool that exports the watched / unwatched flag to something easy-to-read (e.g. xattr) then that would make the filebot bit...
by rednoah
24 Apr 2024, 06:50
Forum: Synology NAS & Embedded Linux
Topic: Broken Since DSM Update (Unsupported class file major version 65)
Replies: 3
Views: 79

Re: Broken Since DSM Update

:?: What version of FileBot are you using?


:arrow: Please upgrade FileBot to the latest version. Unsupported class file major version 65 suggests that you are using an outdated version of FileBot.
by rednoah
24 Apr 2024, 06:44
Forum: Scripting and Automation
Topic: movie deletion based on watch status and Imdb score
Replies: 3
Views: 100

Re: movie deletion based on watch status and Imdb score

:?: How does FileBot know if a movie is unwatched?


:idea: FileBot can certainly select files that are older (i.e. not modified or not accessed) than 90 days and have a low score. That would require basic command-line skills though. See find -exec for details.
by rednoah
24 Apr 2024, 06:38
Forum: Help and Support
Topic: PLEX not recognising correct episode
Replies: 3
Views: 107

Re: PLEX not recognising correct episode

:?: Did you configure Plex to use TheTVDB or TheMovieDB? :arrow: Please read the How do I organize files for Plex? guide: Match files against your preferred database. Make sure to use TheMovieDB and Airdate Order in both FileBot and your Plex library settings. https://i.imgur.com/ckd35yJ.png :!: DO ...
by rednoah
23 Apr 2024, 09:32
Forum: Scripting and Automation
Topic: Periods in renamed files
Replies: 2
Views: 59

Re: Periods in renamed files

e.g. use space instead of . in your format:

Format: Select all

{n} {s00e00} {t} {vc} {ac}
by rednoah
22 Apr 2024, 19:08
Forum: Windows
Topic: Filebot just buyed but dont work
Replies: 4
Views: 146

Re: Filebot just buyed but dont work

But filebot is not added on software list, do you have a workaround ? Sorry, you'll have to ask NordVPN support how to make their VPN work correctly. :idea: You could try this though: :idea: The java.net.preferIPv4Stack settings may (or may not) serve as a alternative workaround: Force IPv4 network...
by rednoah
21 Apr 2024, 17:43
Forum: Episode / Movie Naming Scheme
Topic: How to pad a single digit in Title Name?
Replies: 2
Views: 52

Re: How to pad a single digit in Title Name?

e.g.

Format: Select all

{ 'Episode 1'.replaceAll(/Episode \d/){ it.pad(2) } }

Code: Select all

Episode 01


:idea: The String.pad() helper notably works for any number in any String value:

Format: Select all

{ 'Episode 1'.pad(2) }
by rednoah
20 Apr 2024, 08:35
Forum: Synology NAS & Embedded Linux
Topic: [HARDLINK] Help understanding filesystems vs volumes on Syn NAS
Replies: 1
Views: 127

Re: Help understanding filesystems vs volumes on Syn NAS

My main question is why Filebot and/or Synology are treating Shared Folders (NFS) as different filesystems. I thought they'd be treated as the same. Keep in mind that FileBot itself is not doing file system operations. FileBot is politely asking the OS to perform an operation (e.g. hardlink A to B)...
by rednoah
19 Apr 2024, 08:53
Forum: Scripting and Automation
Topic: conflict replace gets skipped
Replies: 7
Views: 161

Re: conflict replace gets skipped

If you use --action hardlink and --conflict replace and if source / destination are already the same file then FileBot will still skip the operation since deleting the hardlink and then creating the same hardlink again is effectively no operation: [HARDLINK] Skipped [A] because [B] already exists :i...
by rednoah
19 Apr 2024, 07:24
Forum: Scripting and Automation
Topic: conflict replace gets skipped
Replies: 7
Views: 161

Re: conflict replace gets skipped

You'll want to process only files that have not yet been processed. :arrow: Since you're using hardlinks, the link count will tell you if the file has been processed or not. See How do I process only specific kinds of files? › Option 4: Start FileBot with --file-filter from Terminal for details and ...
by rednoah
19 Apr 2024, 01:48
Forum: Windows
Topic: Renaming reverts back after reboot
Replies: 1
Views: 62

Re: Renaming reverts back after reboot

If you rename files then they stay that way. Doesn't matter if you're doing it with FileBot or with something else. There's no way to "temporary" move / rename a file which is then undone on reboot. Here's how Revert files via the internal History works. You can use that to manually un-ren...
by rednoah
19 Apr 2024, 01:29
Forum: Episode / Movie Naming Scheme
Topic: How to Organise Folders by Groups of Letters
Replies: 1
Views: 49

Re: How to Organise Folders by Groups of Letters

e.g. { switch(az) { case 'A'..'E': return 'A-E' case 'F'..'J': return 'F-J' case 'K'..'O': return 'K-O' case 'P'..'T': return 'P-T' case 'U'..'Z': return 'U-Z' case '0-9': return '0-9' default: return '###' } } :idea: Note that {az} will return "0-9" by default (and not just a single digi...
by rednoah
19 Apr 2024, 00:41
Forum: Windows
Topic: -rename keeplink errors with "The file or directory is not a reparse point"
Replies: 12
Views: 536

Re: -rename keeplink errors with "The file or directory is not a reparse point"

1. I want the original folder/filenames on INCOMING_NAS as links so I can continue seeding them without wasting space. You want files on INCOMING_NAS to be links to files on STORAGE_NAS. You therefore do not want folders linking to other folders . The folder linking bit does not make sense if you th...
by rednoah
19 Apr 2024, 00:20
Forum: Windows
Topic: Using collections in the naming scheme - is this possible?
Replies: 2
Views: 60

Re: Using collections in the naming scheme - is this possible?

Yes, the {collection} binding will give you the movie collection name:

Format: Select all

{ collection }

e.g.

Format: Select all

D:/Movies/{ collection }/{ ~plex }