I am trying to get the to naming schemes aligned in order to use them both side by side.
But I found an error in the scheme of special characters like ":" this creates problems in file names and directories naming.
Example Sonarr:
Formula 1 - Drive to Survive\Season 01\Formula 1 - Drive to Survive - s01e01 - All to Play For [WEB-DL.1080p.x264.8Bit.AC3.6ch].mkv
Code: Select all
(Series Title} - s{season:00}e{episode:00} - {Episode Title} [{Quality Title}.{MediaInfo.Simple}.{MediaInfo VideoDynamicRange}.{MediaInfo AudioFormat}.{MediaInfo AudioChannels}]
Example Filebot:
Formula 1: Drive to Survive\Formula 1: Drive to Survive - s01e01 - All to Play For [WEB-DL.1080p.x264.8Bit.AC3.6ch].mkv
The ":" would then be validated to be removed and the naming would be:
Formula 1 Drive to Survive\Formula 1 Drive to Survive - s01e01 - All to Play For [WEB-DL.1080p.x264.8Bit.AC3.6ch].mkv
My Filebot naming is:
Code: Select all
{primaryTitle.ascii().replace(':','')}/{plex[2]}/{n} - {episode.special ? 's00e'+special.pad(2) : s00e00.lower()} - {t.replaceAll(/[`´‘’?]/, /'/).replaceAll(/[!?.]+$/).replacePart(', Part $1')} [{any{fn =~ /WEB.RIP|WEBRip|WEBDL|WEB.DL|WEB|web/ ? /WEB-DL/ : null}{source}{'WEB-DL'}}{'.'+VF}{'.'+VC}{'.'+BITDEPTH+'Bit'}{'.'+AC}{'.'+AF}]{'.'+lang}

Best regards
Casperse