POSTBUCKET - where random posts in unrelated topics go
Re: [PLEX] FileBot Xattr Metadata Scanners & Plug-ins
They go into this directory:
https://support.plex.tv/articles/202915 ... y-located/
Plex might pick them up from different locations though. Maybe your plug-in directory will work too.
https://support.plex.tv/articles/202915 ... y-located/
Plex might pick them up from different locations though. Maybe your plug-in directory will work too.
Re: Exclude Blacklist & Series-Mappings
Tokyo Ghoul Root A or also named Tokyo Ghoul √A is flagged as Tokyo Ghoul Season S02 in the TV DB.
Wikipedia with Tokyo Ghoul episode/season index:
https://en.wikipedia.org/wiki/List_of_T ... %E2%88%9AA
AniDB:
https://anidb.net/anime/10875
TVDB entry:
https://www.thetvdb.com/series/tokyo-ghoul/seasons/2
Happened to me that I accidently overwrote my Tokyo Ghoul S01 with the Root A S01 since FileBot wasnÄt able to see the difference because TVDB doesn't split it correctly.
Same goes for Tokio Ghoul :re Season 1 and 2, which are sadly sorted as Tokyo Goul season 3 in TVDB:
https://www.thetvdb.com/series/tokyo-ghoul/seasons/3
AniDB:
https://anidb.net/anime/13499
Wiki:
https://en.wikipedia.org/wiki/List_of_T ... _Ghoul:_re
Wikipedia with Tokyo Ghoul episode/season index:
https://en.wikipedia.org/wiki/List_of_T ... %E2%88%9AA
AniDB:
https://anidb.net/anime/10875
TVDB entry:
https://www.thetvdb.com/series/tokyo-ghoul/seasons/2
Happened to me that I accidently overwrote my Tokyo Ghoul S01 with the Root A S01 since FileBot wasnÄt able to see the difference because TVDB doesn't split it correctly.
Same goes for Tokio Ghoul :re Season 1 and 2, which are sadly sorted as Tokyo Goul season 3 in TVDB:
https://www.thetvdb.com/series/tokyo-ghoul/seasons/3
AniDB:
https://anidb.net/anime/13499
Wiki:
https://en.wikipedia.org/wiki/List_of_T ... _Ghoul:_re
Re: Exclude Blacklist & Series-Mappings
A sample file path is absolutely necessary. Please copy & paste the file path for one of the files that is giving you trouble, or the log if you're using the CLI.
Re: FileBot on the Mac App Store
Hey. I purchased the MAS version without realizing I'll be missing some functionality (mainly the subtitles). Is it possible to get the full version? It's a lot of money for an app with missing features. Sure, my bad for not doing the research, but to be fair, neither app store or your main web page mentions this.
Thanks for any help I get.
Cheers.
Thanks for any help I get.
Cheers.
Re: FileBot on the Mac App Store
Unfortunately, purchases from different stores and license systems are not interchangeable:
viewtopic.php?t=6265
I can offer 1 year complimentary universal licenses though:
viewtopic.php?t=9517
Apple does not allow the mentioning of features that are not in the MAS app. The FileBot website does however most prominently feature the direct purchase options for obvious reasons.
1/3 of the money you paid goes directly to Apple as reseller. You may judge their services and policies (e.g. Refund policy) for yourself and then decide to use or not use their services in the future.
viewtopic.php?t=6265
I can offer 1 year complimentary universal licenses though:
viewtopic.php?t=9517


Re: Exclude Blacklist & Series-Mappings
Series Mapping
Smithsonian : Smithsonian Channel Documentaries
Smithsonian : Smithsonian Channel Documentaries
Re: [TAR] How to install FileBot on Linux / FreeBSD / Solaris / any Unix OS
I have tried running the command you posted but I keep getting "Illegal variable name" any idea how to fix this?
Re: [TAR] How to install FileBot on Linux / FreeBSD / Solaris / any Unix OS
Which exact line number causes bash (Are you using bash?) to abort with this error message?
https://github.com/filebot/plugins/blob ... ler/tar.sh
Please post a screenshot that shows exactly what you're doing, and include as much additional information as possible, so we can take a guess as to what's special on your machine, that's different from anyone else.
Please read How to Request Help.
https://github.com/filebot/plugins/blob ... ler/tar.sh
Please post a screenshot that shows exactly what you're doing, and include as much additional information as possible, so we can take a guess as to what's special on your machine, that's different from anyone else.

