I receive from the internet an original movie filename for MCEBuddy processing as:
Paramount+ Movies - The Royal Bed.mp4
What MCEBuddy returned is a TV Show name:
Paramount+ Movies - S00E00 - The Royal Bed.mp4
The problem is the original filename has a prescript of “Paramount + Movies -” which is mistaken as the %showname%. How do I ignore the “Paramount + Movies -” and only return “The Royal Bed” as the %showname% before Metadata lookup and correction so MCEBuddy will process this file as a Movie?
You can do this relatively easily using the Conversion task -> Expert Settings -> Media Information Management -> Correction tool, but you will need to use regex to achieve this.
In the Original title box create the regex matching expression to match the title and extract the information you need. This case it will be: regex:Paramount\+ Movies - (.*), that means it will start by looking for Paramount\+ Movies - and then it will capture the rest after it in the first group (.*)
Now in the Corrected title enter the replacement regex regex:$1, this is basically telling MCEBuddy to replace the title with the first group $1 that was captured in the matching expression above.
This way it will strip out Paramount\+ Movies - and leave the rest behind.