Page 10 of 11

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 07 Feb 2020, 19:24
by rednoah
I've sent you a complimentary license. Your time is much appreciated. I'll see if I can make any improvements based on the issues you illustrate in your video, additional docs and tutorials, especially for the supplementary tools.


:idea: Upcoming releases will auto-exclude NCED and NCOP files, as to not interfere with matching normal episodes.

Re: Metadata and Extended Attributes

Posted: 12 Feb 2020, 10:55
by juan
Can this be used to save the audios and subtitles mediainfo of the multimedia file?

It could be great to have this added to the xattr attributes (or file), so, Plex don't need to scan the multimedia file to get the audio and subtitle languages, the default audio, the forced subtitles, the duratión of the film....

This with a combination of an unionfs or mergerfs to save the xattr attributes, and rclone with a cloud provider (like a gsuite), could be perfect.

Or maybe apart of the xattr attributes, the data could be saved on an .nfo like the one that jellyfin creates, that have all this information!!

Code: Select all

  <fileinfo>
    <streamdetails>
      <video>
        <codec>h264</codec>
        <micodec>h264</micodec>
        <bitrate>10312878</bitrate>
        <width>1872</width>
        <height>1080</height>
        <aspect>26:15</aspect>
        <aspectratio>26:15</aspectratio>
        <framerate>23.97602</framerate>
        <scantype>progressive</scantype>
        <default>True</default>
        <forced>False</forced>
        <duration>46</duration>
        <durationinseconds>2780</durationinseconds>
      </video>
      <audio>
        <codec>ac3</codec>
        <micodec>ac3</micodec>
        <bitrate>192000</bitrate>
        <language>spa</language>
        <scantype>progressive</scantype>
        <channels>2</channels>
        <samplingrate>48000</samplingrate>
        <default>True</default>
        <forced>False</forced>
      </audio>
      <audio>
        <codec>dts</codec>
        <micodec>dts</micodec>
        <bitrate>1536000</bitrate>
        <language>eng</language>
        <scantype>progressive</scantype>
        <channels>6</channels>
        <samplingrate>48000</samplingrate>
        <default>False</default>
        <forced>False</forced>
      </audio>
      <subtitle>
        <codec>subrip</codec>
        <micodec>subrip</micodec>
        <language>spa</language>
        <scantype>progressive</scantype>
        <default>False</default>
        <forced>False</forced>
      </subtitle>
      <subtitle>
        <codec>subrip</codec>
        <micodec>subrip</micodec>
        <language>eng</language>
        <scantype>progressive</scantype>
        <default>False</default>
        <forced>False</forced>
      </subtitle>
    </streamdetails>
  </fileinfo>
  
Or maybe it's not even possible to send this information to plex.

Re: Metadata and Extended Attributes

Posted: 12 Feb 2020, 15:18
by rednoah
FileBot xattr metadata does not include MediaInfo, since that's readily available in the file itself. There are existing scripts for exporting MediaInfo, but there's no standardized way of passing any of that information on to Plex or Jellyfin. You could write your own integration though.

Re: Metadata and Extended Attributes

Posted: 12 Feb 2020, 18:11
by devster
Is there a script to convert from one type of xattr.store to another?
In particular I'm thinking about switching to plain text files instead of embedded for a filesystem change.

Re: Metadata and Extended Attributes

Posted: 12 Feb 2020, 18:20
by rednoah
--apply metadata can be used to export xattr to .xattr folders and files:
viewtopic.php?t=11079

Re: --mode interactive

Posted: 18 Feb 2020, 08:16
by juan
Could be handy if we can see for each option the tvdb or themoviedb id, because sometimes some series or movies have the same name, so we need more info to choose the correct option!

Re: --mode interactive

Posted: 18 Feb 2020, 09:16
by rednoah
Can you provide specific examples? Screenshots?

Re: [DEB] Debian package

Posted: 21 Feb 2020, 23:50
by mouzzampk2014
Hi, I currently installed filebot on ubuntu 18.04 via this

Code: Select all

bash -xu <<< "$(curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh)"
because

Code: Select all

sudo apt-get install filebot
gave me errors.

And I believe `4.9.0` is ready for release. So I am not sure how I am going to update from current version?

Code: Select all

4.8.5 to 4.9.0
And is there any reason I am getting this error on two different machine with same ubuntu 18.04 when I try to install via this?

Code: Select all

sudo apt-get install filebot
Thank you

Re: [DEB] Debian package

Posted: 22 Feb 2020, 06:43
by rednoah
FileBot 4.9.0 is in beta and no final release has been published at this point in time. The apt repository is only available for the latest stable release, which is FileBot 4.8.5 at the time of writing.

Re: [DEB] Debian package

Posted: 22 Feb 2020, 21:46
by mouzzampk2014
rednoah wrote: 22 Feb 2020, 06:43 FileBot 4.9.0 is in beta and no final release has been published at this point in time. The apt repository is only available for the latest stable release, which is FileBot 4.8.5 at the time of writing.
Oops then I definitely read it wrong somewhere about 4.9.0 :D but when I tried to install 4.8.5 via apt repository I was getting errors so I have been told to run it via bash. Now I am little confuse.

Re: FileBot on the Mac App Store

Posted: 19 Mar 2020, 05:10
by rednoah
Updates:

The MAS causes a disproportionate amount of extra work to developers, due to ever-changing Apple rules, which causes apps that were fine in the past, to not pass review in the future, and thus making it impossible to reliably deploy updates to end users.


:idea: Although I will do my best to continue to support the MAS package into the foreseeable future for the sake of existing users, I shall increase the Price Level to account for the development pain exclusive to this platform.


Mar 19, 2020: 4.9.0 Binary Rejected

Code: Select all

Guideline 2.4.5(v) - Performance
* Your app requests admin access from the user launching the app.
* App is asking for KeyStroke access.
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
* We noticed that your app requests the user’s consent to access their Network Volume but does not clarify the use of this feature in the applicable purpose string.
:arrow: These issues cannot be fixed, as they're either incorrect (i.e. MAS sandboxing doesn't allow admin access and file system access in the first place) or caused by the underlying Java / JavaFX runtime which cannot be easily fixed. Hence, FileBot 4.9.0 will not be published on the Mac App Store, unless Apple Review decides to accept the package as is.

Re: [RPM] Fedora package

Posted: 24 Mar 2020, 04:50
by rednoah
rednoah wrote: 10 May 2019, 14:19 The RPM package is tested on Fedora.

Since some of these dependency are optional, or can be provided by the user manually, Requires is not ideal, but since there's no Recommends AFAIK, this is what we've got:

Code: Select all

Requires:       java-1.8.0-openjdk
Requires:       java-1.8.0-openjdk-openjfx
Requires:       jna
Requires:       mediainfo
Requires:       p7zip
Requires:       p7zip-plugins
Using Recommends now leads to users not installing the recommended dependencies:
* viewtopic.php?t=11605
* viewtopic.php?t=11569

Re: Conditional Structures (if-then-else)

Posted: 24 Mar 2020, 05:41
by aryanprincesanty
Can someone help me with making an if else condition for {group}? I have movies from 2 main groups, Tigole and YTS (YTS.LT, YTS.MX, YTS.AM). I want my files to look like:

Code: Select all

 8 Mile (2002) [1080p BLURAY x265 10-bit AAC 5.1 QxR] 

Code: Select all

 Ad Astra (2019) [1080p WEBRIP x264 8-bit AAC 2.0 YTS.LT] 
