I have been working on a change to the DVR Profile format string that will allow individual Season and Episode numbers to be included in the file name.
The new formatting strings are '$A' for season and '$B' for episode (both upper case).
These can also be modified with a numeral to specify if zero padding is desirable. For example, if the season is '7', then '$A' will provide '7', whereas '$3A' will provide '007'.
If the EPG source contains the relevant fields, the following format string: '$t/Season $2A/$2B-$u$n.$x' would produce a file name like 'MASH/Season 03/18-House Arrest.ts'.
Currently, if no Season or Episode is provided in the EPG, then 0
will be used in the file name 'MASH/Season 00/00-House Arrest.ts'. Although I could change this to 'Unknown' or '' or something more meaningful if desired.
Thoughts and comments welcome.
flort My motivation here was to fudge a series I'm recording, because the metadata for it (the series name) is slightly wrong. Turns out there is no escape/format code for just the season number anyway, so it won't work.
@flort - In your specific instance, you would still need to hard-code the directory (MASH) from the AutoRec to compensate for the EPG having an incorrect title, but you could then use 'Season $2A/$2B-$u$n.$x' to produce 'Season 03/18-House Arrest.ts'.