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

Configure Feed

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

create metube

Kohei Watanabe (Oct 29, 2024, 9:35 PM +0900) c2ea74cf 0bda09ba

+22
+13
metube/compose.yml
··· 1 + services: 2 + metube: 3 + image: ghcr.io/alexta69/metube 4 + restart: unless-stopped 5 + ports: 6 + - "8081:8081" 7 + volumes: 8 + - ./config:/etc/metube 9 + - ./downloads:/downloads 10 + environment: 11 + YTDL_OPTIONS_FILE: /etc/metube/ytdl_options.json 12 + DOWNLOAD_DIR: /downloads/Music 13 + OUTPUT_TEMPLATE: "%(artist,uploader|Unknown)s,%(album,artist,uploader)s,%(title)s [%(id)s].%(ext)s"
+9
metube/config/ytdl_options.json
··· 1 + { 2 + "format": "bestaudio/best", 3 + "writethumbnail": true, 4 + "postprocessors": [ 5 + { "key": "FFmpegExtractAudio" }, 6 + { "key": "FFmpegMetadata" }, 7 + { "key": "EmbedThumbnail" } 8 + ] 9 + }