Search found 1863 matches: filter

Searched query: +filter

by rednoah
02 May 2025, 08:38
Forum: Ubuntu & Desktop Linux
Topic: Couldn't connect to TMDB database (when using a proxy)
Replies: 5
Views: 901

Re: Couldn't connect to TMDB database

... https.proxyHost=127.0.0.1 https.proxyPort=7890 system properties seem to have been the solution. The log shows that everything is working now. ... Filter: Firefly - Special 1 - Trash: Binding "s": undefined net.filebot.format.BindingException: Binding "s": undefined ... You can ignore these warnings ...
by choco
02 May 2025, 04:41
Forum: Ubuntu & Desktop Linux
Topic: Couldn't connect to TMDB database (when using a proxy)
Replies: 5
Views: 901

Re: Couldn't connect to TMDB database

... little sun.io.unicode.encoding = UnicodeLittle sun.java.command = /usr/share/filebot/jar/filebot.jar -list --q Firefly --db TheMovieDB::TV --filter s == 1 --format {id} | {s} | {y} | {sxe} | {t} sun.java.launcher = SUN_STANDARD sun.jnu.encoding = UTF-8 sun.management.compiler = HotSpot 64-Bit ...
by rrands1
27 Apr 2025, 03:22
Forum: Windows
Topic: Invalid usage: The --output folder option is required
Replies: 2
Views: 553

Invalid usage: The --output folder option is required

... C:\Program Files\FileBot\filebot.launcher.exe" -script fn:amc --action move -non-strict -no-xattr --log-file "F:\InProcessTorrents\amc.log" --filter "any{episode; age < 9092}{true}" --def "@F:/InProcessTorrents/amc_args.txt" "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut ...
by rednoah
25 Apr 2025, 08:16
Forum: Scripting and Automation
Topic: Simple Command Help
Replies: 9
Views: 3671

Re: Simple Command Help

