Search found 107 matches

by AbedlaPaille
11 Oct 2022, 14:23
Forum: Ubuntu & Desktop Linux
Topic: How to Force FileBot to update Sonarr/Radarr
Replies: 8
Views: 8801

Re: How to Force FileBot to update Sonarr/Radarr

ahh! Thats new to me! Then I starting to see how I should do it. So, this should work? filebot -script fn:amc --log-file amc.log --action copy -non-strict --conflict skip -non-strict "$HOME/test/LAlala/" --def "seriesFormat=$HOME/media/'TV Shows'/{n}/{'Season '+s.pad(2)}/{n} - {S00E0...
by AbedlaPaille
11 Oct 2022, 13:57
Forum: Scripting and Automation
Topic: process only recently added files within a folder?
Replies: 8
Views: 3748

Re: process only recently added files within a folder?

For reference i ended using --file-filter with {f.age} , as {f.creationDate} gave me numbers i couldn't understand and -no-probe with {age} only caught subtitle files. --file-filter "f.age < 0.04" (1 hour) is useful to for example automatically generate hardlinks as a post process to the a...
by AbedlaPaille
10 Oct 2022, 06:16
Forum: Help and Support
Topic: Filebot integration with Sonarr/Radarr
Replies: 2
Views: 4708

Re: Filebot integration with Sonarr/Radarr

I've managed to solve my initial issues, so i'm back to my original goal: To rescan/refresh a show in Sonarr once Filebot processed files belonging to it. I've found this thread on Sonarr's forum which is trying to accomplish the same thing: https://forums.sonarr.tv/t/refreshseries-rescanseries-comm...
by AbedlaPaille
09 Oct 2022, 14:48
Forum: Feature Requests and Bug Reports
Topic: Sort into Complete/Incomplete folders?
Replies: 12
Views: 7059

Re: Sort into Complete/Incomplete folders?

That's a win, thank you ! I'm copying here the modification to only take into consideration episodes that have already been aired yet, if anyone's interested (credit rednoah) { model.episodes.flatten().containsAll(episodelist.findAll{it.series == series && it.episode && it.title &...
by AbedlaPaille
08 Oct 2022, 17:57
Forum: Feature Requests and Bug Reports
Topic: Sort into Complete/Incomplete folders?
Replies: 12
Views: 7059

Re: Sort into Complete/Incomplete folders?

