Search found 21738 matches

by rednoah
Today, 03:16
Forum: Feature Requests and Bug Reports
Topic: Custom --conflict action to prefer HEVC over AVC
Replies: 3
Views: 59

Re: Overwrite for TV episodes (Custom Conflict Action)

e.g. custom --conflict action that prefers HEVC over AVC : --conflict /path/to/VideoCodecOrder.groovy { from, to -> def score = { f -> ['HEVC':20, 'AVC':10][f.mediaCharacteristics.videoCodec] ?: 0 } score(from) > score(to) ? to : null } :idea: Note that this code only works for HEVC / AVC and any ot...
by rednoah
Yesterday, 18:23
Forum: Episode / Movie Naming Scheme
Topic: Filebot AMC seems to struggle with anime in the SXXEXX format.
Replies: 6
Views: 141

Re: Filebot AMC seems to struggle with anime in the SXXEXX format.

Yes, the amc script will switch between TV mode and Anime mode automatically depending on the files at hand, by default, unless specified otherwise.
by rednoah
Yesterday, 11:03
Forum: Feature Requests and Bug Reports
Topic: Custom --conflict action to prefer HEVC over AVC
Replies: 3
Views: 59

Re: Overwrite for TV episodes

A. No, because --conflict auto only works with comparable (i.e. numbers) media properties, e.g. resolution, bitrate, file size, etc. B. Yes, because you can write your own Conflict Action and have your own custom code decide what to do about any given pair of files: https://www.filebot.net/forums/vi...
by rednoah
Yesterday, 10:52
Forum: Help and Support
Topic: Wrong date on tv series (TVDB issue?)
Replies: 1
Views: 23

Re: Wrong date on tv series (TVDB issue?)

startDate is notably not the airdate of the first episode. startDate is a property of the series record, so it can be different from the airdate of the first episode, depending on what information TheTVDB staff has filled in. Looks like somebody has fixed the issue already, because I'm getting the ...
by rednoah
Yesterday, 10:27
Forum: Ubuntu & Linux
Topic: Series - Fix inputs of 1of6 to S01E01
Replies: 26
Views: 5484

Re: Series - Fix inputs of 1of6 to S01E01

= is the assignment operator. This is completely wrong. Syntactically correct, but doesn't do what you think it does. == is the equals operator. Still wrong, because you're using a regex on the right-hand side. =~ is the regex-find operator. ==~ is the regex-match operator. Those make sense if you ...
by rednoah
Yesterday, 02:31
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 7
Views: 117

Re: Running filebot with qBittorent fails to fetch resources

FileBot r9699 has been uploaded. The newly added debug logging might be helpful and explain the issue. Can you run tests with the latest revision please? https://get.filebot.net/filebot/BETA/ :idea: Make sure the use the *_universal.deb package. The *_amd64.deb package includes an embedded JDK 17 ru...
by rednoah
Yesterday, 01:48
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 7
Views: 117

Re: Running filebot with qBittorent fails to fetch resources

This message does indeed narrow it down an HTTP/2 issue somewhere:

Code: Select all

java.lang.NullPointerException
        at net.filebot.web.WebRequest.httpRequestV2(Unknown Source)
I will look into that method.
by rednoah
Yesterday, 01:39
Forum: Feature Requests and Bug Reports
Topic: duplication in the New Names listbox
Replies: 2
Views: 33

Re: duplication in the New Names listbox

:?: Can you show us a screenshot of your use case? The Match button uses completely different algorithms now, which has pros and cons. The pro is that it's no longer limited to to matching exactly one item per file, the con is that it's no longer limited to matching exactly one item per file. https:...
by rednoah
Yesterday, 01:21
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 7
Views: 117

Re: Running filebot with qBittorent fails to fetch resources

Can you try again with these settings? filebot -script fn:properties --def net.filebot.logging.debug=ALL net.filebot.web.WebRequest.log.response=true net.filebot.web.WebRequest.v1=false :idea: There are known HTTP/2 issues on JDK11 and net.filebot.web.WebRequest.v1 forces HTTP/1 so this may be one p...
by rednoah
27 Mar 2023, 12:30
Forum: Windows
Topic: Removing metadata autmatically.
Replies: 3
Views: 69

Re: Removing metadata autmatically.

