Sign inSign up

notataco/metube

By notataco

Updated over 1 year ago

MeTube with concurrent downloads

Image
1

10K+

notataco/metube repository overview

MeTube Concurrent

This is a fork of the original MeTube project, modified to support concurrent downloads. It retains all the core functionalities of the original MeTube, which provides a web GUI for youtube-dl (using the yt-dlp fork) with playlist support. With MeTube Concurrent, you can download videos from YouTube and many other sites more efficiently by utilizing concurrent downloads.

Run using Docker

docker run -d -p 8081:8081 -v /path/to/downloads:/downloads notataco/metube:latest

Run using docker-compose

version: "3"
services:
  metube:
    image: notataco/metube:latest
    container_name: metube
    restart: unless-stopped
    ports:
      - "8081:8081"
    volumes:
      - /path/to/downloads:/downloads

Configuration via environment variables

This version supports the same environment variables as the original MeTube, allowing you to customize the application to your needs, including user and group IDs, umask, download directories, and more.

  • UID: user under which MeTube will run. Defaults to 1000.
  • GID: group under which MeTube will run. Defaults to 1000.
  • UMASK: umask value used by MeTube. Defaults to 022.
  • DEFAULT_THEME: default theme to use for the UI, can be set to light, dark, or auto. Defaults to auto.
  • DOWNLOAD_DIR: path to where the downloads will be saved. Defaults to /downloads.
  • AUDIO_DOWNLOAD_DIR: path to where audio-only downloads will be saved. Defaults to the value of DOWNLOAD_DIR.
  • STATE_DIR: path to where the queue persistence files will be saved. Defaults to /downloads/.metube.
  • TEMP_DIR: path where intermediary download files will be saved. Defaults to /downloads.

For the full list of environment variables, refer to the original MeTube documentation.

Browser extensions

MeTube Concurrent is compatible with the same browser extensions as the original MeTube, allowing for easy video download management directly from your browser.

Tag summary

Content type

Image

Digest

sha256:05ef617e6

Size

114.4 MB

Last updated

over 1 year ago

docker pull notataco/metube