Incorrect series detection
Incorrect series detection
Hi,
I’ve encountered a strange issue while trying to rename and hardlink the TV show The 100 with FileBot.
All episodes are stored in a single main folder, with one subfolder per season.
When processing the files, FileBot detects multiple unrelated series such as:
Batfink, Red Dead Redemption: The Complete Series, The 100
I’m not sure why this happens.
I’ve already tried switching the Series Database (TheTVDB, TheMovieDB, etc.), but it doesn’t seem to make any difference.
Any idea what could cause this and how to fix it?
I can provide the logs if needed.
Thanks in advance for your help!
			
			
									
						
										
						I’ve encountered a strange issue while trying to rename and hardlink the TV show The 100 with FileBot.
All episodes are stored in a single main folder, with one subfolder per season.
When processing the files, FileBot detects multiple unrelated series such as:
Batfink, Red Dead Redemption: The Complete Series, The 100
I’m not sure why this happens.
I’ve already tried switching the Series Database (TheTVDB, TheMovieDB, etc.), but it doesn’t seem to make any difference.
Any idea what could cause this and how to fix it?
I can provide the logs if needed.
Thanks in advance for your help!
Re: Incorrect series detection
Re: Incorrect series detection
I'm on Synology.
Here's the logs : https://pastebin.com/50XBYUtx
I've tried with strict mode on and off, changing series db and same result.
Thanks
			
			
									
						
										
						Here's the logs : https://pastebin.com/50XBYUtx
I've tried with strict mode on and off, changing series db and same result.
Thanks
Re: Incorrect series detection
Looks like you'll need to force that specific series in this case. You can force a specific series name / year or series ID via the --q parameter. See Match Options.
			
			
									
						
										
						Re: Incorrect series detection
Code: Select all
--q 48866 'seriesDB=TheMovieDB::TV'Code: Select all
--q the-100 'seriesDB=TheMovieDB::TV'Code: Select all
--q 48866 --filter 'id != 665 && id != 295788'Code: Select all
 --filter 'none{ n =~ /Batfink/ }'nothing is working, seems like everything I'm doing, nothing is changing...
Re: Incorrect series detection
Good thinking trying --filter as well. So what did the console output say for any one of your test runs?
 
 Here's what I get:
			
			
									
						
										
						Console Output: Select all
$ filebot -script 'fn:amc' input --output output --action TEST -non-strict --order Airdate --conflict auto --lang en --def 'music=y' 'unsorted=y' 'skipExtract=y' 'minLengthMS=0' 'minFileSize=0' 'seriesFormat=tv/{plex.id}' 'movieFormat=movies/{plex.id}' 'excludeList=.excludes' --apply thumbnail refresh --log INFO --q 48866
...
[TEST] from [/volume1/input/The 100 The Complete Series S01-S07 MULTi [1080p] BluRay x264-PopHD/The 100 S01 MULTi [1080p] BluRay x264-PopHD/The 100 S01E01 -Pilot.mp4] to [/volume1/output/tv/TV Shows/The 100 {tmdb-48866}/Season 01/The 100 - S01E01 - Pilot.mp4]
...Re: Incorrect series detection
Hi,
Like I said, nothing has changed
			
			
									
						
										
						Like I said, nothing has changed
Re: Incorrect series detection
Console Output: Select all
…
Fetching episode data for [48866]
* The 100 [48866] | 100 episodes | 1x01-13 .. 2x01-16 .. 3x01-16 .. 4x01-13 .. 5x01-13 .. 6x01-13 .. 7x01-16
…
[TEST] from […/The 100 S01E01 -Pilot.mkv] to […/TV Shows/The 100 {tmdb-48866}/Season 01/The 100 - S01E01 - Pilot.mkv]
…
[TEST] from […/The 100 S02E01 -The 48.mkv] to […/TV Shows/The 100 {tmdb-48866}/Season 02/The 100 - S02E01 - The 48.mkv]
…
[TEST] from […/The 100 S07E16 -The Last War.mkv] to […/TV Shows/The 100 {tmdb-48866}/Season 07/The 100 - S07E16 - The Last War.mkv]
…Here's the match you got before:
Console Output: Select all
[TEST] from […/The 100 S01E01 -Pilot.mkv] to […/TV Shows/Batfink {tmdb-665}/Season 01/Batfink - S01E01 - Pink Pearl Of Persia.mkv]
Console Output: Select all
[TEST] from […/The 100 S01E01 -Pilot.mkv] to […/TV Shows/The 100 {tmdb-48866}/Season 01/The 100 - S01E01 - Pilot.mkv]
Re: Incorrect series detection
Oh you are right, these logs misled me 
Thanks !
			
			
									
						
										
						Code: Select all
Input: /volume1/data/torrents/completed/The 100 The Complete Series S01-S07 MULTi [1080p] BluRay x264-PopHD/The 100 S01 MULTi [1080p] BluRay x264-PopHD/The 100 S01E01 -Pilot.mkv
└─ xattr metadata: Batfink - 1x01 - Pink Pearl Of PersiaRe: Incorrect series detection
I see. Yep. That’s just startup logging that mirrors the input file set. You can change the log level to INFO if want mostly only the from -> to file path logging.
 
 xattr metadata is stored for each target file path so you can later re-process previously organized files. If you hardlink files then xattr on the target file will also be xattr on the source file. Deleting the target file won't delete xattr on the source file. Revert files via the internal History would take care of also resetting xattr though in cases where files were misnamed and you want to undo that. FileBot Node has a button for that as well.