Scraper not finding Movies

Any questions? Need some help?
Post Reply
GlassFish
Posts: 20
Joined: 22 Jun 2014, 14:48

Scraper not finding Movies

Post by GlassFish »

I am on the newest Filebot. I use the UI.

The Problem is that many Movies are not recognized at all. Even those with the exact Filename. What can I do against that?

e.g.:
"Der.Marsianer.Rettet.Mark.Watney.2015.German.DTS.DL.1080p.BluRay.x264-Pate\der marsianer.pate.mkv"
will be recognised as: "Rois Demons" (TheMovieDB, OMDB is not recognising it at all)

"The.Purge.PK.mkv" , not recognized.
"The Expendables.mkv", not recognized

Is there an way how I can choose the Name manually like in the Episodes Tab?

Is there something wrong with "audio.language =~ /ger|Ger|german|German|deutsch|Deutsch|de/ ? localize.ger.seriesName : n "
If I use it to get the German Name it´s either just using the English one, even if there is an German Name.
Same for {n.sortName('$2, $1')}, it´s just doing nothing.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Scraper not finding Movies

Post by rednoah »

1.
I can't reproduce any issues. Works out of the box for me with English/German language preferences. With German language prefs it'll ask for confirmation more often though.

2.
If you SHIFT-CLICK a datasource it'll ask to to manually enter search queries.

3.
This can't not work:

Code: Select all

{"The Movie".sortName('$2, $1')}
If you expect String.sortName() to work for languages other than English then you will be disappointed. However, you can do your own regex-replace logic:
viewtopic.php?t=211
:idea: Please read the FAQ and How to Request Help.
Post Reply