naming format and CD$pi on single files
Posted: 05 Jul 2013, 14:31
I'm writing a wrapper for filebot and i'm having some issues with getting the CD number in the file name when filebot gets them 1 file at a time.
ie.
Will create the folder and CD1 as: C:\temp\film\We Bought a Zoo (2011)\We Bought a Zoo (2011).avi
CD2 will be skipped cause it tries to use the same name.
If i just feed filebot the parent directory
ie.
It works and the files will have CD1 and CD2 in them.
I'm guessing that maybe filebot doesn't get the cd variable from the filename alone?
Suggestions, i need to get CD1 and CD2 respectivly in the renamed filenames while specifically giving filebot the files one by one.
ie.
Code: Select all
filebot -non-strict -rename --action copy "C:\new\film\We Bought a Zoo\We Bought a Zoo CD1.avi" --output c:\temp\film --format "{n} ({y})/{n} ({y}){\" CD$pi\"}" --db TheMovieDB
Code: Select all
filebot -non-strict -rename --action copy "C:\new\film\We Bought a Zoo\We Bought a Zoo CD2.avi" --output c:\temp\film --format "{n} ({y})/{n} ({y}){\" CD$pi\"}" --db TheMovieDB
CD2 will be skipped cause it tries to use the same name.
If i just feed filebot the parent directory
ie.
Code: Select all
filebot -non-strict -rename --action copy "C:\new\film\We Bought a Zoo\" --output c:\temp\film --format "{n} ({y})/{n} ({y}){\" CD$pi\"}" --db TheMovieDB
I'm guessing that maybe filebot doesn't get the cd variable from the filename alone?
Suggestions, i need to get CD1 and CD2 respectivly in the renamed filenames while specifically giving filebot the files one by one.