Filebot cli failing to match against Saturday Night Live

Any questions? Need some help?
Post Reply
belgarth
Posts: 30
Joined: 25 Jan 2012, 09:19

Filebot cli failing to match against Saturday Night Live

Post by belgarth »

am I doint something wrong here?
$ ls -l /home/XXXXX/TV-Shows/Unsorted
total 716496
-rw-r--r-- 1 XXXXX XXXXXX 733678638 2012-02-19 06:53 saturday.night.live.s37e15.maya.rudolph-sleigh.bells.hdtv.xvid-2hd.avi
$ filebot --q "Satuday Night Live" -rename --db thetvdb --format "/home/belgarth/Downloads/TV-Shows/{n}/{n} - {s}x{e} - {t}" /home/XXXXXX/TV-Shows/Unsorted/saturday.night.live.s37e15.maya.rudolph-sleigh.bells.hdtv.xvid-2hd.avi
Rename episodes using [TheTVDB]
Failed to fetch episode data: [/home/XXXXXXX/TV-Shows/Unsorted]
Exception: Unable to match files to episode data
Failure (°_°)
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot cli failing to match against Saturday Night Live

Post by rednoah »

Check the db first:
$ filebot --q "Satuday Night Live" -list --db thetvdb

Does it work of u use --db tvrage?
:idea: Please read the FAQ and How to Request Help.
belgarth
Posts: 30
Joined: 25 Jan 2012, 09:19

Re: Filebot cli failing to match against Saturday Night Live

Post by belgarth »

I tried tvrge with my original cli as well with no luck. From your suggestion:

belgarth@media-server:~$ filebot --q "Satuday Night Live" -list --db thetvdb
Exception: Failed to auto-select search result: []
Failure (°_°)
belgarth@media-server:~$ filebot --q "Satuday Night Live" -list --db tvrage
Exception: Failed to auto-select search result: []
Failure (°_°)

But the websites have the show:
http://thetvdb.com/?tab=series&id=76177&lid=7

http://www.tvrage.com/Saturday_Night_Live
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot cli failing to match against Saturday Night Live

Post by rednoah »

Looks like that typo in the query made a big difference! :D
filebot --q "Saturday Night Live" -list --db tvrage

Tested a bit and this one should work:

Code: Select all

filebot -rename "saturday.night.live.s37e15.maya.rudolph-sleigh.bells.hdtv.xvid-2hd.avi" --format "{n} {s00e00} {t}" --db tvrage --q "Saturday Night Live" -non-strict
:idea: Please read the FAQ and How to Request Help.
belgarth
Posts: 30
Joined: 25 Jan 2012, 09:19

Re: Filebot cli failing to match against Saturday Night Live

Post by belgarth »

doh, didn't see the typo, but there is still something else wrong:

$ filebot --q "Saturday Night Live" -rename --db thetvdb --format "/home/X/Downloads/TV-Shows/{n}/{n} - {s}x{e} - {t}" /home/X/Downloads/TV-Shows/Unsorted/saturday.night.live.s37e15.maya.rudolph-sleigh.bells.hdtv.xvid-2hd.avi
Rename episodes using [TheTVDB]
java.lang.Exception: Failed to auto-select search result: [Saturday Night Live, Saturday Night Live (JP), Saturday Night Live (Korea)]
Failed to fetch episode data: [/home/X/Downloads/TV-Shows/Unsorted]
Exception: Unable to match files to episode data
Failure (°_°)

same issue with tvrage, but instead the problem search result is:
java.lang.Exception: Failed to auto-select search result: [Saturday Night Live, Saturday Night Live with Howard Cosell]

Obviously the issue is that filebot is getting confused by the multiple names, but I don't see how I can more precisely specify the series name than what I already have.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot cli failing to match against Saturday Night Live

Post by rednoah »

You can ignore that kinda stuff via

Code: Select all

-non-strict
:idea: Please read the FAQ and How to Request Help.
Post Reply