... Desktop application via a Preset or automatically when needed via the filebot command-line tool: $ filebot -rename -r /path/to/input --db file --filter "f.subtitle && none{ f =~ /subs/ }" --format "{folder}/subs/{fn.removeAll(/[.][a-z]{2,3}$/)}" [MOVE] from [Alias.1x01.eng.srt] to [subs/Alias.1x01 ...
by rednoah
15 Apr 2025, 20:28
Forum: Tips, Tricks and Tutorials
Topic: [DOCS] find -exec
Replies: 1
Views: 29979

Use ffmpeg to combine audio/video from an mkv file and subtitles from an external srt file

... and then run ffmpeg to combine the *.mkv file and the *.eng.srt file into a new *.mkv file with embedded subtitles: filebot -find /path/to/input --filter "f.hasExtension('eng.srt') && mediaFile.hasExtension('mkv') && none{ textLanguages }" -exec \ ffmpeg -i '{ mediaFile }' -sub_charenc UTF-8 -i '{ f ...
by rednoah
02 Apr 2025, 07:18
Forum: Help and Support
Topic: [TMDB/Movie] Fix incorrect tmdb match
Replies: 7
Views: 1777

Re: [TMDB/Movie] Fix incorrect tmdb match

... TEST --log INFO [TEST] from [Beast (2022) - 2160p - WEB-DL - CMRG.mkv] to [Movies/Beast (2022) {tmdb-760741}/Beast (2022).mkv] e.g. use the --filter option : $ filebot -rename *.mkv --db TheMovieDB -non-strict --format "{plex.id}" --filter "actors =~ /Idris Elba/" --action TEST --log INFO [TEST ...
by rednoah
24 Mar 2025, 07:26
Forum: Feature Requests and Bug Reports
Topic: Enhance Movie Matching Accuracy with Runtime-Based Disambiguation
Replies: 11
Views: 3836

Re: Enhance Movie Matching Accuracy with Runtime-Based Disambiguation

... and fine-tune the logic. :arrow: Alternatively, a quick and dirty solution you could do right now, no need to wait for future updates, is the --filter option: NOTE: we will assume that you're using the CLI for unattended automation, and not the GUI, since you did not respond to this question one ...
by skyanchor
23 Mar 2025, 22:19
Forum: Feature Requests and Bug Reports
Topic: Enhance Movie Matching Accuracy with Runtime-Based Disambiguation
Replies: 11
Views: 3836

Re: Enhance Movie Matching Accuracy with Runtime-Based Disambiguation

... conservative commercial estimate else: adjusted_runtime = local_runtime # Expanded tolerance accounts for commercials, cuts, etc. tolerance = 15 filtered_candidates = filter candidates where abs(candidate.runtime - adjusted_runtime) <= tolerance if filtered_candidates.length == 1: return filtered ...
by rednoah
23 Mar 2025, 09:14
Forum: Feature Requests and Bug Reports
Topic: Enhance Movie Matching Accuracy with Runtime-Based Disambiguation
Replies: 11
Views: 3836

Re: Enhance Movie Matching Accuracy with Runtime-Based Disambiguation

... to different editions, different cuts, etc. More research and test cases is needed here. :idea: If you're using the CLI then you could use the --filter option to preemptively exclude short movies from being considered for matching, assuming that you know in advance that you're only going to be ...
by dokuro
18 Mar 2025, 09:22
Forum: Feature Requests and Bug Reports
Topic: Always Launch FileBot Centered on Desktop
Replies: 10
Views: 2371

Re: Always Launch FileBot Centered on Desktop

... node name="episodelist"> <map> <entry key="engine.selected" value="0"/> </map> <node name="language.favorites"> <map/> </node> </node> <node name="filter"> <map/> </node> <node name="list"> <map/> </node> <node name="rename"> <map> <entry key="rename.episode.order" value="Airdate"/> <entry key ...
by gdlk
13 Mar 2025, 07:01
Forum: Feature Requests and Bug Reports
Topic: Request for supporting user-specified rules for episode match in command line
Replies: 6
Views: 2209

Re: Request for supporting user-specified rules for episode match in command line

... very much! This method can solve my problem. $ filebot -rename *.mp4 --output . --format "{plex.id}" --db TheMovieDB::TV -non-strict --q 107371 --filter "e > 106" --mapper "episode.derive(1, e - 106)" --action TEST --log INFO [TEST] from [[一念永恒第三季].A.Will.Eternal.S03E38.2024.1080p.WEB-DL.H264.AAC-Our ...
by rednoah
13 Mar 2025, 05:47
Forum: Feature Requests and Bug Reports
Topic: Request for supporting user-specified rules for episode match in command line
Replies: 6
Views: 2209

Re: Request for supporting user-specified rules for episode match in command line

get the input episode number 38, store it in a variable, say in, and then use --filter "e >= in+106" . The question is how can I get the number 38 and use it in --filter? That is a good question. How does FileBot know the episode number? Remember that FileBot does not know anything until the file has ...
by gdlk
13 Mar 2025, 03:38
Forum: Feature Requests and Bug Reports
Topic: Request for supporting user-specified rules for episode match in command line
Replies: 6
Views: 2209

Re: Request for supporting user-specified rules for episode match in command line

... for your reply! :idea: In this case I'd use the Linear Rename approach: $ filebot -list --q 107371 --db TheMovieDB::TV --format "{plex.id}" --filter "e >= 144" -rename *.mp4 --log INFO [MOVE] from [[一念永恒第三季].A.Will.Eternal.S03E38.2024.1080p.WEB-DL.H264.AAC-OurTV.mp4] to [TV Shows/A Will Eternal { ...
by rednoah
12 Mar 2025, 19:50
Forum: Feature Requests and Bug Reports
Topic: Request for supporting user-specified rules for episode match in command line
Replies: 6
Views: 2209

Re: Request for supporting user-specified rules for episode match in command line

:idea: In this case I'd use the Linear Rename approach: $ filebot -list --q 107371 --db TheMovieDB::TV --format "{plex.id}" --filter "e >= 144" -rename *.mp4 --log INFO [MOVE] from [[一念永恒第三季].A.Will.Eternal.S03E38.2024.1080p.WEB-DL.H264.AAC-OurTV.mp4] to [TV Shows/A Will Eternal {tmdb-107371}/Season 01 ...
by rednoah
12 Mar 2025, 14:31
Forum: Feature Requests and Bug Reports
Topic: Request for specifying tmdb id for specified folder
Replies: 2
Views: 1022

Re: Request for specifying tmdb id for specified folder

... TheTVDB and then move them to a dedicated /tvdb output folder: filebot -rename -r /input --output /tvdb --format "{plex.id}" --db TheTVDB --file-filter "f =~ /Alias/" --q 75930 :idea: A *.nfo file in the given folder will also - for better or worse - force specific TMDB ID for series lookup and ...
by rednoah
08 Mar 2025, 22:35
Forum: macOS
Topic: Match "Coma (2019).mkv" to Coma (2020) and not Coma (2019)
Replies: 20
Views: 3630

Re: Match "Coma (2019).mkv" to Coma (2020) and not Coma (2019)

... check for movie matches with suspiciously low runtime, that would work for this one specific case at the very least: $ filebot -mediainfo -r . --filter "runtime < minutes/2" --format "{fn} | {id} | {runtime} | {minutes}" Coma (2019) | 1409360 | 15 | 124 ** other heuristics are very much conceivable ...
by rednoah
08 Mar 2025, 13:05
Forum: macOS
Topic: Match "Coma (2019).mkv" to Coma (2020) and not Coma (2019)
Replies: 20
Views: 3630

Re: Always getting wrong result

... Mode because it's an exact match. Matching Coma (2019) to Coma (2020) over Coma (2019) would require some kind of additional hint. (NOTE: the --filter option could be used on the command-line, but the Desktop application has no equivalent) :arrow: Q: How do I fix misidentified files? :idea: You ...
by rednoah
05 Mar 2025, 17:24
Forum: Feature Requests and Bug Reports
Topic: Why is Plex showing background images as if they were posters?
Replies: 12
Views: 2996

Re: Why is Plex showing background images as if they were posters?

... rename the artwork files to whatever works best for you: $ filebot -script fn:amc … … $ filebot -rename -r /path/to/input --db file --file-filter "fn ==~ /poster|backdrop/" --format "{ folder }/artwork/{ fn.replace('poster':'abc', 'backdrop':'xyz') }" Rename files using [Plain File] [MOVE] fr ...
by rednoah
05 Mar 2025, 07:10
Forum: Feature Requests and Bug Reports
Topic: Why is Plex showing background images as if they were posters?
Replies: 12
Views: 2996

Re: Why is Plex showing background images as if they were posters?

... command to batch rename all the artwork files as desired. Just do that after the amc script and it's done. :?: What are you trying to do here? --filter "none{ n =~ _temp }" At a glance, this code means to filter movies and episodes where the movie name / series name does not contain _temp which is ...
by campkiser
05 Mar 2025, 04:40
Forum: Feature Requests and Bug Reports
Topic: Why is Plex showing background images as if they were posters?
Replies: 12
Views: 2996

Re: Why is Plex showing background images as if they were posters?

... issue... here's the script command I used... filebot -script fn:amc "B:\New Media Files\Common\Movies" --output "A:\Media" --action move -non-strict --conflict index --def minLengthMS=120000 --def unsorted=n music=y artwork=y subtitles=en clean=y deleteAfterExtract=y --filter "none{ n =~ _temp }"
by rednoah
04 Mar 2025, 09:47
Forum: Synology NAS & Embedded Linux
Topic: [ENTRYPOINT] Help creating custom automation (Noob)
Replies: 5
Views: 1430

Re: Help creating custom automation (Noob)

... E. FileBot does not support adult content or adult content databases. You can however set net.filebot.TheMovieDB.adult=true to make TheMovieDB not filter results. Alternatively, you may be able to write your own code to talk to your own database or website. See Plain File Mode , Custom Scraper and ...
by gardinerr2
20 Feb 2025, 09:02
Forum: Synology NAS & Embedded Linux
Topic: [TVmaze] Matching not working
Replies: 1
Views: 1087

[TVmaze] Matching not working

... 13 .. 2x01-15 .. 3x01-12 .. 4x01-13 .. 5x01-13 .. 6x01-13 .. 7x01-13 .. 8x01-13 .. 9x01-14 Fetching episode data for ['Til Death Do Us Part] Apply filter [none{ n =~ /Trackers/ }] on [173] options Include [Til Debt Do Us Part - 1x01 - A Life of Convenience] Include [Til Debt Do Us Part - 1x02 - Buy ...
by rednoah
04 Feb 2025, 11:07
Forum: Scripting and Automation
Topic: Scrape metadata and build NFO
Replies: 19
Views: 26124

Re: Scrape metadata and build NFO

... Water (2022) -- James Cameron [2160p]/Avatar] Processed 1 file NOTE: You cannot (easily) combine -d and -r for obvious reasons, e.g. -r -d --file-filter "f.children.name =~ /VIDEO_TS/" would select the parent folders of the VIDEO_TS folders. But it's getting pretty complicated. :arrow: If your disk ...
by rednoah
31 Jan 2025, 09:04
Forum: Scripting and Automation
Topic: Scrape metadata and build NFO
Replies: 19
Views: 26124

Re: Scrape metadata and build NFO

... movie.nfo . Is there a way to output a single, new NFO file called Avatar (2009).nfo that contains all the newly-scraped info? You can use --file-filter to only process video files: --file-filter "f.video" You can use --file-filter to only process video files and subtitle files: --file-filter "f ...
by rednoah
31 Jan 2025, 05:43
Forum: Scripting and Automation
Topic: Scrape metadata and build NFO
Replies: 19
Views: 26124

Re: Scrape metadata and build NFO

... Processing Features via the --apply option from Terminal to your command-line call as desired: --apply cover artwork nfo :idea: You can only select video files via Start FileBot with --file-filter from Terminal if you want to exclude the existing *.nfo files from processing: --file-filter f.video