Search found 23843 matches

by rednoah
21 minutes ago
Forum: Help and Support
Topic: Can not process .iso file in command line
Replies: 1
Views: 25

Re: Can not process .iso file in command line

:idea: ISO images are treated like any other archive and extracted before processing, but something seems to not work, which leads to the extraction target folder not existing: ** Archive file can't be opened with any of the registered codecs ** File does not exist: /Download/video/movie/Minuscule ...
by rednoah
18 Mar 2025, 20:01
Forum: Scripting and Automation
Topic: [Script] Merge video and external subtitles
Replies: 0
Views: 114

[Script] Merge video and external subtitles

This post-processing script will call mkvmerge to mux the MKV video file and external SRT subtitles at hand into a single MKV file. { source, target -> // use 'mkvmerge' to remux mkv files with external subtitles if (target.extension == 'mkv') { def subtitles = target.dir.listFiles{ s -> s.extension ...
by rednoah
18 Mar 2025, 19:32
Forum: Feature Requests and Bug Reports
Topic: Always Launch FileBot Centered on Desktop
Replies: 10
Views: 369

Re: Always Launch FileBot Centered on Desktop

FileBot is definitely calling setLocation() with 110 in this case. The Java AWT layer could possibly modify the value, however unlikely. The Window Manager layer could modify the value. :?: Does the 30px happen to match some kind of 30px menu on the top of the screen? You could try different screen ...
by rednoah
18 Mar 2025, 17:52
Forum: Feature Requests and Bug Reports
Topic: Always Launch FileBot Centered on Desktop
Replies: 10
Views: 369

Re: Always Launch FileBot Centered on Desktop

The problem is that we can't fix it for you without potentially breaking things for others. We either set the location or we do not set the location. We cannot just disable the "remember location" feature for all Linux users just to see what happens after the next update for all the Linux users on ...
by rednoah
18 Mar 2025, 15:36
Forum: Feature Requests and Bug Reports
Topic: Always Launch FileBot Centered on Desktop
Replies: 10
Views: 369

Re: Always Launch FileBot Centered on Desktop

Thanks for running tests. That is peculiar indeed. FileBot definitely doesn't adjust the location. It'll simply set the window bounds on startup to what it says in the configuration file. Some something else downstream must then override those values, perhaps in the Java AWT layer, perhaps in the ...
by rednoah
18 Mar 2025, 12:38
Forum: Feature Requests and Bug Reports
Topic: Always Launch FileBot Centered on Desktop
Replies: 10
Views: 369

Re: Always Launch FileBot Centered on Desktop

FileBot will restore the window at this location and this size: x: 1976 y: 86 width: 1808 height: 906 :?: Are these values correct? Does FileBot not restore at this size / location? :idea: Unfortunately, there is no way to tell FileBot not not save / restore its window location. The current ...
by rednoah
18 Mar 2025, 00:31
Forum: Help and Support
Topic: High I/O makes container restart
Replies: 2
Views: 169

Re: High I/O makes container restart

excessive I/O usage :?: What is the I/O doing? :?: At random unrelated to what you do? What process inside the container is doing the I/O operations? Where is it doing the I/O operations? What is it reading / writing? :?: In response to you moving files? Are you using atomic move operations or copy ...
by rednoah
18 Mar 2025, 00:26
Forum: Feature Requests and Bug Reports
Topic: Always Launch FileBot Centered on Desktop
Replies: 10
Views: 369

Re: Always Launch FileBot Centered on Desktop

The FileBot window will save its location / size on close and restore with those values. There's probably something funky going on with the window manager, either reporting the wrong numbers when saving the window bounds or not respecting the window bounds that FileBot wants to set. Either way, no ...
by rednoah
17 Mar 2025, 21:03
Forum: Feature Requests and Bug Reports
Topic: add imdb as a match option
Replies: 4
Views: 1969

Re: add imdb as a match option

IMDB does not have an API and ToS explicitly prohibit Robots and Screen Scraping and so IMDB will not be added as a datasource as to avoid potential legal repercussions. I cannot prevent you from making your own page scraper though. EDIT: I'm not familiar with Bake Off The Professionals so I'm not ...
by rednoah
15 Mar 2025, 13:20
Forum: Feature Requests and Bug Reports
Topic: Refresh command works for only one media sever.
Replies: 2
Views: 158

Re: Refresh command works for only one media sever.

:idea: --def jellyfin and --def emby are the same option for historical reasons.

:arrow: You can send requests to multiple Jellyfin / Emby instances like so:

Shell: Select all

--def jellyfin="172.17.0.1:10008:3fce808210a94ac0bf12d449442f86de 172.17.0.1:10009:4kdi015d792a40a1bc67bf9e15e88cff"
by rednoah
14 Mar 2025, 07:32
Forum: Tips, Tricks and Tutorials
Topic: [FAQ] How do I open the Debug Console / Groovy Pad?
Replies: 0
Views: 286

[FAQ] How do I open the Debug Console / Groovy Pad?

1. Left-Click the empty area on the top right corner to reveal the hidden version information area: https://i.imgur.com/8dM3Yjl.png https://i.imgur.com/Jkq4v32.png 2. Left-Click the now visible version information area again to open the Debug Console : https://i.imgur.com/kxwt10L.png :arrow: Click ...
by rednoah
14 Mar 2025, 04:51
Forum: Windows
Topic: 4K Scaling Workaround for Win 10
Replies: 14
Views: 9443

Re: 4K Scaling Workaround for Win 10

:?: Are you using RDP? :arrow: Small Font on Windows 10 (in RDP session) I write software for a living and this can be worked around by giving the user the option to change the display font. :?: Let me know if you can figure out why the font size works on a local Windows session when the Windows ...
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: 781

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 ...
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: 781

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 ...
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: 103

Re: Request for specifying tmdb id for specified folder

it becomes challenging to modify filenames due to requirements like seeding in private trackers (PT) You'll want to not move / rename files that are in use by another application. You'll want to use hardlinks so that you can have the same file at 2 or more file paths without using any additional ...
by rednoah
12 Mar 2025, 14:12
Forum: Feature Requests and Bug Reports
Topic: Request for supporting user-specified rules for episode match in command line
Replies: 6
Views: 781

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

:?: What are the specific file paths you're having issues with? Please post sample file paths as text as console output so that we can see the issue at hand. :arrow: The --mapper option is likely the feature you're looking for. You will want to read [Anime] Convert Absolute to SxE numbers as well if ...
by rednoah
11 Mar 2025, 08:41
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 730
Views: 2047082

Re: Release Groups {group}

Code: Select all

AO
CNY
KI-AI
Pudding-sama
snk
https://github.com/filebot/data/pull/23
by rednoah
11 Mar 2025, 00:24
Forum: Scripting and Automation
Topic: CLI: How to output *only* the new name?
Replies: 6
Views: 482

Re: CLI: How to output *only* the new name?

I have a media directory that has multiple concurrent writers, so executing a rename / creating a symlink arbitrarily can break other users of the directory. You can do something like this: --action /usr/local/bin/my-synchronized-move-program FileBot will pass old file path and new file path as $1 ...
by rednoah
10 Mar 2025, 17:38
Forum: Scripting and Automation
Topic: CLI: How to output *only* the new name?
Replies: 6
Views: 482

Re: CLI: How to output *only* the new name?

--log INFO removes the "Consider using.." line, but nothing else. Here's what I get: $ filebot -rename *.mkv --db TheMovieDB -non-strict --action TEST --log INFO [TEST] from [Avatar.mkv] to [Avatar (2009).mkv] I have an unusual filesystem situation so filebot's own rename/symlink structures don't ...
by rednoah
10 Mar 2025, 17:14
Forum: Scripting and Automation
Topic: CLI: How to output *only* the new name?
Replies: 6
Views: 482

Re: CLI: How to output *only* the new name?

:?: What is your use case? Presumably you want to use filebot as part of some other script that does something for some reason? :idea: You could use --log INFO to reduce the number of lines in the console output. The format of each line however cannot be modified. That said, whatever it is you're ...