I have files that usually come out with a date format in them, however most of them are in the order of mm.dd.yy, filebot seems to want to parse them as a season (eg 05.12.15 comes out as S05E12)
Is there a way of forcing it to check on mm.dd.yy ?
Thanks!
Match on Date
-
- Posts: 2
- Joined: 02 May 2016, 19:20
Re: Match on Date
I can imagine that would be useful...
WWE.Raw.04.25.16.720p.HDTV.H264
Using TVMaze gets matched to S04E25
WWE.Raw.04.25.16.720p.HDTV.H264
Using TVMaze gets matched to S04E25
Re: Match on Date
1.
I guess proper date patterns like DD.MM.YYYY or YYYY.MM.DD will work more reliably. I'm not inclined to support the MM.DD.YY pattern because it's way too ambiguous and may cause more harm than good.
2.
Just pre-process the files to fix the date pattern. You can make a Preset for that.
e.g. Generic File Format:
@see viewtopic.php?f=3&t=2072
@see viewtopic.php?f=3&t=3228
I guess proper date patterns like DD.MM.YYYY or YYYY.MM.DD will work more reliably. I'm not inclined to support the MM.DD.YY pattern because it's way too ambiguous and may cause more harm than good.
2.
Just pre-process the files to fix the date pattern. You can make a Preset for that.
e.g. Generic File Format:
Code: Select all
{fn.replaceAll(/(\d+).(\d+).(\d+)/, '20$3.$1.$2')}
@see viewtopic.php?f=3&t=3228