I want it such that if file contains Tigole or QxR, I want it to have Tigole in filename. If file contains YTS.LT, YTS.MX, YTS.AM or nothing, I want it to have only YTS in filename.

Re: Conditional Structures (if-then-else)

Posted: 24 Mar 2020, 05:57
by rednoah
e.g. if file name contains Tigole, yield Tigole, otherwise yield YTS:

Code: Select all

fn =~ /Tigole|QxR/ ? 'Tigole' : 'YTS'

Re: Plex Naming Schemes

Posted: 29 Mar 2020, 16:24
by Ashaneil
Is there a full list of all the {plex} components or is there a way for me to "see" the component choices - kind of like MediaInfo?

Re: Plex Naming Schemes

Posted: 29 Mar 2020, 16:28
by rednoah
Ashaneil wrote: 29 Mar 2020, 16:24 Is there a full list of all the {plex} components or is there a way for me to "see" the component choices - kind of like MediaInfo?
What components are you looking for?

All components relevant to {plex} are listed as examples here. A large number of properties and methods are inherited from the File class but those are largely irrelevant for {plex} related use cases.

:idea: {plex.properties} can be used see all properties. This is a Groovy thing and applies to all classes and isn't specific to {plex} or the File class.

Re: [RPM] Fedora package

Posted: 02 Apr 2020, 22:58
by Idu1p
Heads up: the version 4.9 RPM does not contain a "filebot" file anymore. The install section contains it, but the file is missing.

Code: Select all

$ rpm -ql filebot | grep filebot$
/etc/bash_completion.d/filebot
/usr/share/filebot

$ rpm -q --scripts filebot
postinstall scriptlet (using /bin/sh):
ln -sf /usr/share/filebot/bin/filebot.sh /usr/bin/filebot
ln -sf /usr/lib/java/jna.jar /usr/share/filebot/jar/jna.jar
preuninstall scriptlet (using /bin/sh):
rm -f /usr/bin/filebot
rm -f /usr/share/filebot/jar/jna.jar
System info:

Code: Select all

$ /usr/share/filebot/bin/filebot.sh -script fn:sysinfo
FileBot 4.9.0 (r7234)
JNA Native: groovy.lang.MissingPropertyException: No such property: com for class: Script1
Possible solutions: log, now
MediaInfo: java.lang.NoClassDefFoundError: Lcom/sun/jna/Pointer;
p7zip: p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,8 CPUs Intel(R) Xeon(R) CPU E3-1230 V2 @ 3.30GHz (306A9),ASM,AES-NI)
unrar: java.io.IOException: Cannot run program "unrar": error=2, No such file or directory
Chromaprint: java.io.IOException: Cannot run program "fpcalc": error=2, No such file or directory
Extended Attributes: java.lang.NoClassDefFoundError: com/sun/jna/Platform
Unicode Filesystem: OK
Script Bundle: 2020-03-16 (r625)
Groovy: 3.0.2
JRE: OpenJDK Runtime Environment 1.8.0_242
JVM: groovy.lang.MissingPropertyException: No such property: com for class: Script1
Possible solutions: log, now
CPU/MEM: 8 Core / 3.7 GB Max Memory / 106 MB Used Memory
OS: Linux (amd64)
HW: Linux server1.internal 5.5.13-200.fc31.x86_64 #1 SMP Wed Mar 25 21:55:30 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
STORAGE: btrfs [/] @ 2.0 TB | btrfs [/mnt/pool1] @ 12 TB
DATA: /home/tvuser/.filebot
Package: RPM
License: FileBot License xxxxxxx (Valid-Until: 2020-09-11)
Done ヾ(@⌒ー⌒@)ノ
I can run the script directly for some more information. This may or may not be useful to you, but I thought I might include it.
Console output snippet:

Code: Select all

Processed 0 files
com/sun/jna/Platform
java.lang.NoClassDefFoundError: com/sun/jna/Platform
	at net.filebot.StandardRenameAction$6.rename(Unknown Source)
	at net.filebot.StandardRenameAction$2.rename(Unknown Source)
	at net.filebot.cli.CmdlineOperations.renameAll(Unknown Source)
	at net.filebot.cli.CmdlineOperations.renameSeries(Unknown Source)
	at net.filebot.cli.CmdlineOperations.rename(Unknown Source)
	at net.filebot.cli.ArgumentProcessor.runCommand(Unknown Source)
	at net.filebot.cli.ArgumentProcessor.run(Unknown Source)
	at net.filebot.Main.main(Unknown Source)
Caused by: java.lang.ClassNotFoundException: com.sun.jna.Platform
	... 8 more

Error (o_O)

Re: [RPM] Fedora package

Posted: 03 Apr 2020, 08:32
by rednoah
Looks like you didn't install all the dependencies:

Code: Select all

java.lang.NoClassDefFoundError: com/sun/jna/Platform

What does the console output say when you use the automated install script?
rednoah wrote: 04 Apr 2019, 07:10 The installer/rpm.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/rpm.sh)"

Re: [RPM] Fedora package

Posted: 03 Apr 2020, 13:27
by Idu1p
Thanks for looking at this. I used the repository to install. The repo is available and enabled:

Code: Select all

$ dnf repoinfo filebot
Last metadata expiration check: 0:05:23 ago on Fri 03 Apr 2020 08:27:30 AM EDT.

Repo-id            : filebot
Repo-name          : filebot
Repo-status        : enabled
Repo-revision      : 1584805661
Repo-updated       : Sat 21 Mar 2020 11:47:41 AM EDT
Repo-pkgs          : 1
Repo-available-pkgs: 1
Repo-size          : 25 M
Repo-baseurl       : https://get.filebot.net/rpm/universal-jdk8/noarch
Repo-expire        : 172,800 second(s) (last: Thu 02 Apr 2020 06:33:23 PM EDT)
Repo-filename      : /etc/yum.repos.d/universal-jdk8.repo
Total packages: 1

Previously, the app worked. I have all the listed deps from the script installed:

Code: Select all

$ dnf list installed | grep -E "openjdk|jna|mediainfo|7zip"
java-1.8.0-openjdk.x86_64                         1:1.8.0.242.b08-0.fc31                 @updates
java-1.8.0-openjdk-headless.x86_64                1:1.8.0.242.b08-0.fc31                 @updates
java-1.8.0-openjdk-openjfx.x86_64                 1:1.8.0.242.b08-0.fc31                 @updates
jna.x86_64                                        5.4.0-1.fc31                           @fedora
libmediainfo.x86_64                               19.09-1.fc31                           @fedora
mediainfo.x86_64                                  19.09-1.fc31                           @fedora
p7zip.x86_64                                      16.02-15.fc31                          @fedora
p7zip-plugins.x86_64                              16.02-15.fc31                          @fedora
The symlinks that the %post tries to create are not present, though the jna pacakge is installed:

Code: Select all

$ sudo find /usr/share/ -name *jna.jar*
/usr/share/java/jna.jar
$ sudo find /usr/lib/ -name *jna.jar*
/usr/lib/java/jna/jna.jar
/usr/lib/java/jna.jar
$ sudo find /usr/bin/ -name *filebot*
I do not have the source RPM, but looking at the scripts I think I would suggest moving the symlinks into the %install section, rather than in %post. The additional benefit is that you no longer need the %preun either, because those symlinks are owned by the package. If it's uninstalled, they go with it.

Code: Select all

%install
mkdir -p %{buildroot}/usr/share/filebot
ln -sf /usr/share/filebot/bin/filebot.sh %{buildroot}/usr/bin/filebot
ln -sf /usr/lib/java/jna.jar %{buildroot}/usr/share/filebot/jar/jna.jar

