Search found 24342 matches

by rednoah
Today, 03:49
Forum: macOS
Topic: Fetch subtitels
Replies: 4
Views: 32310

Re: Fetch subtitels

when I click Rename, it never even searches for subtitles :idea: What are the file names you are working with? Are subtitles available for these files? The Fetch subtitle files feature may not always work because Exact Search: Lookup by Hash may not always work for the specific file at hand. And I ...
by rednoah
Yesterday, 10:04
Forum: Feature Requests and Bug Reports
Topic: [Feature Request] macOS - Registration Information and Activation Information and Updates
Replies: 5
Views: 5770

Re: [Feature Request] macOS - Registration Information and Activation Information and Updates

Well, the version number can be revealed with one click and the complete release details and explicit update-check are just one more click away. Perhaps not intuitive, but also less than a second of click work. That said, future releases (on macOS) will intercept About menu clicks and provide an ...
by rednoah
Yesterday, 04:15
Forum: Feature Requests and Bug Reports
Topic: [Feature Request] macOS - Registration Information and Activation Information and Updates
Replies: 5
Views: 5770

Re: [Feature Request] macOS - Registration Information and Activation Information and Updates

I think that anything like FileBot 5.2.0 (Activated) or FileBot 5.2.0 (P1234567) or FileBot 5.2.0 (Valid-Until: 2026-01-01) looks ugly and cringe. The version number is generally not relevant for day-to-day FileBot usage so it's not necessary to show it at all times. That said, if you're running an ...
by rednoah
28 Dec 2025, 15:02
Forum: Feature Requests and Bug Reports
Topic: different source for Poster / Artwork
Replies: 1
Views: 145

Re: different source for Poster / Artwork

Well, built-in support is not planned, but if those sites have an API, then you can easily write a Custom Post-Processing Script to download some files from somewhere after processing a given movie or episode. That way you can add support for any artwork source yourself. EDIT :idea: Neither The ...
by rednoah
27 Dec 2025, 07:33
Forum: Feature Requests and Bug Reports
Topic: Function Request: String.Truncate(length)
Replies: 3
Views: 2738

Re: Function Request: String.Truncate(length)

iansebryk wrote: 27 Dec 2025, 07:07 most often i don't want the exhaustive title, just the first 'n' words of it.
Try this:

Format: Select all

{ n.tokenize(' ').take(3).join(' ') }

:arrow: Alternatively, you can truncate to the nearest word-boundary like so:

Format: Select all

{ n.truncate(20, /\W/) }
by rednoah
25 Dec 2025, 03:58
Forum: Windows
Topic: After Update to Filebot 5.1.6 OpenSubtitleLogin doesn't work anymore
Replies: 15
Views: 9842

Re: After Update to Filebot 5.1.6 OpenSubtitleLogin doesn't work anymore

:?: What was the old password that didn't work? And you're using the FileBot Desktop application and not the FileBot Node Web application or command-line tools?
by rednoah
24 Dec 2025, 04:56
Forum: Scripting and Automation
Topic: ntfy notification
Replies: 2
Views: 319

Re: ntfy notification

:idea: Usage generally looks like this: --apply '{ source, target, metadata -> println "$source | $target | $metadata" }' --apply /path/to/apply.groovy :idea: As for how to pass these command-line options to the jlesage/filebot docker container, that you might have to figure out yourself with a bit ...
by rednoah
23 Dec 2025, 03:48
Forum: Episode / Movie Naming Scheme
Topic: Matching file rename based on MediaInfo data
Replies: 9
Views: 846

Re: Matching file rename based on MediaInfo data

Thanks! Those will be very useful for testing: OriginalSourceMedium_ID : 224 OriginalSourceMedium_ID/String : 224 (0xE0) OriginalSourceMedium : DVD-Video OriginalSourceMedium_ID : 4352 OriginalSourceMedium_ID/String : 4352 (0x1100) OriginalSourceMedium : Blu-ray :idea: HDR / Dolby Vision and ...
by rednoah
21 Dec 2025, 15:06
Forum: Episode / Movie Naming Scheme
Topic: Matching file rename based on MediaInfo data
Replies: 9
Views: 846

Re: Matching file rename based on MediaInfo data

