1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-03 12:34:00 +03:00

Update README and config file for enhanced download options and paths

This commit is contained in:
2025-10-14 10:38:37 +03:00
parent 1a1f50cc96
commit 4b32ec10c2
3 changed files with 48 additions and 29 deletions
+4 -4
View File
@@ -37,13 +37,13 @@ class ConfigLoader:
"playlists": [
{
"url": "https://www.youtube.com/playlist?list=YOUR_PLAYLIST_HERE",
"save_path": "./music",
"save_path": "./downloads",
"archive": "archive.txt"
}
],
"yt_dlp_path": "./bin/yt-dlp.exe" if platform.system() == "Windows" else "yt-dlp",
"ffmpeg_path": "./bin/ffmpeg.exe" if platform.system() == "Windows" else "ffmpeg",
"aria2c_path": "./bin/aria2c.exe" if platform.system() == "Windows" else "aria2c",
"yt_dlp_path": "./bin/yt-dlp.exe" if platform.system() == "Windows" else "./bin/yt-dlp",
"ffmpeg_path": "./bin/ffmpeg.exe" if platform.system() == "Windows" else "./bin/ffmpeg",
"aria2c_path": "./bin/aria2c.exe" if platform.system() == "Windows" else "./bin/aria2c",
"download_mode": "audio", # options: audio, video, both
"max_video_quality": "1080p", # options: 720p, 1080p, 1440p, 2160p, best
"max_parallel_downloads": 10,