Re: [RPM] Fedora package

Posted: 03 Apr 2020, 13:34
by rednoah
I'm no expert on RPM packaging so I'll update the spec file according to your recommendation:

Code: Select all

Name:           @{package.name}
Version:        @{application.version}
Release:        universal.jdk8
Summary:        @{package.synopsis}
License:        Proprietary

BuildArch:      noarch

Recommends:     java-1.8.0-openjdk
Recommends:     java-1.8.0-openjdk-openjfx
Requires:       jna
Recommends:     mediainfo
Recommends:     p7zip
Recommends:     p7zip-plugins


%description
@{package.description}


%install
cp -rvf %{src}/usr %{src}/etc %{buildroot}
ln -sf /usr/share/filebot/bin/filebot.sh %{buildroot}/usr/bin/filebot
ln -sf /usr/lib/java/jna.jar %{buildroot}/usr/share/filebot/jar/jna.jar


%files
/*

Re: [RPM] Fedora package

Posted: 03 Apr 2020, 13:45
by Idu1p
Would you like to supply the RPM to me to test before deploying? If you supply the SRPM, I can test (and tune as needed) as well. You can build both packages using `rpmbuild -ba` and the source will be placed into SRPMS instead the usual RPM directory.

Re: [RPM] Fedora package

Posted: 03 Apr 2020, 13:46
by rednoah
Yes. Build in progress. I'll update when it's done.


EDIT:

Code: Select all

[exec] + ln -sf /usr/share/filebot/bin/filebot.sh /rpm/BUILDROOT/filebot-4.9.1-universal.jdk8.x86_64/usr/bin/filebot
     [exec] ln: failed to create symbolic link '/rpm/BUILDROOT/filebot-4.9.1-universal.jdk8.x86_64/usr/bin/filebot': No such file or directory
     [exec] error: Bad exit status from /var/tmp/rpm-tmp.knnhfj (%install)
     [exec]     Bad exit status from /var/tmp/rpm-tmp.knnhfj (%install)
Can I create dangling symlinks in %install? I don't really have a source package. I only have binaries that I package up in a docker container with the RPM toolchains.


EDIT:

Trying again with this:

Code: Select all

%install
cp -rvf %{src}/usr %{src}/etc %{buildroot}
mkdir -p /usr/share/filebot/bin
ln -sf /usr/share/filebot/bin/filebot.sh %{buildroot}/usr/bin/filebot
mkdir -p /usr/lib/java
touch /usr/lib/java/jna.jar
ln -sf /usr/lib/java/jna.jar %{buildroot}/usr/share/filebot/jar/jna.jar

That seems to work:

Code: Select all

%install
cp -rvf %{src}/usr %{src}/etc %{buildroot}
ln -sf /usr/lib/java/jna.jar %{buildroot}/usr/share/filebot/jar/jna.jar
mkdir -p %{buildroot}/usr/bin && ln -sf /usr/share/filebot/bin/filebot.sh %{buildroot}/usr/bin/filebot

Re: [RPM] Fedora package

Posted: 03 Apr 2020, 16:49
by rednoah
Idu1p wrote: 03 Apr 2020, 13:45 Would you like to supply the RPM to me to test before deploying? If you supply the SRPM, I can test (and tune as needed) as well. You can build both packages using `rpmbuild -ba` and the source will be placed into SRPMS instead the usual RPM directory.
I've uploaded a new RPM, please give it a spin:
https://get.filebot.net/filebot/BETA/Fi ... l-jdk8.rpm

Re: [RPM] Fedora package

Posted: 04 Apr 2020, 03:12
by Idu1p
Thanks! That looks pretty good. One more question: do you have a %files section with /usr/bin?

Here's where it errors out:

Code: Select all

Error: Transaction test error:
  file /usr/bin from install of filebot-4.9.1-universal.jdk8.noarch conflicts with file from package filesystem-3.12-2.fc31.x86_64
 
If you have the following, you can delete that line, as the directory should already exist.

Code: Select all

%files
/usr/bin

Re: [RPM] Fedora package

Posted: 04 Apr 2020, 05:15
by rednoah
I had this:

Code: Select all

%files
/*
Trying this instead:

Code: Select all

%files
/usr/share/*
/etc/*
/usr/bin/*
EDIT: FileBot r7332 has been uploaded. Please give it a try.

Re: [RPM] Fedora package

Posted: 04 Apr 2020, 13:10
by Idu1p
I can confirm that the new package installs. Nice work and thanks!

Re: [RPM] Fedora package

Posted: 04 Apr 2020, 13:17
by Idu1p
I spoke too soon. The package installs, but now the symlink for filebot is missing. The other symlink, for jna.jar, is still there.

Re: [RPM] Fedora package

Posted: 04 Apr 2020, 18:29
by rednoah
Any ideas? RPM makes even easy things difficult. I'll revert things and leave it as it is otherwise, as it seemed to work at least for install if not for upgrade.

Re: [RPM] Fedora package

Posted: 04 Apr 2020, 19:57
by Idu1p
Could you post a copy of the RPM SPEC file?

Re: [RPM] Fedora package

Posted: 05 Apr 2020, 06:39
by rednoah
FileBot r7342 uses this spec:

Code: Select all

Name:           @{package.name}
Version:        @{application.version}
Release:        universal.jdk8
Summary:        @{package.synopsis}
License:        Proprietary

BuildArch:      noarch

Recommends:     java-1.8.0-openjdk
Recommends:     java-1.8.0-openjdk-openjfx
Requires:       jna
Recommends:     mediainfo
Recommends:     p7zip
Recommends:     p7zip-plugins


%description
@{package.description}


%install
cp -rvf %{src}/usr %{src}/etc %{buildroot}


%files
/*


%post
ln -sf /usr/share/filebot/bin/filebot.sh /usr/bin/filebot
ln -sf /usr/lib/java/jna.jar /usr/share/filebot/jar/jna.jar


%preun
[ $1 -eq 0 ]; then
    rm -f /usr/bin/filebot
    rm -f /usr/share/filebot/jar/jna.jar
fi
:idea: %preun now takes into account that RPM calls %preun on pre-upgrade but not %post on post-upgrade.

Re: [BTC] Purchase FileBot with Crypto Currency

Posted: 06 Apr 2020, 20:06
by Nabzed
I want to pay with either bitcoin or monero. Sent PM as well. Thanks

Re: Plex Naming Schemes

Posted: 08 Apr 2020, 09:31
by nex0r
I'm using {plex.name} which is awesome as it sorts out difficult names like 24 has with colon's etc.

24 - S02E01 - Day 2 - 8.00 A.M. - 9.00 A.M.mkv

Is there a simple way to force the season and episode characters to lower case using {plex.name}?

24 - s02e01 - Day 2 - 8.00 A.M. - 9.00 A.M.mkv

Re: Plex Naming Schemes

Posted: 08 Apr 2020, 11:00
by rednoah
nex0r wrote: 08 Apr 2020, 09:31 Is there a simple way to force the season and episode characters to lower case using {plex.name}?

Code: Select all

24 - s02e01 - Day 2 - 8.00 A.M. - 9.00 A.M.mkv
There is a simple way of making everything lower case, including series name and episode title. There is no simple way to make just the S00E00 part lower case. The not-so-simple way would be to write your own custom format instead of relying on {plex} entirely.

Re: Plex Naming Schemes

Posted: 08 Apr 2020, 12:14
by nex0r
Ok thanks for the reply. I thought I'd ask before going down the custom format route.

Re: Plex Naming Schemes

Posted: 08 Apr 2020, 14:08
by kim
simple ;)

Code: Select all

{plex.name.replaceAll(/S(\d{1,3})E(\d{1,3})/, 's$1e$2')}

Re: Plex Naming Schemes

Posted: 14 Apr 2020, 10:38
by hstorey219
Hi There,
I thought I had this working, but my format is still creating folders inside the main folder.
For example:
Media/Movies/Girls Trip (2017)
Then inside the folder Girls Trip (2017) is the video, but when I run Filebot, it will create this Media/Movies/Girls Trip (2017)/Girls trip (2017)
I just want Filebot to rename the folder and video file into Plex format without creating any folders.

Code: Select all

filebot -script fn:amc "W:Media/" --action move --format {plex.tail} -non-strict --def excludeList=W:/media/amc.txt

Re: Plex Naming Schemes

Posted: 14 Apr 2020, 11:46
by rednoah
hstorey219 wrote: 14 Apr 2020, 10:38 when I run Filebot, it will create this Media/Movies/Girls Trip (2017)/Girls trip (2017)
I just want Filebot to rename the folder and video file into Plex format without creating any folders.
That is what {plex.tail} does, i.e. the Plex path without leading Movies / Series folder. You probably mean {plex.name} which refers to the filename part, without path components.


:!: Note that Plex assumes a certain a certain path, and not just file name. If you stray from that path, then all bets or off, and things may or may not work for you.


:!: Note that the amc script is explicitly not designed for renaming files in-place. The official recommendation is to organize files into a new structure.


:!: Leaving --output unspecified is bad practice, since it'll just default to the current working directory, whatever it may be.

Re: [DEB] Debian package

Posted: 22 Apr 2020, 23:38
by spetrillo
Stupid question...and maybe I am missing it...but how do we install the license?

Re: [DEB] Debian package

Posted: 22 Apr 2020, 23:40
by spetrillo
Second...if I use the script to do the install I am seeing a 32 bit JVM installed. I thought it would install the 64 bit version?

Re: [DEB] Debian package

Posted: 23 Apr 2020, 07:23
by rednoah
spetrillo wrote: 22 Apr 2020, 23:38 Stupid question...and maybe I am missing it...but how do we install the license?
License Activation is generally self-explanatory, so don't worry about it until FileBot prompts you with instructions:
https://www.filebot.net/activate.html

spetrillo wrote: 22 Apr 2020, 23:40 Second...if I use the script to do the install I am seeing a 32 bit JVM installed. I thought it would install the 64 bit version?
Logs? Screenshots?

The FileBot package depends on the OpenJDK package, which almost certainly installs the latest 64-bit OpenJDK 11 at this point in time, unless you're running a 32-bit OS.

Re: Conditional Structures (if-then-else)

Posted: 27 Apr 2020, 02:25
by AbedlaPaille
kim wrote: 19 Sep 2018, 00:32 well if I try this (in GUI)

Code: Select all

\\gaia-prime\Movies\{any{'Movie Collections/'+az+'/'+collection+'/'+ny+'/'+ny}{az+'/'+ny+'/'+ny}} [{vf}]{subt}
I get output
e.g. \\gaia-prime/Movies/D/Demolition Man (1993)/Demolition Man (1993) [720p]
or \\gaia-prime/Movies/Movie Collections/A/Avatar Collection/Avatar (2009)/Avatar (2009) [720p]

try

Code: Select all

\\gaia-prime\Movies\{any{collection ? ('Movie Collections/'+az+'/'+collection+'/'+ny+'/'+ny) : 'collection found but something is wrong'} {az+'/'+ny+'/'+ny} {'WTF'} }
only if I write {az+'/'+ny+'/'+ny} wrong like so {az'/'+ny+'/'+ny} I get the
"but when you use it on a movie that isn't in one, it only adds the vf and subt part... the file name and path disappear..."

btw: there is a better way to write it

Code: Select all

\\gaia-prime\Movies\{any{'Movie Collections/'+az+'/'+collection}{az}}/{ny}/{ny} [{vf}]{subt}
or

Code: Select all

\\gaia-prime\Movies\{def altDir = ('Movie Collections/'+az+'/'); any{altDir+collection}{az}}/{ny}/{ny} [{vf}]{subt}
Very interesting this! Is it possible to insert conditional trails within the paths? Like a vf.match in the directory name, can't seem to adapt my normal expression. Even when i got the syntax right it crashed paths for movies that didn't match vf

Code: Select all

{any{'[Collections]/'+collection+'/'+'('+y+')'+' '+n}{ny+' ['+vf.match(/720[pP]|1080[pP]/)+']'+'/'+ny}}
I don't know how to play around Primary title and n either, usually use something like this:

Code: Select all

info.OriginalLanguage =~ /en/ ? primaryTitle : n

Re: Conditional Structures (if-then-else)

Posted: 27 Apr 2020, 17:10
by kim

Code: Select all

{ any{n}{ny}{'no match'} }

Re: Conditional Structures (if-then-else)

Posted: 02 May 2020, 05:18
by AbedlaPaille
Didn't get that sorry, bit of a noob. How do you suggest i write info.OriginalLanguage =~ /en/ ? primaryTitle : n if it's within a {any{'/'/' }{'/'/' }} path? Most syntax i tried don't seem to be working. And what am i missing when it comes to displaying potential attributes on folders like i do with my normal scheme?

Re: Conditional Structures (if-then-else)

Posted: 02 May 2020, 07:28
by rednoah
e.g. Here's what you asked for specifically:

Code: Select all

{any{info.OriginalLanguage =~ /en/ ? primaryTitle : n}{'No Name'}}

e.g. Here's how you'd work with potential attributes:

Code: Select all

{allOf{vc}{vf}{source}{group}.joining('-', '[', ']')}

Re: [JDownloader] Setup for Windows, Linux and Mac OS X

Posted: 03 May 2020, 16:41
by GeorgeAl
Hello, I have purchased the file bot (2nd year at row), and I could like to know if you plan to make any guide with examples for noobs like me?
I do not have the time to learn to program now, as a matter of fact, I do not care at all. I only want something that works, for that I paid.

Re: [JDownloader] Setup for Windows, Linux and Mac OS X

Posted: 03 May 2020, 17:12
by rednoah
GeorgeAl wrote: 03 May 2020, 16:41 Hello, I have purchased the file bot (2nd year at row), and I could like to know if you plan to make any guide with examples for noobs like me?
I do not have the time to learn to program now, as a matter of fact, I do not care at all. I only want something that works, for that I paid.
Sorry, this guide is already as simple as possible. You may petition the JDownloader developers to make it easier, perhaps even add 1st party integration for FileBot post-processing.

That being said, I'd just stick the FileBot Desktop Application if you're looking for something easy and straight-forward. Presets are great for adding a degree of automation.

Re: [JDownloader] Setup for Windows, Linux and Mac OS X

Posted: 03 May 2020, 17:35
by GeorgeAl
Unfortunately, all useful guides at the JDownloader forum are at german.

Re: [JDownloader] Setup for Windows, Linux and Mac OS X

Posted: 03 May 2020, 18:04
by rednoah
GeorgeAl wrote: 03 May 2020, 17:35 Unfortunately, all useful guides at the JDownloader forum are at german.
It's not a language issue. JDownloader is just difficult to work with, compared to uT and qBT where it's just a matter of copy & paste.

Re: [JDownloader] Setup for Windows, Linux and Mac OS X

Posted: 03 May 2020, 18:29
by GeorgeAl
Yes, you are right. The AMC script works with qtorrent, but I want to make it work with jdownloader 2 but no hope.

Re: MediaInfo Inspector

Posted: 15 May 2020, 22:41
by AbedlaPaille
What's the best way to work with files lacking mediainfo, for example audio languages?

I was thinking i might be able to modify the mediainfo audio language directly with the mediainfo program you linked, seems i can only visualize it though.

Re: Conditional Structures (if-then-else)

Posted: 27 May 2020, 12:30
by AbedlaPaille
Often find myself in cases where i could use either {any} or { x ? x : y } pretty much interchangeably. In those cases is there a better option ? Like one less hungry in computing power ?

Re: Conditional Structures (if-then-else)

Posted: 27 May 2020, 12:53
by rednoah
I'd use the one that is more readable. They're not interchangeable though, because the ternary operator does not catch exceptions, and because it does less, I'd expect it to be faster, but definitely not noticeably faster in human time scales.

Re: Conditional Structures (if-then-else)

Posted: 27 May 2020, 15:06
by AbedlaPaille
Cheers. So the complex format i posted earlier is pretty sound and i wouldn't be able to optimize its speed much more, correct?

For reference viewtopic.php?f=5&t=11862

Re: Conditional Structures (if-then-else)

Posted: 27 May 2020, 15:12
by rednoah
AbedlaPaille wrote: 27 May 2020, 15:06 So the complex format i posted earlier is pretty sound and i wouldn't be able to optimize its speed much more, correct?
I'm sure it's possible to optimize speed, and the first step would to profile each part, to see which one is slower than expected. As with everything, the 20 / 80 principle applies, 20% of your code will be responsible for 80% of run time, so it's integral to find out what those 20% are first.

Re: Conditional Structures (if-then-else)

Posted: 27 May 2020, 15:14
by AbedlaPaille
Thanks for the pointers !

Re: How about sharing our format expressions?

Posted: 11 Jun 2020, 21:12
by AbedlaPaille
Image

I'm nearly done with my OCD :D

Films is the main one, it's a close relative to plex but with multi entry collection folders and no 'The' prefix. That's how i browse my full library in explorer.

Plex is where things are tidy.

Collections and Studios use a --filter. The All folder in Collections is for single entry collections.

Directors, Genres, Bitrate, Resolution, Size, Ratings, Language, Year have no filter, they're just different sorting orders with different schemes.

For example Language/Other looks like this

Image

I use year first in several ones, like Directors, Studios, Year

Image

If you want to know more just ask :)

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 16 Jun 2020, 09:54
by jack123l
hi @rednoah are you still giving out free license for this?

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 16 Jun 2020, 10:39
by rednoah
jack123l wrote: 16 Jun 2020, 09:54 hi @rednoah are you still giving out free license for this?
Yes, this program is very much in effect. Almost nobody is taking advantage though.


EDIT:

Thanks for the contribution. Your license has been sent.

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 17 Jun 2020, 06:41
by rednoah
jack123l wrote:16 Jun 2020, 13:42 - dark mode
- feature to indicate the last episode of the series (eg: font colour) so to make sure that I'm choosing the right series
- folder for special (Season 0/) not showing eg: Season 1/
- able to rename subtitles together with video files
- for some reason, filebot read videos file without any season number on the file name as season 2 when season 2 is avaliable
- able to download subtitles from kitsunekko.net directly from filebot
Thanks for the video. It was interesting. In particular, I've never seen FileBot running on a Japanese Windows machine, so there's some interesting strangeness there that I'll have to look into. As for your feature requests, I can probably help as some of them are a bit non-obvious I suppose.


Dark Mode can be enabled manually, and will be enabled automatically based on system preferences in upcoming versions:
viewtopic.php?t=9827


You can add Season 0/1 and Special folders via your custom format, e.g.

Code: Select all

{regular ? "Season $s" : "Season 0"}

The level of red indicates how sure FileBot is about the match. If it's red-ish, then it's best to double-check the match, because FileBot isn't sure. Might be correct. Might not. If you need to fix individual matches, then you can do Double Click ➔ Edit Match.
https://twitter.com/filebot_renamer/sta ... 1996178436


Anime can be tricky. Because officially Anime don't have seasons, but TheTVDB will organize related Anime in seasons if it makes sense, and so different numbering schemes may not be compatible and lead to mismatches. Here's a dedicated thread on how to convert Anime / AniDB numbering to TheTVDB / SxE numbering:
viewtopic.php?t=2769


Enhanced support for subtitles is unfortunately not planned, as subtitles are a legal grey zone, sites come and go, different sites blocked by different countries, etc. OpenSubtitles managed to be around forever somehow, and works well, though a login is required nowadays.

Re: Conditional Structures (if-then-else)

Posted: 27 Jun 2020, 14:57
by nomadicleo
Hi,

Could someone please help me with a conditional statement for (certification). My original preset is:

Code: Select all

{n.replaceAll(/[:|]/, " - ")} ({y})\{n.replaceAll(/[:|]/, " - ")} ({y}) {vf} - {certification}
When it does not find a certification, it simply appends the hyphen at the end of the name but I would like it to only add the hyphen when there is a certification found.

Re: Conditional Structures (if-then-else)

Posted: 27 Jun 2020, 15:10
by rednoah
nomadicleo wrote: 27 Jun 2020, 14:57 When it does not find a certification, it simply appends the hyphen at the end of the name but I would like it to only add the hyphen when there is a certification found.
e.g.

Code: Select all

{" - " + certification}
:arrow: viewtopic.php?t=1895

Re: Conditional Structures (if-then-else)

Posted: 27 Jun 2020, 15:33
by nomadicleo
Thank you, @rednoah!! Worked perfectly.

Re: Conditional Structures (if-then-else)

Posted: 28 Jun 2020, 18:09
by aryanprincesanty
FileBot might not find all the groups for the TV shows I have. How do I make a format such that when {group} exists - it should be added, if not - it should be blank.

My current format is:

Code: Select all

{ny}/Season 0{s}/{ny} - {s00e00} - {t} [{vf} {source} {vc} {if (bitdepth == 10) '10-bit'} {ac} {channels} {if (group != null) {group} else ""}]

What changes should I apply to have my files look like this:
no group:

Code: Select all

Brooklyn Nine-Nine - S02E01 - Undercover [480p x264 8-bit AAC 2.0]
xyz group:

Code: Select all

Brooklyn Nine-Nine - S02E02 - Chocolate Milk [480p x264 8-bit AAC 2.0 XYZ]

Re: Conditional Structures (if-then-else)

Posted: 29 Jun 2020, 03:45
by rednoah
aryanprincesanty wrote: 28 Jun 2020, 18:09 How do I make a format such that when {group} exists - it should be added, if not - it should be blank.
That is default. You're probably asking about the preceding blank though, so that you don't end up with a superfluous blank if {group} is undefined.

e.g.

Code: Select all

{" " + group}

Code: Select all

{" " + ac}{" " + channels}{" " + group}
:arrow: viewtopic.php?t=1895



Note the conceptual similarity to previously asked questions:
rednoah wrote: 27 Jun 2020, 15:10
nomadicleo wrote: 27 Jun 2020, 14:57 When it does not find a certification, it simply appends the hyphen at the end of the name but I would like it to only add the hyphen when there is a certification found.
e.g.

Code: Select all

{" - " + certification}
:arrow: viewtopic.php?t=1895

Re: Conditional Structures (if-then-else)

Posted: 29 Jun 2020, 15:33
by kim

Code: Select all

{ny}{'/Season ' + s.pad(2)}{'/' + ny}{' - ' + s00e00}{' - ' + t}{allOf{vf}{source}{vc}{bitdepth == 10 ? ' 10-bit' : ''}{ac}{channels}{group}.joining(' ', ' [', ']')}

Re: [JDownloader] Setup for Windows, Linux and Mac OS X

Posted: 05 Jul 2020, 07:51
by glad148
otr wrote: 17 Aug 2018, 12:10 Hi,

sorry for being silent for a bit, I have been on a short trip. In the meantime, my setup is now working and I wanted to report back my specifics, so that others may benefit, but also so that I can learn in case I have missed something important.

This is what is working for me:

1. jDownloader Event Scripter calls this script

Code: Select all

[{"eventTrigger":"ON_PACKAGE_FINISHED", "enabled":true, "name":"FileBot", "script":"var amcFile = '/volume1/Downloads/jdtofilebotv2.sh';var path = '/volume1/Downloads/'; callAsync(function() {}, amcFile, path);", "eventTriggerSettings":{}, "id":123654}]
For people that were new to this, just like me:
- The above is the exact "text" that you can see in the jDownloader UI. Compare this screenshot: https://snag.gy/kYHCEN.jpg
- id:123654 is a random number I thought of. The way I understand it this is the ID the process runs under and I would be able to find it under this ID, if I had to look for it.

2. the jdtofilebotv2.sh script that is called above

Code: Select all

#!/bin/sh
export JAVA_OPTS="-Xmx256m"
/var/packages/filebot/target/filebot.sh -script 'fn:amc' /volume1/Downloads --output /volume1/Media/ --conflict auto --lang en --def 'clean=y' 'skipExtract=y'  'excludeList=.excludes'
I would be happy to get comments on this, especially since people later might look at this and assume that I did smart things (I did not - I just figured out what works for me somehow).
One issue I have is that I still do not find the filebot log file created by this setup.

Hello, I am a little lost would it be possible to give me the procedure that you followed from a to z because I can not find the configuration files of eventscripter did you use an alternative method Thank's

Re: [IRC] Discord Support Channel

Posted: 17 Aug 2020, 12:21
by rednoah
The FileBot Forums is Wikipedia. The FileBot Discord is Twitter. Each have strengths and weaknesses. Neither replaces the other. Both run in your browser no need to install anything. ;)

Re: Q&A for n00bs

Posted: 31 Aug 2020, 06:38
by rednoah
Thanks for the post! Before a real human comes by, please make sure your report has all the following points checked:
  • What are you trying to do achieve? What's not working? What have you tried so far?
  • Include screenshots, logs or filenames (i.e. demonstrate the issue)
  • Include System Information (i.e. filebot -script fn:sysinfo console output)
:idea: Please read How to Request Help and Fix Problems, Report Bugs, Get Features.

Re: Q&A for n00bs

Posted: 10 Sep 2020, 11:04
by rednoah
If you're using QNAP, then you can do everything via the QNAP WebUI:
https://www.filebot.net/linux/qnap.html

Re: [FAQ] How to request a refund?

Posted: 26 Oct 2020, 19:56
by deadeye
Hello, I was going to ask for a refund, but it doesn't look like I can PM you using the forum as I just joined (just to try to send you a message). I just wanted a refund as I couldn't try out filebot without buying a license, so I purchased a one year license, but now that I've started using it, I would like to buy the lifetime license. I was hoping I could just get a refund for the one month, then I could purchase the lifetime. I'm not sure how I can message you. Do you have the ability to message me?
Thanks.

Re: [FAQ] How to request a refund?

Posted: 26 Oct 2020, 20:29
by rednoah
Please contact Paddle for a refund directly if you've purchased FileBot recently and don't have any particular technical reason for a refund:
https://www.filebot.net/contact/paddle.html


:!: That being said, the $6 per year license is generally recommended for all users, even and especially users that plan on using FileBot for a long time, since refunds are not possible on the payment method level after a certain amount of time has passed, some 60 to 90 days depending on your payment method. This makes the life-time license effectively non-refundable for most of its life-time, so best to avoid unnecessary commitment.

Re: [FAQ] How to request a refund?

Posted: 27 Oct 2020, 14:13
by deadeye
Ok, I'll try it out for a year first instead then.
Thanks!

Re: How about sharing our format expressions?

Posted: 17 Nov 2020, 00:33
by AbedlaPaille
Suggestion: you can display french subs (vostfr) even when it's not in the original filename. Maybe you have some of these files, nowdays with streaming platforms and mkv a lot of uploads contain subs in several languages within the .mkv, well Filebot can pull that for you!

Code: Select all

{any{textLanguages =~ /fra/ ? 'vostfr' : ''}{fn.match(/VOSTFR|Vostfr|vostFR|VostFR|vostfr/).lower()}}

Re: Q&A for n00bs

Posted: 20 Nov 2020, 10:51
by Oleros
I'm setting up a new media PC and have copied the Ut script from the old machine: "C:\Program Files\FileBot\filebot.exe" -script fn:amc --output "C:/Plex" --action copy --conflict skip -non-strict --log-file amc.log --def unsorted=y music=y artwork=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D", changing only the C: paths to new setup. When a download is complete it ends up in C:\downloads as specified in Ut Directories but it is not moved to Plex folders. It seems to be something wrong with the variables but I never had to manually change them and can't find it specified in Troubleshooting. Cmd run:

Code: Select all

C:\Users\olero>"C:\Program Files\FileBot\filebot.exe" -script fn:amc --output "C:/Plex" --action copy --conflict skip -non-strict --log-file amc.log --def unsorted=y music=y artwork=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
Run script [fn:amc] at [Fri Nov 20 11:15:02 CET 2020]
Parameter: unsorted = y
Parameter: music = y
Parameter: artwork = y
Parameter: ut_label = %L
Parameter: ut_state = %S
Parameter: ut_title = %N
Parameter: ut_kind = %K
Parameter: ut_file = %F
Parameter: ut_dir = %D
Bad ut_label value: %L
Bad ut_state value: %S
Bad ut_title value: %N
Bad ut_kind value: %K
Bad ut_file value: %F
Bad ut_dir value: %D
Invalid usage: no input
Abort (?_?)

C:\Users\olero>

Re: Q&A for n00bs

Posted: 23 Nov 2020, 08:05
by Oleros
@rednoah, could you please respond to my question above?

Re: Q&A for n00bs

Posted: 23 Nov 2020, 10:35
by rednoah
rednoah wrote: 01 Aug 2012, 13:04 Troubleshooting
If something is not working, first read the Notes above, then just run the command manually in a new console window and see what happens. You CANNOT run the command without replacing the VARIABLES. The variables have to be replaced with actual values first. You can find the actual cmdline call in the µTorrents Logger tab so you can just copy it from there. You may need to enable the Logger tab first (just right-click one of the other tabs like Info).
I can't really add much that isn't already explained in the manual.


The first step is checking if filebot is called at all, and then the second step is checking the log produces by the filebot call:
viewtopic.php?t=3067


:idea: If you copy & paste the command template into CMD then you must also take care of replacing the %variables with values, just like uT does.

Re: Q&A for n00bs

Posted: 23 Nov 2020, 13:25
by Oleros
rednoah wrote: 23 Nov 2020, 10:35
rednoah wrote: 01 Aug 2012, 13:04 Troubleshooting
If something is not working, first read the Notes above, then just run the command manually in a new console window and see what happens. You CANNOT run the command without replacing the VARIABLES. The variables have to be replaced with actual values first. You can find the actual cmdline call in the µTorrents Logger tab so you can just copy it from there. You may need to enable the Logger tab first (just right-click one of the other tabs like Info).
I can't really add much that isn't already explained in the manual.


The first step is checking if filebot is called at all, and then the second step is checking the log produces by the filebot call:
viewtopic.php?t=3067


:idea: If you copy & paste the command template into CMD then you must also take care of replacing the %variables with values, just like uT does.
File does not exist: C:\%Dstate=%S ut_title=%N ut_kind=%K ut_file=%F ut_dir=%D
No files selected for processing
rednoah wrote: 23 Nov 2020, 10:35
rednoah wrote: 01 Aug 2012, 13:04 Troubleshooting
If something is not working, first read the Notes above, then just run the command manually in a new console window and see what happens. You CANNOT run the command without replacing the VARIABLES. The variables have to be replaced with actual values first. You can find the actual cmdline call in the µTorrents Logger tab so you can just copy it from there. You may need to enable the Logger tab first (just right-click one of the other tabs like Info).
I can't really add much that isn't already explained in the manual.


The first step is checking if filebot is called at all, and then the second step is checking the log produces by the filebot call:
viewtopic.php?t=3067


:idea: If you copy & paste the command template into CMD then you must also take care of replacing the %variables with values, just like uT does.
I have gone through the instructions. I have a very simple and common setup on a brand new machine so not much to tweak..
Yes filebot is called and it initiates operations but then suddenly stops and the cmd window closes. I'm looking for a log file, probably amc.log but can't find spcification where it's located?

Re: Q&A for n00bs

Posted: 23 Nov 2020, 14:26
by rednoah
1.
uT will generate a unique command for each completed download by replacing the %variables for the specific completed download at hand:
rednoah wrote: 01 Aug 2012, 13:04 It's always helpful to check the exact command utorrent ends up executing in the Logger tab. It'll look something like this:

Code: Select all

[2013-03-05 20:44:24]  Executing: filebot -script fn:amc --output "D:/Organized Media" --log-file amc.log --action duplicate --conflict override -non-strict --def "ut_dir=D:\Media\Avatar" "ut_file=" "ut_kind=multi" "ut_title=Avatar" "ut_label=" "ut_state=5"

2.
If you use a relative path as --log-file argument, the you will find the log file in the application data folder. Please read Where is the application data folder? for details:
https://www.filebot.net/manual.html

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 11 Dec 2020, 13:28
by p11ps
Hey noah,

Are this study still available? In case of yes, could it be in Spanish? I guess no, but I'm not a native speaker and my English is not as good as I would like.

Thanks!

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 11 Dec 2020, 13:42
by rednoah
p11ps wrote: 11 Dec 2020, 13:28 Are this study still available? In case of yes, could it be in Spanish? I guess no, but I'm not a native speaker and my English is not as good as I would like.
Yes, but narration would have to be in English and ideally show interesting use cases or usage that exceeds the video tutorials.

Re: How about sharing our format expressions?

Posted: 21 Dec 2020, 04:35
by xaeiou
A special case for replacing '/' (often used on TVDB for titles of combined episodes etc) with '⁄ ', as noted by rednoah here:

viewtopic.php?f=5&t=12343
Top-level bindings such as {t} strip / slash implicitly, among other sanitation operations. However, you can use {episode.title} to access the raw value, which may contain / slash, may be infinitely long, etc.
My groovy format file now uses the raw value like this, and I always manually check the result as inbuilt checks are bypassed:

Code: Select all

{sxe} {episode.title.replace(
	'<' : '﹤',
	'>' : '﹥',
	':' : 'ː',
	'"' : '“',
	'/' : '⁄',
	'|' : '⼁',
	'?' : '?',
	'*' : '﹡',
	'\\': '∖'
)}

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 21 Dec 2020, 05:58
by substance
Hi rednoah, I´m new to the forum. I just recorded a couple videos using the software, I tried sending you a PM, but it seems that new users aren´t allowed, is there any other way to send you the video links on private? thank you.


EDIT: I tried a second time, I think after the my first post it allowed me this time.

Re: [User Study] Take a screen recording and earn yourself a free license

Posted: 22 Dec 2020, 03:55
by rednoah
substance wrote: 21 Dec 2020, 05:58 I just recorded a couple videos using the software
Thank you for your time! Your complimentary license should be in your inbox already. 🙏


EDIT:

Note that this is by far the most useful screen recording to date. Few have bothered to narrate the thought process. There's a few interesting bits where you're searching for features that you thought should exist (and do exist but perhaps a bit hidden) but just couldn't find at the time. So if you have another ~3 friends that might benefit from a free 1yr license, please PM me their emails. ;)


:idea: You can use Double-Click New Names ➔ Edit Match to fix matches. See FAQ #2 for details.
:idea: You can use Presets for pre-defined actions and associated keyboard shortcuts
:idea: You can use a custom format such as {collection}/{ci.pad 2} - {ny} (ci ... collection index) to generate file paths like Star Wars Collection/04 - Star Wars: Episode I - The Phantom Menace (1999). Though for Star Wars Episode 1..9 the "watch order" might be tricky, and the best option here might be just passing through the number from the original filename. It's easier for other collections. In any case, this particular topic probably deserves it's own thread.

Re: Conditional Structures (if-then-else)

Posted: 06 Jan 2021, 14:01
by Brax
Hi RedNoah and Happy New Year !

Thanks to your help i'm using and arguments file to dispatch my files according to their characteristics in various drives/folders like this :
2160P HDR --> B:\2160P HDR10\
2160P non HDR --> B:\2160P\
720P --> B:\720P\
DVDRIP --> H:\DVDRIPS\
1080P --> S:\1080P\

I use the following arguments file

Code: Select all

ut_label=Movies
movieFormat={hd.replaceAll("UHD", replacement = "B:/2160P").replaceAll("SD", replacement = "H:/DVDRIPS").replaceAll("HD", replacement =  vf.replaceAll("720p", replacement = "B:/720P").replaceAll("1080p", replacement = "S:/1080P"))} {hdr}/{collection.ascii()}/{ny.ascii().upperInitial()} [{imdbid}]/{ny.ascii().upperInitial()} [{imdbid}] {if (hd =~ /HD/) vf} {hdr}
seriesFormat="E:/TV Shows/{n}/{n}.{s00e00}.{t}"
animeFormat="E:/Anime/{n}/{n}.{s00e00}.{t}"

I now have to separate 1080P Files according to them belonging or not to a collection like follows :
2160P HDR --> B:\2160P HDR10\
2160P non HDR --> B:\2160P\
720P --> B:\720P\
DVDRIP --> H:\DVDRIPS\
1080P and part of a collection --> S:\1080P - Sagas\
1080P and not part of a collection --> I:\1080P\

I tried without success modifying my arguments file like follows :

Code: Select all

ut_label=Movies
movieFormat={hd.replaceAll("UHD", replacement = "B:/2160P").replaceAll("SD", replacement = "H:/DVDRIPS").replaceAll("HD", replacement =  vf.replaceAll("720p", replacement = "B:/720P").replaceAll("1080p", {any{collection}.replaceall{"S:/Sagas - 1080P"}{"I:/1080P"}}))} {hdr}/{collection.ascii()}/{ny.ascii().upperInitial()} [{imdbid}]/{ny.ascii().upperInitial()} [{imdbid}] {if (hd =~ /HD/) vf} {hdr}
seriesFormat="E:/TV Shows/{n}/{n}.{s00e00}.{t}"
animeFormat="E:/Anime/{n}/{n}.{s00e00}.{t}"

Could you please help me ?

Many thanks

Re: Conditional Structures (if-then-else)

Posted: 06 Jan 2021, 15:12
by kim
my take on it ;)

Code: Select all

{ def pathList = ['SD' : 'H:/DVDRIPS','HD720p' : 'B:/720p','HD1080ptrue' : 'B:/1080p - Sagas','HD1080pfalse' : 'B:/1080p','UHD2160p' : 'B:/2160P']; any{pathList.get(hd)}{pathList.get(hd + vf)}{pathList.get(hd + vf + any{collection ? true : true}{false})}{'UNKNOWN_PATH'}} {hdr}/{collection.ascii()}/{ny.ascii().upperInitial()}{' ['+imdbid +']'}/{ny.ascii().upperInitial()}{' ['+imdbid +']'} {if (hd =~ /HD/) vf} {hdr}

Re: Conditional Structures (if-then-else)

Posted: 06 Jan 2021, 20:22
by Brax
Good evening Kim

Thanks a lot !!!

I spent days trying to figure the right way to do it and you crunched this in no time... Impressive

I did spend a lot of time in the forum reading exemples and in the FAQ and did not see how to use the pathList, neither the use of .get... And I would not have been able to think ot the concatenation trick for 1080P with the any{collection ? true : true}{false}

Works like a charm, and helps me understand better all those functions which make filebot so powerfull

Many thanks again for your help and happy New Year too

Best regards

Re: Q&A for n00bs

Posted: 28 Jan 2021, 19:55
by tjrktu
Hi, apologies if I'm posting in the wrong place. I have tried to find the answer out myself elsewhere.

I use the command:

Code: Select all

filebot -script fn:artwork.tmdb FILE_DIR
To download artwork and nfo files for my movies. It has worked really well for a couple of years now, I love it.

I have noticed that the nfo files generated don't have a language property even though original_language is offered from the tmdb API.

Is there any way to get the nfo file to contain language also?

Thanks very much.

Re: Q&A for n00bs

Posted: 29 Jan 2021, 03:25
by kim
It's not official KODI info:
https://kodi.wiki/view/NFO_files/Movies

but you can add e.g. this...

Code: Select all

			i.spokenLanguages.each{
				languages(it)
			}
(I'm not sure but I think you can replace the 'spokenLanguages' with 'originalLanguage' e.g. 'originalLanguage(i.originalLanguage)' )
...to local copy of this file:
https://github.com/filebot/scripts/blob ... tpc.groovy
+
https://github.com/filebot/scripts/blob ... mdb.groovy

NOTICE!

Code: Select all

include('lib/htpc')
= lib folder

Maybe use my amc script ?
viewtopic.php?p=31191#p31191

Re: How about sharing our format expressions?

Posted: 04 Mar 2021, 13:11
by alyssa369
AbedlaPaille wrote: 11 Jun 2020, 21:12 Image

I'm nearly done with my OCD :D

Films is the main one, it's a close relative to plex but with multi entry collection folders and no 'The' prefix. That's how i browse my full library in explorer.

Plex is where things are tidy.

Collections and Studios use a --filter. The All folder in Collections is for single entry collections.

Directors, Genres, Bitrate, Resolution, Size, Ratings, Language, Year have no filter, they're just different sorting orders with different schemes.

For example Language/Other looks like this

Image

I use year first in several ones, like Directors, Studios, Year

Image

If you want to know more just ask :)
Looks great. Please let me know how to show folders under some category, (ex. first image). is it a separate magic app or just windows file explorer

Re: [FAQ] How to request a refund?

Posted: 06 Apr 2021, 00:17
by dincervolkan
I paid for a years license but the license was not sent to me despite my posting here requesting one. It has been 3 days now and not even a reply. Great Job!!!
Please refund my money.

Re: [FAQ] How to request a refund?

Posted: 06 Apr 2021, 02:39
by rednoah
Please contact Paddle for refunds, especially if you have mistyped your email address. Your "v" key may have a mechanical defect, since a manual search of recent orders did reveal a dincerolkan. Please do make sure to double-check your email address in this regard, as to avoid unnecessary displeasure in the future.


:idea: We can find your order based on your Order Number but only Paddle can find your Order Number based on your Payment Details. Paddle Staff typically replies within 1-3 working (i.e. Monday to Friday) days.

Re: Q&A for n00bs

Posted: 07 Sep 2021, 00:06
by noahnchina
I know that I should be able to figure this out on my own. But, I haven't been able to if there is a place I should be redirected to learn this on my own I am not resistant to that, in fact I might appreciate it.
II have my media locally and then use the following AMC "script" (I do not even know if what I am doing is a script I just call it that in my head) from the command line before I move my media into Plex. This has been life changing from using filebot to rename individually.
I am looking to add download english subtitles to this script if possible:

Code: Select all

filebot -script fn:amc --output "/path/to/output" --action duplicate -non-strict "/path/to/input" --log-file amc.log --def excludeList=amc.txt 
Thanks in advance sorry for my ignorance and I appreciate any help.

Re: Q&A for n00bs

Posted: 07 Sep 2021, 02:19
by rednoah
rednoah wrote: 01 Aug 2012, 13:04 --def subtitles=en,de,fr Download subtitles
The amc script already has an option for that, so you can just add it to your command-line:

Code: Select all

--def subtitles=en
:idea: Please monitor the console output for further details. It may ask you to enter your OpenSubtitles username and password.

Re: [SNIPPET] Sort into A-Z folders

Posted: 18 Sep 2021, 14:41
by jchh
I got this to work by myself before realising {az} existed, but... it files "Riddick (2013)" into /C/ (presumably because the 1st film was "The Chronicles of Riddick") so I am not sure if this is a bug or not. I would prefer to file it into /R/.

The second snippet works except movies starting with "A" or "The" etc (filing it into /A/ or /T/ respectfully).

The following worked for me:

Code: Select all

{n.replaceFirst(/(?i)(The |A |An |)(.).*/, /$2/)}