That's reasonable. Stripping away metadata like "Pa55ed thru XXXHub. L77t Gr88t5" makes perfect sense. :arrow: You can write new metadata via the tags script (make sure to read the docs thoroughly; make sure to run your own tests first) after you have processed the files with FileBot: filebot -scrip...
by rednoah
27 Mar 2023, 02:56
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 7
Views: 117

Re: Running filebot with qBittorent fails to fetch resources

Sorry, I have no idea. I see that you've already enabled debug logging but no extra clues there. Getting different results is very mysterious, and shouldn't really be possible since it's the same code... Maybe TMDB is sending back invalid data sometimes? I'll see if I can add more debug logging. EDI...
by rednoah
26 Mar 2023, 16:44
Forum: macOS
Topic: NFO files generated by TinyMediaManager break series lookup
Replies: 10
Views: 180

Re: NFO files generated by TinyMediaManager break series lookup

UPDATE:

Invalid movie IDs in external NFO file may similarly break processing. FileBot r9689 fixes the issue on the movie side as well.

Code: Select all

Invalid Lookup: null [movie/tt0478557]
by rednoah
26 Mar 2023, 15:19
Forum: Windows
Topic: Clutter files size and video length question
Replies: 2
Views: 68

Re: Clutter files size and video length question

You have disabled the limits. This is not what you want: e.g. disable limits: filebot -script fn:properties --def net.filebot.media.clutter.size=0 net.filebot.media.clutter.length=PT0S :!: If limits are disabled, then FileBot will exclude all file paths that contain keywords such as Trailer , Sample...
by rednoah
26 Mar 2023, 13:33
Forum: Episode / Movie Naming Scheme
Topic: Filebot AMC seems to struggle with anime in the SXXEXX format.
Replies: 6
Views: 141

Re: Filebot AMC seems to struggle with anime in the SXXEXX format.

:!: --def 'ut_label=Anime' and --order Absolute force the amc script to use Absolute Order to interpret your input files, and thus explicitly makes files not work for your normal TV series / SxE numbered input files. :arrow: If your files use S00E00 or SxE numbering, then your files are normal TV Sh...
by rednoah
26 Mar 2023, 07:52
Forum: macOS
Topic: How to set proxy for MAS version?
Replies: 3
Views: 132

Re: How to set proxy for MAS version?

I don't actually know how the JRE resolves host names. I'd assume that it's using the OS system services for DNS lookup. Using a custom local DNS server in the macOS settings might work, or manually adding IPs to /etc/hosts as you have already done.
by rednoah
26 Mar 2023, 05:17
Forum: Help and Support
Topic: [AMC] skiping short videos?
Replies: 15
Views: 7111

Re: skiping short videos?

:!: Note that this thread is for the amc script so all of the above is generally not applicable to the FileBot Desktop application. ---------------------------------------- :idea: You may be able to use Manual Matching to semi-manually process files that are ignored by auto-detection for one reason ...
by rednoah
25 Mar 2023, 11:51
Forum: Ubuntu & Linux
Topic: Series - Fix inputs of 1of6 to S01E01
Replies: 26
Views: 5484

Re: Series - Fix inputs of 1of6 to S01E01

:idea: Note that FileBot does not support IMDB. :idea: --filter is a Groovy expression that yields either true or false for a given Episode or Movie object. You generally cannot pass bash data structures, because bash will always "flatten" it into a String value since that's the only kind of value t...
by rednoah
25 Mar 2023, 11:33
Forum: Help and Support
Topic: How do I match information from the entire file path? (file name or folder name)
Replies: 1
Views: 23

Re: Need help with that preset

You'll want to start rapid prototyping in the Format Editor and some test string / test file path: { 'TRUEFRENCH.MULTi.SUBFRENCH.CUSTOM.QC.'.matchAll(/(TRUEFRENCH)|[.](MULTi)[.]|(SUBFRENCH)|(CUSTOM)|[.](QC)[.]/) } [TRUEFRENCH, MULTi, SUBFRENCH, CUSTOM, QC] :arrow: You can then use f.path to access t...
by rednoah
25 Mar 2023, 09:17
Forum: macOS
Topic: How to set proxy for MAS version?
Replies: 3
Views: 132

Re: How to set proxy for MAS version?

FileBot will inherit your system settings by default. This should work for HTTP proxies at the very least. I don't know if the JRE supports socks5 proxies at all. Modifying the application bundle is definitely not supported though, since that will break code signatures, which in turn can lead to mac...