mirror of
https://github.com/darkzoul5/YoutubePlaylistSync.git
synced 2026-09-18 20:43:54 +03:00
Added:
- requirements.txt - compose.yaml - config example - changed gitignore to not ignore /config
This commit is contained in:
+1
-2
@@ -2,9 +2,8 @@
|
||||
|
||||
|
||||
#Custom for this project
|
||||
yt-playlist-config.json
|
||||
config/yt-playlist-config.json
|
||||
/bin/
|
||||
/config/
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
yt-downloader:
|
||||
image: git.darkzoul.org/dark_zoul/youtube-playlist-downloader:latest
|
||||
container_name: yt-downloader
|
||||
restart: no
|
||||
volumes:
|
||||
- /path/to/downloads:/app/downloads
|
||||
- /path/to/config:/app/config
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"playlists": [
|
||||
{
|
||||
"url": "https://www.youtube.com/playlist?list=YOUR_PLAYLIST_ID_HERE",
|
||||
"download_mode": "audio",
|
||||
"max_video_quality": "1080p",
|
||||
"save_path": "./downloads",
|
||||
"archive": "archive.txt"
|
||||
}
|
||||
],
|
||||
"yt_dlp_path": "./bin/yt-dlp",
|
||||
"ffmpeg_path": "./bin/ffmpeg",
|
||||
"aria2c_path": "./bin/aria2c",
|
||||
"max_parallel_downloads": 6,
|
||||
"aria2c_connections": 4
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
yt-dlp==2025.10.1
|
||||
pytest>=7.0.0
|
||||
aria2p>=0.9.0
|
||||
Reference in New Issue
Block a user