mirror of
https://github.com/kou029w/_.git
synced 2025-02-01 06:38:39 +00:00
Compare commits
No commits in common. "c2ea74cf70727551af0fd803cd5d5d545039ac38" and "75ba18676f60814764f4d80d18c900654ed0568f" have entirely different histories.
c2ea74cf70
...
75ba18676f
4 changed files with 24 additions and 22 deletions
|
@ -1,13 +0,0 @@
|
|||
services:
|
||||
metube:
|
||||
image: ghcr.io/alexta69/metube
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8081:8081"
|
||||
volumes:
|
||||
- ./config:/etc/metube
|
||||
- ./downloads:/downloads
|
||||
environment:
|
||||
YTDL_OPTIONS_FILE: /etc/metube/ytdl_options.json
|
||||
DOWNLOAD_DIR: /downloads/Music
|
||||
OUTPUT_TEMPLATE: "%(artist,uploader|Unknown)s,%(album,artist,uploader)s,%(title)s [%(id)s].%(ext)s"
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"format": "bestaudio/best",
|
||||
"writethumbnail": true,
|
||||
"postprocessors": [
|
||||
{ "key": "FFmpegExtractAudio" },
|
||||
{ "key": "FFmpegMetadata" },
|
||||
{ "key": "EmbedThumbnail" }
|
||||
]
|
||||
}
|
23
ytdlp/compose.yml
Normal file
23
ytdlp/compose.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
services:
|
||||
webui:
|
||||
image: ghcr.io/seyys/ytdlp-webui:master
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5000:5000
|
||||
depends_on:
|
||||
- redis
|
||||
worker:
|
||||
image: ghcr.io/seyys/ytdlp-webui:master
|
||||
restart: unless-stopped
|
||||
command: ["celery", "-A", "make_celery", "worker", "--loglevel", "INFO"]
|
||||
user: 1000:1000
|
||||
environment:
|
||||
FILENAME_TEMPLATE: "%(uploader|Unknown)s,%(album|[Unknown Album])s,%(title)s [%(id)s]"
|
||||
volumes:
|
||||
- ./downloads:/app/downloads
|
||||
- ./config:/app/config
|
||||
depends_on:
|
||||
- redis
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: unless-stopped
|
1
ytdlp/config/yt-dlp.conf
Normal file
1
ytdlp/config/yt-dlp.conf
Normal file
|
@ -0,0 +1 @@
|
|||
--continue --ignore-errors --no-overwrites --extract-audio --add-metadata --embed-thumbnail
|
Loading…
Add table
Reference in a new issue