[SOLVED] CLI renaming problem in v4.0
Posted: 11 Mar 2014, 10:42
I have a formatting string that I have used with the CLI with v3.x that now is not with v4.0. Yet, when I plug the format string into the GUI, it works as intended.
Given the file name:
The following command
returns
However in the GUI, if I change the format string to
the file name returned is what is intended:
Is this a bug?
Thanks.
Given the file name:
Code: Select all
The.Daily.Show.with.Jon.Stewart.2013.08.12.Sen.Rand.Paul.720p.HDTV.x264-LMAO.mkv
Code: Select all
filebot -rename -non-strict --db tvrage "Z:\Media\dailycolbert\test\The Daily Show\The.Daily.Show.with.Jon.Stewart.2013.08.12.Sen.Rand.Paul.720p.HDTV.x264-LMAO.mkv" --format "{n.upperInitial().space('.')}.{airdate.format("yyy.MM.dd")}-{t}"
Code: Select all
The.Daily.Show.With.Jon.Stewart.-Rand Paul.mkv
Code: Select all
{n.upperInitial().space('.')}.{airdate.format("yyy.MM.dd")}-{t}
Code: Select all
The.Daily.Show.With.Jon.Stewart.2013.08.12-Sen. Rand Paul.mkv
Thanks.