Library Scanner, excluding Videos (tvtunes)
#1
Hi Guys,

i am having trouble excluding videos and trailers from my library list. I do have trailers to almost every movie in my library, but sometimes they are listed as an actual movie itself (and sometimes not). Also since i have tvtunes and since it downloades mp4 backgroundvideos, i get these videos listed as well.
Please see my screenshots attached for clarification

Image

Image

Image

Heres my advancedsettings.xml.
Code:
<advancedsettings>
    <video>
      
        <excludefromscan action="append">
            <regexp>[-\._ ](sample|trailer|theme)[-\._ ]</regexp>
            <regexp>(theme|trailer|sample)[-\._ ]</regexp>
        </excludefromscan>
  
        
  
        <excludetvshowsfromscan action="append">
            <regexp>[-\._ ](sample|trailer|theme)[-\._ ]</regexp>
            <regexp>(theme|trailer|sample)[-\._ ]</regexp>
        </excludetvshowsfromscan>
  
         <trailermatching>
        <!-- This regexp will match moviename_Trailer.avi -->
            <regexp>(.*?)(-trailer)(\.[^.]+)$</regexp>
        </trailermatching>
    </video>
</advancedsettings>
It does not make any difference whether action = append, prepend or left out.


Thanks in advance!
Reply
#2
Code:
<advancedsettings>
    <video>
        <!-- TvTunes: Section Start -->
        <excludefromscan action="append">
            <regexp>/Themes/</regexp>
            <regexp>[\\/]Themes[\\/]</regexp>
            <regexp>theme([0-9]*)\.(mp4|mkv|avi|mov|MP4|MKV|AVI|MOV)$</regexp>
        </excludefromscan>
        <excludetvshowsfromscan action="append">
            <regexp>/Themes/</regexp>
            <regexp>[\\/]Themes[\\/]</regexp>
            <regexp>theme([0-9]*)\.(mp4|mkv|avi|mov|MP4|MKV|AVI|MOV)$</regexp>
        </excludetvshowsfromscan>
        <!-- TvTunes: Section End -->
    </video>
</advancedsettings>
SKIN: Aeon Madnox
RIP Schimi2k, we miss you.
When I grow up I want to be a skilled skinner
Thank me by ⬇ adding to my + reputation
Reply
#3
(2016-08-03, 09:18)Mike_Doc Wrote:
Code:
<advancedsettings>
    <video>
        <!-- TvTunes: Section Start -->
        <excludefromscan action="append">
            <regexp>/Themes/</regexp>
            <regexp>[\\/]Themes[\\/]</regexp>
            <regexp>theme([0-9]*)\.(mp4|mkv|avi|mov|MP4|MKV|AVI|MOV)$</regexp>
        </excludefromscan>
        <excludetvshowsfromscan action="append">
            <regexp>/Themes/</regexp>
            <regexp>[\\/]Themes[\\/]</regexp>
            <regexp>theme([0-9]*)\.(mp4|mkv|avi|mov|MP4|MKV|AVI|MOV)$</regexp>
        </excludetvshowsfromscan>
        <!-- TvTunes: Section End -->
    </video>
</advancedsettings>

yeah, sorry i forgot to mention that i of course tried this too but it hasn't worked either.
Reply
#4
(2016-08-03, 17:27)AttacktheCow Wrote:
(2016-08-03, 09:18)Mike_Doc Wrote:
Code:
<advancedsettings>
    <video>
        <!-- TvTunes: Section Start -->
        <excludefromscan action="append">
            <regexp>/Themes/</regexp>
            <regexp>[\\/]Themes[\\/]</regexp>
            <regexp>theme([0-9]*)\.(mp4|mkv|avi|mov|MP4|MKV|AVI|MOV)$</regexp>
        </excludefromscan>
        <excludetvshowsfromscan action="append">
            <regexp>/Themes/</regexp>
            <regexp>[\\/]Themes[\\/]</regexp>
            <regexp>theme([0-9]*)\.(mp4|mkv|avi|mov|MP4|MKV|AVI|MOV)$</regexp>
        </excludetvshowsfromscan>
        <!-- TvTunes: Section End -->
    </video>
</advancedsettings>

yeah, sorry i forgot to mention that i of course tried this too but it hasn't worked either.

I have the same problem. Did you solve it? Thanks
Aeon Nox 5, Krypton, LibreELEC (Generic x86 64 7.90.010 ALPHA), Intel NUC D34010WYK
Reply

Logout Mark Read Team Forum Stats Members Help
Library Scanner, excluding Videos (tvtunes)0