2025-06-26 18:21:29 +00:00
2025-04-09 10:51:04 +00:00
2025-02-25 16:08:44 +01:00
2025-01-01 22:27:37 +01:00
2025-02-01 23:13:44 +01:00
2025-04-01 21:41:53 +02:00
2025-03-19 14:04:52 +01:00
...
2025-02-26 14:15:22 +01:00
2025-02-27 14:35:33 +01:00
2025-02-01 23:13:44 +01:00
2024-12-05 18:29:03 +01:00
2024-12-27 22:47:13 +01:00
2024-12-27 23:25:57 +01:00
2025-04-27 11:07:20 +00:00
2025-04-01 21:23:36 +02:00
2025-06-18 21:04:30 +02:00
2025-06-26 18:21:29 +00:00

ReviveTube

Watch YouTube on your Wii!

ReviveTube: http://yt.old.errexe.xyz/

ReviveMii Homepage: https://revivemii.errexe.xyz/

Self Hosting

ReviveTube now supports Docker. Docker Installation:

Install docker with sudo apt install docker.io && sudo curl -L "https://github.com/docker/compose/releases/download/v2.20.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose

Then run

wget https://cloud.theerrorexe.dev/revivetube-docker.tar
docker load -i revivetube-docker.tar

Create docker-compose.yml:

version: "3.9"

services:
  revivetube:
    image: theerrorexe/revivetube:latest
    ports:
      - "5000:5000"
    environment:
      - GOOGLE_API_TOKEN=YOUR_GOOGLE_TOKEN
    volumes:
      - .:/app
    restart: unless-stopped

Replace YOUR_GOOGLE_TOKEN with your google api token Now run sudo docker-compose up -d or sudo docker compose up -d

ReviveTube should now run on Port 5000

Using Python directly

WARNING: before starting the server, remove the --proxy command and the --cookie command in revivetube.py

Go to https://console.cloud.google.com/ and create a new application with the YouTube Data v3 API.

Click on Credentials and click on new, and create a new API Key. Paste the API Key in token.txt

Install the Requirements:

pip install -r requirements.txt

Search for "--proxy" in revivetube.py and remove the command

Search for "--cookies" in revivetube.py and remove the command

Start the Server:

python3 revivetube.py
Description
Languages
HTML 55.7%
Python 44.1%
Shell 0.2%