-
I discovered that my episodes of "9-1-1: Lone Star" were renamed to "Lone Star Law" by mistake. Is it possible to specify that a certain filename corresponds with a specific series? I'd rather not make special cases in my automation. I have a recollection of being able to do something like this in the tvname config file; match a pattern and specify the behavior. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The problem here is that guessit, which mnamer uses to parse metadata from file names, seems to be under the impression that
Its kind of hacky but we can add it back using the replace_before config setting which replaces metadata before it gets passed to TvMaze: // ...
"replace_before": {
"Lone Star": "911 Lone Star"
},
// ... |
Beta Was this translation helpful? Give feedback.
The problem here is that guessit, which mnamer uses to parse metadata from file names, seems to be under the impression that
911
is part of the episode information and strips it out from the series name:Its kind of hacky but we can add it back using the replace_before config setting which replaces metadata before it gets passed to TvMaze: