Removing Actor Thumbs from NFO's (EMM 1.3.x)?
#1
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.
[H]i-[d]eft [M]edia [K]een [V]ideosaurus
My Family Room Theater
Reply
#2
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.
Reply
#3
Thanks, I'll try regex.
[H]i-[d]eft [M]edia [K]een [V]ideosaurus
My Family Room Theater
Reply
#4
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
[H]i-[d]eft [M]edia [K]een [V]ideosaurus
My Family Room Theater
Reply
#5
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
Reply
#6
That did the trick, thanks again.
[H]i-[d]eft [M]edia [K]een [V]ideosaurus
My Family Room Theater
Reply

Logout Mark Read Team Forum Stats Members Help
Removing Actor Thumbs from NFO's (EMM 1.3.x)?0