[BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Thx man!
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Looks like I spoke too soon. Haven't had the chance to check things out completely until yesterday, but this is what I see when I click the icon pinned to the taskbar using build r5684 (updating today) and only happens when using the pinned icon:

happens everytime no matter what I do. Not really an issue for me as far as I can tell but I thought you should know of course.
UPDATE: just updated to 13-Jul-2018 build (not sure of the build number) and still the same as above.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Do you mean the console window? You can use and pin FileBot as opposed to FileBot (console) if you prefer not to see the console.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
The normal GUI launcher would be filebot.launcher.exe as oppose to the CLI launcher filebot.exe.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)

if i run "filebot" (which is filebot.launcher.exe) NOT console, or platform, it opens the launcher properly as you said. However, when I pin that same open window, then click the pinned link, it opens the console as well as the launcher
also, as you see in one of the previous screenshots, the start menu only shows console or uninstall
you see no open console:

but only console can be pinned:

so if i were to pin that, it would open console:

Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Maybe fixed with FileBot r5725.b33z wrote: 18 Jul 2018, 19:10 if i run "filebot" (which is filebot.launcher.exe) NOT console, or platform, it opens the launcher properly as you said. However, when I pin that same open window, then click the pinned link, it opens the console as well as the launcher
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Ok. I'll give her a whirl in the morning. Thanksrednoah wrote: 19 Jul 2018, 05:26Maybe fixed with FileBot r5725.b33z wrote: 18 Jul 2018, 19:10 if i run "filebot" (which is filebot.launcher.exe) NOT console, or platform, it opens the launcher properly as you said. However, when I pin that same open window, then click the pinned link, it opens the console as well as the launcher
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Change filebot symlink
Code: Select all
sudo mv /usr/local/bin/filebot /usr/local/bin/filebot.wrong
cd /usr/local/bin
sudo ln -s /Applications/FileBot.localized/FileBot.app/Contents/MacOS/filebot.sh filebot
Code: Select all
sudo vi /Applications/FileBot.localized/FileBot.app/Contents/MacOS/filebot.shCode: Select all
#!/bin/sh
#FILEBOT_HOME="/Applications/FileBot.app/Contents"
FILEBOT_HOME="/Applications/FileBot.localized/FileBot.app/Contents"
JAVA_HOME="$FILEBOT_HOME/PlugIns/jre-10.0.1.jre/Contents/Home"
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
You can run filebot -script fn:sysinfo to run a self-check for yourself.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Updated to 21-Jul-2018 build (not sure the build number) and that fixed it. Thanks once again rednoah!b33z wrote: 19 Jul 2018, 06:35Ok. I'll give her a whirl in the morning. Thanksrednoah wrote: 19 Jul 2018, 05:26Maybe fixed with FileBot r5725.b33z wrote: 18 Jul 2018, 19:10 if i run "filebot" (which is filebot.launcher.exe) NOT console, or platform, it opens the launcher properly as you said. However, when I pin that same open window, then click the pinned link, it opens the console as well as the launcher
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Anyway, the only issue I noticed with FreeNAS 11 / FreeBSD 11 was that MediaInfo or JNA didn't work out of the box. To fix this, I downloaded this version of JNA and extracted it under lib/amd64 in the path where I extracted FileBot 4.8.2. The latest version of JNA didn't work due to FileBot expecting an earlier version, but it seemed to be fine with the 4.5.1 tagged one.
I noticed another issue with the update script, where it doesn't seem to work properly on FreeBSD, or at least reports some warnings / errors. The curl command used says that the -z option format isn't valid:
Code: Select all
Warning: Illegal date format for -z, --time-cond (and not a file name).
Warning: Disabling time condition. See curl_getdate(3) for valid date syntax.
Code: Select all
./update-filebot.sh: gpgv: not found
I noticed that the filebot.sh script does some system architecture checks to determine the method of file information detection:
Code: Select all
# choose archive extractor / media characteristics parser
if uname -m | grep "86"; then
# i686 or x86_64
ARCHIVE_EXTRACTOR="SevenZipNativeBindings" # use lib7-Zip-JBinding.so
MEDIA_PARSER="libmediainfo" # use libmediainfo
else
# armv7l or aarch64
ARCHIVE_EXTRACTOR="ApacheVFS" # use Apache Commons VFS2
MEDIA_PARSER="ffprobe" # use ffprobe
fi
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I'll add improved support for FreeBSD to the backlog. As a quick fix, I've update the install script to create symlinks for amd64 -> x86_64:
https://github.com/filebot/plugins/blob ... ler/tar.sh
2.
These warnings are normal if you run the incremental update script for the first time.
3.
gpgv is only required for the incremental update script. On Linux, it's part of GnuPG 1 and 2 but might be different on FreeBSD. Google says it's part of GnuPG 1 only on FreeBSD.
4.
The lower set of options is more compatible because it avoids native libraries. It should work exactly the same though. It'll require ffprobe though.
EDIT:
Please run filebot -script fn:sysinfo and post the output.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Purchasing a license is the last stage. What stage are you at?plittlefield wrote: 23 Jul 2018, 11:47 Just purchased my licence. What's the next stage for a headless Linux server?
Stage 1:
Install FileBot: viewtopic.php?f=11&t=6057
Stage 2:
Call filebot and do your thing. The CLI tool will give you instructions on how to purchase & install a FileBot license then and there as necessary.
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I purchased the licence just now via the /purchase link and have my Licence file in an email.
I can SSH in to the server and put the LIcence_XXX file somewhere if you like AFTER I have installed 4.8.2 via the .DEB file?
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
If you're using a Debian based OS, then you can use APT to install the latest FileBot package:
viewtopic.php?f=11&t=6028
If no license is installed, then filebot will fail on rename and print something like this, and so you how to install your license:
Code: Select all
License Error: UNREGISTERED
FileBot requires a valid license. Please run `filebot --license *.psm` to install your FileBot license.-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Of course! Wouldn't be very helpful if I didn't! lol Next time I'll try and be a little faster with the reply tho! lol
Thanks again!
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I'd say if this is really the path you're taking you should at least put out a roadmap of planned features and be a bit more regimented about your intake process for feature requests. If you have already done these things, apologies, but I was unable to locate them on your website.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
The current goal is to support as many platforms as possible, and make FileBot work well on all of them. Other than that, there's a never-ending stream of bug reports and feature requests here in the forums.
2.
Indeed, FileBot was an excellent piece of software back when it was free. But you can't hold that against me. You're not paying for the delta since last year. You're paying of FileBot as a complete product that does what it says. Think of it as return on investment (from the developer perspective).
Here's some interesting thoughts:
https://youtu.be/lTKuQQegNTs
The main point to take away from this, is aligning the interests of users and developers. The subscription model allows user to get FileBot for cheap (on the short term) which is good for users, and ensures strong incentive to keep my current users happy (instead of focusing on new users) which is also good for users.
3.
Plex is great. What I dislike is that none of the developer are active in their forums, so you can never actually talk to anybody who's actually working on the thing. It's probably company policy, same as with all the other tech companies (Google, Microsoft, Apple, Samsung, Synology, QNAP, etc). That's because developers are expensive and as a company you don't want them to spend their time on non-engineering tasks, such as talking to users.
-
howdymilsap
- Posts: 35
- Joined: 14 Jul 2018, 17:22
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Along these same lines, I wanted to bring up an issue that may not have been discussed yet. What will you do with hosted providers that incorporate Filebot into a seedbox or VSP solution? Some provide end-to-end solutions that incorporate filebot and your amc script. Is there a licensing solution for these types of providers yet?
thanks!
-hm
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
If you have already purchased the Windows Store / Mac App Store version, PM me for a free 1 year license.
2.
No idea. Last time I asked for some sort of revenue sharing, I never heard back. But that was when FileBot was still free.
One benefit of the new license system is that if FileBot 4.8.2 or higher is pre-installed, then you can use your personal license with that. Alternatively, custom solutions are certainly possible and I'm happy to talk if someone were to approach me in this regard.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
With, 4.7.9, I had the `filebot.sh` and the `update-filebot.sh` files in the ZIP package. Seems like with 4.8.2, it's not there anymore.
Question is, whether the 4.7.9 `.sh` files can be re-used with 4.8.2 (guessing Yes, but want to check).
UPDATE:
Upon further investigation, I found that the XZ file format package includes the shell files, but then it doesn't work on Ubuntu (not doing DEB for other reasons).
Code: Select all
./filebot.sh: 50: ./filebot.sh: Syntax error: newline unexpected (expecting ")")Code: Select all
jd@plex:/usr/local/FileBot/4.8.2$ diff filebot.sh filebot.sh.fix-case
49c49
< ;
---
> esac
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
There is now a Windows Portable ZIP package and a Linux / Unix / Posix Portable TAR package. If you're on Linux, you'll want to use the latter. The installer/tar.sh can be used as in installer on Linux.
2.
case fixed with r5757.
-
hRVkRs33Y0Kb
- Posts: 4
- Joined: 26 Jul 2018, 16:10
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Thank you! I'll send my details for the windows store purchase later - when the board allow me to PMrednoah wrote: 24 Jul 2018, 17:47 1.
If you have already purchased the Windows Store / Mac App Store version, PM me for a free 1 year license.
2.
No idea. Last time I asked for some sort of revenue sharing, I never heard back. But that was when FileBot was still free.
One benefit of the new license system is that if FileBot 4.8.2 or higher is pre-installed, then you can use your personal license with that. Alternatively, custom solutions are certainly possible and I'm happy to talk if someone were to approach me in this regard.
edit: Filebot Node (0.2.8.1 on a synology NAS) Using the GUI -> Tools\License\Purchase -> opened about:blank. Tried it 3 times then closed the GUI. When writing this, I opened it up again to get the button names correctly and suddenly the correct web page loads
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Here's the sysinfo output on my FreeNAS machine:rednoah wrote: 22 Jul 2018, 13:09 ...
EDIT:
Please run filebot -script fn:sysinfo and post the output.
Code: Select all
FileBot 4.8.2 (r5736)
JNA Native: 5.2.0
MediaInfo: 18.05
Apache Commons VFS: [zip, rar]
Chromaprint: 1.4.3
ffprobe: 3.4.2
Extended Attributes: java.io.IOException: UserDefinedFileAttributeView is not su
pported
Unicode Filesystem: OK
Script Bundle: 2018-07-15 (r530)
Groovy: 2.5.0
JRE: OpenJDK Runtime Environment 1.8.0_162
JVM: 64-bit OpenJDK 64-Bit Server VM
CPU/MEM: 4 Core / 3 GB Max Memory / 27 MB Used Memory
OS: FreeBSD (amd64)
HW: FreeBSD deluge 11.1-STABLE FreeBSD 11.1-STABLE #0 r321665+e0c4ca60dfc(freena
s/11.1-stable): Wed May 30 14:18:20 EDT 2018 [email protected]:/
freenas-11-releng/freenas/_BE/objs/freenas-11-releng/freenas/_BE/os/sys/FreeNAS.
amd64 amd64
DATA: /home/deluge/filebot/data/root
Package: TAR
License: FileBot License PX4103136 (Valid-Until: 2068-07-22)
Done ヾ(@⌒ー⌒@)ノ
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
-
virtualidacc
- Posts: 5
- Joined: 30 Jul 2018, 18:11
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Filebot is working for more than two years on my nas
That was the reason I bought the AppStore App in the first place, to support you.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
life-time license? i hope i dont die in 50 years xD
its a shame that you dont work with microsoft store. now i have the win10 version and a version for all plattforms.
the price is rough but ok.... over the time the software will pay for itself
edit:
the two files i wanted to process without a license are in the excludes-list now.
filebot should only write the complete processed files in the excludes list.
thx
-
redbull666
- Donor
- Posts: 58
- Joined: 08 Jan 2014, 20:45
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Is it hidden or blocked by adblockers perhaps?
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
i have a synology with couchpotato, nzbget and plex running.
nzbget start a filebot script to sort (and rename) the files for plex.
but nzbget give me that error:
Code: Select all
error Tue Aug 07 2018 13:09:13 Post-process-script filebot.sh for xxx failed (terminated with unknown status)
info Tue Aug 07 2018 13:09:13 filebot: /bin/sh: : No such file or directoryi think nzbget runs filebot as wrong user.
is it possible to license the whole NAS and not every user for its own?
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Neither. The idea is that you just start using FileBot, and then FileBot will open the purchase link for you then and there.
The main page will be updated as well of course on release, and it'll look something like this:

Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I'm fairly sure that this has been fixed with recent revisions of both FileBot and the amc script, since it'll force test run behavior if there's no license:Mendeln wrote: 06 Aug 2018, 19:48 the two files i wanted to process without a license are in the excludes-list now.
filebot should only write the complete processed files in the excludes list.
https://github.com/filebot/scripts/blob ... groovy#L14
Newer builds of the SPK / QNAP package already do this by storing the license file in the same location for all users, so a license imported as User A will subsequently work for User B as if that user had imported the license himself.Mendeln wrote: 07 Aug 2018, 13:14 is it possible to license the whole NAS and not every user for its own?
That is a strange error. How can you not have a working /bin/sh? I don't think it's related to filebot directly. The message might be trying to tell us the executable "/bin/sh: " doesn't exist, which points and a strange syntax error somewhere, because there definitely isn't an executable file path that ends with ": " colon space.Mendeln wrote: 07 Aug 2018, 13:14Code: Select all
Tue Aug 07 2018 13:09:13 filebot: /bin/sh: : No such file or directory
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
is it possible to get a test license for a few days? I want to try filebot node first on my QNAP until I buy a license.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
i reinstalled filebot and filebot node. now it works fine.rednoah wrote: 07 Aug 2018, 13:36 Newer builds of the SPK / QNAP package already do this by storing the license file in the same location for all users, so a license imported as User A will subsequently work for User B as if that user had imported the license himself.
with my new filebot script it works as well. (red is new)rednoah wrote: 07 Aug 2018, 13:36 That is a strange error. How can you not have a working /bin/sh? I don't think it's related to filebot directly. The message might be trying to tell us the executable "/bin/sh: " doesn't exist, which points and a strange syntax error somewhere, because there definitely isn't an executable file path that ends with ": " colon space.
very nice software. im looking forward to see awsome things in the futurefilebot.sh wrote:#!/bin/sh
###########################################
### NZBGET POST-PROCESSING SCRIPT ###
# Filebot Postprocessing
### NZBGET POST-PROCESSING SCRIPT ###
###########################################
/volume2/@appstore/filebot/filebot.sh -script 'fn:amc' /volumeUSB1/usbshare/downloads/complete --output /volume2/video/Filme --action move --conflict override --lang de --def 'ut_label=movie' 'clean=y' 'deleteAfterExtract=y' 'exec=synoindex -a "{file}"' 'movieFormat={n =~ /^(?i)[a-z]/ ? n.replaceAll(/^(?i)(The|A|An|Der|Die|Das) (.+)/, /$2, $1/).upper()[0] : '\''#0-9'\''}/{plex.name} [{vf}] [{ac} {af.replace('\''8ch'\'','\'' 7.1'\'').replace('\''7ch'\'','\'' 6.1'\'').replace('\''6ch'\'','\'' 5.1'\'').replace('\''3'\'', '\'' 2.1'\'').replace('\''3ch'\'','\'' 2.1'\'').replace('\''2ch'\'','\'' Stereo'\'')}]' --log all
POSTPROCESS_SUCCESS=93
POSTPROCESS_ERROR=94
exit $POSTPROCESS_SUCCESS
-
MasterCATZ
- Posts: 52
- Joined: 28 May 2012, 23:01
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
FileBot License XXXX (Valid-Until: 2068-08-10) has been activated successfully.
I will consider it back paying you for the last decade for using it for free
was hoping for the $50 option that you first thought off, considering we are still beta testing this license thing
however, I do have a few concerns as to how the license recognizes the machine
some programs I use seem to think its a new pc every time I change kernels etc
others like TeamViewer seem to do it randomly I think its when I do a force package reinstall
my phone now shows my pc 100+ times in the list
so as the license is only up to 5 should I install it on the pc or just run the install from a docker station or some other virtual wrapper?
90% of the time I use ubuntu, but the way it's going down the Toilet I might be jumping ship soon
oh and can you start up some form of open source system so this can be continued when you leave and or worst case scenario die, the worst part about being a 1 man show great product being paid for but no dev redundancy
*sigh*
and this is what I hate about updates, now no longer in the software center or able to run from cmd prompt without using full path
/usr/bin/filebot
Code: Select all
bash -xu <<< "$(curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh)"
...
The following packages will be upgraded:
filebot
1 to upgrade, 0 to newly install, 0 to remove and 67 not to upgrade.
Need to get 87.5 MB of archives.
After this operation, 287 MB of additional disk space will be used.
Get:1 https://get.filebot.net/deb stable/main amd64 filebot amd64 4.8.2 [87.5 MB]
Fetched 87.5 MB in 26s (3,366 kB/s)
(Reading database ... 756392 files and directories currently installed.)
Preparing to unpack .../filebot_4.8.2_amd64.deb ...
Unpacking filebot (4.8.2) over (4.7.9) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.1) ...
Processing triggers for bamfdaemon (0.5.3+18.04.20180207.2-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for shared-mime-info (1.9-2) ...
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
Processing triggers for gnome-menus (3.13.3-11ubuntu1) ...
Setting up filebot (4.8.2) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
aio@aio:~$ fliebot
fliebot: command not found
aio@aio:~$ whereis filebot
filebot: /usr/bin/filebot /usr/share/filebot
Code: Select all
aio@aio:~$ /usr/bin/filebot
Aug. 11, 2018 7:21:39 AM java.util.prefs.FileSystemPreferences$6 run
WARNING: Prefs file removed in background /home/aio/.java/.userPrefs/prefs.xml
aio@aio:~$ sudo update-alternatives --config java
There are 2 choices for the alternative java (providing /usr/bin/java).
Selection Path Priority Status
------------------------------------------------------------
0 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1101 auto mode
1 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1101 manual mode
* 2 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java 1081 manual mode
Code: Select all
sudo update-alternatives --config java
There are 2 choices for the alternative java (providing /usr/bin/java).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1101 auto mode
1 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1101 manual mode
2 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java 1081 manual mode
Press <enter> to keep the current choice[*], or type selection number: 0
aio@aio:~$ /usr/bin/filebot
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Aborted
aio@aio:~$
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
That's the idea. The pricing does factor that into account a little bit.MasterCATZ wrote: 10 Aug 2018, 20:57 I will consider it back paying you for the last decade for using it for free![]()
2.
FileBot doesn't do anything like that. There is no hard limit and FileBot doesn't keep track of your machines online at all. However, if the same license were to get activated from many different IPs all around the world, then the system might send you an email to ask what's going on.MasterCATZ wrote: 10 Aug 2018, 20:57 I do have a few concerns as to how the license recognizes the machine
3.
For obvious historic reasons, FileBot is already much more open-source than any other commercial tool. For obvious business reasons, I can't let you just clone the entire platform at the press of a button. Fortunately, the paid software model gives me incentive to not leave, in addition to my natural talent for not dying.MasterCATZ wrote: 10 Aug 2018, 20:57 oh and can you start up some form of open source system so this can be continued when you leave and or worst case scenario die, the worst part about being a 1 man show great product being paid for but no dev redundancy
4.
It's filebot and not fliebot.
5.
I have no idea what that means, but I've seen similar errors when testing the SNAP package, and a reboot usually resolves the issue:
Code: Select all
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
AbortedRe: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
- feuerwasser
- Posts: 13
- Joined: 04 Mar 2015, 18:38
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
No such property: license for class: Script1
groovy.lang.MissingPropertyException: No such property: license for class: Script1
at Script1.run(Script1.groovy:14)
at net.filebot.cli.ScriptShell.evaluate(ScriptShell.java:64)
at net.filebot.cli.ScriptShell.runScript(ScriptShell.java:74)
at net.filebot.cli.ArgumentProcessor.runScript(ArgumentProcessor.java:148)
at net.filebot.cli.ArgumentProcessor.run(ArgumentProcessor.java:36)
at net.filebot.Main.main(Main.java:126)
Failure (°_°)Code: Select all
root@Diskstation:~# filebot -version
x86_64
FileBot 4.8.2 (r5711) / Java(TM) SE Runtime Environment 1.8.0_181 / Linux 4.4.59+ (amd64)
Code: Select all
root@Diskstation:~# uname -a
Linux Mediaserver 4.4.59+ #23739 SMP PREEMPT Tue Jul 10 00:18:17 CST 2018 x86_64 GNU/Linux synology_apollolake_418playRe: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Unfortunately, 32-bit Windows 7 is not supported. 32-bit Windows 10 is supported via the Microsoft Store only at this point. I may reevaluate the need for 32-bit support with the next release if there's enough demand.popeye wrote: 11 Aug 2018, 14:22 Hello, I've just tried to install the windows version and it fails each time? The portable version says I need Java10 (64bit), but I only have a 32bit computer so can't install the 64bit version of java, and the installer version wont install because it doesn't like my processor. I'm running win7 Home Premium.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
https://get.filebot.net/filebot/HEAD/
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
At last I have some tome to try the new 4.8.2 with my licence file.
When I try to install the new DEB file I get this error...
Code: Select all
sudo dpkg -i FileBot_4.8.2_amd64.deb
(Reading database ... 244089 files and directories currently installed.)
Preparing to unpack FileBot_4.8.2_amd64.deb ...
Unpacking filebot (4.8.2) over (4.7.9) ...
dpkg-deb (subprocess): cannot copy archive member from 'FileBot_4.8.2_amd64.deb' to decompressor pipe: unexpected end of file or stream
dpkg-deb (subprocess): decompressing archive member: lzma error: unexpected end of input
dpkg-deb: error: subprocess <decompress> returned error exit status 2
dpkg: error processing archive FileBot_4.8.2_amd64.deb (--install):
cannot copy extracted data for './usr/share/filebot/jre/lib/libjfxwebkit.so' to '/usr/share/filebot/jre/lib/libjfxwebkit.so.dpkg-new': unexpected end of file or stream
Errors were encountered while processing:
FileBot_4.8.2_amd64.debPaul
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
unexpected end of file or stream-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
For the time being, I have downloaded the latest file and installed manually, which seems to have gone well.
I have also imported my Licence file and run the sysinfo script...
Code: Select all
FileBot 4.8.2 (r5789)
JNA Native: 5.2.2
MediaInfo: 18.05
7-Zip-JBinding: 9.20
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: OK
Script Bundle: 2018-08-09 (r533)
Groovy: 2.5.1
JRE: Java(TM) SE Runtime Environment 10.0.2
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 3 GB Max Memory / 65 MB Used Memory
OS: Linux (amd64)
HW: Linux nas 4.4.0-128-generic #154-Ubuntu SMP Fri May 25 14:15:18 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
DATA: /home/paully/.filebot
Package: DEB
License: FileBot License XXXXXXXX (Valid-Until: 2019-07-23)
Done ヾ(@⌒ー⌒@)Paully
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
Locking /home/paully/.filebot/logs/amc.log
Run script [fn:amc] at [Sun Aug 12 13:19:03 BST 2018]
Parameter: minFileSize = 0
Parameter: seriesFormat = TV/{n}/{n} {s00e00}
Parameter: movieFormat = Movies/{n} ({y})
Parameter: clean = y
Parameter: ut_dir = /home/paully/Downloads/completed/Tangled.The.Series.S02E08.720p.WEB.x264-TBS[rarbg]
Parameter: ut_kind = multi
Parameter: ut_title = Tangled.The.Series.S02E08.720p.WEB.x264-TBS[rarbg]
Input: /home/paully/Downloads/completed/Tangled.The.Series.S02E08.720p.WEB.x264-TBS[rarbg]/tangled.the.series.s02e08.720p.web.x264-tbs.mkv
Group: [tvs:tangled the series] => [tangled.the.series.s02e08.720p.web.x264-tbs.mkv]
Rename episodes using [TheTVDB]
Auto-detected query: [tangled the series]
Fetching episode data for [LSB The Series]
Fetching episode data for [XIII (2011)]
Fetching episode data for [Blade]
Fetching episode data for [Sotus: The Series]
[COPY] from [/home/paully/Downloads/completed/Tangled.The.Series.S02E08.720p.WEB.x264-TBS[rarbg]/tangled.the.series.s02e08.720p.web.x264-tbs.mkv] to [/home/paully/Plex/TV/XIII (2011)/XIII (2011) S02E08.mkv]Thanks,
Paully
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
Auto-detected query: [tangled the series]
Fetching episode data for [LSB The Series]
Fetching episode data for [XIII (2011)]
Fetching episode data for [Blade]
Fetching episode data for [Sotus: The Series]-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
OK, a manually run command line test with an added --q "Rapunzel's Tangled Adventure" fixed it for now...rednoah wrote: 12 Aug 2018, 12:31 Probably just a random mismatch caused by tangled the series not being a known alias for Rapunzel's Tangled Adventure?
Code: Select all
Input: /home/paully/Downloads/completed/Tangled.The.Series.S02E08.720p.WEB.x264-TBS[rarbg]/tangled.the.series.s02e08.720p.web.x264-tbs.mkv
Group: [tvs:tangled the series] => [tangled.the.series.s02e08.720p.web.x264-tbs.mkv]
Rename episodes using [TheTVDB]
Fetching episode data for [Rapunzel's Tangled Adventure]
[COPY] from [/home/paully/Downloads/completed/Tangled.The.Series.S02E08.720p.WEB.x264-TBS[rarbg]/tangled.the.series.s02e08.720p.web.x264-tbs.mkv] to [/home/paully/Plex/TV/Rapunzel's Tangled Adventure/Rapunzel's Tangled Adventure S02E08.mkv]Thanks,
Paully
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
viewtopic.php?f=3&t=360
-
plittlefield
- Posts: 101
- Joined: 09 Mar 2014, 19:15
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
However, this is a slightly tricky one... in that it _used_ to be called "Tangled the Series" for season 1 and for season 2 it has changed it's name to "Rapunzel's Tangled Adventure".
The URL in thetvdb is https://www.thetvdb.com/series/tangled-the-series but it's called "Rapunzel's Tangled Adventure".
Paully
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Maybe I missed it, but with the new model, will the program not fully function after the year is up, or will new updates prompt for a renewal? I'm hoping that the last version I have installed when my time is up will continue to work, with a renewal required to update. If a renewal will be required regardless of updating or not, will that prevent the script from renaming as well, or will it only affect the GUI?
Don't get me wrong, already did the $6 purchase, and that is obscenely reasonable for an entire year. Just asking questions that others may have now or in the future. Might be a good idea to include such information on the homepage, so that someone will know just what to expect. (Including the fact that it doesn't auto-renew.)
Considering my lackus-fundus and the price, I might not get the lifetime. Not telling what will be happening 9 years from now ($6 * 9 = $54), and also, would rather feed you $6/year, so that you have a more consistent income, vs the $ up front and then nothing more in the future.
I would also like to encourage you to add in the ability to buy two or three years at a time ($6/yr, no discounts), as a convenience factor. And, if possible, a way to limit the number of machines a license can be used on, for your protection. You're providing a great product, and $6/yr is very reasonable, yet you just know there are going to be people who will try to cheat you by giving dozens of people their license to use so they don't have to buy it themselves.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Having to many purchase options is somewhat confusing, but maybe a 3 year option might be reasonable, but then we're back to the ~15~20 USD price point that people didn't like previously. I'm looking into a auto-renewable yearly option, but this will be much more technically involved.
I do collect license activation statistics, so depending on the level of abuse, I will spend more or less time fine-tuning various license activation checks. I find the level of abuse to be surprisingly low so far though, but I guess that is to be expected with trusted early adopters such as yourself.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Before I double clicked the license file (worked nicely to auto-install it, thank you!), I couldn't find anywhere to get information on buying/entering a license, prior to trying to rename files that is. Am I missing it, or is there no "Help/About" option? Wouldn't surprise me if I'm being blind.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
There's no Help / About / FAQ regarding license management. I might add something to the FAQ but somehow everyone has figured it out so far. It seems to be quite intuitive.
The idea is to let users just run FileBot and try it first, and to only ask for a purchase once you're at the point where things are already guaranteed to be working well, as to minimize support and refunds.
I've added the purchase options to the front page, because some users seem to prefer to buy a license first. Plus making it very clear that FileBot is a paid purchase now is somewhat important to manage expectations.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I assume you are referring to making it work with Paddle? Not sure how it works and such, but if it has the ability to add a year to an existing subscription, that should be most of the work right there. If it can be done without much of a headache, I'm sure you'll make it possible. Would allow for uninterrupted subscriptions, without losing time for renewing early.rednoah wrote: 13 Aug 2018, 04:28 That would be probably be more tricky and error prone than an auto-renew subscription purchase.
Wonderful. If you add it, it'll be nice to have an optional reminder vs companies that force 90/60/30/15/7/5/3/2/1 day reminders on you. Ease of use and user friendliness... It's why so many people are willing to chip in the little money you ask for in return for what you offer.rednoah wrote: 13 Aug 2018, 04:28 Expiration reminders is probably something I'll look into once the first few licenses are about to expire.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I'm more inclined to send out an email reminder, that you can then choose to ignore or star, with maybe a calendar attachment. Let's see what thoughts people have on the topic over the next year. Your feedback is much appreciated.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Your excellent product is much appreciated.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I bought FileBot on MacOSX 2 years ago, because this application is really amazing.
I'am using the filbert GUI but also the command line interface (CLI) installed using homebrew-cask.
With the last update the filebot GUI interface is registered, but the CLI version 4.8.2 is not registered.
How can I get my license files (.psm) to activate the CLI version of FileBot ?
Best regards,
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
On the command line, try this:
Code: Select all
filebot --license "Path-to-the-license-file.psm"Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
The problem is not the command but the license file.
I bought my Filbot License on the Apple AppStore, and I want to register the FileBot command line tools (CLI) installed using Homebrew cask.
I know the command to register the CLI but I don't know where to find the license files.
Please give me the "path-to-the-license" or told me how i can download the license file or generate it when you bought the license on the AppStore.
Best Regards
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
viewtopic.php?f=12&t=5983
Unfortunately, there's now no longer an alternative free version you could use instead. It's not possible to change a MAS purchase into a universal license, but if you PM me with your MAS purchase confirmation then I'll issue you a 1 year complimentary license for the non-MAS version.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
I've decided to bought Filebot more than one year ago (when we were not obliged to) because this software is really cool.
For sure apple doesn't allow CLI tools in the AppStore, but this is the reason why, FileBot is accessible throught homebrew cask.
On my mac mini, before the last update, I was using Filebot v4.8.2 from the AppStore and CLI tools v4.7.9 from homebrew cask (I'm using scripts with jdownloader to call filelbot). and all was working perfectly.
If i understand well, people like me who have bought a license on the App Store can't use it for the CLI tools on any platform.
In my opinion you have to be clear on your website, and explain that if you buy a license on stores you can't use it for CLI tools.
If we want great features in FileBot, I understand that we have to pay (nobody is working for nuts) and this is what i have done as an early Filebot adopter.
But it sound strange to me to hear that my license can't be use for CLI tools, and on the website we can read the following :
Code: Select all
------
Purchase life-time universal license US$54.00
A valid license is required to unlock FileBot.
A single license is valid on all platforms and can be used on multiple machines.
Microsoft Store and Mac App Store purchases do not require a separate license.
------anyway, just let me know what are the document you need as proof of my purchase and how to send you a private email ?
Best regards.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
Microsoft Store and Mac App Store purchases do not require a separate license.2.
I understand your concerns, and that's why I'm offering free (albeit the usual 1 year time limited) universal licenses. Please PM me your purchase confirmation (e.g. the email you got from Apple, or screenshot, as pdf or png shared via google drive or dropbox) and your name plus email.
3.
Alternatively, you can keep just using FileBot 4.7.9 as it's still free and available and still mostly works AFAIK.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
- A statement on the website saying the changes between these major versions, 4.7.x and 4.8.x, specially about this licensing model;
- A statement saying exactly which features are binded to a license. Maybe for what this friend uses Filebot for, he doesnt need a license (although I will suggest him to buy one for the sake of helping the developer).
This now is a more specific question and you can answer me with a direct message as well: does compilng from source for personal purposes (and not creating a third-party binary since I read the dont be a dick license) still needs a license as well?
rednoah, please don't get me wrong with the above questions ok.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
This very thread explains the new license model. I do not intended to clutter the front page with details and history. There's all sorts of details that might be useful for one person or another, but if I add all of them, nobody would read any of them. The forums are the right place to read up on release notes, history and detailed questions & answers.
2.
FileBot requires a license. It's that simple. Having difference licenses for different feature sets is not planned. While it's true that currently some features work without a license as a courtesy / intentional oversight / for evaluation purposes for new users, this may or may not hold true in the future.
3.
The source code is for educational purposes only. You will not be able to recreate a working FileBot build without also recreating your own server-side infrastructure and applying for your own API keys for all the services you want to support in your custom build. Suffice to say, creating your own build from source is not feasible nor officially supported.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
B) Back then i went for the direct licence and now i kind of do get a unregistered version after update
=> how do i get The licence file?
Best regards
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Thanks for the detailed response. You've done lots of support in the past in this forum and in the project itself even when it didn't require a license, so I'm glad for that and I'm going to say to my friend that he now needs to buy a license, period.rednoah wrote: 16 Aug 2018, 07:22 1.
This very thread explains the new license model. (...)
2.
FileBot requires a license. It's that simple. (...)
3.
The source code is for educational purposes only. (...)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Yes. Thanks to the new system, there's no more ambiguities with different versions and platforms, and so it's up to the end user to make a simple purchase / don't purchase decision.kodiuser wrote: 16 Aug 2018, 23:35 I'm going to say to my friend that he now needs to buy a license, period.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
What exactly do you mean? By "direct license" do you mean the new universal license system that uses Paddle as payment platform?Eye wrote: 16 Aug 2018, 18:37 Back then i went for the direct licence and now i kind of do get a unregistered version after update
=> how do i get The licence file?
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Don't hesitate to spend some money on this great software.
Special Thanks to Rednoah.
rednoah wrote: 15 Aug 2018, 21:10
I understand your concerns, and that's why I'm offering free (albeit the usual 1 year time limited) universal licenses. Please PM me your purchase confirmation (e.g. the email you got from Apple, or screenshot, as pdf or png shared via google drive or dropbox) and your name plus email.
Code: Select all
███████╗██╗██╗ ███████╗██████╗ ██████╗ ████████╗
██╔════╝██║██║ ██╔════╝██╔══██╗██╔═══██╗╚══██╔══╝
█████╗ ██║██║ █████╗ ██████╔╝██║ ██║ ██║
██╔══╝ ██║██║ ██╔══╝ ██╔══██╗██║ ██║ ██║
██║ ██║███████╗███████╗██████╔╝╚██████╔╝ ██║
╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ ╚═════╝ ╚═╝
██╗███████╗ ██████╗ ██████╗ ███████╗ █████╗ ████████╗
██║██╔════╝ ██╔════╝ ██╔══██╗██╔════╝██╔══██╗╚══██╔══╝
██║███████╗ ██║ ███╗██████╔╝█████╗ ███████║ ██║
██║╚════██║ ██║ ██║██╔══██╗██╔══╝ ██╔══██║ ██║
██║███████║ ╚██████╔╝██║ ██║███████╗██║ ██║ ██║
╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
It's quite silly that we have to purchase the same software multiple times just so that we can use it across the different platforms (e.g. Synology and Mac) that we own.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
-
mmeklenschek
- Posts: 3
- Joined: 10 Jul 2018, 00:33
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
No such property: license for class: Script1
groovy.lang.MissingPropertyException: No such property: license for class: Script1
at Script1.run(Script1.groovy:14)
at net.filebot.cli.ScriptShell.evaluate(ScriptShell.java:64)
at net.filebot.cli.ScriptShell.runScript(ScriptShell.java:74)
at net.filebot.cli.ArgumentProcessor.runScript(ArgumentProcessor.java:148)
at net.filebot.cli.ArgumentProcessor.run(ArgumentProcessor.java:36)
at net.filebot.Main.main(Main.java:126)
Failure (°_°)Has anyone seen this?
Thanks.
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
-
MasterCATZ
- Posts: 52
- Joined: 28 May 2012, 23:01
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
It's filebot and not fliebot.
Woops
Filebot just randomly started to decide to not work, keeps crashing or if it does stay open will not open any files all greyed out
Code: Select all
aio@aio:~$ filebot
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Aborted
aio@aio:~$ filebot
Aug. 25, 2018 7:30:55 PM java.util.prefs.FileSystemPreferences$6 run
WARNING: Prefs file removed in background /home/aio/.java/.userPrefs/prefs.xml
aio@aio:~$ sudo filebot
[sudo] password for aio:
Aug. 25, 2018 7:31:38 PM java.util.prefs.FileSystemPreferences$6 run
WARNING: Prefs file removed in background /root/.java/.userPrefs/prefs.xml
aio@aio:~$ filebot
Aug. 25, 2018 7:32:08 PM java.util.prefs.FileSystemPreferences$6 run
WARNING: Prefs file removed in background /home/aio/.java/.userPrefs/prefs.xml
Exception in thread "JavaFX Application Thread" java.lang.IncompatibleClassChangeError
at javafx.graphics/com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
at javafx.graphics/com.sun.glass.ui.gtk.GtkApplication.lambda$runLoop$11(Unknown Source)
at java.base/java.lang.Thread.run(Unknown Source)
aio@aio:~$ sudo update-alternatives --config java
There are 2 choices for the alternative java (providing /usr/bin/java).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1101 auto mode
1 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1101 manual mode
2 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java 1081 manual mode
Press <enter> to keep the current choice[*], or type selection number: 2
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java to provide /usr/bin/java (java) in manual mode
aio@aio:~$ filebot
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Aborted
aio@aio:~$ filebot
Aug. 25, 2018 7:34:04 PM java.util.prefs.FileSystemPreferences$6 run
WARNING: Prefs file removed in background /home/aio/.java/.userPrefs/prefs.xml
aio@aio:~$ sudo filebot
Aug. 25, 2018 7:35:53 PM java.util.prefs.FileSystemPreferences$6 run
Code: Select all
aio@aio:~/Downloads$ filebot -script fn:sysinfo
FileBot 4.8.2 (r5789)
JNA Native: 5.2.2
MediaInfo: 18.05
7-Zip-JBinding: 9.20
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: OK
GVFS: PlatformGVFS [/run/user/1000/gvfs]
Script Bundle: 2018-08-14 (r534)
Groovy: 2.5.1
JRE: Java(TM) SE Runtime Environment 10.0.2
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 7 GB Max Memory / 47 MB Used Memory
OS: Linux (amd64)
HW: Linux aio 4.17.0-041700-generic #201806041953 SMP Mon Jun 4 19:55:25 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
DATA: /home/aio/.filebot
Package: DEB
License: FileBot License xxxxxxxx (Valid-Until: 2068-08-10)
Done ヾ(@⌒ー⌒@)ノ
aio@aio:~/Downloads$
Code: Select all
aio@aio:~$ filebot -clear-cache
Clear cache
* Delete /home/aio/.filebot/cache/2
* Delete /home/aio/.filebot/cache/5
* Delete /home/aio/.filebot/cache/1
* Delete /home/aio/.filebot/cache/4
* Delete /home/aio/.filebot/cache/3
* Delete /home/aio/.filebot/cache/6
Error during startup
java.nio.file.AccessDeniedException: /home/aio/.filebot/cache/6/web-datasource-lv2.index
at net.filebot.util.FileUtilities$2.visitFile(FileUtilities.java:168)
at net.filebot.util.FileUtilities$2.visitFile(FileUtilities.java:164)
at net.filebot.util.FileUtilities.delete(FileUtilities.java:164)
at net.filebot.Main.main(Main.java:94)
aio@aio:~$ sudo filebot -clear-cache
[sudo] password for aio:
Clear cache
* Delete /home/aio/.filebot/cache/6
* Delete /home/aio/.filebot/cache/0
aio@aio:~$ filebot
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Aborted
aio@aio:~$
I'll try a purge as soon as I find where to backup my renaming options
preferences.backup.xml is all i could find unsure why its last modified date was when filebot was last run I have not changed any settings for years
wow 386 meg to run this
Code: Select all
sudo apt remove --purge filebot
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libc++1 libc++abi1 libgsoap-2.8.60 libvncserver1
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
filebot*
0 to upgrade, 0 to newly install, 1 to remove and 17 not to upgrade.
After this operation, 386 MB disk space will be freed.
Do you want to continue? [Y/n]
Code: Select all
sudo dpkg -i FileBot_4.8.2_amd64.deb
Selecting previously unselected package filebot.
(Reading database ... 760434 files and directories currently installed.)
Preparing to unpack FileBot_4.8.2_amd64.deb ...
Unpacking filebot (4.8.2) ...
Setting up filebot (4.8.2) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for gnome-menus (3.13.3-11ubuntu1.1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.1) ...
Processing triggers for bamfdaemon (0.5.3+18.04.20180207.2-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for shared-mime-info (1.9-2) ...
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
Code: Select all
filebot
Fetch failed: https://app.filebot.net/update.xml
java.net.UnknownHostException: app.filebot.net
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at net.filebot.web.WebRequest.fetch(WebRequest.java:142)
at net.filebot.CachedResource.lambda$fetchIfModified$9(CachedResource.java:215)
at net.filebot.CachedResource.lambda$get$0(CachedResource.java:87)
at net.filebot.CachedResource.retry(CachedResource.java:121)
at net.filebot.CachedResource.lambda$get$1(CachedResource.java:87)
at net.filebot.Cache.computeIf(Cache.java:90)
at net.filebot.CachedResource.get(CachedResource.java:82)
at net.filebot.Main.checkUpdate(Main.java:276)
at net.filebot.Main.onStart(Main.java:208)
at net.filebot.Main.lambda$main$1(Main.java:161)
at net.filebot.util.ui.SwingUI$SwingRunnable.doInBackground(SwingUI.java:435)
at net.filebot.util.ui.SwingUI$SwingRunnable.doInBackground(SwingUI.java:425)
Caused by: java.net.UnknownHostException: app.filebot.net
at net.filebot.web.WebRequest.fetch(WebRequest.java:139)
... 11 more
Failed to check for updates
java.net.UnknownHostException: app.filebot.net
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at net.filebot.web.WebRequest.fetch(WebRequest.java:142)
at net.filebot.CachedResource.lambda$fetchIfModified$9(CachedResource.java:215)
at net.filebot.CachedResource.lambda$get$0(CachedResource.java:87)
at net.filebot.CachedResource.retry(CachedResource.java:121)
at net.filebot.CachedResource.lambda$get$1(CachedResource.java:87)
at net.filebot.Cache.computeIf(Cache.java:90)
at net.filebot.CachedResource.get(CachedResource.java:82)
at net.filebot.Main.checkUpdate(Main.java:276)
at net.filebot.Main.onStart(Main.java:208)
at net.filebot.Main.lambda$main$1(Main.java:161)
at net.filebot.util.ui.SwingUI$SwingRunnable.doInBackground(SwingUI.java:435)
at net.filebot.util.ui.SwingUI$SwingRunnable.doInBackground(SwingUI.java:425)
Caused by: java.net.UnknownHostException: app.filebot.net
at net.filebot.web.WebRequest.fetch(WebRequest.java:139)
... 11 more
Aug. 26, 2018 9:31:29 AM java.util.prefs.FileSystemPreferences$6 run
WARNING: Prefs file removed in background /home/aio/.java/.userPrefs/prefs.xml
Code: Select all
export JAVA_OPTS="-Dnet.filebot.logging.debug=ALL -Dnet.filebot.web.WebRequest.log.response=true"
aio@aio:/SnapRaidRW/DATA/Android$ filebot
Using persistent disk cache /home/aio/.filebot/cache/0
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Aborted
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Code: Select all
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:165: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Aborted-
ZombieRodeo
- Posts: 1
- Joined: 27 Aug 2018, 19:02
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
If the macOS installer (PKG) doesn't work, then you can try the app bundle instead, install via brew cask:ZombieRodeo wrote: 27 Aug 2018, 19:04 I downloaded 4.8.2 on my MacMini but every time I try to install it, it gets to the 'Validating Packages' part and ends with an installation error.
viewtopic.php?f=4&t=2049
-
JamesS20190
- Posts: 1
- Joined: 28 Aug 2018, 15:44
Re: [BETA] FileBot 4.8.2 (with support for all platforms with cross-platform license system)
Can anyone help me


