Skip to content
David edited this page Apr 11, 2022 · 23 revisions

Docker

Setup

You need to set up several things before you can run the project. Create blank config file: touch config.json Run:

docker run --rm -it \
--network=host \
-v /PATH_TO_YOUR_CONFIG.json:/app/config.json \
ghcr.io/dmunozv04/isponsorblocktv \
--setup

Run

docker pull ghcr.io/dmunozv04/isponsorblocktv
docker run -d \
--name iSponsorBlockTV \
--restart=unless-stopped \
--network=host \
-v /PATH_TO_YOUR_CONFIG.json:/app/config.json \
ghcr.io/dmunozv04/isponsorblocktv

macOS

Setup

Run:

mkdir ~/iSponsorBlockTV
cd ~/iSponsorBlockTV
wget https://github.com/dmunozv04/iSponsorBlockTV/releases/latest/download/iSponsorBlockTV
chmod +x iSponsorBlockTV
./iSponsorBlockTV --macos_install

And follow the steps. This will load the script on login.

Uninstall

launchctl unload ~/Library/LaunchAgents/com.dmunozv04.iSponsorBlockTV.plist
rm ~/Library/LaunchAgents/com.dmunozv04.iSponsorBlockTV.plist
rm -r ~/iSponsorBlockTV

From source

You need to install python first, and to make it available in your PATH. After, clone the repo. Then you need to download the dependencies with pip: python3 -m pip install -r requirements.txt Lastly, run main.py

Setup

run main.py --setup

Clone this wiki locally