Is there any way for Kodi NOT to scrape for any movies named "Extras", when scraping?
#1
I'm using the "Extras" add-on, and it works great, however, whenever I need to scrape my library, whenever Kodi sees any of my hundreds of movie sub-folders titled, "Extras", Kodi keeps identifying those sub-folders as a movie titled, "Extras", and wrongly adds it, cluttering up the movie library with that title. This forces me to remove all the movies it wrongly identified as "Extras", which can be a long task when you have over 2,000 titles in your movie library. I was wondering if there's any way to tell Kodi not to scrape for any movie titled "Extras", so it won't create this problem the next time I need to scrape my library. Any help would be appreciated. Thanks!
Reply
#2
Add this code to an advancedsettings.xml in a video column:

Code:
<excludefromscan>
            <regexp>[-\._ ](extrafanart|trailer|extrathumbs)[-\._ ]</regexp>
        </excludefromscan>
        <excludefromlisting>
            <regexp>[-._ \\/](extrafanart|trailer|extrathumbs)[-._ \\/]</regexp>
        </excludefromlisting>
        <excludefromscan action="append">
            <regexp>/extras/</regexp>
            <regexp>[\\/]extras[\\/]</regexp>
        </excludefromscan>
        <excludetvshowsfromscan action="append">
            <regexp>[\\/](auxdata|backup|clipinf|playlist|stream|certificate)[\\/]</regexp>
            <regexp>movieobject\.bdmv</regexp>
            <regexp>/extras/</regexp>
            <regexp>[\\/]extras[\\/]</regexp>
        </excludetvshowsfromscan>

Here is an example of mine:

 
Code:
<?xml version='1.0' encoding='utf-8'?>
<advancedsettings version="1">
    <loglevel>1</loglevel>
    <fullscreen>true</fullscreen>
    <imageres>9999</imageres>
    <fanartres>9999</fanartres>
    <try10bitoutput>true</try10bitoutput>
    <nvidia12bits>true</nvidia12bits>
    <splash>false</splash>
    <tvshowmatching action="append">
    <regexp>[\\/\._ \[\(-]([0-9]+)x([0-9]+)([^\\/]*)(?Sad?:[\\/]bdmv)?[\\/]index\.bdmv)$</regexp>
    </tvshowmatching>
    <video>
        <dxvaallowhqscaling>true</dxvaallowhqscaling>
        <maxtempo>2.0</maxtempo>
        <excludefromscan>
            <regexp>[-\._ ](extrafanart|trailer|extrathumbs)[-\._ ]</regexp>
        </excludefromscan>
        <excludefromlisting>
            <regexp>[-._ \\/](extrafanart|trailer|extrathumbs)[-._ \\/]</regexp>
        </excludefromlisting>
        <excludefromscan action="append">
            <regexp>/extras/</regexp>
            <regexp>[\\/]extras[\\/]</regexp>
        </excludefromscan>
        <excludetvshowsfromscan action="append">
            <regexp>[\\/](auxdata|backup|clipinf|playlist|stream|certificate)[\\/]</regexp>
            <regexp>movieobject\.bdmv</regexp>
            <regexp>/extras/</regexp>
            <regexp>[\\/]extras[\\/]</regexp>
        </excludetvshowsfromscan>
    </video>
    <videolibrary>
        <recentlyaddeditems>200</recentlyaddeditems>
        <cleanonupdate>true</cleanonupdate>
        <dateadded>1</dateadded>
        <importwatchedstate>true</importwatchedstate>
        <importresumepoint>true</importresumepoint>
        <exportautothumbs>true</exportautothumbs>
        <tvshowextraart>
            <arttype>animatedposter</arttype>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>discart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </tvshowextraart>
        <tvseasonextraart>
            <arttype>animatedposter</arttype>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>discart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </tvseasonextraart>
        <tvshowseasonextraart>
            <arttype>animatedposter</arttype>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>discart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </tvshowseasonextraart>
        <episodeextraart>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </episodeextraart>
        <movieextraart>
            <arttype>animatedposter</arttype>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>discart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </movieextraart>
        <moviesetextraart>
            <arttype>animatedposter</arttype>
            <arttype>poster</arttype>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </moviesetextraart>
        <musicvideoextraart>
            <arttype>artistthumb</arttype>
            <arttype>landscape</arttype>
            <arttype>discart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>banner</arttype>
            <arttype>clearart</arttype>
            <arttype>clearlogo</arttype>
        </musicvideoextraart>
    </videolibrary>
    <musiclibrary>
        <artistextraart>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>banner</arttype>
            <arttype>landscape</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
        </artistextraart>
        <albumextraart>
            <arttype>song</arttype>
            <arttype>spine</arttype>
            <arttype>discart</arttype>
            <arttype>back</arttype>
            <arttype>clearlogo</arttype>
            <arttype>clearart</arttype>
            <arttype>fanart1</arttype>
            <arttype>fanart2</arttype>
            <arttype>fanart3</arttype>
            <arttype>fanart4</arttype>
            <arttype>fanart5</arttype>
            <arttype>fanart6</arttype>
            <arttype>fanart7</arttype>
            <arttype>fanart8</arttype>
            <arttype>fanart9</arttype>
            <arttype>fanart10</arttype>
            <arttype>fanart11</arttype>
            <arttype>fanart12</arttype>
        </albumextraart>
    </musiclibrary>
</advancedsettings>
HOW TO - Kodi 2D - 3D - UHD (4k) HDR Guide Internal & External Players iso menus
DIY HOME THEATER WIND EFFECT

W11 Pro 24H2 MPC-BE\HC madVR KODI 22 GTX960-4GB/RGB 4:4:4/Desktop 60Hz 8bit Video Matched Refresh rates 23,24,50,60Hz 8/10/12bit/Samsung 82" Q90R Denon S720W
Reply
#3
https://kodi.wiki/view/Add-on:Extras#Pre...To_Library

https://kodi.wiki/view/Updating_or_remov...ude_Folder
Reply
#4
It seems that you're experiencing an issue with Kodi identifying your movie sub-folders titled "Extras" as a movie and cluttering up your movie library. One possible solution could be to create a new folder, say "Additional Content" or "Bonus Material," and move all your "Extras" sub-folders into it. You could then tell Kodi not to scrape this folder, thereby avoiding any future issues with incorrectly identifying them as movies.
To do this, navigate to the "Settings" menu in Kodi, select "Media Settings," then "Library," and finally "Exclude Folders." Here, you can add the path to your "Additional Content" or "Bonus Material" folder and instruct Kodi to skip scraping it during library updates.
I hope this helps resolve the issue and prevents future cluttering of your movie library. Let me know if you have any further queries.
Reply

Logout Mark Read Team Forum Stats Members Help
Is there any way for Kodi NOT to scrape for any movies named "Extras", when scraping?0