Trailers being scanned as movies
#1
I'm not really sure if this is a Aeon issue or a xbmc issue but thought I would start here first. I name my trailers as moviename-trailer.ext but when I update my library I get 2 copies of the movie, one of which is the trailer. I've been working around this issue by placing my trailers with my extras and if I want to watch them I just go to the "Extras" menu but I would really like to get them working properly. Anyone have any ideas?
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
#2
@wgstarks, create advancedsettings.xml file and use this code for exclude trailers items from collection

Code:
<video>
  <excludefromscan>
    <regexp>-extras-</regexp>
    <regexp>/Extras/</regexp>
    <regexp>Extras</regexp>
    <regexp>/extras/</regexp>
    <regexp>extras</regexp>
    <regexp>-trailer</regexp>    
    <regexp>[\\/]Extras[\\/]</regexp>
    <regexp>[\\/]extras[\\/]</regexp>
  </excludefromscan>
  <excludetvshowsfromscan>
    <regexp>-extras-</regexp>
    <regexp>/Extras/</regexp>
    <regexp>Extras</regexp>
    <regexp>/extras/</regexp>
    <regexp>extras</regexp>
    <regexp>-trailer</regexp>
    <regexp>[\\/]Extras[\\/]</regexp>
    <regexp>[\\/]extras[\\/]</regexp>    
  </excludetvshowsfromscan>
</video>
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#3
Outstanding. Thanks. Figured I was missing something obvious. Appreciate you including the code for the Extras too.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
#4
(2013-11-27, 03:54)Wanilton Wrote: @wgstarks, create advancedsettings.xml file and use this code for exclude trailers items from collection

Code:
<video>
  <excludefromscan>
    <regexp>-extras-</regexp>
    <regexp>/Extras/</regexp>
    <regexp>Extras</regexp>
    <regexp>/extras/</regexp>
    <regexp>extras</regexp>
    <regexp>-trailer</regexp>    
    <regexp>[\\/]Extras[\\/]</regexp>
    <regexp>[\\/]extras[\\/]</regexp>
  </excludefromscan>
  <excludetvshowsfromscan>
    <regexp>-extras-</regexp>
    <regexp>/Extras/</regexp>
    <regexp>Extras</regexp>
    <regexp>/extras/</regexp>
    <regexp>extras</regexp>
    <regexp>-trailer</regexp>
    <regexp>[\\/]Extras[\\/]</regexp>
    <regexp>[\\/]extras[\\/]</regexp>    
  </excludetvshowsfromscan>
</video>




Hey with some tweaking could I make that stop finding "SAMPLE" files as well?
Reply
#5
(2013-11-28, 12:21)AbRASiON Wrote: Hey with some tweaking could I make that stop finding "SAMPLE" files as well?

Yes. Any file names should be able to be excluded as long as the expressions are set correctly in the code. I believe this is case sensitive so you will need to include all variations.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply
#6
hi

your write <video> ... </video>

shouldn't it be <videolibrary> ... </videolibrary> ?
Reply
#7
You could test this with <videolibrary> I guess. I can confirm though that <video> works.
ASUS Chromebox M004U (LibreELEC 8.2/Aeon Nox SiLVO)--->HDMI--->Onkyo TX-NR646--->HDMI--->Panasonic P65VT30
Reply

Logout Mark Read Team Forum Stats Members Help
Trailers being scanned as movies0