• 5 Posts
  • 177 Comments
Joined 2 years ago
cake
Cake day: June 30th, 2023

help-circle













  • https://github.com/dmunozv04/iSponsorBlockTV

    Docker container that you run on a computer on your network, such as an RPi, and add your YouTube playing TVs and Chromecasts and consoles and such. It watches what you’re playing and provides sponsorblock skipping for them automatically

    If you’re using Linux and have podman v4.4 or higher installed, you can use this container file to load it as a systemd service:

    [Unit]
    Description="Sponsorblock for networked youtube clients"
    Wants=network-online.target
    After=network-online.target
    
    [Install]
    WantedBy=multi-user.target default.target
    
    [Service]
    Restart=always
    TimeoutStartSec=900
    
    [Container]
    Image=ghcr.io/dmunozv04/isponsorblocktv:latest
    Volume=/etc/containers/config/sponsorblock:/app/data
    

    You’ll need to generate the config file by hand the first time, follow the instructions in the GitHub wiki above