Page 1 of 1

Add Exclude Terms to Improve Movie / Series Auto-Detection

Posted: 15 Nov 2012, 11:35
by rednoah
FileBot tries determine the series/movie name from the files in various ways. One of these methods works by trying to filter out the series/movie name from the filename. To help with that and various other aspects that try to make sense of file/folder structures there's a blacklist of text patterns that are known to be just clutter/garbage/noise that can and should be ignored.

If auto-detection is thrown off due to some garbage in the filename like website/tracker names, folder names, categories, language tags, etc just post it here and I'll add to the list.

The list of blacklisted text patterns is maintained here:
https://github.com/filebot/data/blob/master/query-excludes.txt


:idea: FileBot will update its local cache from the data online once a week.

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

Posted: 21 Feb 2013, 13:45
by rednoah
Movie detection failed on:

Code: Select all

Frozen_Eiskalter_Abgrund_13.02.16_22-50_pro7_110_TVOON_DE.mpg.avi
Ghost_Dog_Der_Weg_des_Samurai_13.01.28_01-50_ard_110_TVOON_DE.mpg.avi
Copykill_13.01.30_00-50_zdf_110_TVOON_DE.mpg.avi
Der_Blade_Runner_13.02.03_22-25_rtl2_130_TVOON_DE.mpg.avi
Aliens_vs__Predator_II_13.01.31_22-20_vox_105_TVOON_DE.mpg.avi
Fixed by adding:

Code: Select all

\d{2,4}.\b\d{2}.\b\d{2}.\b\d{2}.\b\d{2}
(pro7|rtl2|zdf|ard|vox).\b\d{2,3}
TVOON.DE
mpg$

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

Posted: 01 Feb 2015, 09:39
by 0x2a
Could you please add
TwoDDL
TwoDDL.eu
2DDL

to the blacklist.

Thank you.

Great program by the way!

Cheers,
0x2a

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

Posted: 02 Jul 2016, 12:37
by carloslozada
Add to blacklist this names please.

skyrg
etrg
rarbg

Regards.

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

Posted: 02 Jul 2016, 12:43
by rednoah
Shouldn't those be considered release groups?

Re: Add Blacklisted Terms and Improve Movie / Series Detection

Posted: 02 Mar 2017, 04:04
by spuniun
I think that GUIDs need to be blacklisted.
I have a post processing script for Plex DVR that uses a random GUID for temporary folders and I noticed that on occasion filebot will use the GUID and not the filename for matching and obviously fail.
I think this is an acceptable regex

Code: Select all

/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i

Re: Add Blacklisted Terms and Improve Movie / Series Detection

Posted: 02 Mar 2017, 08:31
by rednoah
Good catch. Please include an example file path for testing, not just the pattern.