Re: [SNIPPET] Sort into A-Z folders

Posted: 18 Sep 2021, 14:55
by jchh
...although I'd like to put films starting with a number (eg: 28 days later) into the folder "A-Z". Any tips on how I could incorporate that into my snippet would be appreciated.

[edit]: that was a typo - I'd want to put in into a folder called 0-9

Re: [SNIPPET] Sort into A-Z folders

Posted: 18 Sep 2021, 15:10
by rednoah
e.g.

Code: Select all

{ n =~ /^\d/ ? 'A-Z' : n[0] }

Re: [SNIPPET] Sort into A-Z folders

Posted: 18 Sep 2021, 16:29
by jchh
that's fantastic - thanks.

how do I either/or that with my snippet?

Re: [SNIPPET] Sort into A-Z folders

Posted: 18 Sep 2021, 16:32
by rednoah
e.g.

Code: Select all

{ n =~ /^\d/ ? 'A-Z' : n.replaceFirst(/(?i)(The |A |An |)(.).*/, /$2/) }

Re: [SNIPPET] Sort into A-Z folders

Posted: 18 Sep 2021, 16:42
by jchh
Brilliant - thanks for your help!

Re: [SNIPPET] Sort into A-Z folders

Posted: 07 Nov 2021, 18:24
by JALinker
Is there a way to sort on names minus "The"?

IE Sorted or filed or renamed as "Big Lebowski, The" as opposed to "The Big..."

Lots of "The" movies in my collection I would rather sort differently...