Kodi Community Forum

Full Version: Removing Actor Thumbs from NFO's (EMM 1.3.x)?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As I don't see an option in EMM itself, does anyone have a script or method to scan all movie and TV NFO's to remove all <thumb>link here</thumb> lines? Thanks.
I use the Tool "TextCrawler" for operations like this. You can use a regex to find and remove all thumb strings in all NFOs.

The next beta will have a new feature to remove singe NFO fields and entries.

Don't forget to reload all movies in Ember if you use TextCrawler.
Thanks, I'll try regex.
Dan, do you know how to get TextCrawler to remove all <thumb>link here</thumb> lines? No idea what to ask it to do.

Image
To clean the value use this:
Reg Ex:
Code:
<thumb>.*?</thumb>

Replace:
Code:
<thumb />



To remove the whole line use this (but Ember will re-add the empty tag <thumb /> after each rescrape or movie edit):
Reg Ex:
Code:
</role>(.*?(\n)).*?<thumb>.*?</thumb>

Replace:
Code:
</role>

Image
That did the trick, thanks again.