Sample custom.json - mdhiggins/PlexAutoSkip GitHub Wiki

Custom Example

I'm including my custom.json sample that I use for Bob's Burgers which doesn't have good automatic intro detection for whatever reason

Most episodes have a 20 second intro, though there are occasional episodes with no intro and one episode with a longer intro.

I have the following relevant skip option set so that I can overwrite individual episodes but still set a general parameter for most episodes in the series

[Skip]
custom-cascade = False

And custom.json below

{
    "markers": {
        "tmdb://32726": [
            {
                "start": 0,
                "end": 20000
            }
        ],
        "tmdb://32726.4.21": [],
        "tmdb://32726.4.22": [],
        "tmdb://32726.5.1": [],
        "tmdb://32726.5.2": [],
        "tmdb://32726.5.4": [],
        "tmdb://32726.5.21": [],
        "tmdb://32726.6.19": [],
        "tmdb://32726.7.7": [],
        "tmdb://32726.7.9": [],
        "tmdb://32726.8.1": [
            {
                "start": 0,
                "end": 28000
            }
        ],
        "tmdb://32726.8.6": [],
        "tmdb://32726.8.7": [],
        "tmdb://32726.10.4": []
    },
    "allowed": {
        "users": [],
        "clients": [],
        "keys": []
    },
    "blocked": {
        "users": [],
        "clients": [],
        "keys": [
            "tmdb://32726"
        ]
    },
    "clients": {},
    "offsets": {}
}

By setting the whole show to have the 20 second intro then setting blank values for various episodes and one custom 28 second intro for those various episodes I have full automated intro detection and I block the automated detection so as to not interfere.