POSTBUCKET - where random posts in unrelated topics go
Re: [RPM] Fedora package
I can confirm that the new package installs. Nice work and thanks!
Re: [RPM] Fedora package
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
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
Could you post a copy of the RPM SPEC file?
Re: [RPM] Fedora package
FileBot r7342 uses this spec:
%preun now takes into account that RPM calls %preun on pre-upgrade but not %post on post-upgrade.
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

Re: [BTC] Purchase FileBot with Crypto Currency
I want to pay with either bitcoin or monero. Sent PM as well. Thanks
Re: Plex Naming Schemes
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
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
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.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
Re: Plex Naming Schemes
Ok thanks for the reply. I thought I'd ask before going down the custom format route.
Re: Plex Naming Schemes
simple

Code: Select all
{plex.name.replaceAll(/S(\d{1,3})E(\d{1,3})/, 's$1e$2')}
-
- Posts: 5
- Joined: 26 Jan 2017, 00:22
Re: Plex Naming Schemes
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.
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
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.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.



Re: [DEB] Debian package
Stupid question...and maybe I am missing it...but how do we install the license?
Re: [DEB] Debian package
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
License Activation is generally self-explanatory, so don't worry about it until FileBot prompts you with instructions:
https://www.filebot.net/activate.html
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.
-
- Posts: 107
- Joined: 12 Apr 2020, 04:02
Re: Conditional Structures (if-then-else)
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 vfkim wrote: ↑19 Sep 2018, 00:32 well if I try this (in GUI)I get outputCode: Select all
\\gaia-prime\Movies\{any{'Movie Collections/'+az+'/'+collection+'/'+ny+'/'+ny}{az+'/'+ny+'/'+ny}} [{vf}]{subt}
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]
tryonly if I write {az+'/'+ny+'/'+ny} wrong like so {az'/'+ny+'/'+ny} I get theCode: Select all
\\gaia-prime\Movies\{any{collection ? ('Movie Collections/'+az+'/'+collection+'/'+ny+'/'+ny) : 'collection found but something is wrong'} {az+'/'+ny+'/'+ny} {'WTF'} }
"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 itorCode: Select all
\\gaia-prime\Movies\{any{'Movie Collections/'+az+'/'+collection}{az}}/{ny}/{ny} [{vf}]{subt}
Code: Select all
\\gaia-prime\Movies\{def altDir = ('Movie Collections/'+az+'/'); any{altDir+collection}{az}}/{ny}/{ny} [{vf}]{subt}
Code: Select all
{any{'[Collections]/'+collection+'/'+'('+y+')'+' '+n}{ny+' ['+vf.match(/720[pP]|1080[pP]/)+']'+'/'+ny}}
Code: Select all
info.OriginalLanguage =~ /en/ ? primaryTitle : n
Re: Conditional Structures (if-then-else)
Code: Select all
{ any{n}{ny}{'no match'} }
-
- Posts: 107
- Joined: 12 Apr 2020, 04:02
Re: Conditional Structures (if-then-else)
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)
e.g. Here's what you asked for specifically:
e.g. Here's how you'd work with potential attributes:
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
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.
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
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.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.
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
Unfortunately, all useful guides at the JDownloader forum are at german.
Re: [JDownloader] Setup for Windows, Linux and Mac OS X
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
Yes, you are right. The AMC script works with qtorrent, but I want to make it work with jdownloader 2 but no hope.
-
- Posts: 107
- Joined: 12 Apr 2020, 04:02
Re: MediaInfo Inspector
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.
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.