Re: Q&A for n00bs
Hi,
I Use deluge executor script to rename files on completion, everything is fine except one minor problem, i would like to ignore non video files my script is quite completed as it is, is it possible to do so via --filter or anything anyways my scripts produce the following command based on file path.
I Use deluge executor script to rename files on completion, everything is fine except one minor problem, i would like to ignore non video files my script is quite completed as it is, is it possible to do so via --filter or anything anyways my scripts produce the following command based on file path.
Code: Select all
/usr/bin/filebot --db TheTVDB \
--q 360733 \
-rename '/media/e1b7/m7eesn/completed/tv/bydb-ttd/byid-360733/Watchmen.S01E02.1080p.WEB.h264-TBS[rarbg]' \
--output '/media/e1b7/m7eesn/media/TV Shows/' \
--format '{n}/Season {s.pad(2)}/{n} - {s00e00} - {t}' \
-non-strict \
--encoding utf8 \
--log all \
--log-file '/media/e1b7/m7eesn/src/logs/amc/2019_11_04.log' \
--action move \
--conflict index \
--def music=false \
--def skipExtract=true \
--def artwork=false \
--def ut_kind=multi \
--def minFileSize=100 \
--def minLengthMS=5
Re: Q&A for n00bs
You can use the --file-filter for that:
viewtopic.php?t=4222
--def name=value options are script options, in this case, specific to the amc script, so in this -rename these options do nothing.
Code: Select all
--file-filter f.video


Re: Q&A for n00bs
thats great to hear, does the filter include ONLY videos files or subs included as well?rednoah wrote: ↑04 Nov 2019, 16:56 You can use the --file-filter for that:Code: Select all
--file-filter f.video
viewtopic.php?t=4222
Re: Q&A for n00bs
f.video yields true for video files only.
Re: Q&A for n00bs
1.
2.
Include video or subtitle files:
Code: Select all
--file-filter 'f.video || f.subtitle'
2.
Exclude *.nfo files:
Code: Select all
--file-filter 'ext != /nfo/'
Re: Q&A for n00bs
Thank you, is there any up to date documentation page with those new changes fixes etc? it's really hard hunting those small but important changes.rednoah wrote: ↑04 Nov 2019, 19:01 1.Include video or subtitle files:Code: Select all
--file-filter 'f.video || f.subtitle'
2.Exclude *.nfo files:Code: Select all
--file-filter 'ext != /nfo/'
Re: Q&A for n00bs
The release notes can be found here:
https://github.com/filebot/docs/blob/master/CHANGES.md
The --file-filter option was introduced with FileBot 4.8.2 but I'm not sure what that would have to do with changes and fixes, since it was just new at the time, and the examples given above would have worked from day one.
Re: Q&A for n00bs
What i meant is that having update to date documentation for all those new features and how they work is really helpful instead of hunting for scattered forums posts and obscure URLs, and it would also cut down the amount of those unneeded questions. Also thank you for the changes URL that would be helpful in the future.rednoah wrote: ↑05 Nov 2019, 17:37The release notes can be found here:
https://github.com/filebot/docs/blob/master/CHANGES.md
The --file-filter option was introduced with FileBot 4.8.2 but I'm not sure what that would have to do with changes and fixes, since it was just new at the time, and the examples given above would have worked from day one.
Re: Q&A for n00bs
The documentation is up-to-date and does include the --file-filter option:
https://www.filebot.net/cli.html#arguments
filebot -help will give you the available options for the specific filebot build you're running.
EDIT:
Perhaps you're looking for documentation for all the possible values for the --file-filter option, such as 'f.video || f.subtitle', but that is tricky however, since these expressions are made up on the spot to deal with the situation at hand.
https://www.filebot.net/cli.html#arguments

