So I read in the XBMC wiki that in advancedsettings.xml that you could have the music library exclude folders in a scan... I'm using iTunes as my base and the way it organizes media is pretty awful at times..
anyways, I want to have it ignore a folder called "Podcasts"
this is what I have
any ideas? it's still showing up in the library
anyways, I want to have it ignore a folder called "Podcasts"
this is what I have
Code:
<advancedsettings>
<audio>
<excludefromscan> <!-- Regular expressions that if evaluated to true won't be added to library. -->
<regexp>[-\._ ](podcast)[-\._ ]</regexp>
</excludefromscan>
<excludefromlisting>
<!-- Regular expressions that if evaluated to true won't be displayed in Files View -->
<regexp>[-\._ ](podcast)[-\._ ]</regexp>
</audio>
</advancedsettings>
any ideas? it's still showing up in the library