Search found 10 matches

by Ernie95
27 Nov 2018, 13:44
Forum: Scripting and Automation
Topic: FileBot on RaspberryPi
Replies: 32
Views: 35864

Re: FileBot on RaspberryPi

Dear Rednoah,

Thanks.

I obtained:
/media/seagate/filebot $ filebot -script fn:sysinfo
FileBot 4.8.2 (r5789)
JNA Native: 5.2.2
MediaInfo: 0.7.73
Apache Commons VFS: [zip, rar]
FFprobe: 3.2.10-1~deb9u1+rpt2
Chromaprint: java.io.IOException: Cannot run program "fpcalc": error=2, No such file or ...
by Ernie95
26 Nov 2018, 19:55
Forum: Scripting and Automation
Topic: FileBot on RaspberryPi
Replies: 32
Views: 35864

Re: FileBot on RaspberryPi

Dear All

I am trying to install:
Debian package: FileBot_4.8.2_amd64.deb

On my raspberry 3 B+ with Raspbian 9.6

Via the interface I click on the deb file. The installation is launched and then a message tell me that it is not successful.

What is the right procedure for installation on Raspbian ...
by Ernie95
03 Jun 2017, 15:45
Forum: Help and Support
Topic: [Solved]IllegalArgumentException: URI can't be null.
Replies: 5
Views: 6455

Re: [Solved]IllegalArgumentException: URI can't be null.

Hello,

I found the solution based on rednoah advice. I had to write :

Code: Select all

--def plex=ipadress:XEP624
It works without error or warning

Thanks
by Ernie95
01 Jun 2017, 17:27
Forum: Help and Support
Topic: [Solved]IllegalArgumentException: URI can't be null.
Replies: 5
Views: 6455

Re: IllegalArgumentException: URI can't be null.

Thanks Rednoah

Sorry for my delay but I was busy.

Big thanks : it is fast solved. I didn't know that I add to remove the [ before token and after token. In my script I put the token number but not in this post (I written token).

Here after the result of the execution of the script:

Locking ...
by Ernie95
08 May 2017, 07:10
Forum: Help and Support
Topic: [Solved]IllegalArgumentException: URI can't be null.
Replies: 5
Views: 6455

Re: IllegalArgumentException: URI can't be null.

SOme additional information:

root@PC:/home/user/.filebot# ./filebot.sh -script fn:sysinfo
FileBot 4.7.9 (r4984)
JNA Native: 5.1.0
MediaInfo: 0.7.93
Apache Commons VFS: [zip, rar]
Chromaprint: java.io.IOException: Cannot run program "fpcalc": error=2, Aucun fichier ou dossier de ce type
Extended ...
by Ernie95
07 May 2017, 18:18
Forum: Help and Support
Topic: [Solved]IllegalArgumentException: URI can't be null.
Replies: 5
Views: 6455

[Solved]IllegalArgumentException: URI can't be null.

Dear All,

I am using filebot version 4.7

It works fine but I see the following message at the end of the execution of the script:
IllegalArgumentException: URI can't be null

My script is:

T_PATH=$1
T_NAME=$2
T_LABEL=$3
sh /home/user/.filebot/filebot.sh --lang fr --encoding utf8 -script fn:amc ...
by Ernie95
01 May 2017, 07:18
Forum: Ubuntu & Desktop Linux
Topic: URI can't be null
Replies: 0
Views: 2813

URI can't be null

Dear All,

I am using filebot on my debian VM.

It works fine for the moving and renaming files except that at the end of the process I have the following error/warning :
IllegalArgumentException: URI can't be null.

I think that it comes from my last line of my script:
sh /pathoffilebot/.filebot ...
by Ernie95
11 Nov 2015, 10:17
Forum: Ubuntu & Desktop Linux
Topic: ruTorrent
Replies: 14
Views: 14463

Re: ruTorrent

I found how to mange accent.

In the script for post process of rutorrent I added in the command filebot: --encoding

And in the filebot script I modified:
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
In:
export LANG="fr_FR.UTF-8"
export LC_ALL="fr_FR.UTF-8"

And now it is fine. :mrgreen:
by Ernie95
24 Oct 2015, 18:13
Forum: Ubuntu & Desktop Linux
Topic: ruTorrent
Replies: 14
Views: 14463

Re: ruTorrent

Thanks.

I Will look the tricky issue.
by Ernie95
17 Oct 2015, 19:25
Forum: Ubuntu & Desktop Linux
Topic: ruTorrent
Replies: 14
Views: 14463

Re: ruTorrent

Hello

I am new user of filebot with rutorrent. I am using the following script:
#!/bin/bash
TORRENT_PATH=$1
TORRENT_NAME=$2
TORRENT_LABEL=$3

filebot -script fn:amc --output "/Media" --log-file amc.log --action duplicate --conflict override -non-strict --def music=n artwork=n "ut_dir=$TORRENT_PATH ...