EDIT:
Perhaps you're looking for documentation for all the possible values for the --file-filter option, such as 'f.video || f.subtitle', but that is tricky however, since these expressions are made up on the spot to deal with the situation at hand.
-
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [DEB] Debian package
Hello Reinhard,
I am currently on...
...what's my best option for upgrading to 4.8.5 and Java 11?
Thanks,
Paully
I am currently on...
Code: Select all
FileBot 4.8.2 (r5789)
JNA Native: 5.2.2
MediaInfo: 18.05
7-Zip-JBinding: 9.20
Chromaprint: java.io.IOException: Cannot run program "fpcalc": error=2, No such file or directory
Extended Attributes: OK
Unicode Filesystem: OK
Script Bundle: 2019-02-26 (r552)
Groovy: 2.5.1
JRE: OpenJDK Runtime Environment 1.8.0_222
JVM: 64-bit OpenJDK 64-Bit Server VM
CPU/MEM: 4 Core / 3 GB Max Memory / 18 MB Used Memory
OS: Linux (amd64) Ubuntu 16.04.6 LTS
HW: Linux nas 4.15.0-15-generic #16~16.04.1-Ubuntu SMP Thu Apr 5 12:19:23 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
DATA: /home/paully/Downloads/filebot/data/paully
Package: TAR
License: FileBot License P8xxxxx3 (Valid-Until: 2020-07-31)
------------------- UPDATE AVAILABLE: FileBot 4.8.5 (r6224) --------------------
Done ヾ(@⌒ー⌒@)ノ
Thanks,
Paully
Re: [DEB] Debian package
Have you tried this yet?rednoah wrote: ↑13 Jul 2018, 12:00 The installer/deb.sh will add the repository and install FileBot for you:Code: Select all
bash -xu <<< "$(curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh)"

