1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-10-31 23:45:05 -04:00

amd64 libs may not work on QNAP because it's using a really old libc

This commit is contained in:
Reinhard Pointner 2018-08-16 02:07:01 +07:00
parent 945d5619c6
commit 013a0e8446

View File

@ -14,14 +14,8 @@ export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8" export LC_ALL="en_US.UTF-8"
# choose archive extractor / media characteristics parser # choose archive extractor / media characteristics parser
if uname -m | egrep "i386|i686|amd64|x86_64"; then ARCHIVE_EXTRACTOR="ApacheVFS"
ARCHIVE_EXTRACTOR="SevenZipNativeBindings" # use lib7-Zip-JBinding.so MEDIA_PARSER="ffprobe"
MEDIA_PARSER="libmediainfo" # use libmediainfo
else
# armv7l or aarch64
ARCHIVE_EXTRACTOR="ApacheVFS" # use Apache Commons VFS2
MEDIA_PARSER="ffprobe" # use ffprobe
fi
# choose ffprobe executable # choose ffprobe executable
FFPROBE="/mnt/ext/opt/medialibrary/bin/ffprobe" FFPROBE="/mnt/ext/opt/medialibrary/bin/ffprobe"