プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

create ytdlp-webui

Kohei Watanabe (Oct 28, 2024, 4:25 PM +0900) d314e83b ffe2af26

+24
+23
ytdlp/compose.yml
··· 1 + services: 2 + webui: 3 + image: ghcr.io/seyys/ytdlp-webui:master 4 + restart: unless-stopped 5 + ports: 6 + - 5000:5000 7 + depends_on: 8 + - redis 9 + worker: 10 + image: ghcr.io/seyys/ytdlp-webui:master 11 + restart: unless-stopped 12 + command: ["celery", "-A", "make_celery", "worker", "--loglevel", "INFO"] 13 + user: 1000:1000 14 + environment: 15 + FILENAME_TEMPLATE: "%(uploader|Unknown)s,%(album|[Unknown Album])s,%(title)s [%(id)s]" 16 + volumes: 17 + - ./downloads:/app/downloads 18 + - ./config:/app/config 19 + depends_on: 20 + - redis 21 + redis: 22 + image: redis:alpine 23 + restart: unless-stopped
+1
ytdlp/config/yt-dlp.conf
··· 1 + --continue --ignore-errors --no-overwrites --extract-audio --add-metadata --embed-thumbnail