Auto Extract too many characters

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
JohnnyT009
Posts: 15
Joined: 19 Dec 2016, 02:16

Auto Extract too many characters

Post by JohnnyT009 »

My auto extract is making a folder in a folder so some of my files like tv shows can run out of character count and FileBot fails. Is there a way to tell it to extract right into the working directory?

Code: Select all

Read archive [the.daily.show.2017.02.13.elaine.welteroth.720p.hdtv.x264-crooks.rar] and extract to [/Torrents/MediaFinal/The.Daily.Show.2017.02.13.Elaine.Welteroth.720p.HDTV.x264-CROOKS/the.daily.show.2017.02.13.elaine.welteroth.720p.hdtv.x264-crooks/The.Daily.Show.2017.02.13.Elaine.Welteroth.720p.HDTV.x264-CROOKS]
Skipped extracting files [/Torrents/MediaFinal/The.Daily.Show.2017.02.13.Elaine.Welteroth.720p.HDTV.x264-CROOKS/the.daily.show.2017.02.13.elaine.welteroth.720p.hdtv.x264-crooks/The.Daily.Show.2017.02.13.Elaine.Welteroth.720p.HDTV.x264-CROOKS/the.daily.show.2017.02.13.elaine.welteroth.720p.hdtv.x264-crooks.mkv]
java: symbol lookup error: /usr/lib/x86_64-linux-gnu/libmediainfo.so.0.0.0: undefined symbol: _ZN6ZenLib6Ztring22Date_From_Seconds_1904Ej
User avatar
rednoah
The Source
Posts: 22991
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Auto Extract too many characters

Post by rednoah »

The only error message I see is this one, and that's definitely not about file path length:

Code: Select all

java: symbol lookup error: /usr/lib/x86_64-linux-gnu/libmediainfo.so.0.0.0: undefined symbol: _ZN6ZenLib6Ztring22Date_From_Seconds_1904Ej
On Unix, file path limits FAR beyond the 284 characters you seem to be dealing here. There's no error message neither. What makes you think that it's not working?
:idea: Please read the FAQ and How to Request Help.
JohnnyT009
Posts: 15
Joined: 19 Dec 2016, 02:16

Re: Auto Extract too many characters

Post by JohnnyT009 »

I thought that was what that error meant. It seems to just quit after it gets that error and does not move on to other files in the directory.
JohnnyT009
Posts: 15
Joined: 19 Dec 2016, 02:16

Re: Auto Extract too many characters

Post by JohnnyT009 »

I do seem to have an issue with invalid filesystem.


root@8e334dd33513:/# filebot -script fn:sysinfo
FileBot 4.7.7 (r4762)
JNA Native: 5.1.0
MediaInfo: 0.7.92.1
p7zip: Version 9.20 (locale=C,Utf16=off,HugeFiles=on,6 CPUs)
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: java.nio.file.InvalidPathException: Malformed input or input contains unmappable characters: /root/.filebot/????
WARNING: sun.jnu.encoding = ANSI_X3.4-1968
Script Bundle: 2017-02-10 (r480)
Groovy: 2.4.8
JRE: Java(TM) SE Runtime Environment 1.8.0_111
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 6 Core / 3 GB Max Memory / 26 MB Used Memory
OS: Linux (amd64)
Package: DEB
Data: /root/.filebot
uname: Linux 8e334dd33513 4.9.8-unRAID #1 SMP PREEMPT Tue Feb 7 17:02:26 PST 2017 x86_64 x86_64 x86_64 GNU/Linux
Done ?(?????)?
JohnnyT009
Posts: 15
Joined: 19 Dec 2016, 02:16

Re: Auto Extract too many characters

Post by JohnnyT009 »

I ran export LC_ALL=en_US.UTF-8 and now my sysinfo looks correct but I am still getting the same error.

java: symbol lookup error: /usr/lib/x86_64-linux-gnu/libmediainfo.so.0.0.0: undefined symbol: _ZN6ZenLib6Ztring22Date_From_Seconds_1904Ej
JohnnyT009
Posts: 15
Joined: 19 Dec 2016, 02:16

Re: Auto Extract too many characters

Post by JohnnyT009 »

Yep, that is exactly my issue. I ran the commands below and that got the latest ZenLib (libzen) and now it is working. Thanks

Code: Select all

sudo apt-get update
sudo apt-get install libzen-dev
https://www.devmanuals.net/install/ubun ... n-dev.html

In case anyone else wants to install the latest MediaInfo on linux for filebot to use here is what you can do. make sure to do the update above as well.

https://launchpad.net/~djcj/+archive/ubuntu/mediainfo

Code: Select all

sudo add-apt-repository ppa:djcj/mediainfo
sudo apt-get update
sudo apt-get install mediainfo
User avatar
rednoah
The Source
Posts: 22991
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Auto Extract too many characters

Post by rednoah »

Why would you use a strange ppa instead of the official package?

* https://mediaarea.net/en/MediaInfo/Download/Ubuntu
* https://launchpad.net/ubuntu/+source/mediainfo
:idea: Please read the FAQ and How to Request Help.
Post Reply