Exclude list problem

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
Chryses
Posts: 66
Joined: 26 Aug 2012, 19:11

Exclude list problem

Post by Chryses »

Hi, I don't know way, maybe some recent change, maybe not, filebot don't works anymore, any time I try to rename a file via CLI, exclude list come into the argument, but no one has called it :)

Let's make an example

The script:

Code: Select all

filebot -script fn:amc "/media/TwoTera/Download/vari/jumanji.avi" --output "/media/TwoTera/Multimedia" --action move --conflict fail -non-strict --def music=n --log-file amc.log --def artwork=n --def "seriesFormat=Serie Tv/{n}/{n} - {s.pad(2)}x{es.collect{ it.pad(2) }.join('-')} - {t}" "movieFormat=Film/{n} ({y}){' - '+fn.match(/(?i)cd+[0-9]/).toUpperCase()}{' - '+fn.match(/(?i)cd +[0-9]/).toUpperCase()}" --lang it
The log:

Code: Select all

Locking /home/xbmc/.filebot/logs/amc.log
Parameter: music = n
Parameter: artwork = n
Parameter: seriesFormat = Serie Tv/{n}/{n} - {s.pad(2)}x{es.collect{ it.pad(2) }.join('-')} - {t}
Parameter: movieFormat = Film/{n} ({y}){' - '+fn.match(/(?i)cd+[0-9]/).toUpperCase()}{' - '+fn.match(/(?i)cd +[0-9]/).toUpperCase()}
Argument: /media/TwoTera/Download/vari/jumanji.avi
Exclude: /media/TwoTera/Download/vari/jumanji.avi
Done ヾ(@⌒ー⌒@)ノ
Maybe I miss some update for the CLI, or I made something wrong?

J
User avatar
rednoah
The Source
Posts: 22998
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Exclude list problem

Post by rednoah »

Works fine:

Code: Select all

Parameter: ut_kind = multi
Parameter: minFileSize = 0
Parameter: minLengthMS = 0
Parameter: ut_dir = D:\workspace\testdata\AMC-TEST
Input: D:\workspace\testdata\AMC-TEST\vari\jumanji.avi
jumanji.avi [series: Jumanji, movie: Jumanji (1995)]
Exclude Series: Jumanji
Group: [tvs:null, mov:jumanji 1995, anime:null] => [jumanji.avi]
Rename movies using [TheMovieDB]
Auto-detect movie from context: [D:\workspace\testdata\AMC-TEST\vari\jumanji.avi]
[TEST] Rename [D:\workspace\testdata\AMC-TEST\vari\jumanji.avi] to [D:\workspace\output\Movies\Jumanji (1995)\Jumanji (1995).avi]
Processed 1 files
Done ヾ(@⌒ー⌒@)ノ
Tested with r2004.

Files get excluded for a multitude of reasons. Make sure it's large enough (200+ MB) and long enough (10+ min).
:idea: Please read the FAQ and How to Request Help.
Chryses
Posts: 66
Joined: 26 Aug 2012, 19:11

Re: Exclude list problem

Post by Chryses »

Ok, now make sense, because jumanjii is a dummy file, so 0 byte. Tnx for the info, first I did not use the parameters minFileSize and minLengthMS.

Tnx rednoah!
Post Reply