Search found 1251 matches

by kim
04 Nov 2021, 23:09
Forum: Help and Support
Topic: Cartoons and filebot
Replies: 3
Views: 5113

Re: Cartoons and filebot

Sign up for an account
https://www.themoviedb.org/signup

then click the + @ top
or https://www.themoviedb.org/movie/new

remember ALWAYS check if it's already on the site (maybe dif. name)

... when you add the "movie" it can take about 24 hours to appear via the API aka Filebot's info
by kim
04 Nov 2021, 23:02
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39303

Re: TVDB policy regarding out of order series

What does the output look like ? I don't think "--mapper" works with amc script, only rename ? filebot -rename *.mkv --db TheTVDB -non-strict --mapper "episode.number(null)" https://www.filebot.net/forums/viewtopic.php?t=10996 If so I don't see why it can't be made to, because it...
by kim
04 Nov 2021, 15:28
Forum: Help and Support
Topic: Cartoons and filebot
Replies: 3
Views: 5113

Re: Cartoons and filebot

Look under movies ;)

https://www.themoviedb.org/person/11246 ... an-maxwell

missing? you add it ;)
by kim
04 Nov 2021, 01:17
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Re: Read a compressed file (GZ) without unpacking it?

if it possible to use... Cache.getCache('exports', CacheType.Persistent).bytes(url, { new URL(it) }, { new GZIPInputStream(it) } ).get() like ... Cache.getCache('Manami', CacheType.Persistent).computeIfAbsent('anime-offline-database.json') { data.resolve('anime-offline-database.json.gz').bytes } I w...
by kim
03 Nov 2021, 21:56
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39303

Re: TVDB policy regarding out of order series

yes, dummy files
hint [00000000] ;)

It's a job for rednoah
by kim
03 Nov 2021, 20:25
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39303

Re: TVDB policy regarding out of order series

First time I tried this :) It took a bit of time to get working because no " Absolute Airdate Order" but you need to use " Date and Title " maybe update page ;) https://www.filebot.net/forums/viewtopic.php?t=6136 /Volumes/SeedDrive/PlexServer_2/{order.airdate.plex.derive{' {thetv...
by kim
03 Nov 2021, 19:48
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Re: Read a compressed file (GZ) without unpacking it?

Nice thx :D (you properly saved me a lot of time... EDIT: I would never have figured it out ) Can you give link to how this works ? bytes() must be Filebot only, getBytes() does not work bytes(url, URL.&new, GZIPInputStream.&new) bytes(url, { new URL(it) }, { new GZIPInputStream(it) } ) it d...
by kim
03 Nov 2021, 16:01
Forum: Help and Support
Topic: Most recent episodes from thetvdb are not loading in search results
Replies: 5
Views: 6740

Re: Most recent episodes from thetvdb are not loading in search results

Sounds like you are doing it wrong? GUI: Press CTRL+SHIFT+DEL (clear active caches only) do not use the Groovy pad to clear cache I already tried resetting the cache as stated in my first post with both the GUI and CLI methods in this post: https://www.filebot.net/forums/viewtopic.php?t=1996 Maybe t...
by kim
03 Nov 2021, 15:47
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Re: Read a compressed file (GZ) without unpacking it?

thx but I fail to see, how I can use this, it looks like it just puts the same compressed gz file in the cache? where is the "download, decompresses, and parse the data into memory at the same time" the decompresses in memory part is my main problem I need to be able to read the clear text...
by kim
02 Nov 2021, 15:06
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Re: Read a compressed file (GZ) without unpacking it?

Yes it sounds like what i was looking for, but I don't know how to do it ?
I don't care if I need to change it again and again
by kim
02 Nov 2021, 05:53
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Re: Read a compressed file (GZ) without unpacking it?

I was thinking I could do like you do with e.g. exclude-blacklist.txt.xz -> cache/data_x.data
(or any packed file going into the cache)

do you use a tmp dir and then delete the file or ?
by kim
02 Nov 2021, 00:12
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39303

Re: TVDB policy regarding out of order series

