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.