-
- Posts: 5
- Joined: 13 Nov 2019, 04:46
Re: Q&A for n00bs
Hi, new to filebot and I was having an issue with incorrect database matching because filebot is matching WEB (as in the format from webdl/webrip) to movies with Web in the name, such as Dark Web (2017), Web of Lies, etc.
viewtopic.php?f=3&t=360 < The query blacklist mentioned here sounds like the solution I'm looking for. How would I go about implementing this, since I don't see an -exclude-from-file flag or anything in the CLI usage documentation. Here is my current command:
viewtopic.php?f=3&t=360 < The query blacklist mentioned here sounds like the solution I'm looking for. How would I go about implementing this, since I don't see an -exclude-from-file flag or anything in the CLI usage documentation. Here is my current command:
Code: Select all
find /path/to/files/Temp -maxdepth 1 -type f -exec filebot -rename {} --db TheMovieDB --format "{n.colon(' - ')} ({y}) / {fn}" -non-strict --output "/path/to/files/Temp" -no-xattr ';'
Re: Q&A for n00bs
Can you post sample file paths and console output please?
-
- Posts: 5
- Joined: 13 Nov 2019, 04:46
Re: Q&A for n00bs
Hmm. So I think it might not be the filename that is fucking with it, but rather the folder name. I have all my webdls/webrips in a folder called Web. So, filebot might be thinking that is the movie name, since if I do the same action in another folder called "Temp" the results are different. Below is a short snippet of 2008 movies getting matched to the movie Web of Desire (2008).
The results are much different in a folder called "Temp" and not "Web". As you can see, I still get wrong matches, but I get some right, and none go into random movies with Web in the name.
How would I go about excluding part of the filepath?
Code: Select all
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/A.Childs.Christmas.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/A.Childs.Christmas.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/A.Childs.Christmas.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/Hairtales.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/Hairtales.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/Hairtales.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/Hannahs.Gift.2008.1080p.WEBRip.DD2.0.x264-NTb.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/Hannahs.Gift.2008.1080p.WEBRip.DD2.0.x264-NTb.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/Hannahs.Gift.2008.1080p.WEBRip.DD2.0.x264-NTb.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/Randy.Newman.Live.in.London.2008.1080p.AMZN.WEB-DL.DD2.0.H.264-SiGMA.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/Randy.Newman.Live.in.London.2008.1080p.AMZN.WEB-DL.DD2.0.H.264-SiGMA.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/Randy.Newman.Live.in.London.2008.1080p.AMZN.WEB-DL.DD2.0.H.264-SiGMA.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/Staind.Live.in.Cologne.Germany.2008.1080p.Amazon.WEB-DL.DD2.0.x264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/Staind.Live.in.Cologne.Germany.2008.1080p.Amazon.WEB-DL.DD2.0.x264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/Staind.Live.in.Cologne.Germany.2008.1080p.Amazon.WEB-DL.DD2.0.x264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/The.Lost.World.of.Mr.Hardy.2008.1080p.WEBRip.DD2.0.x264-monkee.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/The.Lost.World.of.Mr.Hardy.2008.1080p.WEBRip.DD2.0.x264-monkee.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/The.Lost.World.of.Mr.Hardy.2008.1080p.WEBRip.DD2.0.x264-monkee.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/The.Solomon.Treasures.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/The.Solomon.Treasures.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/The.Solomon.Treasures.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Web/Wargames.The.Dead.Code.2008.1080p.AMZN.WEB-DL.DDP5.1.H.264-BLUTONiUM.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Web/Wargames.The.Dead.Code.2008.1080p.AMZN.WEB-DL.DDP5.1.H.264-BLUTONiUM.mkv] to [/home/nex/gdrive/Media/HD/Movies/Web/Web of Desire (2008)/Wargames.The.Dead.Code.2008.1080p.AMZN.WEB-DL.DDP5.1.H.264-BLUTONiUM.mkv]
The results are much different in a folder called "Temp" and not "Web". As you can see, I still get wrong matches, but I get some right, and none go into random movies with Web in the name.
Code: Select all
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/A.Childs.Christmas.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/A.Childs.Christmas.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/Coopers' Camera (2009)/A.Childs.Christmas.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/Hairtales.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/Hairtales.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/Tales (2014)/Hairtales.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/Hannahs.Gift.2008.1080p.WEBRip.DD2.0.x264-NTb.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/Hannahs.Gift.2008.1080p.WEBRip.DD2.0.x264-NTb.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/Echelon Conspiracy (2009)/Hannahs.Gift.2008.1080p.WEBRip.DD2.0.x264-NTb.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/Randy.Newman.Live.in.London.2008.1080p.AMZN.WEB-DL.DD2.0.H.264-SiGMA.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/Randy.Newman.Live.in.London.2008.1080p.AMZN.WEB-DL.DD2.0.H.264-SiGMA.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/Randy Newman - Live in London (2010)/Randy.Newman.Live.in.London.2008.1080p.AMZN.WEB-DL.DD2.0.H.264-SiGMA.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/Staind.Live.in.Cologne.Germany.2008.1080p.Amazon.WEB-DL.DD2.0.x264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/Staind.Live.in.Cologne.Germany.2008.1080p.Amazon.WEB-DL.DD2.0.x264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/Live! (2007)/Staind.Live.in.Cologne.Germany.2008.1080p.Amazon.WEB-DL.DD2.0.x264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/The.Lost.World.of.Mr.Hardy.2008.1080p.WEBRip.DD2.0.x264-monkee.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/The.Lost.World.of.Mr.Hardy.2008.1080p.WEBRip.DD2.0.x264-monkee.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/The Lost World of Mr. Hardy (2009)/The.Lost.World.of.Mr.Hardy.2008.1080p.WEBRip.DD2.0.x264-monkee.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/The.Solomon.Treasures.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/The.Solomon.Treasures.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/Solomon (1997)/The.Solomon.Treasures.2008.1080p.Amazon.WEB-DL.DD2.0.H.264-QOQ.mkv]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/home/nex/gdrive/Media/HD/Movies/Temp/Wargames.The.Dead.Code.2008.1080p.AMZN.WEB-DL.DDP5.1.H.264-BLUTONiUM.mkv]
[MOVE] from [/home/nex/gdrive/Media/HD/Movies/Temp/Wargames.The.Dead.Code.2008.1080p.AMZN.WEB-DL.DDP5.1.H.264-BLUTONiUM.mkv] to [/home/nex/gdrive/Media/HD/Movies/Temp/War Games - The Dead Code (2008)/Wargames.The.Dead.Code.2008.1080p.AMZN.WEB-DL.DDP5.1.H.264-BLUTONiUM.mkv]
Processed 1 files
Re: Q&A for n00bs

Alternatively, there's many other blacklisted terms that you can use for folder names that are known not to be interpreted:
viewtopic.php?t=360