{model.episode.containsAll(episodelist.findAll{it.season == s && it.episode && it.title}} Testing that around it fails to understand S01E01-02 logic, it'll think the season is incomplete if you have those files. I guess there's a workaround given fn:miss is capable of seeing through...
by AbedlaPaille
12 Sep 2022, 16:19
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527782

Re: How about sharing our format expressions?

Looks great. Please let me know how to show folders under some category, (ex. first image). is it a separate magic app or just windows file explorer Just windows explorer, i created a movie library and added different paths that correspond to the categories i want https://cdn.discordapp.com/attachm...
by AbedlaPaille
06 Jan 2021, 01:52
Forum: Episode / Movie Naming Scheme
Topic: Determine if a movie is dubbed or in original language?
Replies: 2
Views: 5289

Re: Determine if a movie is dubbed or in original language?

Thanks man, works wonderfully. Tweaked it to fit my needs. My result : { any {info.OriginalLanguage ==~ /fr/ && audioLanguages =~ /fr/ ? 'VF' : ''} {languages.any{ audioLanguages =~ it } ? '' : 'Dubbed'} {textLanguages =~ /fra/ ? 'VOSTFR' : textLanguages =~ /eng/ ? 'VOSTEN' : ''} {fn.match(/...
by AbedlaPaille
30 Dec 2020, 15:05
Forum: Episode / Movie Naming Scheme
Topic: Determine if a movie is dubbed or in original language?
Replies: 2
Views: 5289

Determine if a movie is dubbed or in original language?

I'm trying to compare info.OriginalLanguage and audio.language for a match (or a mismatch), goal being a snippet that knows if a movie has orignal language audio track or not. My current setup : { any {! (info.OriginalLanguage ==~ /en/) && audio[0].language != /en/ ? audioLanguages[0].name.u...
by AbedlaPaille
17 Nov 2020, 05:20
Forum: Help and Support
Topic: Filebot integration with Sonarr/Radarr
Replies: 2
Views: 4708

Filebot integration with Sonarr/Radarr

I'm trying to figure out how to post process with filebot without messing the way my sonarr work. Seems more tricky than i assumed. I need to delete the original files for sonarr to fully pick up on the filebot processed files, if i don't, the manual refresh/rescan doesn't suffice and sonarr still s...
by AbedlaPaille
17 Nov 2020, 00:33
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527782

Re: How about sharing our format expressions?

Suggestion: you can display french subs (vostfr) even when it's not in the original filename. Maybe you have some of these files, nowdays with streaming platforms and mkv a lot of uploads contain subs in several languages within the .mkv, well Filebot can pull that for you! {any{textLanguages =~ /fr...
by AbedlaPaille
08 Sep 2020, 21:22
Forum: Help and Support
Topic: How to avoid redudant, duplicate hardlinks?
Replies: 6
Views: 3204

Re: How to avoid redudant, duplicate hardlinks?

Amazing, i thought it did the opposite!

Looks like i'm all setup. Thanks for your help.
by AbedlaPaille
08 Sep 2020, 14:17
Forum: Help and Support
Topic: How to avoid redudant, duplicate hardlinks?
Replies: 6
Views: 3204

Re: How to avoid redudant, duplicate hardlinks?

Interesting idea. Great for a manual pass every once in a while. The problem is MOVE isn't compatible with new additions from the master structure. So i'm stuck with hardlinks/duplicates for post processing new additions. Can't i make fn:duplicates pick/keep the most recently created file/folder in ...
by AbedlaPaille
04 Sep 2020, 21:34
Forum: Help and Support
Topic: How to avoid redudant, duplicate hardlinks?
Replies: 6
Views: 3204

Re: How to avoid redudant, duplicate hardlinks?

Because my library is big (800) and i'm managing a lot of hardlinks (10), most based on complex formats. Deleting and generating i've been doing, but manually every month or so -> it takes a while. Here i'm trying to automatize my hardlinks creation/management as a follow up to my qBittorent amc pos...
by AbedlaPaille
04 Sep 2020, 04:15
Forum: Help and Support
Topic: How to avoid redudant, duplicate hardlinks?
Replies: 6
Views: 3204

How to avoid redudant, duplicate hardlinks?

Description: Finding duplicate movie or episode files is easy once all your content has been renamed and xattr tagged with FileBot. This script allows you to view or delete duplicates. List Logical Duplicates: filebot -script fn:duplicates /path/to/files :idea: There are logical duplicates when mul...
by AbedlaPaille
15 Jul 2020, 04:39
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151878

Re: Multiple audio tracks with different codecs and languages

Added addToList = to make it more user friendly ( output e.g. [Add to "DTS XBR" codecList] ) Added useChFilter = to make it more user friendly ( true or false, makes it more "scene" like ) { def preferredLang = 'Eng' def useChFilter = false def filter = { [it.codec, it.ch, it.ob...
by AbedlaPaille
15 Jul 2020, 04:14
Forum: Episode / Movie Naming Scheme
Topic: newbie help - naming UHD or 4K or 2160p and REMUX plus more
Replies: 20
Views: 12338

Re: newbie help - naming UHD or 4K or 2160p and REMUX plus more

Added addToList = to make it more user friendly ( output e.g. [Add to "DTS XBR" codecList] ) Added useChFilter = to make it more user friendly ( true or false, makes it more "scene" like ) { def preferredLang = 'Eng' def useChFilter = false def filter = { [it.codec, it.ch, it.ob...
by AbedlaPaille
15 Jul 2020, 04:03
Forum: Help and Support
Topic: AMC script leaves off attributes when renaming some media files
Replies: 5
Views: 3222

Re: AMC script leaves off attributes when renaming some media files

If expression path and file path match filebot will just rename the file and not move anything. If you have a custom format and wish Filebot to follow it, you have to come up with a matching expression. plex.derive() is used to tweak the filename for extra infos, but it creates a path for you. If yo...
by AbedlaPaille
26 Jun 2020, 10:02
Forum: Episode / Movie Naming Scheme
Topic: TV shows scheme: mediainfo on season folder if all the same, on files if different?
Replies: 8
Views: 4493

Re: TV shows scheme: mediainfo on season folder if all the same, on files if different?

For sure. I've been a Filebot evangelist since ~2012, even got a friend who bought it ;) And i had no idea how helpful you were til this year. I'm close to be walking the streets with a Filebot cardboard now. Tell me if you ever do get something set-up for donations though. The kind of help you're w...
by AbedlaPaille
26 Jun 2020, 09:07
Forum: Episode / Movie Naming Scheme
Topic: TV shows scheme: mediainfo on season folder if all the same, on files if different?
Replies: 8
Views: 4493

Re: TV shows scheme: mediainfo on season folder if all the same, on files if different?

:mrgreen: Thank you.

Code: Select all

s == it.s
Kicking myself for not doing this on my own. And the filename match works, glorious.

Do you have something set-up for donations? When a dev helps you on ~100 posts he gets a couple free beers at the very least :D
by AbedlaPaille
26 Jun 2020, 08:54
Forum: Episode / Movie Naming Scheme
Topic: No season folder for miniseries?
Replies: 8
Views: 5014

Re: No season folder for miniseries?

:? Damn this was on the format expressions page.. I'm sorry. And thank you.
by AbedlaPaille
26 Jun 2020, 08:18
Forum: Episode / Movie Naming Scheme
Topic: No season folder for miniseries?
Replies: 8
Views: 5014

Re: No season folder for miniseries?

Situation 1 : TVDB has several seasons for this show Result 1 : Season folder creation Example 1 : Fringe/Season 2/Fringe - S02E02 - Night of Desirable Objects --- Situation 2 : TVDB has only one season for this show Result 2 : No season folder creation Example 2 : Firefly/Firefly - S01E01 - The Tr...
by AbedlaPaille
26 Jun 2020, 08:03
Forum: Episode / Movie Naming Scheme
Topic: TV shows scheme: mediainfo on season folder if all the same, on files if different?
Replies: 8
Views: 4493

Re: TV shows scheme: mediainfo on season folder if all the same, on files if different?

I managed to piece together something semi-functional. You're a good teacher :) {model.findAll{ id == it.id }.collect{ [it.vf, it.vc] }.unique().size() == 1 ? {allOf{vf}{vc}.joining(' ', ' [', ']')} : null} 1. Only big issue is i'm not finding how to select a serie's season instead of the whole show...
by AbedlaPaille
26 Jun 2020, 05:40
Forum: Episode / Movie Naming Scheme
Topic: TV shows scheme: mediainfo on season folder if all the same, on files if different?
Replies: 8
Views: 4493

Re: TV shows scheme: mediainfo on season folder if all the same, on files if different?

What {vs} {vf} values do you want in the folder path if there's more than one? None, let me try again. Situation 1 : Episodes values within a season do not match Result 1 : my scheme remains -- Extra info trail on episode files, none on season folder. Example 1 : Devs/Season 1/Devs - S01E01 - Episo...
by AbedlaPaille
24 Jun 2020, 02:35
Forum: Feature Requests and Bug Reports
Topic: Plex + filebot: splitted movies issue
Replies: 3
Views: 2464

Re: Plex + filebot: splitted movies issue

The problem with that Rednoah is perfectionism. Because CD1 can be below CD2 in explorer if some of the info differs, like bitrate. That's why we put CD$ before the extra informations. And i think that's why Plex thinks those are duplicates yeah. I have the same problem. More of a Plex problem than ...