Filebot 4.1RC3 not able to parse 3D string in movieFormat

Any questions? Need some help?
Post Reply
AnGeL
Posts: 11
Joined: 25 Mar 2014, 23:31

Filebot 4.1RC3 not able to parse 3D string in movieFormat

Post by AnGeL »

I've been using this code with filebot 4.0 and it was working fine:

Code: Select all

filebot -script fn:amc --output "/volume1/video/" --lang it --action move -non-strict "/volume1/video/da_ordinare/" --def  pushbullet="asdasdasdasdasdasdas" pushover="asdasdasdasdasdasdasdasd"subtitles=it skipExtract=y artwork=y clean=y music=n "seriesFormat=SERIE TV/{n}/{'Stagione '+s}/{n} {sxe} - {t} {ac}-{vc} {vf}({sdhd})" "movieFormat=FILM/{n} ({y}) {fn =~ /3D/ || fn =~ /H.SBS/ ? '[3D]' : ''}/{n} {y} {fn =~ /3D/ || fn =~ /H.SBS/ ? '[3D] [H-SBS]' : ''} {ac}-{vc} {vf} ({sdhd})"
But after the 4.1 RC3 update the script is returning me strange errors, i think because it's unable to parse the "movieFormat" parameter:

Code: Select all

Parameter: pushbullet = *****                                                                                                                  
Parameter: pushover = *****                                                                                                                    
Parameter: subtitles = it                                                                                                                      
Parameter: skipExtract = y                                                                                                                     
Parameter: artwork = y                                                                                                                         
Parameter: clean = y                                                                                                                           
Parameter: music = n                                                                                                                           
Parameter: seriesFormat = SERIE TV/{n}/{'Stagione '+s}/{n} {sxe} - {t} {ac}-{vc} {vf}({sdhd})                                                  
Parameter: movieFormat = FILM/{n} ({y}) {fn                                                                                                    
Argument: /volume1/video/da_ordinare                                                                                                           
Input: /volume1/video/da_ordinare/Jack.Ryan.L.Iniziazione.2014.FullHD.1080p.ITA.AC3.ENG.DTS.AC3.Subs-HQF.mkv                                   
Input: /volume1/video/da_ordinare/A.Spasso.Con.I.Dinosauri.2013.iTALiAN.AC3.BRRip.XviD-CRiME.avi                                               
Exclude: /volume1/video/da_ordinare/@eaDir/.DS_Store@SynoResource                                                                              
Exclude: /volume1/video/da_ordinare/Lo.Hobbit.La.Desolazione.Di.Smaug.2013.iTA.ENG.1080p.Bluray.x264.BtH.part1.rar                             
Exclude: /volume1/video/da_ordinare/.DS_Store                                                                                                  
Exclude: /volume1/video/da_ordinare/Lo.Hobbit.La.Desolazione.Di.Smaug.2013.iTA.ENG.1080p.Bluray.x264.BtH.part2.rar                             
Exclude: /volume1/video/da_ordinare/VA-Hit_Mania_Spring_2014-2014-ONe.rar                                                                      
Jack.Ryan.L.Iniziazione.2014.FullHD.1080p.ITA.AC3.ENG.DTS.AC3.Subs-HQF.mkv [series: Jack Ryan L Iniziazione, movie: Jack (2004)]               
Exclude Movie: Jack (2004)                                                                                                                     
A.Spasso.Con.I.Dinosauri.2013.iTALiAN.AC3.BRRip.XviD-CRiME.avi [series: A Spasso Con I Dinosauri, movie: Walking With Dinosaurs (2013)]        
Exclude Series: A Spasso Con I Dinosauri                                                                                                       
Group: [tvs:jack ryan l iniziazione, mov:null, anime:null] => [Jack.Ryan.L.Iniziazione.2014.FullHD.1080p.ITA.AC3.ENG.DTS.AC3.Subs-HQF.mkv]     
Group: [tvs:null, mov:walking with dinosaurs 2013, anime:null] => [A.Spasso.Con.I.Dinosauri.2013.iTALiAN.AC3.BRRip.XviD-CRiME.avi]             
Get [Italian] subtitles for 1 files                                                                                                            
Looking up subtitles by hash via OpenSubtitles                                                                                                 
No matching subtitles found: /volume1/video/da_ordinare/Jack.Ryan.L.Iniziazione.2014.FullHD.1080p.ITA.AC3.ENG.DTS.AC3.Subs-HQF.mkv             
Rename episodes using [TheTVDB]                                                                                                                
Auto-detected query: [Jack Ryan L Iniziazione]                                                                                                 
Failed to fetch episode data: [Jack Ryan L Iniziazione]                                                                                        
java.lang.Exception: Unable to match files to episode data                                                                                     
Get [Italian] subtitles for 1 files                                                                                                            
Looking up subtitles by hash via OpenSubtitles                                                                                                 
No matching subtitles found: /volume1/video/da_ordinare/A.Spasso.Con.I.Dinosauri.2013.iTALiAN.AC3.BRRip.XviD-CRiME.avi                         
javax.script.ScriptException: SyntaxError: missing token: }                                                                                    
Clean clutter files and empty folders                                                                                                          
Finished without processing any files                                                                                                          
Failure (°_°)     
As you can see, the movieFormat is missing the 3D tag script... which was working well before... how to fix this?
User avatar
rednoah
The Source
Posts: 23004
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot 4.1RC3 not able to parse 3D string in movieForma

Post by rednoah »

The current call could never ever have worked since the invention of sh cause you're passing arguments wrong:

Code: Select all

Parameter: movieFormat = FILM/{n} ({y}) {fn
:idea: Please read the FAQ and How to Request Help.
AnGeL
Posts: 11
Joined: 25 Mar 2014, 23:31

Re: Filebot 4.1RC3 not able to parse 3D string in movieForma

Post by AnGeL »

i've solved using "fn.contains" instead of the equal operator ;)
Post Reply