Search found 21746 matches

by rednoah
Today, 12:08
Forum: Windows
Topic: Microsoft Store update
Replies: 3
Views: 44

Re: Microsoft Store update

I've sent you a complimentary license for testing:
viewtopic.php?t=1609
by rednoah
Today, 11:37
Forum: Feature Requests and Bug Reports
Topic: Custom --conflict action to prefer HEVC over AVC
Replies: 5
Views: 84

Re: Custom --conflict action to prefer HEVC over AVC

Sorry, no. The FileBot Node WebUI uses a combo box with fixed values, so you can't pass along custom Groovy code as --conflict option value.
by rednoah
Today, 08:53
Forum: Windows
Topic: Microsoft Store update
Replies: 3
Views: 44

Re: Microsoft Store update

FileBot 5.0.* will not be released on the Microsoft Store for the time being due to recently reported usability issues combined with the inability to switch between different versions: https://www.filebot.net/forums/viewtopic.php?t=13578 :idea: Future (more stable) releases will be released on the M...
by rednoah
Today, 08:11
Forum: Help and Support
Topic: Best way to rename my already sorted TV show from tmdb to tvdb
Replies: 3
Views: 48

Re: Best way to rename my already sorted TV show from tmdb to tvdb

You can use the --def seriesDB parameter to use a different database, which in turn changes the episode information, which in turn changes the values returned by the various bindings:

Code: Select all

--def seriesDB=TheTVDB
:arrow: viewtopic.php?t=13406
by rednoah
Today, 03:19
Forum: Help and Support
Topic: Best way to rename my already sorted TV show from tmdb to tvdb
Replies: 3
Views: 48

Re: Best way to rename my already sorted TV show from tmdb to tvdb

You can restore previously stored match information, assuming that you still have xattr metadata . :arrow: :arrow: Re-organize previously organized files using local xattr metadata After restoring TheMovieDB match information, you can then retrieve the TheTVDB ID from TheMovieDB API like so: { ' {tv...
by rednoah
Today, 02:40
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 9
Views: 202

Re: Running filebot with qBittorent fails to fetch resources

That's interesting. Looks like the internal HTTP/2 API in JDK11 in indeed broken, possibly due to proxy system settings, but that this kind of things intermittently works / not works would be most unusual, my guess it that network requests consistently never work, but if there's cached information a...
by rednoah
Yesterday, 10:16
Forum: Ubuntu & Linux
Topic: Series - Fix inputs of 1of6 to S01E01
Replies: 27
Views: 5554

Re: Series - Fix inputs of 1of6 to S01E01

e.g. catch errors and default to some value:

Code: Select all

{
	any{ genre ==~ /Documentary|News/ ? 'Documentaries' : 'TV Shows' }{ 'TV Shows (No Genre)' }
}
by rednoah
Yesterday, 03:16
Forum: Feature Requests and Bug Reports
Topic: Custom --conflict action to prefer HEVC over AVC
Replies: 5
Views: 84

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
28 Mar 2023, 18:23
Forum: Episode / Movie Naming Scheme
Topic: Filebot AMC seems to struggle with anime in the SXXEXX format.
Replies: 6
Views: 162

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
28 Mar 2023, 11:03
Forum: Feature Requests and Bug Reports
Topic: Custom --conflict action to prefer HEVC over AVC
Replies: 5
Views: 84

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
28 Mar 2023, 10:52
Forum: Help and Support
Topic: Wrong date on tv series (TVDB issue?)
Replies: 1
Views: 27

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
28 Mar 2023, 10:27
Forum: Ubuntu & Linux
Topic: Series - Fix inputs of 1of6 to S01E01
Replies: 27
Views: 5554

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
28 Mar 2023, 02:31
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 9
Views: 202

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
28 Mar 2023, 01:48
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 9
Views: 202

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
28 Mar 2023, 01:39
Forum: Feature Requests and Bug Reports
Topic: duplication in the New Names listbox
Replies: 2
Views: 43

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
28 Mar 2023, 01:21
Forum: Scripting and Automation
Topic: Running filebot with qBittorent fails to fetch resources
Replies: 9
Views: 202

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: 81

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: 9
Views: 202

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