no longer searching shooter?

Any questions? Need some help?
Post Reply
garyleecn
Donor
Posts: 114
Joined: 19 Nov 2014, 03:48

no longer searching shooter?

Post by garyleecn »

so I've reset my Synology, downloaded the latest filebot from repo, and used my old script as following,

Code: Select all

filebot -script dev:amc --output /volume1/Video/ --log-file /volume1/Download/NZBGet/FileBot.log --action move --conflict auto -non-strict /volume1/Download/Completed/ --def artwork=y extra=y subtitles=zho,eng,en
it used to search and download Chinese subtitles from shooter, but now it's only looking on open subtitles.
here's the log output, any idea what went wrong?

Code: Select all

Parameter: artwork = y
Parameter: extra = y
Parameter: clean = y
Parameter: deleteAfterExtract = y
Parameter: subtitles = zho,eng,en
Argument[0]: /volume1/Download/Completed
Input: /volume1/Download/Completed/TV Shows/Elementary.S05E16.720p.HDTV.X264-DIMENSION/Elementary.S05E16.720p.HDTV.X264-DIMENSION.mkv
Group: [tvs:elementary] => [Elementary.S05E16.720p.HDTV.X264-DIMENSION.mkv]
Get [Chinese] subtitles for 1 files
Looking up subtitles by hash via OpenSubtitles
No matching subtitles found: /volume1/Download/Completed/TV Shows/Elementary.S05E16.720p.HDTV.X264-DIMENSION/Elementary.S05E16.720p.HDTV.X264-DIMENSION.mkv
Get [English] subtitles for 1 files
Looking up subtitles by hash via OpenSubtitles
No matching subtitles found: /volume1/Download/Completed/TV Shows/Elementary.S05E16.720p.HDTV.X264-DIMENSION/Elementary.S05E16.720p.HDTV.X264-DIMENSION.mkv
Get [English] subtitles for 1 files
Looking up subtitles by hash via OpenSubtitles
No matching subtitles found: /volume1/Download/Completed/TV Shows/Elementary.S05E16.720p.HDTV.X264-DIMENSION/Elementary.S05E16.720p.HDTV.X264-DIMENSION.mkv
Rename episodes using [TheTVDB]
Auto-detected query: [Elementary]
Fetching episode data for [Elementary]
[MOVE] From [/volume1/Download/Completed/TV Shows/Elementary.S05E16.720p.HDTV.X264-DIMENSION/Elementary.S05E16.720p.HDTV.X264-DIMENSION.mkv] to [/volume1/Video/TV Shows/Elementary/Season 05/Elementary - S05E16 - Fidelity.mkv]
Processed 1 files
User avatar
rednoah
The Source
Posts: 22975
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: no longer searching shooter?

Post by rednoah »

Yep, looks like something broke there.

Fixed with r4922.
:idea: Please read the FAQ and How to Request Help.
garyleecn
Donor
Posts: 114
Joined: 19 Nov 2014, 03:48

Re: no longer searching shooter?

Post by garyleecn »

rednoah wrote:Yep, looks like something broke there.

Fixed with r4922.

any chance to release a Synology spk file?
or do you know where the .jar file is on synology, or better, how to upgrade it?

thanks

--------
I know on windows it should be fairly easy with winscp, but unfortunately don't have windows available to me...
User avatar
rednoah
The Source
Posts: 22975
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: no longer searching shooter?

Post by rednoah »

You will find all SPK packages here:

Code: Select all

/var/packages/
:idea: Please read the FAQ and How to Request Help.
garyleecn
Donor
Posts: 114
Joined: 19 Nov 2014, 03:48

Re: no longer searching shooter?

Post by garyleecn »

rednoah wrote:You will find all SPK packages here:

Code: Select all

/var/packages/
is this where DSM stores all SPKs? but how do I replace filebot.jar with the new one?
garyleecn
Donor
Posts: 114
Joined: 19 Nov 2014, 03:48

Re: no longer searching shooter?

Post by garyleecn »

garyleecn wrote:
rednoah wrote:You will find all SPK packages here:

Code: Select all

/var/packages/
is this where DSM stores all SPKs? but how do I replace filebot.jar with the new one?


alright. I figured it out. so for anyone else, and for myself as a note,
I ran this command as root on via ssh

Code: Select all

mount --bind /volume1/@appstore /volume1/Download/Apps, so I get GUI access to @appstore folder
, where all app data is.
then I just replace the jar file, and ran this

Code: Select all

umount /volume1/Downloads/Apps
to unmount it.
it works just fine now
User avatar
rednoah
The Source
Posts: 22975
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: no longer searching shooter?

Post by rednoah »

Not sure how to answer basic questions like that. You just replace the jar? With the mv command?

I guess it's easier to just install the portable, because that one includes a script for updating the jar:

Code: Select all

mkdir -p /volume1/app/filebot

Code: Select all

cd /volume1/app/filebot

Code: Select all

curl https://raw.githubusercontent.com/filebot/plugins/master/bash/install-filebot.sh | sh

Code: Select all

./update-filebot.sh
:idea: Please read the FAQ and How to Request Help.
garyleecn
Donor
Posts: 114
Joined: 19 Nov 2014, 03:48

Re: no longer searching shooter?

Post by garyleecn »

rednoah wrote:Not sure how to answer basic questions like that. You just replace the jar? With the mv command?

I guess it's easier to just install the portable, because that one includes a script for updating the jar:

Code: Select all

mkdir -p /volume1/app/filebot

Code: Select all

cd /volume1/app/filebot

Code: Select all

curl https://raw.githubusercontent.com/filebot/plugins/master/bash/install-filebot.sh | sh

Code: Select all

./update-filebot.sh

hmm that's certainly a good way to do that, but I guess for average users (or at least me), it's much easier to install from package center :lol: :lol:

I didn't use mv command because the location/directory for filebot.jar isn't obvious in synology. what I did is, I mounted the entire @appstore directory (where all synology packages are installed) to a visible location, and after that, I can just use webUI or even smb/afp/webdav etc., to copy and paste the new jar file.
I'm not too familiar with linux commands, so I kinda feel much more confident doing copy/paste on a GUI than using command, but I guess since now I know where .jar is located, I can just use mv command next time.
Post Reply