You can use the CLI like this: filebot -rename *.mp4 --db TheTVDB -non-strict --format "{plex.name}" --mapper "episode.number(null)" --filter "s == 47" --action TEST --log INFO MetricCascade(SeasonEpisode, AirDate, Title) 0.0000 => [D:\test\NOVA - S47E10 - Decoding COVI...
by kim
01 Nov 2021, 23:14
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39303

Re: TVDB policy regarding out of order series

If you don't care about the order you can use

Match by Episode Title
viewtopic.php?t=6136

Trying to rename Forensic Files episodes via the episode title
viewtopic.php?p=55854#p55854
by kim
01 Nov 2021, 22:56
Forum: Anything and Everything else
Topic: TVDB policy regarding out of order series
Replies: 28
Views: 39303

Re: TVDB policy regarding out of order series

The best way is make your life easier and just accept the order ;) BUT if you must, rednoah needs to add support for e.g. order by productionCode (I do not see it in episode info either ?) {"id":7687477,"airedSeason":47,"airedSeasonID":1812366,"airedEpisodeNumber&q...
by kim
01 Nov 2021, 15:38
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Re: Read a compressed file (GZ) without unpacking it?

I wanna update nfo's with ratings from IMDb Datasets:
https://www.imdb.com/interfaces/

and skip the save gz file -> unpack file -> read file -> delete files

so no more clear text, now

Code: Select all

byte[] content = 'text'.getBytes()
by kim
01 Nov 2021, 00:57
Forum: Scripting and Automation
Topic: Read a compressed file (GZ) without unpacking it?
Replies: 15
Views: 13926

Read a compressed file (GZ) without unpacking it?

Is there a way I can read a compressed file (GZ) without extracting / unpacking it ? (I working on download gz file -> read it -> write / save in Filebot's cache, I believe the cache will only work if string) Must be able to work on Linux and Windows I prefer to use function build into Filebot
by kim
01 Nov 2021, 00:38
Forum: Episode / Movie Naming Scheme
Topic: Solved, removing (US) from {ny} tag using TheTVDB with GUI windows
Replies: 3
Views: 5718

Re: Help, removing (US) from {ny} tag using TheTVDB

like this:

Code: Select all

"Hell's Kitchen (US) (2005)".replaceAll(/\(\D{2}\)\s?/)

https://regexr.com/
by kim
28 Oct 2021, 18:39
Forum: Windows
Topic: Not getting it ... what do i need
Replies: 2
Views: 5298

Re: Not getting it ... what do i need

use Plain File Mode as rednoah said but use this format: {fn.replaceAll(/(?:\d+\s-\s)(\w+\s-\sS\d+E\d+\s-\s)(?:\d+\s-\s)(\w+)/, '$1$2')} or {fn.replaceAll(/(?:\d+\s-\s)(\w+)(?:\s-\s)(S\d+E\d+)(?:\s-\s)(?:\d+\s-\s)(\w+$)/, '$1 - $2 - $3')} output: Castle - S01E01 - Pilot OR {fn.replaceAll(/(?:\d+\s-\...
by kim
27 Oct 2021, 20:18
Forum: Scripting and Automation
Topic: [AMC] Custom File Struture for Audio files
Replies: 15
Views: 14750

Re: [AMC] Custom File Struture for Audio files

looks like you used this on the files before: { minutes >= 20 ? 'AudioBooks' : 'Music' }/{n}/{album+'/'}{pi.pad(2)+'. '}{artist} - {t} use this to only rename/move audio files: { f.isAudio() ? allOf{ ext == 'm4b' ? 'AudioBooks' : 'Music' }{'/' + n + '/'}{album + '/'}{pi.pad(2) + '. '}{artist}{' - ' ...
by kim
26 Oct 2021, 21:46
Forum: Scripting and Automation
Topic: [AMC] Custom File Struture for Audio files
Replies: 15
Views: 14750

Re: [AMC] Custom File Struture for Audio files

Learn how works: https://groovy-lang.org/operators.html >= greater than or equal try in GUI { ext >= m4b } groovy.lang.MissingPropertyException: No such property: m4b for class make m4b a string value in order to compare { ext >= 'm4b' } but >= makes no sense so { ext == 'm4b' ? 'AudioBooks' : 'Musi...
by kim
17 Oct 2021, 21:55
Forum: Synology NAS & Embedded Linux
Topic: Kodi 16.1 and the tvshow.nfo
Replies: 15
Views: 20371

Re: Kodi 16.1 and the tvshow.nfo

I see you have removed episodeguide again ? https://github.com/filebot/scripts/commit/b95609bb73a309a60cb52badd73fb32f0012c7bd#diff-07c7f72c22ab809681e712b9dd048449dc4a77418ac715c3c9d01206fd592342 EDIT: https://kodi.wiki/view/Add-on:The_TVDB Kodi v18-20 still use episodeguide, like you removed e.g. ...
by kim
12 Oct 2021, 19:23
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17350

Re: Excluding multiple shows with excludes.txt

Maybe someone can use this (filter by id / name / year): sample file: 82618 Watchmen: Motion Comic (2009) 90001 Pitchmen (2009) 297138 WatchMojoq (2016) { def list = lines('PathTo/tvdb_excludes.txt')*.tokenize('\t()').collect{ [ 'id': it[0]?.toInteger(), 'name': it[1], 'year': it[2]?.toInteger() ] }...
by kim
09 Oct 2021, 02:06
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17350

Re: Excluding multiple shows with excludes.txt

e.g. like so --filter "!readLines('%FilterPath%').join().findAll(/\d+[^(19|20)\d{2}]/)*.toInteger().contains(id)" tvdb_excludes.txt id Name of TV Show / Movie ------------------------------- 74380 Magnum, P.I. (1980) 72546 CSI: Crime Scene Investigation (2000) we only use the id other info...
by kim
07 Oct 2021, 18:30
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17350

Re: Excluding multiple shows with excludes.txt

maybe the missing dot at end ?
Magnum, P.I.
https://thetvdb.com/series/magnum-pi

and the colon ?
CSI: Crime Scene Investigation
https://thetvdb.com/series/csi-crime-sc ... estigation