SljivovitzDino wrote: 21 Dec 2025, 13:10 A little more testing with different ripping software, MakeMKV and Xreveal/CloneBD, only MakeMKV adds the original source medium
Thanks for the feedback. Do you mind pasting the raw MediaInfo table of such a tagged file here? Then we can use that for testing and future reference.
by rednoah
21 Dec 2025, 12:00
Forum: macOS
Topic: naming .srt files the same as the corresponding .mkv in the same folder
Replies: 5
Views: 988

Re: naming .srt files the same as the corresponding .mkv in the same folder

yhm28 wrote: 21 Dec 2025, 07:44 Screenshot
:?: When you see this, please change the format to { mediaFile } so that we can see what media file we're working with:

Format: Select all

{ mediaFile }
by rednoah
20 Dec 2025, 11:08
Forum: Synology NAS & Embedded Linux
Topic: Problem installing Java Installer on Synology NAS
Replies: 50
Views: 28242

Re: Problem installing Java Installer on Synology NAS

You could try to modify /var/packages/java-installer/target/get-java.sh and replace: curl -fsSL -o "$JDK_TAR_GZ" --retry 5 "$JDK_URL" with: curl --insecure -fsSL -o "$JDK_TAR_GZ" --retry 5 "$JDK_URL" Then restart the NAS to trigger the auto-update on start. Thank you :) Unfortunately, it didn't ...
by rednoah
20 Dec 2025, 03:39
Forum: Windows
Topic: the tail part of plex.tail doesn't work anymore
Replies: 3
Views: 433

Re: the tail part of plex.tail doesn't work anymore

No worries. On mobile. Thought you might appreciate a quick link now more than a well-written reply tomorrow.
by rednoah
20 Dec 2025, 02:45
Forum: Windows
Topic: the tail part of plex.tail doesn't work anymore
Replies: 3
Views: 433

Re: the tail part of plex.tail doesn't work anymore

rednoah wrote: 09 Dec 2025, 04:25 :idea: FileBot 5.2.0 has known issues on Windows in this regard. FileBot 5.2.1 fixes the issue.

:arrow: The easy solution is to just use {~plex} instead:

Format: Select all

{ ~plex }
Plex / Kodi / Emby / Jellyfin Naming Schemes › Advanced {plex} operators
:arrow: { plex.tail } not working
by rednoah
19 Dec 2025, 14:23
Forum: Episode / Movie Naming Scheme
Topic: Matching file rename based on MediaInfo data
Replies: 9
Views: 846

Re: Matching file rename based on MediaInfo data

