Skip YouTube video sponsors (server side portion)
Find a file
2022-07-04 16:18:58 -04:00
.github/workflows Don't always build backup db image 2022-05-17 01:51:11 -04:00
containers Create an image for db backups 2022-05-17 01:29:49 -04:00
databases Add malicious vote type for chapters 2022-07-04 16:18:58 -04:00
docker remove old volume 2022-05-06 00:03:01 -04:00
nginx more cache time 2022-06-01 14:24:58 -04:00
src Add malicious vote type for chapters 2022-07-04 16:18:58 -04:00
test Add malicious vote type for chapters 2022-07-04 16:18:58 -04:00
.editorconfig migrate to typescript 2020-10-26 19:13:30 +02:00
.eslintrc.js remove newline-before-return eslint 2021-11-27 02:42:59 -05:00
.gitignore Update dependencies & eslint 2021-08-27 17:09:31 -04:00
ci.json Fix postgres tests 2022-05-04 02:07:22 -04:00
config.json.example Rename highlight category to poi_highlight 2021-08-17 22:01:12 -04:00
DatabaseSchema.md Add malicious vote type for chapters 2022-07-04 16:18:58 -04:00
Dockerfile better db dump system 2022-05-05 22:50:07 -04:00
entrypoint.sh Fix docker container 2022-05-04 01:46:41 -04:00
LICENSE Create LICENSE 2019-08-19 20:59:10 -04:00
nodemon.json fix nodemon to watch .ts files 2020-11-01 17:29:57 +02:00
package-lock.json Add disk cache service 2022-05-17 02:29:36 -04:00
package.json Add disk cache service 2022-05-17 02:29:36 -04:00
README.MD Update dependencies & eslint 2021-08-27 17:09:31 -04:00
test.json Prepare dockerfile for use, allow configuring via env vars 2022-05-03 22:08:44 -04:00
tsconfig.json read test script value from package.json 2021-07-03 16:01:29 +10:00

SponsorBlock Server

SponsorBlock is an extension that will skip over sponsored segments of YouTube videos. SponsorBlock is a crowdsourced browser extension that let's anyone submit the start and end time's of sponsored segments of YouTube videos. Once one person submits this information, everyone else with this extension will skip right over the sponsored segment.

This is the server backend for it

Server

This uses a Postgres or Sqlite database to hold all the timing data.

To make sure that this project doesn't die, I have made the database publicly downloadable at https://sponsor.ajay.app/database. You can download a backup or get archive.org to take a backup if you do desire. The database is under this license unless you get explicit permission from me.

Hopefully this project can be combined with projects like this and use this data to create a neural network to predict when sponsored segments happen. That project is sadly abandoned now, so I have decided to attempt to revive this idea.

Client

The client web browser extension is available here: https://github.com/ajayyy/SponsorBlock

Build Yourself

This is a node.js server, so clone this repo and run npm install to install all dependencies.

Make sure to put the database files in the ./databases folder if you want to use a pre-existing database. Otherwise, a fresh database will be created.

Rename config.json.example to config.json and fill the parameters inside. Make sure to remove the comments as comments are not supported in JSON.

Ensure all the tests pass with npm test

Run the server with npm start.

Developing

If you want to make changes, run npm run dev to automatically reload the server and run tests whenever a file is saved.

API Docs

Available here