How to skip certain video from adding to library?

I want to make KODI stop adding certain filename to my library. In my case that file is called CAMERA.mp4 and I have it in lot of spaces in my video folders.

I searched everywhere but there is no example how to add certain file. Just folders of part of folders. I have this .xml atm:

Code:
<video>
        <excludefromscan>
            <regexp>\@eaDir</regexp>
            <regexp>\@eadir</regexp>
            <regexp>\@EADIR</regexp>
            <regexp>\.DS_Store</regexp>
            <regexp>\#recycle</regexp>
            <regexp>-trailer</regexp>
            <regexp>[!-._ \\/]sample[-._ \\/]</regexp>
            <regexp>! Acting !</regexp>
            <regexp>! Standup !</regexp>
        </excludefromscan>
        <excludefromlisting>
            <regexp>\@eaDir</regexp>
            <regexp>\@eadir</regexp>
            <regexp>\@EADIR</regexp>
            <regexp>\.DS_Store</regexp>
            <regexp>\#recycle</regexp>
            <regexp>-trailer</regexp>
            <regexp>[!-._ \\/]sample[-._ \\/]</regexp>
        </excludefromlisting>
        <excludetvshowsfromscan>
            <regexp>\@eaDir</regexp>
            <regexp>\@eadir</regexp>
            <regexp>\@EADIR</regexp>
            <regexp>\.DS_Store</regexp>
            <regexp>\#recycle</regexp>
            <regexp>-trailer</regexp>
            <regexp>[!-._ \\/]sample[-._ \\/]</regexp>
            <regexp>! Acting !</regexp>
            <regexp>! Standup !</regexp>
        </excludetvshowsfromscan>
    </video>

Thanks.