Original source medium : Blu-ray Having "video[0].Original_source_medium" will result in "Blu-ray" (and likewise DVD-Video if it's a DVD.) That's pretty cool. If this tag becomes more common we'll see about updating {vs} and {source} to check for this as well.
by rednoah
19 Dec 2025, 08:27
Forum: Episode / Movie Naming Scheme
Topic: Matching file rename based on MediaInfo data
Replies: 9
Views: 846

Re: Matching file rename based on MediaInfo data

:idea: The {edition} is based on the filename , so it'll work / not work depending on whether or not there's keywords such as Directors Cut in the current filename. Please read [DOCS] The movie {tags} and movie {edition} bindings for details. :idea: I've never seen Original_source_medium in the ...
by rednoah
18 Dec 2025, 04:43
Forum: macOS
Topic: naming .srt files the same as the corresponding .mkv in the same folder
Replies: 5
Views: 988

Re: naming .srt files the same as the corresponding .mkv in the same folder

:idea: I'm not able to reproduce the issue with the format and sample file path given above: https://i.snipboard.io/D78h4I.jpg :?: What does the Format Editor say? Please click on the New Names item for the subtitle file, then Double-Click ➔ Edit Format to open the Format Editor for that specific m ...
by rednoah
16 Dec 2025, 04:35
Forum: Scripting and Automation
Topic: [DOCS] How do I select only specific files from the input folder?
Replies: 0
Views: 501

[DOCS] How do I select only specific files from the input folder?

GUI Presets allow you to set a default input folder from which files are loaded. An additional file filter expression allows you to select only specific files from that default input folder. e.g. select only video files: f.video e.g. select only episode files: f.episode e.g. select only movie files ...
by rednoah
15 Dec 2025, 03:32
Forum: Feature Requests and Bug Reports
Topic: plex movie format missing tmdb id in file name
Replies: 2
Views: 626

Re: plex movie format missing tmdb id in file name

The Plex naming guidelines call for the tmdb id to be present both in the enclosing directory name as well as the file name :idea: 1 ID marker in the file path is fine. Adding it twice is unnecessary and has no effect . :arrow: That said, you can use the {plex} binding with the ** operator to ...
by rednoah
15 Dec 2025, 03:21
Forum: Synology NAS & Embedded Linux
Topic: Problem installing Java Installer on Synology NAS
Replies: 50
Views: 28242

Re: Problem installing Java Installer on Synology NAS

Linus wrote: 14 Dec 2025, 20:28 Unfortunately, it didn't work out...
:?: What did the curl console output say when it didn't work out?
by rednoah
14 Dec 2025, 18:10
Forum: Synology NAS & Embedded Linux
Topic: Problem installing Java Installer on Synology NAS
Replies: 50
Views: 28242

Re: Problem installing Java Installer on Synology NAS

You could try to modify /var/packages/java-installer/target/get-java.sh and replace: curl -fsSL -o "$JDK_TAR_GZ" --retry 5 "$JDK_URL" with: curl --insecure -fsSL -o "$JDK_TAR_GZ" --retry 5 "$JDK_URL" Then restart the NAS to trigger the auto-update on start.
by rednoah
14 Dec 2025, 17:46
Forum: Synology NAS & Embedded Linux
Topic: Problem installing Java Installer on Synology NAS
Replies: 50
Views: 28242

Re: Problem installing Java Installer on Synology NAS

I was somehow completely blind to openssl actually printing an error: verify error:num=20:unable to get local issuer certificate That matches the error from curl : * TLSv1.3 (OUT), TLS alert, unknown CA (560): * SSL certificate problem: unable to get local issuer certificate The Sectigo Public ...
by rednoah
14 Dec 2025, 14:56
Forum: Synology NAS & Embedded Linux
Topic: Problem installing Java Installer on Synology NAS
Replies: 50
Views: 28242

Re: Problem installing Java Installer on Synology NAS

Well, openssl seems to say that the certificate chain is good... What if you try this with curl ? $ curl -v -I 'https://download.bell-sw.com/java/21.0.9+11/bellsoft-jdk21.0.9+11-linux-arm32-vfp-hflt.tar.gz' * TLSv1.0 (OUT), TLS header, Certificate Status (22): * TLSv1.3 (OUT), TLS handshake, Client ...
by rednoah
12 Dec 2025, 12:43
Forum: Help and Support
Topic: Plex just won't get the specials episode info right
Replies: 1
Views: 463

Re: Plex just won't get the specials episode info right

:arrow: Please share sample file paths as text so I can recreate your use case and run a few tests. :idea: Generally speaking, Plex requires standard TMDB / TVDB naming and numbering (HAMA is a unofficial 3rd party plugin that I myself am not very familiar with) so if you have AniDB named files and ...
by rednoah
11 Dec 2025, 16:42
Forum: macOS
Topic: naming .srt files the same as the corresponding .mkv in the same folder
Replies: 5
Views: 988

Re: naming .srt files the same as the corresponding .mkv in the same folder

:?: What are the file names you have? Please share sample file paths as text so that we can have a look. :idea: MediaInfo-based bindings such as {vc} and {hdr} or based on the corresponding primary video file even if the file at hand is a subtitle file. This notably only works if the video file ...
by rednoah
11 Dec 2025, 15:37
Forum: Synology NAS & Embedded Linux
Topic: Problem installing Java Installer on Synology NAS
Replies: 50
Views: 28242

Re: Problem installing Java Installer on Synology NAS

You could try to SSH into your DS414 and see what the openssl command says? rednoah@DS120j:~$ openssl s_client -connect download.bell-sw.com:443 CONNECTED(00000003) depth=2 C = GB, O = Sectigo Limited, CN = Sectigo Public Server Authentication Root R46 verify return:1 depth=1 C = GB, O = Sectigo ...