Self-hosted YouTube downloader (web UI for youtube-dl / yt-dlp)
 
 
 
 
 
 
Go to file
Alex Shnitman fd962964d1 upgraded dependencies 2021-05-10 20:47:08 +03:00
.github/workflows use dockerhub password for syncing README 2021-04-13 19:44:25 +03:00
.vscode upgrade dependencies (migrate to Angular 10) 2021-02-02 21:09:28 +02:00
app add audio-only download (closes #20) 2021-03-04 11:10:39 +02:00
favicon add configurable URL prefix 2019-12-03 23:18:14 +02:00
ui upgraded dependencies 2021-05-10 20:47:08 +03:00
.editorconfig initial commit: working version 2019-11-29 19:31:34 +02:00
.gitignore initial commit: working version 2019-11-29 19:31:34 +02:00
Dockerfile add Dockerfile 2019-11-30 09:40:45 +02:00
LICENSE add LICENSE and README.md 2019-11-30 10:27:50 +02:00
Pipfile fix python-socketio version to 4.x so that ngx-socket-io continues to work (closes #9) 2021-01-03 16:27:49 +02:00
Pipfile.lock upgraded dependencies 2021-05-10 20:47:08 +03:00
README.md add bookmarklet in README 2021-04-12 23:08:36 +03:00
metube.ai update favicon 2019-11-30 09:41:20 +02:00
screenshot.gif add quality selection 2019-12-13 22:43:58 +02:00

README.md

MeTube

Build Status Docker Pulls

Web GUI for youtube-dl with playlist support. Allows you to download videos from YouTube and dozens of other sites (https://ytdl-org.github.io/youtube-dl/supportedsites.html).

screenshot1

Run using Docker

docker run -d -p 8081:8081 -v /path/to/downloads:/downloads --user 1001:1001 alexta69/metube

Run using docker-compose

version: "3"
services:
  metube:
    image: alexta69/metube
    container_name: metube
    restart: unless-stopped
    user: "1001:1001"
    ports:
      - "8081:8081"
    volumes:
      - /path/to/downloads:/downloads

Configuration via environment variables

Certain values can be set via environment variables, using the -e parameter on the docker command line, or the environment: section in docker-compose.

  • DOWNLOAD_DIR: path to where the downloads will be saved. Defaults to /downloads in the docker image, and . otherwise.
  • URL_PREFIX: base path for the web server (for use when hosting behind a reverse proxy). Defaults to /.

Bookmarklet

kushfest has created a bookmarklet for sending the currently open webpage to MeTube. Please note that if you're on an HTTPS page, your MeTube instance must be behind an HTTPS reverse proxy (see below) for the bookmarklet to work.

GitHub doesn't allow embedding JavaScript as a link, so the bookmarklet has to be created manually by copying the following code to a new bookmark you create on your bookmarks bar. Change the hostname in the URL below to point to your MeTube instance.

javascript:!function(){xhr=new XMLHttpRequest();xhr.open("POST","https://metube.domain.com/add");xhr.send(JSON.stringify({"url":document.location.href,"quality":"best"}));xhr.onload=function(){if(xhr.status==200){alert("Sent to metube!")}else{alert("Send to metube failed. Check the javascript console for clues.")}}}();

Running behind a reverse proxy

Use the following nginx configuration to run MeTube behind a reverse proxy. The extra proxy_set_header directives are there to make WebSocket work. Don't forget to set the URL_PREFIX environment variable to the correct value as well.

location /metube/ {
        proxy_pass http://metube:8081;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
}

If you're using the linuxserver/swag image for your reverse proxying needs (which I can heartily recommend), it already includes ready snippets for proxying MeTube both in subfolder and subdomain modes under the nginx/proxy-confs directory in the configuration volume.

Build and run locally

Make sure you have node.js and Python 3.8 installed.

cd metube/ui
# install Angular and build the UI
npm install
node_modules/.bin/ng build
# install python dependencies
cd ..
pip3 install pipenv
pipenv install
# run
pipenv run python3 app/main.py

A Docker image can be built locally (it will build the UI too):

docker build -t metube .

Development notes

  • The above works on Windows and MacOS as well as Linux.
  • If you're running the server in VSCode, your downloads will go to your user's Downloads folder (this is configured via the environment in .vscode/launch.json).