POSTBUCKET - where random posts in unrelated topics go

Any questions? Need some help?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Exclude Blacklist & Series-Mappings

Post by rednoah »

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.
:idea: Please read the FAQ and How to Request Help.
ziki
Posts: 1
Joined: 20 Oct 2019, 23:49

Re: FileBot on the Mac App Store

Post by ziki »

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.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: FileBot on the Mac App Store

Post by rednoah »

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

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

:idea: 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.
:idea: Please read the FAQ and How to Request Help.
2elles
Posts: 16
Joined: 25 Oct 2019, 05:24

Re: Exclude Blacklist & Series-Mappings

Post by 2elles »

Series Mapping

Smithsonian : Smithsonian Channel Documentaries
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Exclude Blacklist & Series-Mappings

Post by rednoah »

2elles wrote: 27 Oct 2019, 06:51 Smithsonian : Smithsonian Channel Documentaries
Added: https://github.com/filebot/data/commit/ ... 057d6749a3
:idea: Please read the FAQ and How to Request Help.
ddloads
Posts: 1
Joined: 02 Nov 2019, 06:25

Re: [TAR] How to install FileBot on Linux / FreeBSD / Solaris / any Unix OS

Post by ddloads »

I have tried running the command you posted but I keep getting "Illegal variable name" any idea how to fix this?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [TAR] How to install FileBot on Linux / FreeBSD / Solaris / any Unix OS

Post by rednoah »

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.

:idea: Please read How to Request Help.
:idea: Please read the FAQ and How to Request Help.
kise
Posts: 21
Joined: 17 Sep 2019, 21:28

Re: Q&A for n00bs

Post by kise »

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.

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
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

You can use the --file-filter for that:

Code: Select all

--file-filter f.video
:idea: 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.
:idea: Please read the FAQ and How to Request Help.
kise
Posts: 21
Joined: 17 Sep 2019, 21:28

Re: Q&A for n00bs

Post by kise »

rednoah wrote: 04 Nov 2019, 16:56 You can use the --file-filter for that:

Code: Select all

--file-filter f.video
:idea: viewtopic.php?t=4222
thats great to hear, does the filter include ONLY videos files or subs included as well?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

f.video yields true for video files only.
:idea: Please read the FAQ and How to Request Help.
kise
Posts: 21
Joined: 17 Sep 2019, 21:28

Re: Q&A for n00bs

Post by kise »

rednoah wrote: 04 Nov 2019, 17:04 f.video yields true for video files only.
thats great, is it possible to combine two filters for video and subs?, i really just dont want nfo files :)
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

1.
kise wrote: 04 Nov 2019, 17:07 combine two filters for video and subs
Include video or subtitle files:

Code: Select all

--file-filter 'f.video || f.subtitle'


2.
kise wrote: 04 Nov 2019, 17:07 i really just dont want nfo files
Exclude *.nfo files:

Code: Select all

--file-filter 'ext != /nfo/'
:idea: Please read the FAQ and How to Request Help.
kise
Posts: 21
Joined: 17 Sep 2019, 21:28

Re: Q&A for n00bs

Post by kise »

rednoah wrote: 04 Nov 2019, 19:01 1.
kise wrote: 04 Nov 2019, 17:07 combine two filters for video and subs
Include video or subtitle files:

Code: Select all

--file-filter 'f.video || f.subtitle'


2.
kise wrote: 04 Nov 2019, 17:07 i really just dont want nfo files
Exclude *.nfo files:

Code: Select all

--file-filter 'ext != /nfo/'
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.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

kise wrote: 05 Nov 2019, 17:12 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.
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.
:idea: Please read the FAQ and How to Request Help.
kise
Posts: 21
Joined: 17 Sep 2019, 21:28

Re: Q&A for n00bs

Post by kise »

rednoah wrote: 05 Nov 2019, 17:37
kise wrote: 05 Nov 2019, 17:12 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.
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.
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.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

The documentation is up-to-date and does include the --file-filter option:
https://www.filebot.net/cli.html#arguments

:idea: 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.
:idea: Please read the FAQ and How to Request Help.
plittlefield
Posts: 101
Joined: 09 Mar 2014, 19:15

Re: [DEB] Debian package

Post by plittlefield »

Hello Reinhard,

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 ヾ(@⌒ー⌒@)ノ
...what's my best option for upgrading to 4.8.5 and Java 11?

Thanks,

Paully
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [DEB] Debian package

Post by rednoah »

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)"
Have you tried this yet?


:idea: Presumably, on Ubuntu 16.04, this will install Java 8 and and the Java 8 build of FileBot 4.8.5, since Java 11 / JavaFX 11 is only available for newer platforms.
:idea: Please read the FAQ and How to Request Help.
NexEternus
Posts: 5
Joined: 13 Nov 2019, 04:46

Re: Q&A for n00bs

Post by NexEternus »

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:

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 ';'
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

Can you post sample file paths and console output please?
:idea: Please read the FAQ and How to Request Help.
NexEternus
Posts: 5
Joined: 13 Nov 2019, 04:46

Re: Q&A for n00bs

Post by NexEternus »

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

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
How would I go about excluding part of the filepath?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Q&A for n00bs

Post by rednoah »

:arrow: Rename Web to WEB.

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
:idea: Please read the FAQ and How to Request Help.
nicoparker
Donor
Posts: 13
Joined: 18 Nov 2016, 08:34

Re: [DEB] Debian package

Post by nicoparker »

Hello everyone, I have a quick question : I'm using Filebot on a Ubuntu headless server (16.04) and the 4.7.9 was working fine with openjdk-8-jre-headless. The latest .deb (4.8.5) required though the full openjdk-8-jre and pulled over 200MB of libs.
Is there any good reason behind it or is it just a package error?
Regards
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [DEB] Debian package

Post by rednoah »

libjna is the only required package dependency:

Code: Select all

Depends: libjna-java
Recommends: default-jre, openjfx, mediainfo, libchromaprint-tools, p7zip-full, unrar | unrar-free
Enhances: nautilus-actions

The deb.sh installer script will however install all recommended dependencies, to make sure everything works out of the box regardless of your specific use case:

Code: Select all

sudo apt-get install --install-recommends -y filebot
:idea: Please read the FAQ and How to Request Help.
Post Reply