From 013a0e844622e20c5e7e2bbcdf3a339421f73c87 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 16 Aug 2018 02:07:01 +0700 Subject: [PATCH] amd64 libs may not work on QNAP because it's using a really old libc --- installer/qpkg/shared/bin/filebot.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/installer/qpkg/shared/bin/filebot.sh b/installer/qpkg/shared/bin/filebot.sh index 129a9303..6ecf2758 100755 --- a/installer/qpkg/shared/bin/filebot.sh +++ b/installer/qpkg/shared/bin/filebot.sh @@ -14,14 +14,8 @@ export LANG="en_US.UTF-8" export LC_ALL="en_US.UTF-8" # choose archive extractor / media characteristics parser -if uname -m | egrep "i386|i686|amd64|x86_64"; then - 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 +ARCHIVE_EXTRACTOR="ApacheVFS" +MEDIA_PARSER="ffprobe" # choose ffprobe executable FFPROBE="/mnt/ext/opt/medialibrary/bin/ffprobe"